Signed-off-by: Benny Halevy <bhalevy@xxxxxxxxxx> --- fs/nfsd/export.c | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c index b6e46ab..b2fa749 100644 --- a/fs/nfsd/export.c +++ b/fs/nfsd/export.c @@ -421,7 +421,7 @@ static int check_export(struct inode *inode, int *flags, unsigned char *uuid) return -EINVAL; } - return pnfsd_check_export(inode, flags); + return 0; } #ifdef CONFIG_NFSD_V4 @@ -624,6 +624,13 @@ static int svc_export_parse(struct cache_detail *cd, char *mesg, int mlen) exp.ex_uuid); if (err) goto out4; + + if (exp.ex_pnfs) { + err = pnfsd_check_export(exp.ex_path.dentry->d_inode, + &exp.ex_flags); + if (err) + goto out4; + } } expp = svc_export_lookup(&exp); -- 1.7.6.5 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html