1
0
Fork 0

xfs: kill VN_MAPPED

Only one user, no longer needed.

Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Dave Chinner <david@fromorbit.com>
hifive-unleashed-5.1
Dave Chinner 2014-08-04 13:23:35 +10:00 committed by Dave Chinner
parent 2667c6f935
commit dd8c38bab0
2 changed files with 1 additions and 7 deletions

View File

@ -1766,7 +1766,7 @@ xfs_swap_extents(
* vop_read (or write in the case of autogrow) they block on the iolock
* until we have switched the extents.
*/
if (VN_MAPPED(VFS_I(ip))) {
if (mapping_mapped(VFS_I(ip)->i_mapping)) {
error = -EBUSY;
goto out_unlock;
}

View File

@ -34,10 +34,4 @@ struct attrlist_cursor_kern;
{ IO_ISDIRECT, "DIRECT" }, \
{ IO_INVIS, "INVIS"}
/*
* Some useful predicates.
*/
#define VN_MAPPED(vp) mapping_mapped(vp->i_mapping)
#endif /* __XFS_VNODE_H__ */