export.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * fs/cifs/export.c
  3. *
  4. * Copyright (C) International Business Machines Corp., 2007
  5. * Author(s): Steve French (sfrench@us.ibm.com)
  6. *
  7. * Common Internet FileSystem (CIFS) client
  8. *
  9. * Operations related to support for exporting files via NFSD
  10. *
  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.
  15. *
  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.
  20. *
  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
  24. */
  25. /*
  26. * See Documentation/filesystems/Exporting
  27. * and examples in fs/exportfs
  28. *
  29. * Since cifs is a network file system, an "fsid" must be included for
  30. * any nfs exports file entries which refer to cifs paths. In addition
  31. * the cifs mount must be mounted with the "serverino" option (ie use stable
  32. * server inode numbers instead of locally generated temporary ones).
  33. * Although cifs inodes do not use generation numbers (have generation number
  34. * of zero) - the inode number alone should be good enough for simple cases
  35. * in which users want to export cifs shares with NFS. The decode and encode
  36. * could be improved by using a new routine which expects 64 bit inode numbers
  37. * instead of the default 32 bit routines in fs/exportfs
  38. *
  39. */
  40. #include <linux/fs.h>
  41. #include <linux/exportfs.h>
  42. #include "cifsglob.h"
  43. #include "cifs_debug.h"
  44. #ifdef CONFIG_CIFS_EXPERIMENTAL
  45. static struct dentry *cifs_get_parent(struct dentry *dentry)
  46. {
  47. /* BB need to add code here eventually to enable export via NFSD */
  48. cFYI(1, ("get parent for %p", dentry));
  49. return ERR_PTR(-EACCES);
  50. }
  51. struct export_operations cifs_export_ops = {
  52. .get_parent = cifs_get_parent,
  53. /* Following five export operations are unneeded so far and can default:
  54. .get_dentry =
  55. .get_name =
  56. .find_exported_dentry =
  57. .decode_fh =
  58. .encode_fs = */
  59. };
  60. #endif /* EXPERIMENTAL */