diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2013-09-05 03:51:44 +0200 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2013-09-05 16:13:15 +0200 |
commit | 2f048db4680ae19da13df15d352ac02748781ecb (patch) | |
tree | 48a6c8d873fee159186f528438bdfeecd6b48d84 /include | |
parent | SUNRPC: Ensure rpc_task->tk_pid is available for tracepoints (diff) | |
download | linux-2f048db4680ae19da13df15d352ac02748781ecb.tar.xz linux-2f048db4680ae19da13df15d352ac02748781ecb.zip |
SUNRPC: Add an identifier for struct rpc_clnt
Add an identifier in order to aid debugging.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sunrpc/clnt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h index 76c0bf6ecd17..6740801aa71a 100644 --- a/include/linux/sunrpc/clnt.h +++ b/include/linux/sunrpc/clnt.h @@ -33,6 +33,7 @@ struct rpc_inode; */ struct rpc_clnt { atomic_t cl_count; /* Number of references */ + unsigned int cl_clid; /* client id */ struct list_head cl_clients; /* Global list of clients */ struct list_head cl_tasks; /* List of tasks */ spinlock_t cl_lock; /* spinlock */ |