SUNRPC: Reduce asynchronous RPC task stack usage
We should just farm out asynchronous RPC tasks immediately to rpciod... Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
a17c2153d2
commit
d6a1ed08c6
|
@ -699,8 +699,9 @@ static void __rpc_execute(struct rpc_task *task)
|
||||||
void rpc_execute(struct rpc_task *task)
|
void rpc_execute(struct rpc_task *task)
|
||||||
{
|
{
|
||||||
rpc_set_active(task);
|
rpc_set_active(task);
|
||||||
rpc_set_running(task);
|
rpc_make_runnable(task);
|
||||||
__rpc_execute(task);
|
if (!RPC_IS_ASYNC(task))
|
||||||
|
__rpc_execute(task);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void rpc_async_schedule(struct work_struct *work)
|
static void rpc_async_schedule(struct work_struct *work)
|
||||||
|
|
Loading…
Reference in New Issue