ALSA: HDA: Fix internal microphone on Dell Studio 16 XPS 1645
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / nfsd / lockd.c
blobcc2f505999ac305a28640764a743df1c35e66c77
1 /*
2 * linux/fs/nfsd/lockd.c
4 * This file contains all the stubs needed when communicating with lockd.
5 * This level of indirection is necessary so we can run nfsd+lockd without
6 * requiring the nfs client to be compiled in/loaded, and vice versa.
8 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
9 */
11 #include <linux/types.h>
12 #include <linux/fs.h>
13 #include <linux/file.h>
14 #include <linux/mount.h>
15 #include <linux/sunrpc/clnt.h>
16 #include <linux/sunrpc/svc.h>
17 #include <linux/nfsd/nfsd.h>
18 #include <linux/lockd/bind.h>
20 #define NFSDDBG_FACILITY NFSDDBG_LOCKD
22 #ifdef CONFIG_LOCKD_V4
23 #define nlm_stale_fh nlm4_stale_fh
24 #define nlm_failed nlm4_failed
25 #else
26 #define nlm_stale_fh nlm_lck_denied_nolocks
27 #define nlm_failed nlm_lck_denied_nolocks
28 #endif
30 * Note: we hold the dentry use count while the file is open.
32 static __be32
33 nlm_fopen(struct svc_rqst *rqstp, struct nfs_fh *f, struct file **filp)
35 __be32 nfserr;
36 struct svc_fh fh;
38 /* must initialize before using! but maxsize doesn't matter */
39 fh_init(&fh,0);
40 fh.fh_handle.fh_size = f->size;
41 memcpy((char*)&fh.fh_handle.fh_base, f->data, f->size);
42 fh.fh_export = NULL;
44 exp_readlock();
45 nfserr = nfsd_open(rqstp, &fh, S_IFREG, NFSD_MAY_LOCK, filp);
46 fh_put(&fh);
47 exp_readunlock();
48 /* We return nlm error codes as nlm doesn't know
49 * about nfsd, but nfsd does know about nlm..
51 switch (nfserr) {
52 case nfs_ok:
53 return 0;
54 case nfserr_dropit:
55 return nlm_drop_reply;
56 case nfserr_stale:
57 return nlm_stale_fh;
58 default:
59 return nlm_failed;
63 static void
64 nlm_fclose(struct file *filp)
66 fput(filp);
69 static struct nlmsvc_binding nfsd_nlm_ops = {
70 .fopen = nlm_fopen, /* open file for locking */
71 .fclose = nlm_fclose, /* close file */
74 void
75 nfsd_lockd_init(void)
77 dprintk("nfsd: initializing lockd\n");
78 nlmsvc_ops = &nfsd_nlm_ops;
81 void
82 nfsd_lockd_shutdown(void)
84 nlmsvc_ops = NULL;