From: Steve Dickson <SteveD@xxxxxxxxxx> The V4ROOT flag is supposed to make it safe to export filesystems that would not ordinarily have been exported, by severely restricting which directories on the filesystem may be accessed. Before exporting those filesystems, we must have a way for userspace (mainly mountd) to know whether the kernel supports the new flag. The kernel has always silently ignored unknown export flags. So, we bump the export version to signal mountd that the kernel has pseudo root support. Signed-Off-By: Steve Dickson <steved@xxxxxxxxxx> Signed-off-by: J. Bruce Fields <bfields@xxxxxxxxxxxxxx> --- fs/nfsd/export.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/nfsd/export.c b/fs/nfsd/export.c index 0bcd10a..39c22d9 100644 --- a/fs/nfsd/export.c +++ b/fs/nfsd/export.c @@ -1522,7 +1522,7 @@ static int e_show(struct seq_file *m, void *p) struct svc_export *exp = container_of(cp, struct svc_export, h); if (p == SEQ_START_TOKEN) { - seq_puts(m, "# Version 1.1\n"); + seq_puts(m, "# Version 1.2\n"); seq_puts(m, "# Path Client(Flags) # IPs\n"); return 0; } -- 1.6.3.3 -- 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