diff options
Diffstat (limited to 'fs/xfs/xfs_icache.c')
| -rw-r--r-- | fs/xfs/xfs_icache.c | 16 | 
1 files changed, 7 insertions, 9 deletions
| diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c index 47f417d20a30..245483cc282b 100644 --- a/fs/xfs/xfs_icache.c +++ b/fs/xfs/xfs_icache.c @@ -66,7 +66,7 @@ xfs_inode_alloc(  	ip->i_cowfp = NULL;  	ip->i_cnextents = 0;  	ip->i_cformat = XFS_DINODE_FMT_EXTENTS; -	memset(&ip->i_df, 0, sizeof(xfs_ifork_t)); +	memset(&ip->i_df, 0, sizeof(ip->i_df));  	ip->i_flags = 0;  	ip->i_delayed_blks = 0;  	memset(&ip->i_d, 0, sizeof(ip->i_d)); @@ -716,7 +716,7 @@ xfs_icache_inode_is_allocated(  		return error;  	*inuse = !!(VFS_I(ip)->i_mode); -	IRELE(ip); +	xfs_irele(ip);  	return 0;  } @@ -856,7 +856,7 @@ restart:  			    xfs_iflags_test(batch[i], XFS_INEW))  				xfs_inew_wait(batch[i]);  			error = execute(batch[i], flags, args); -			IRELE(batch[i]); +			xfs_irele(batch[i]);  			if (error == -EAGAIN) {  				skipped++;  				continue; @@ -1697,14 +1697,13 @@ xfs_inode_clear_eofblocks_tag(   */  static bool  xfs_prep_free_cowblocks( -	struct xfs_inode	*ip, -	struct xfs_ifork	*ifp) +	struct xfs_inode	*ip)  {  	/*  	 * Just clear the tag if we have an empty cow fork or none at all. It's  	 * possible the inode was fully unshared since it was originally tagged.  	 */ -	if (!xfs_is_reflink_inode(ip) || !ifp->if_bytes) { +	if (!xfs_inode_has_cow_data(ip)) {  		trace_xfs_inode_free_cowblocks_invalid(ip);  		xfs_inode_clear_cowblocks_tag(ip);  		return false; @@ -1742,11 +1741,10 @@ xfs_inode_free_cowblocks(  	void			*args)  {  	struct xfs_eofblocks	*eofb = args; -	struct xfs_ifork	*ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);  	int			match;  	int			ret = 0; -	if (!xfs_prep_free_cowblocks(ip, ifp)) +	if (!xfs_prep_free_cowblocks(ip))  		return 0;  	if (eofb) { @@ -1771,7 +1769,7 @@ xfs_inode_free_cowblocks(  	 * Check again, nobody else should be able to dirty blocks or change  	 * the reflink iflag now that we have the first two locks held.  	 */ -	if (xfs_prep_free_cowblocks(ip, ifp)) +	if (xfs_prep_free_cowblocks(ip))  		ret = xfs_reflink_cancel_cow_range(ip, 0, NULLFILEOFF, false);  	xfs_iunlock(ip, XFS_MMAPLOCK_EXCL); |