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

Commit c041b5ff authored by Chuck Lever's avatar Chuck Lever Committed by Trond Myklebust
Browse files

NLM: fix print format for tk_pid



The tk_pid field is an unsigned short.  The proper print format specifier for
that type is %5u, not %4d.

Signed-off-by: default avatarChuck Lever <chuck.lever@oracle.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent fbf76683
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -729,7 +729,7 @@ static void nlmclnt_cancel_callback(struct rpc_task *task, void *data)
		goto retry_cancel;
	}

	dprintk("lockd: cancel status %d (task %d)\n",
	dprintk("lockd: cancel status %u (task %u)\n",
			req->a_res.status, task->tk_pid);

	switch (req->a_res.status) {
+1 −1
Original line number Diff line number Diff line
@@ -234,7 +234,7 @@ nlm4svc_proc_granted(struct svc_rqst *rqstp, struct nlm_args *argp,
 */
static void nlm4svc_callback_exit(struct rpc_task *task, void *data)
{
	dprintk("lockd: %4d callback returned %d\n", task->tk_pid,
	dprintk("lockd: %5u callback returned %d\n", task->tk_pid,
			-task->tk_status);
}

+1 −1
Original line number Diff line number Diff line
@@ -263,7 +263,7 @@ nlmsvc_proc_granted(struct svc_rqst *rqstp, struct nlm_args *argp,
 */
static void nlmsvc_callback_exit(struct rpc_task *task, void *data)
{
	dprintk("lockd: %4d callback returned %d\n", task->tk_pid,
	dprintk("lockd: %5u callback returned %d\n", task->tk_pid,
			-task->tk_status);
}