diff options
author | Jeff Layton <jlayton@redhat.com> | 2008-04-08 15:40:07 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2008-04-23 16:13:42 -0400 |
commit | 06e02d66fa0055230efc2443c43ee4f3ab5eb0b6 (patch) | |
tree | ef5fcba37b6d9805193b77bfa10466a03326b6ed /fs/nfs/callback.c | |
parent | 9078dc08143e23b18ea72e70265f0df920cf2998 (diff) |
NFS: don't let nfs_callback_svc exit on unexpected svc_recv errors (try #2)
When svc_recv returns an unexpected error, nfs_callback_svc will print a
warning and exit. This problematic for several reasons. In particular,
it will cause the reference counts for the thread to be wrong, and no
new thread will be started until all nfs4 mounts are unmounted.
Rather than exiting on error from svc_recv, have the thread do a 1s
sleep and then retry the loop. This is unlikely to cause any harm, and
if the error turns out to be something temporary then it may be able to
recover.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs/nfs/callback.c')
-rw-r--r-- | fs/nfs/callback.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/fs/nfs/callback.c b/fs/nfs/callback.c index a9f153867554..5606ae3d72d3 100644 --- a/fs/nfs/callback.c +++ b/fs/nfs/callback.c | |||
@@ -59,7 +59,7 @@ module_param_call(callback_tcpport, param_set_port, param_get_int, | |||
59 | static int | 59 | static int |
60 | nfs_callback_svc(void *vrqstp) | 60 | nfs_callback_svc(void *vrqstp) |
61 | { | 61 | { |
62 | int err; | 62 | int err, preverr = 0; |
63 | struct svc_rqst *rqstp = vrqstp; | 63 | struct svc_rqst *rqstp = vrqstp; |
64 | 64 | ||
65 | set_freezable(); | 65 | set_freezable(); |
@@ -74,14 +74,20 @@ nfs_callback_svc(void *vrqstp) | |||
74 | * Listen for a request on the socket | 74 | * Listen for a request on the socket |
75 | */ | 75 | */ |
76 | err = svc_recv(rqstp, MAX_SCHEDULE_TIMEOUT); | 76 | err = svc_recv(rqstp, MAX_SCHEDULE_TIMEOUT); |
77 | if (err == -EAGAIN || err == -EINTR) | 77 | if (err == -EAGAIN || err == -EINTR) { |
78 | preverr = err; | ||
78 | continue; | 79 | continue; |
80 | } | ||
79 | if (err < 0) { | 81 | if (err < 0) { |
80 | printk(KERN_WARNING | 82 | if (err != preverr) { |
81 | "%s: terminating on error %d\n", | 83 | printk(KERN_WARNING "%s: unexpected error " |
82 | __FUNCTION__, -err); | 84 | "from svc_recv (%d)\n", __func__, err); |
83 | break; | 85 | preverr = err; |
86 | } | ||
87 | schedule_timeout_uninterruptible(HZ); | ||
88 | continue; | ||
84 | } | 89 | } |
90 | preverr = err; | ||
85 | svc_process(rqstp); | 91 | svc_process(rqstp); |
86 | } | 92 | } |
87 | unlock_kernel(); | 93 | unlock_kernel(); |