diff options
author | jhb <jhb@FreeBSD.org> | 2011-01-19 16:46:13 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2011-01-19 16:46:13 +0000 |
commit | 9b81c936ce1d446b2e95e2364aaa57ffe70e4bc0 (patch) | |
tree | 01dc2a1ad59572e34b70566674843b77a5589236 /sys/fs/ext2fs/ext2_subr.c | |
parent | 6614c76cb4621397cf1ad890b3dddc9a409ee534 (diff) | |
download | FreeBSD-src-9b81c936ce1d446b2e95e2364aaa57ffe70e4bc0.zip FreeBSD-src-9b81c936ce1d446b2e95e2364aaa57ffe70e4bc0.tar.gz |
Merge 118969 from UFS:
Eliminate the i_devvp field from the incore inodes, we can get the same
value from ip->i_ump->um_devvp.
Submitted by: Pedro F. Giffuni giffunip at yahoo
MFC after: 1 week
Diffstat (limited to 'sys/fs/ext2fs/ext2_subr.c')
-rw-r--r-- | sys/fs/ext2fs/ext2_subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/ext2fs/ext2_subr.c b/sys/fs/ext2fs/ext2_subr.c index dcb1b7c..c33ebb0 100644 --- a/sys/fs/ext2fs/ext2_subr.c +++ b/sys/fs/ext2fs/ext2_subr.c @@ -105,7 +105,7 @@ ext2_checkoverlap(bp, ip) for (ep = buf; ep < ebp; ep++) { if (ep == bp || (ep->b_flags & B_INVAL)) continue; - vp = ip->i_devvp; + vp = ip->i_ump->um_devvp; /* look for overlap */ if (ep->b_bcount == 0 || ep->b_blkno > last || ep->b_blkno + btodb(ep->b_bcount) <= start) |