diff options
Diffstat (limited to 'fs/xfs/xfs_inode.c')
| -rw-r--r-- | fs/xfs/xfs_inode.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index d48e406de07..5c10825f2f8 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -887,7 +887,6 @@ xfs_ialloc(  	prid_t		prid,  	int		okalloc,  	xfs_buf_t	**ialloc_context, -	boolean_t	*call_again,  	xfs_inode_t	**ipp)  {  	xfs_ino_t	ino; @@ -902,10 +901,10 @@ xfs_ialloc(  	 * the on-disk inode to be allocated.  	 */  	error = xfs_dialloc(tp, pip ? pip->i_ino : 0, mode, okalloc, -			    ialloc_context, call_again, &ino); +			    ialloc_context, &ino);  	if (error)  		return error; -	if (*call_again || ino == NULLFSINO) { +	if (*ialloc_context || ino == NULLFSINO) {  		*ipp = NULL;  		return 0;  	}  |