SUNRPC: Don't spam syslog with "Pseudoflavor not found" messages
Just convert those messages to dprintk()s so that they can be used when debugging. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
parent
c5a2a15f81
commit
9b1d75b755
@ -867,8 +867,7 @@ gss_create(struct rpc_clnt *clnt, rpc_authflavor_t flavor)
|
|||||||
err = -EINVAL;
|
err = -EINVAL;
|
||||||
gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
|
gss_auth->mech = gss_mech_get_by_pseudoflavor(flavor);
|
||||||
if (!gss_auth->mech) {
|
if (!gss_auth->mech) {
|
||||||
printk(KERN_WARNING "%s: Pseudoflavor %d not found!\n",
|
dprintk("RPC: Pseudoflavor %d not found!\n", flavor);
|
||||||
__func__, flavor);
|
|
||||||
goto err_free;
|
goto err_free;
|
||||||
}
|
}
|
||||||
gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
|
gss_auth->service = gss_pseudoflavor_to_service(gss_auth->mech, flavor);
|
||||||
|
@ -360,7 +360,7 @@ static struct rpc_clnt * rpc_new_client(const struct rpc_create_args *args, stru
|
|||||||
|
|
||||||
auth = rpcauth_create(args->authflavor, clnt);
|
auth = rpcauth_create(args->authflavor, clnt);
|
||||||
if (IS_ERR(auth)) {
|
if (IS_ERR(auth)) {
|
||||||
printk(KERN_INFO "RPC: Couldn't create auth handle (flavor %u)\n",
|
dprintk("RPC: Couldn't create auth handle (flavor %u)\n",
|
||||||
args->authflavor);
|
args->authflavor);
|
||||||
err = PTR_ERR(auth);
|
err = PTR_ERR(auth);
|
||||||
goto out_no_auth;
|
goto out_no_auth;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user