From: Chuck Lever Date: Sun, 1 Jul 2007 16:13:07 +0000 (-0400) Subject: SUNRPC: Allow rpcbind requests to be interrupted by a signal. X-Git-Tag: v2.6.23-rc1~1073^2~19 X-Git-Url: http://ftp.safe.ca/?a=commitdiff_plain;h=f7fb558e503dc80e100acaf116f7261cdd97f0ca;p=safe%2Fjmp%2Flinux-2.6 SUNRPC: Allow rpcbind requests to be interrupted by a signal. This allows NFS mount requests and RPC re-binding to be interruptible if the server isn't responding. Signed-off-by: Chuck Lever Signed-off-by: Trond Myklebust --- diff --git a/net/sunrpc/rpcb_clnt.c b/net/sunrpc/rpcb_clnt.c index cf7db59..9a20f38 100644 --- a/net/sunrpc/rpcb_clnt.c +++ b/net/sunrpc/rpcb_clnt.c @@ -184,7 +184,8 @@ static struct rpc_clnt *rpcb_create(char *hostname, struct sockaddr *srvaddr, .program = &rpcb_program, .version = version, .authflavor = RPC_AUTH_UNIX, - .flags = RPC_CLNT_CREATE_NOPING, + .flags = (RPC_CLNT_CREATE_NOPING | + RPC_CLNT_CREATE_INTR), }; ((struct sockaddr_in *)srvaddr)->sin_port = htons(RPCBIND_PORT);