Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 13429305 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Trond Myklebust
Browse files

sunrpc: Add missing kuids conversion for printing



m68k/allmodconfig:

net/sunrpc/auth_generic.c: In function ‘generic_key_timeout’:
net/sunrpc/auth_generic.c:241: warning: format ‘%d’ expects type ‘int’, but
argument 2 has type ‘kuid_t’

commit cdba321e ("sunrpc: Convert kuids and
kgids to uids and gids for printing") forgot to convert one instance.

Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 312cd958
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -239,7 +239,7 @@ generic_key_timeout(struct rpc_auth *auth, struct rpc_cred *cred)
		if (test_and_clear_bit(RPC_CRED_KEY_EXPIRE_SOON,
		if (test_and_clear_bit(RPC_CRED_KEY_EXPIRE_SOON,
					&acred->ac_flags))
					&acred->ac_flags))
			dprintk("RPC:        UID %d Credential key reset\n",
			dprintk("RPC:        UID %d Credential key reset\n",
				tcred->cr_uid);
				from_kuid(&init_user_ns, tcred->cr_uid));
		/* set up fasttrack for the normal case */
		/* set up fasttrack for the normal case */
		set_bit(RPC_CRED_NOTIFY_TIMEOUT, &acred->ac_flags);
		set_bit(RPC_CRED_NOTIFY_TIMEOUT, &acred->ac_flags);
	}
	}