aboutsummaryrefslogtreecommitdiffstats
path: root/net/sunrpc
diff options
context:
space:
mode:
authorFred Isaman <iisaman@netapp.com>2011-02-11 15:42:35 +0000
committerTrond Myklebust <Trond.Myklebust@netapp.com>2011-03-11 15:38:40 -0500
commitcee6a5372f8804f58acc87f07816f64db36718e2 (patch)
tree66e07d4404e95fe7abcf60a9c72286328dd6a07f /net/sunrpc
parentf49f9baac8f63de9cbc17a0a84e04060496e8e76 (diff)
downloadkernel_samsung_smdk4412-cee6a5372f8804f58acc87f07816f64db36718e2.zip
kernel_samsung_smdk4412-cee6a5372f8804f58acc87f07816f64db36718e2.tar.gz
kernel_samsung_smdk4412-cee6a5372f8804f58acc87f07816f64db36718e2.tar.bz2
RPC: remove check for impossible condition in rpc_make_runnable
queue_work() only returns 0 or 1, never a negative value. Signed-off-by: Fred Isaman <iisaman@netapp.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r--net/sunrpc/sched.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/net/sunrpc/sched.c b/net/sunrpc/sched.c
index 59e5994..9310726 100644
--- a/net/sunrpc/sched.c
+++ b/net/sunrpc/sched.c
@@ -299,15 +299,8 @@ static void rpc_make_runnable(struct rpc_task *task)
if (rpc_test_and_set_running(task))
return;
if (RPC_IS_ASYNC(task)) {
- int status;
-
INIT_WORK(&task->u.tk_work, rpc_async_schedule);
- status = queue_work(rpciod_workqueue, &task->u.tk_work);
- if (status < 0) {
- printk(KERN_WARNING "RPC: failed to add task to queue: error: %d!\n", status);
- task->tk_status = status;
- return;
- }
+ queue_work(rpciod_workqueue, &task->u.tk_work);
} else
wake_up_bit(&task->tk_runstate, RPC_TASK_QUEUED);
}