Clean up: Move the RPC program and procedure numbers for NSM into the one source file that needs them: fs/lockd/mon.c. And, as with NLM, NFS, and rpcbind calls, use NSMPROC_FOO instead of SM_FOO for NSM procedure numbers. Finally, make a couple of comments more precise: what is referred to here as SM_NOTIFY is really the NLM (lockd) NLMPROC_SM_NOTIFY downcall, not NSMPROC_NOTIFY. Signed-off-by: Chuck Lever <chuck.lever@oracle.com> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
17 lines
332 B
C
17 lines
332 B
C
/*
|
|
* linux/include/linux/lockd/sm_inter.h
|
|
*
|
|
* Declarations for the kernel statd client.
|
|
*
|
|
* Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
|
|
*/
|
|
|
|
#ifndef LINUX_LOCKD_SM_INTER_H
|
|
#define LINUX_LOCKD_SM_INTER_H
|
|
|
|
#define SM_MAXSTRLEN 1024
|
|
#define SM_PRIV_SIZE 16
|
|
|
|
extern int nsm_local_state;
|
|
|
|
#endif /* LINUX_LOCKD_SM_INTER_H */
|