Commit 460f5cac authored by Olaf Kirch's avatar Olaf Kirch Committed by Linus Torvalds

[PATCH] knfsd: export nsm_local_state to user space via sysctl

Every NLM call includes the client's NSM state.  Currently, the Linux client
always reports 0 - which seems not to cause any problems, but is not what the
protocol says.

This patch exposes the kernel's internal variable to user space via a sysctl,
which can be set at system boot time by statd.
Signed-off-by: default avatarOlaf Kirch <okir@suse.de>
Signed-off-by: default avatarNeil Brown <neilb@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 39be4502
...@@ -24,7 +24,7 @@ static struct rpc_program nsm_program; ...@@ -24,7 +24,7 @@ static struct rpc_program nsm_program;
/* /*
* Local NSM state * Local NSM state
*/ */
u32 nsm_local_state; int nsm_local_state;
/* /*
* Common procedure for SM_MON/SM_UNMON calls * Common procedure for SM_MON/SM_UNMON calls
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include <linux/sunrpc/svcsock.h> #include <linux/sunrpc/svcsock.h>
#include <net/ip.h> #include <net/ip.h>
#include <linux/lockd/lockd.h> #include <linux/lockd/lockd.h>
#include <linux/lockd/sm_inter.h>
#include <linux/nfs.h> #include <linux/nfs.h>
#define NLMDBG_FACILITY NLMDBG_SVC #define NLMDBG_FACILITY NLMDBG_SVC
...@@ -404,6 +405,14 @@ static ctl_table nlm_sysctls[] = { ...@@ -404,6 +405,14 @@ static ctl_table nlm_sysctls[] = {
.mode = 0644, .mode = 0644,
.proc_handler = &proc_dointvec, .proc_handler = &proc_dointvec,
}, },
{
.ctl_name = CTL_UNNUMBERED,
.procname = "nsm_local_state",
.data = &nsm_local_state,
.maxlen = sizeof(int),
.mode = 0644,
.proc_handler = &proc_dointvec,
},
{ .ctl_name = 0 } { .ctl_name = 0 }
}; };
......
...@@ -42,6 +42,6 @@ struct nsm_res { ...@@ -42,6 +42,6 @@ struct nsm_res {
int nsm_monitor(struct nlm_host *); int nsm_monitor(struct nlm_host *);
int nsm_unmonitor(struct nlm_host *); int nsm_unmonitor(struct nlm_host *);
extern u32 nsm_local_state; extern int nsm_local_state;
#endif /* LINUX_LOCKD_SM_INTER_H */ #endif /* LINUX_LOCKD_SM_INTER_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment