aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/lockd/bind.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/lockd/bind.h')
-rw-r--r--include/linux/lockd/bind.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/linux/lockd/bind.h b/include/linux/lockd/bind.h
new file mode 100644
index 000000000000..b054debef2e0
--- /dev/null
+++ b/include/linux/lockd/bind.h
@@ -0,0 +1,36 @@
1/*
2 * linux/include/linux/lockd/bind.h
3 *
4 * This is the part of lockd visible to nfsd and the nfs client.
5 *
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
7 */
8
9#ifndef LINUX_LOCKD_BIND_H
10#define LINUX_LOCKD_BIND_H
11
12#include <linux/lockd/nlm.h>
13
14/* Dummy declarations */
15struct svc_rqst;
16
17/*
18 * This is the set of functions for lockd->nfsd communication
19 */
20struct nlmsvc_binding {
21 u32 (*fopen)(struct svc_rqst *,
22 struct nfs_fh *,
23 struct file **);
24 void (*fclose)(struct file *);
25};
26
27extern struct nlmsvc_binding * nlmsvc_ops;
28
29/*
30 * Functions exported by the lockd module
31 */
32extern int nlmclnt_proc(struct inode *, int, struct file_lock *);
33extern int lockd_up(void);
34extern void lockd_down(void);
35
36#endif /* LINUX_LOCKD_BIND_H */