diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2009-04-29 19:09:19 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2009-05-01 17:31:44 -0400 |
commit | c237dc0303bcf6f4cc2e0efe4fe4e341c6f34dac (patch) | |
tree | d314fbccd51967a80f31f62e2467f0936fd096c0 /include/linux/nfsd/state.h | |
parent | e300a63ce4ccec073d254d883a3638d5dca1d771 (diff) |
nfsd4: rename callback struct to cb_conn
I want to use the name for a struct that actually does represent a
single callback.
(Actually, I've never been sure it helps to a separate struct for the
callback information. Some day maybe those fields could just be dumped
into struct nfs4_client. I don't know.)
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'include/linux/nfsd/state.h')
-rw-r--r-- | include/linux/nfsd/state.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/nfsd/state.h b/include/linux/nfsd/state.h index 8d882a3eb4b9..563c367a3013 100644 --- a/include/linux/nfsd/state.h +++ b/include/linux/nfsd/state.h | |||
@@ -88,7 +88,7 @@ struct nfs4_delegation { | |||
88 | #define dl_fh dl_recall.cbr_fh | 88 | #define dl_fh dl_recall.cbr_fh |
89 | 89 | ||
90 | /* client delegation callback info */ | 90 | /* client delegation callback info */ |
91 | struct nfs4_callback { | 91 | struct nfs4_cb_conn { |
92 | /* SETCLIENTID info */ | 92 | /* SETCLIENTID info */ |
93 | u32 cb_addr; | 93 | u32 cb_addr; |
94 | unsigned short cb_port; | 94 | unsigned short cb_port; |
@@ -186,7 +186,7 @@ struct nfs4_client { | |||
186 | struct svc_cred cl_cred; /* setclientid principal */ | 186 | struct svc_cred cl_cred; /* setclientid principal */ |
187 | clientid_t cl_clientid; /* generated by server */ | 187 | clientid_t cl_clientid; /* generated by server */ |
188 | nfs4_verifier cl_confirm; /* generated by server */ | 188 | nfs4_verifier cl_confirm; /* generated by server */ |
189 | struct nfs4_callback cl_callback; /* callback info */ | 189 | struct nfs4_cb_conn cl_cb_conn; /* callback info */ |
190 | atomic_t cl_count; /* ref count */ | 190 | atomic_t cl_count; /* ref count */ |
191 | u32 cl_firststate; /* recovery dir creation */ | 191 | u32 cl_firststate; /* recovery dir creation */ |
192 | 192 | ||