Commit 88014c98 authored by David S. Miller's avatar David S. Miller

[SUNRPC]: Printf pointers correctly.

parent 8984c25c
......@@ -972,10 +972,10 @@ call_verify(struct rpc_task *task)
task->tk_client->cl_server);
goto out_eio;
case RPC_PROC_UNAVAIL:
printk(KERN_WARNING "RPC: %4d call_verify: proc %u unsupported by program %u, version %u on server %s\n",
task->tk_pid, (unsigned int)task->tk_msg.rpc_proc,
(unsigned int)task->tk_client->cl_prog,
(unsigned int)task->tk_client->cl_vers,
printk(KERN_WARNING "RPC: %4d call_verify: proc %p unsupported by program %u, version %u on server %s\n",
task->tk_pid, task->tk_msg.rpc_proc,
task->tk_client->cl_prog,
task->tk_client->cl_vers,
task->tk_client->cl_server);
goto out_eio;
case RPC_GARBAGE_ARGS:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment