diff options
author | Olaf Kirch <okir@suse.de> | 2006-10-04 05:15:51 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-10-04 10:55:16 -0400 |
commit | 977faf392fc898407554bbe7338d57b29e3660cf (patch) | |
tree | 9bd611c100e3e2d1aa336010124cda0155183bb8 /fs/lockd/clntproc.c | |
parent | 7b2b1fee30df7e2165525cd03f7d1d01a3a56794 (diff) |
[PATCH] knfsd: hide use of lockd's h_monitored flag
This patch moves all checks of the h_monitored flag into the
nsm_monitor/unmonitor functions. A subsequent patch will replace the
mechanism by which we mark a host as being monitored.
There is still one occurence of h_monitored outside of mon.c and that is in
clntlock.c where we respond to a reboot. The subsequent patch will modify
this too.
Signed-off-by: Olaf Kirch <okir@suse.de>
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/lockd/clntproc.c')
-rw-r--r-- | fs/lockd/clntproc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/lockd/clntproc.c b/fs/lockd/clntproc.c index 0116729cec5f..5436be623e30 100644 --- a/fs/lockd/clntproc.c +++ b/fs/lockd/clntproc.c | |||
@@ -499,7 +499,7 @@ nlmclnt_lock(struct nlm_rqst *req, struct file_lock *fl) | |||
499 | unsigned char fl_flags = fl->fl_flags; | 499 | unsigned char fl_flags = fl->fl_flags; |
500 | int status = -ENOLCK; | 500 | int status = -ENOLCK; |
501 | 501 | ||
502 | if (!host->h_monitored && nsm_monitor(host) < 0) { | 502 | if (nsm_monitor(host) < 0) { |
503 | printk(KERN_NOTICE "lockd: failed to monitor %s\n", | 503 | printk(KERN_NOTICE "lockd: failed to monitor %s\n", |
504 | host->h_name); | 504 | host->h_name); |
505 | goto out; | 505 | goto out; |