diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2008-12-04 14:21:38 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2009-01-06 11:53:52 -0500 |
commit | 356c3eb466fd1a12afd6448d90fba3922836e5f1 (patch) | |
tree | 1b30ed40ea9ee8c0e548f71d7e36bafd293ad764 /include | |
parent | c8c23c423dec49cb439697d3dc714e1500ff1610 (diff) |
NLM: Move the public declaration of nsm_unmonitor() to lockd.h
Clean up.
Make the nlm_host argument "const," and move the public declaration to
lockd.h. Add a documenting comment.
Bruce observed that nsm_unmonitor()'s only caller doesn't care about
its return code, so make nsm_unmonitor() return void.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/lockd/lockd.h | 1 | ||||
-rw-r--r-- | include/linux/lockd/sm_inter.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/lockd/lockd.h b/include/linux/lockd/lockd.h index 30a6a9c1ce42..38344bfb814a 100644 --- a/include/linux/lockd/lockd.h +++ b/include/linux/lockd/lockd.h | |||
@@ -245,6 +245,7 @@ extern void nlm_host_rebooted(const struct sockaddr_in *, const char *, | |||
245 | * Host monitoring | 245 | * Host monitoring |
246 | */ | 246 | */ |
247 | int nsm_monitor(const struct nlm_host *host); | 247 | int nsm_monitor(const struct nlm_host *host); |
248 | void nsm_unmonitor(const struct nlm_host *host); | ||
248 | 249 | ||
249 | /* | 250 | /* |
250 | * This is used in garbage collection and resource reclaim | 251 | * This is used in garbage collection and resource reclaim |
diff --git a/include/linux/lockd/sm_inter.h b/include/linux/lockd/sm_inter.h index 546b6102b0d7..896a5e303323 100644 --- a/include/linux/lockd/sm_inter.h +++ b/include/linux/lockd/sm_inter.h | |||
@@ -41,7 +41,6 @@ struct nsm_res { | |||
41 | u32 state; | 41 | u32 state; |
42 | }; | 42 | }; |
43 | 43 | ||
44 | int nsm_unmonitor(struct nlm_host *); | ||
45 | extern int nsm_local_state; | 44 | extern int nsm_local_state; |
46 | 45 | ||
47 | #endif /* LINUX_LOCKD_SM_INTER_H */ | 46 | #endif /* LINUX_LOCKD_SM_INTER_H */ |