diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2014-07-30 09:26:05 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-08-01 16:26:09 -0400 |
commit | d9499a95716db0d4bc9b67e88fd162133e7d6b08 (patch) | |
tree | 139fca41ecbec1737b9bbae6e57480b59f98ef6b /fs/nfsd | |
parent | 4ae098d327c599c9a8e2eecedcc2c192b537ff4e (diff) |
NFSD: Decrease nfsd_users in nfsd_startup_generic fail
A memory allocation failure could cause nfsd_startup_generic to fail, in
which case nfsd_users wouldn't be incorrectly left elevated.
After nfsd restarts nfsd_startup_generic will then succeed without doing
anything--the first consequence is likely nfs4_start_net finding a bad
laundry_wq and crashing.
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Fixes: 4539f14981ce "nfsd: replace boolean nfsd_up flag by users counter"
Cc: stable@vger.kernel.org
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd')
-rw-r--r-- | fs/nfsd/nfssvc.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c index 5d026dca00ca..752d56bbe0ba 100644 --- a/fs/nfsd/nfssvc.c +++ b/fs/nfsd/nfssvc.c | |||
@@ -221,7 +221,8 @@ static int nfsd_startup_generic(int nrservs) | |||
221 | */ | 221 | */ |
222 | ret = nfsd_racache_init(2*nrservs); | 222 | ret = nfsd_racache_init(2*nrservs); |
223 | if (ret) | 223 | if (ret) |
224 | return ret; | 224 | goto dec_users; |
225 | |||
225 | ret = nfs4_state_start(); | 226 | ret = nfs4_state_start(); |
226 | if (ret) | 227 | if (ret) |
227 | goto out_racache; | 228 | goto out_racache; |
@@ -229,6 +230,8 @@ static int nfsd_startup_generic(int nrservs) | |||
229 | 230 | ||
230 | out_racache: | 231 | out_racache: |
231 | nfsd_racache_shutdown(); | 232 | nfsd_racache_shutdown(); |
233 | dec_users: | ||
234 | nfsd_users--; | ||
232 | return ret; | 235 | return ret; |
233 | } | 236 | } |
234 | 237 | ||