Commit eac152b4 authored by Dave Chinner's avatar Dave Chinner Committed by Dave Chinner

xfs: kill VN_DIRTY()

Only one user of the macro and the dirty mapping check is redundant
so just get rid of it.
Signed-off-by: default avatarDave Chinner <dchinner@redhat.com>
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarDave Chinner <david@fromorbit.com>
parent ad3714b8
...@@ -1635,7 +1635,7 @@ xfs_release( ...@@ -1635,7 +1635,7 @@ xfs_release(
truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED); truncated = xfs_iflags_test_and_clear(ip, XFS_ITRUNCATED);
if (truncated) { if (truncated) {
xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE); xfs_iflags_clear(ip, XFS_IDIRTY_RELEASE);
if (VN_DIRTY(VFS_I(ip)) && ip->i_delayed_blks > 0) { if (ip->i_delayed_blks > 0) {
error = filemap_flush(VFS_I(ip)->i_mapping); error = filemap_flush(VFS_I(ip)->i_mapping);
if (error) if (error)
return error; return error;
......
...@@ -39,8 +39,6 @@ struct attrlist_cursor_kern; ...@@ -39,8 +39,6 @@ struct attrlist_cursor_kern;
*/ */
#define VN_MAPPED(vp) mapping_mapped(vp->i_mapping) #define VN_MAPPED(vp) mapping_mapped(vp->i_mapping)
#define VN_CACHED(vp) (vp->i_mapping->nrpages) #define VN_CACHED(vp) (vp->i_mapping->nrpages)
#define VN_DIRTY(vp) mapping_tagged(vp->i_mapping, \
PAGECACHE_TAG_DIRTY)
#endif /* __XFS_VNODE_H__ */ #endif /* __XFS_VNODE_H__ */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment