diff options
author | Kinglong Mee <kinglongmee@gmail.com> | 2015-07-01 12:00:13 +0800 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@primarydata.com> | 2015-07-01 11:31:25 -0400 |
commit | b4839ebe21fc5d543b933d83644981ea73e9ba36 (patch) | |
tree | 148a6e645cf96ac34ff6701c3c16058a5f01f53b /fs/nfs/write.c | |
parent | d356a7d1e75003063fd5f499366b1043a0f79f6c (diff) | |
download | linux-b4839ebe21fc5d543b933d83644981ea73e9ba36.tar.gz linux-b4839ebe21fc5d543b933d83644981ea73e9ba36.tar.xz |
nfs: Remove invalid tk_pid from debug message
Before rpc_run_task(), tk_pid is uninitiated as 0 always.
Signed-off-by: Kinglong Mee <kinglongmee@gmail.com>
Signed-off-by: Trond Myklebust <trond.myklebust@primarydata.com>
Diffstat (limited to 'fs/nfs/write.c')
-rw-r--r-- | fs/nfs/write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c index 84ba7268833d..359e9ad596c9 100644 --- a/fs/nfs/write.c +++ b/fs/nfs/write.c @@ -1551,7 +1551,7 @@ int nfs_initiate_commit(struct rpc_clnt *clnt, struct nfs_commit_data *data, /* Set up the initial task struct. */ nfs_ops->commit_setup(data, &msg); - dprintk("NFS: %5u initiated commit call\n", data->task.tk_pid); + dprintk("NFS: initiated commit call\n"); nfs4_state_protect(NFS_SERVER(data->inode)->nfs_client, NFS_SP4_MACH_CRED_COMMIT, &task_setup_data.rpc_client, &msg); |