NFSD: don't report compiled-out versions as present
authorPavel Emelyanov <xemul@openvz.org>
Fri, 14 May 2010 11:33:36 +0000 (15:33 +0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 5 Jul 2010 18:10:27 +0000 (11:10 -0700)
commitd700d271763f3073230b43bcdf8d24a1a844fd91
treeeb55cb3a28739f9e14d7343d178ee0ac8f22592c
parentab871d83d498bd1e0b398bd0dce63b726fff4b7b
NFSD: don't report compiled-out versions as present

commit 15ddb4aec54422ead137b03ea4e9b3f5db3f7cc2 upstream.

The /proc/fs/nfsd/versions file calls nfsd_vers() to check whether
the particular nfsd version is present/available. The problem is
that once I turn off e.g. NFSD-V4 this call returns -1 which is
true from the callers POV which is wrong.

The proposal is to report false in that case.

The bug has existed since 6658d3a7bbfd1768 "[PATCH] knfsd: remove
nfsd_versbits as intermediate storage for desired versions".

Signed-off-by: Pavel Emelyanov <xemul@openvz.org>
Acked-by: NeilBrown <neilb@suse.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/nfsd/nfssvc.c