knfsd: exportfs: add exportfs.h header
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / cifs / export.c
blob96df1d51fdc367f509a332fc6dae4629c42cde93
1 /*
2 * fs/cifs/export.c
4 * Copyright (C) International Business Machines Corp., 2007
5 * Author(s): Steve French (sfrench@us.ibm.com)
7 * Common Internet FileSystem (CIFS) client
8 *
9 * Operations related to support for exporting files via NFSD
11 * This library is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published
13 * by the Free Software Foundation; either version 2.1 of the License, or
14 * (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
19 * the GNU Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public License
22 * along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 /*
27 * See Documentation/filesystems/Exporting
28 * and examples in fs/exportfs
31 #include <linux/fs.h>
32 #include <linux/exportfs.h>
34 #ifdef CONFIG_CIFS_EXPERIMENTAL
36 static struct dentry *cifs_get_parent(struct dentry *dentry)
38 /* BB need to add code here eventually to enable export via NFSD */
39 return ERR_PTR(-EACCES);
42 struct export_operations cifs_export_ops = {
43 .get_parent = cifs_get_parent,
44 /* Following five export operations are unneeded so far and can default */
45 /* .get_dentry =
46 .get_name =
47 .find_exported_dentry =
48 .decode_fh =
49 .encode_fs = */
52 #endif /* EXPERIMENTAL */