You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
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: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
This commit is contained in:
committed by
Trond Myklebust
parent
fbf76683ff
commit
c041b5ff8d
+1
-1
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user