diff options
Diffstat (limited to 'fs/xfs/xfs_export.c')
| -rw-r--r-- | fs/xfs/xfs_export.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_export.c b/fs/xfs/xfs_export.c index 7cd09c3a82cb..201489d3de08 100644 --- a/fs/xfs/xfs_export.c +++ b/fs/xfs/xfs_export.c @@ -102,7 +102,7 @@ xfs_fs_encode_fh(  	return fileid_type;  } -STATIC struct inode * +struct inode *  xfs_nfs_get_inode(  	struct super_block	*sb,  	u64			ino, @@ -160,7 +160,7 @@ xfs_nfs_get_inode(  		}  	} -	if (VFS_I(ip)->i_generation != generation) { +	if (VFS_I(ip)->i_generation != generation || IS_PRIVATE(VFS_I(ip))) {  		xfs_irele(ip);  		return ERR_PTR(-ESTALE);  	}  |