diff options
author | Trond Myklebust <trond.myklebust@primarydata.com> | 2014-03-20 12:53:54 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2014-03-20 13:38:43 -0400 |
commit | 6bd144160a5554e4af052c153a094c4851a4c6aa (patch) | |
tree | 9a1a1c919195e717323b32785c080e363e496f74 /net/sunrpc | |
parent | 1fa3e2eb9db07f30a605c66d1a2fdde4b24e74d5 (diff) | |
download | linux-6bd144160a5554e4af052c153a094c4851a4c6aa.tar.bz2 |
SUNRPC: Don't let rpc_delay() clobber non-timeout errors
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/sched.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sunrpc/sched.c b/net/sunrpc/sched.c index ff3cc4bf4b24..25578afe1548 100644 --- a/net/sunrpc/sched.c +++ b/net/sunrpc/sched.c @@ -637,7 +637,8 @@ static void __rpc_queue_timer_fn(unsigned long ptr) static void __rpc_atrun(struct rpc_task *task) { - task->tk_status = 0; + if (task->tk_status == -ETIMEDOUT) + task->tk_status = 0; } /* |