diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-26 02:31:30 -0400 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-26 15:05:16 -0400 | 
| commit | abbede1b3a680e108d61aaa415ce5153296e775d (patch) | |
| tree | 0fb8b8db864e5919b02f5d7dd2d66474e76a39d5 /fs/xfs/xfs_vnodeops.c | |
| parent | c46c887744b330795eba55fdb96343c36d481765 (diff) | |
| download | olio-linux-3.10-abbede1b3a680e108d61aaa415ce5153296e775d.tar.xz olio-linux-3.10-abbede1b3a680e108d61aaa415ce5153296e775d.zip  | |
xfs: get rid of open-coded S_ISREG(), etc.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/xfs/xfs_vnodeops.c')
| -rw-r--r-- | fs/xfs/xfs_vnodeops.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/xfs/xfs_vnodeops.c b/fs/xfs/xfs_vnodeops.c index 88d121486c5..9322e13f0c6 100644 --- a/fs/xfs/xfs_vnodeops.c +++ b/fs/xfs/xfs_vnodeops.c @@ -121,7 +121,7 @@ xfs_readlink(  	xfs_ilock(ip, XFS_ILOCK_SHARED); -	ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFLNK); +	ASSERT(S_ISLNK(ip->i_d.di_mode));  	ASSERT(ip->i_d.di_size <= MAXPATHLEN);  	pathlen = ip->i_d.di_size; @@ -529,7 +529,7 @@ xfs_release(  	if (ip->i_d.di_nlink == 0)  		return 0; -	if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) && +	if ((S_ISREG(ip->i_d.di_mode) &&  	     ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||  	       ip->i_delayed_blks > 0)) &&  	     (ip->i_df.if_flags & XFS_IFEXTENTS))  && @@ -610,7 +610,7 @@ xfs_inactive(  	truncate = ((ip->i_d.di_nlink == 0) &&  	    ((ip->i_d.di_size != 0) || (ip->i_size != 0) ||  	     (ip->i_d.di_nextents > 0) || (ip->i_delayed_blks > 0)) && -	    ((ip->i_d.di_mode & S_IFMT) == S_IFREG)); +	    S_ISREG(ip->i_d.di_mode));  	mp = ip->i_mount; @@ -621,7 +621,7 @@ xfs_inactive(  		goto out;  	if (ip->i_d.di_nlink != 0) { -		if ((((ip->i_d.di_mode & S_IFMT) == S_IFREG) && +		if ((S_ISREG(ip->i_d.di_mode) &&                       ((ip->i_size > 0) || (VN_CACHED(VFS_I(ip)) > 0 ||                         ip->i_delayed_blks > 0)) &&  		      (ip->i_df.if_flags & XFS_IFEXTENTS) && @@ -669,7 +669,7 @@ xfs_inactive(  			xfs_iunlock(ip, XFS_IOLOCK_EXCL | XFS_ILOCK_EXCL);  			return VN_INACTIVE_CACHE;  		} -	} else if ((ip->i_d.di_mode & S_IFMT) == S_IFLNK) { +	} else if (S_ISLNK(ip->i_d.di_mode)) {  		/*  		 * If we get an error while cleaning up a  |