diff options
author | Joe Perches <joe@perches.com> | 2012-07-18 14:17:11 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-07-30 17:58:08 -0400 |
commit | cac5d07e3ca696dcacfb123553cf6c722111cfd3 (patch) | |
tree | edf07097e0366f4d9ff22247f35f3a66522c10a6 /net/sunrpc | |
parent | 0add3e8567a42b8137e26c0595a59f893d8592e0 (diff) |
sunrpc: clnt: Add missing braces
Add a missing set of braces that commit 4e0038b6b24
("SUNRPC: Move clnt->cl_server into struct rpc_xprt")
forgot.
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Cc: stable@vger.kernel.org [>= 3.4]
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/clnt.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index f56f045778ae..aaf70aa65904 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c | |||
@@ -1844,12 +1844,13 @@ call_timeout(struct rpc_task *task) | |||
1844 | return; | 1844 | return; |
1845 | } | 1845 | } |
1846 | if (RPC_IS_SOFT(task)) { | 1846 | if (RPC_IS_SOFT(task)) { |
1847 | if (clnt->cl_chatty) | 1847 | if (clnt->cl_chatty) { |
1848 | rcu_read_lock(); | 1848 | rcu_read_lock(); |
1849 | printk(KERN_NOTICE "%s: server %s not responding, timed out\n", | 1849 | printk(KERN_NOTICE "%s: server %s not responding, timed out\n", |
1850 | clnt->cl_protname, | 1850 | clnt->cl_protname, |
1851 | rcu_dereference(clnt->cl_xprt)->servername); | 1851 | rcu_dereference(clnt->cl_xprt)->servername); |
1852 | rcu_read_unlock(); | 1852 | rcu_read_unlock(); |
1853 | } | ||
1853 | if (task->tk_flags & RPC_TASK_TIMEOUT) | 1854 | if (task->tk_flags & RPC_TASK_TIMEOUT) |
1854 | rpc_exit(task, -ETIMEDOUT); | 1855 | rpc_exit(task, -ETIMEDOUT); |
1855 | else | 1856 | else |