aboutsummaryrefslogtreecommitdiffstats
path: root/fs/lockd
diff options
context:
space:
mode:
authorBenjamin Coddington <bcodding@redhat.com>2014-09-23 12:26:20 -0400
committerBen Hutchings <ben@decadent.org.uk>2014-12-14 16:23:44 +0000
commit3aabe891f32c209a2be7cd5581d2634020e801c1 (patch)
tree3a17e793dfdf5741c70427a259b9240b836d799f /fs/lockd
parent9c8387509ce9f8124f7c5b1ab77fd98305deff37 (diff)
downloadkernel_samsung_smdk4412-3aabe891f32c209a2be7cd5581d2634020e801c1.zip
kernel_samsung_smdk4412-3aabe891f32c209a2be7cd5581d2634020e801c1.tar.gz
kernel_samsung_smdk4412-3aabe891f32c209a2be7cd5581d2634020e801c1.tar.bz2
lockd: Try to reconnect if statd has moved
commit 173b3afceebe76fa2205b2c8808682d5b541fe3c upstream. If rpc.statd is restarted, upcalls to monitor hosts can fail with ECONNREFUSED. In that case force a lookup of statd's new port and retry the upcall. Signed-off-by: Benjamin Coddington <bcodding@redhat.com> Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com> [bwh: Backported to 3.2: not using RPC_TASK_SOFTCONN] Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Diffstat (limited to 'fs/lockd')
-rw-r--r--fs/lockd/mon.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c
index 23d7451..ef744e1 100644
--- a/fs/lockd/mon.c
+++ b/fs/lockd/mon.c
@@ -111,6 +111,12 @@ static int nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res)
msg.rpc_proc = &clnt->cl_procinfo[proc];
status = rpc_call_sync(clnt, &msg, 0);
+ if (status == -ECONNREFUSED) {
+ dprintk("lockd: NSM upcall RPC failed, status=%d, forcing rebind\n",
+ status);
+ rpc_force_rebind(clnt);
+ status = rpc_call_sync(clnt, &msg, 0);
+ }
if (status < 0)
dprintk("lockd: NSM upcall RPC failed, status=%d\n",
status);