diff options
author | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-06-09 19:39:12 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-07-10 23:40:29 -0400 |
commit | 848f1fe6be2e290691bb6c13cbb8fd92bd0cfaab (patch) | |
tree | d653340b5e0c8c6ce393e67b11d8958fab4b05e4 /include/linux/sunrpc | |
parent | 34f52e3591f241b825353ba27def956d8487c400 (diff) |
SUNRPC: Kill rpc_clnt->cl_dead
Its use is at best racy, and there is only one user (lockd), which has
additional locking that makes the whole thing redundant.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/sunrpc')
-rw-r--r-- | include/linux/sunrpc/clnt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h index 003d8ea70c19..ab3ef6d629a7 100644 --- a/include/linux/sunrpc/clnt.h +++ b/include/linux/sunrpc/clnt.h | |||
@@ -45,8 +45,7 @@ struct rpc_clnt { | |||
45 | cl_intr : 1,/* interruptible */ | 45 | cl_intr : 1,/* interruptible */ |
46 | cl_discrtry : 1,/* disconnect before retry */ | 46 | cl_discrtry : 1,/* disconnect before retry */ |
47 | cl_autobind : 1,/* use getport() */ | 47 | cl_autobind : 1,/* use getport() */ |
48 | cl_oneshot : 1,/* dispose after use */ | 48 | cl_oneshot : 1;/* dispose after use */ |
49 | cl_dead : 1;/* abandoned */ | ||
50 | 49 | ||
51 | struct rpc_rtt * cl_rtt; /* RTO estimator data */ | 50 | struct rpc_rtt * cl_rtt; /* RTO estimator data */ |
52 | 51 | ||