diff options
Diffstat (limited to 'fs/ocfs2/namei.c')
| -rw-r--r-- | fs/ocfs2/namei.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c index 04ee1b57c243..b4a5cdf9dbc5 100644 --- a/fs/ocfs2/namei.c +++ b/fs/ocfs2/namei.c @@ -947,7 +947,7 @@ leave:  	ocfs2_free_dir_lookup_result(&orphan_insert);  	ocfs2_free_dir_lookup_result(&lookup); -	if (status) +	if (status && (status != -ENOTEMPTY))  		mlog_errno(status);  	return status; @@ -2216,7 +2216,7 @@ out:  	brelse(orphan_dir_bh); -	return 0; +	return ret;  }  int ocfs2_create_inode_in_orphan(struct inode *dir,  |