aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/lockd
diff options
context:
space:
mode:
authorTrond Myklebust <Trond.Myklebust@netapp.com>2006-03-20 13:44:44 -0500
committerTrond Myklebust <Trond.Myklebust@netapp.com>2006-03-20 13:44:44 -0500
commit3a649b884637c4fdff50a6beebc3dc0e6082e048 (patch)
tree042455741f079fdbd4d33cd7da61c1c9e68db477 /include/linux/lockd
parentd72b7a6b26b9009b7a05117fe2e04b3a73ae4a5c (diff)
NLM: Simplify client locks
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'include/linux/lockd')
-rw-r--r--include/linux/lockd/lockd.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/include/linux/lockd/lockd.h b/include/linux/lockd/lockd.h
index b0f63b6ab0d4..cb9933d04091 100644
--- a/include/linux/lockd/lockd.h
+++ b/include/linux/lockd/lockd.h
@@ -86,7 +86,6 @@ struct nlm_rqst {
86 struct nlm_host * a_host; /* host handle */ 86 struct nlm_host * a_host; /* host handle */
87 struct nlm_args a_args; /* arguments */ 87 struct nlm_args a_args; /* arguments */
88 struct nlm_res a_res; /* result */ 88 struct nlm_res a_res; /* result */
89 struct nlm_wait * a_block;
90 unsigned int a_retries; /* Retry count */ 89 unsigned int a_retries; /* Retry count */
91 char a_owner[NLMCLNT_OHSIZE]; 90 char a_owner[NLMCLNT_OHSIZE];
92}; 91};
@@ -149,9 +148,9 @@ extern unsigned long nlmsvc_timeout;
149 * Lockd client functions 148 * Lockd client functions
150 */ 149 */
151struct nlm_rqst * nlmclnt_alloc_call(void); 150struct nlm_rqst * nlmclnt_alloc_call(void);
152int nlmclnt_prepare_block(struct nlm_rqst *req, struct nlm_host *host, struct file_lock *fl); 151struct nlm_wait * nlmclnt_prepare_block(struct nlm_host *host, struct file_lock *fl);
153void nlmclnt_finish_block(struct nlm_rqst *req); 152void nlmclnt_finish_block(struct nlm_wait *block);
154long nlmclnt_block(struct nlm_rqst *req, long timeout); 153int nlmclnt_block(struct nlm_wait *block, struct nlm_rqst *req, long timeout);
155u32 nlmclnt_grant(const struct sockaddr_in *addr, const struct nlm_lock *); 154u32 nlmclnt_grant(const struct sockaddr_in *addr, const struct nlm_lock *);
156void nlmclnt_recovery(struct nlm_host *, u32); 155void nlmclnt_recovery(struct nlm_host *, u32);
157int nlmclnt_reclaim(struct nlm_host *, struct file_lock *); 156int nlmclnt_reclaim(struct nlm_host *, struct file_lock *);