diff options
author | Dave Chinner <david@fromorbit.com> | 2016-03-06 23:31:00 +0100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2016-03-06 23:31:00 +0100 |
commit | 7f0ed5461a6f5e4ccd2a3ca1047edbe4bbe217fc (patch) | |
tree | 47649e956583dd38e869e65d6ee5b20fac0ee1ef /fs/xfs/xfs_mount.c | |
parent | Merge branch 'xfs-gut-icdinode-4.6' into for-next (diff) | |
parent | xfs: remove XFS_BUF_ZEROFLAGS macro (diff) | |
download | linux-7f0ed5461a6f5e4ccd2a3ca1047edbe4bbe217fc.tar.xz linux-7f0ed5461a6f5e4ccd2a3ca1047edbe4bbe217fc.zip |
Merge branch 'xfs-buf-macro-cleanup-4.6' into for-next
Diffstat (limited to 'fs/xfs/xfs_mount.c')
-rw-r--r-- | fs/xfs/xfs_mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index d3061054bad2..986290c4b7ab 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c @@ -1284,7 +1284,7 @@ xfs_getsb( } xfs_buf_hold(bp); - ASSERT(XFS_BUF_ISDONE(bp)); + ASSERT(bp->b_flags & XBF_DONE); return bp; } |