Files
seta75D ff309bfe1c Init
2021-10-11 18:37:13 -03:00

32 lines
815 B
C

/* @(#)lockmgr.h 1.1 94/10/31 SMI */
/*
* Header file for Kernel<->Network Lock-Manager implementation
*/
/* NOTE: size of a lockhandle-id should track the size of an fhandle */
#define KLM_LHSIZE 32
/* the lockhandle uniquely describes any file in a domain */
typedef struct {
struct vnode *lh_vp; /* vnode of file */
char *lh_servername; /* file server machine name */
struct { /* fhandle (sort of) */
struct __lh_ufsid {
fsid_t __lh_fsid;
struct fid __lh_fid;
} __lh_ufs;
#define KLM_LHPAD (KLM_LHSIZE - sizeof (struct __lh_ufsid))
char __lh_pad[KLM_LHPAD];
} lh_id;
} lockhandle_t;
#define lh_fsid lh_id.__lh_ufs.__lh_fsid
#define lh_fid lh_id.__lh_ufs.__lh_fid
/* define 'well-known' information */
#define KLM_PROTO IPPROTO_UDP
/* define public routines */
int klm_lockctl();