SUNRPC: more verbose output for rpc auth weak error

This patch adds server ip address to be printed out when "server
requires stronger authentication" error occured.

Signed-off-by: Levent Serinol <lserinol@gmail.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
Levent Serinol
2006-03-20 13:44:11 -05:00
committed by Trond Myklebust
parent 24bd68f46b
commit 1356b8c28d

View File

@@ -1197,8 +1197,8 @@ call_verify(struct rpc_task *task)
task->tk_action = call_bind; task->tk_action = call_bind;
goto out_retry; goto out_retry;
case RPC_AUTH_TOOWEAK: case RPC_AUTH_TOOWEAK:
printk(KERN_NOTICE "call_verify: server requires stronger " printk(KERN_NOTICE "call_verify: server %s requires stronger "
"authentication.\n"); "authentication.\n", task->tk_client->cl_server);
break; break;
default: default:
printk(KERN_WARNING "call_verify: unknown auth error: %x\n", n); printk(KERN_WARNING "call_verify: unknown auth error: %x\n", n);