pnfs.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * pNFS client data structures.
  3. *
  4. * Copyright (c) 2002
  5. * The Regents of the University of Michigan
  6. * All Rights Reserved
  7. *
  8. * Dean Hildebrand <dhildebz@umich.edu>
  9. *
  10. * Permission is granted to use, copy, create derivative works, and
  11. * redistribute this software and such derivative works for any purpose,
  12. * so long as the name of the University of Michigan is not used in
  13. * any advertising or publicity pertaining to the use or distribution
  14. * of this software without specific, written prior authorization. If
  15. * the above copyright notice or any other identification of the
  16. * University of Michigan is included in any copy of any portion of
  17. * this software, then the disclaimer below must also be included.
  18. *
  19. * This software is provided as is, without representation or warranty
  20. * of any kind either express or implied, including without limitation
  21. * the implied warranties of merchantability, fitness for a particular
  22. * purpose, or noninfringement. The Regents of the University of
  23. * Michigan shall not be liable for any damages, including special,
  24. * indirect, incidental, or consequential damages, with respect to any
  25. * claim arising out of or in connection with the use of the software,
  26. * even if it has been or is hereafter advised of the possibility of
  27. * such damages.
  28. */
  29. #ifndef FS_NFS_PNFS_H
  30. #define FS_NFS_PNFS_H
  31. #ifdef CONFIG_NFS_V4_1
  32. #define LAYOUT_NFSV4_1_MODULE_PREFIX "nfs-layouttype4"
  33. enum {
  34. NFS_LAYOUT_RO_FAILED = 0, /* get ro layout failed stop trying */
  35. NFS_LAYOUT_RW_FAILED, /* get rw layout failed stop trying */
  36. };
  37. /* Per-layout driver specific registration structure */
  38. struct pnfs_layoutdriver_type {
  39. struct list_head pnfs_tblid;
  40. const u32 id;
  41. const char *name;
  42. struct module *owner;
  43. int (*initialize_mountpoint) (struct nfs_server *);
  44. int (*uninitialize_mountpoint) (struct nfs_server *);
  45. };
  46. struct pnfs_layout_hdr {
  47. unsigned long refcount;
  48. unsigned long state;
  49. struct inode *inode;
  50. };
  51. extern int pnfs_register_layoutdriver(struct pnfs_layoutdriver_type *);
  52. extern void pnfs_unregister_layoutdriver(struct pnfs_layoutdriver_type *);
  53. struct pnfs_layout_segment *
  54. pnfs_update_layout(struct inode *ino, struct nfs_open_context *ctx,
  55. enum pnfs_iomode access_type);
  56. void set_pnfs_layoutdriver(struct nfs_server *, u32 id);
  57. void unset_pnfs_layoutdriver(struct nfs_server *);
  58. void pnfs_destroy_layout(struct nfs_inode *);
  59. static inline int lo_fail_bit(u32 iomode)
  60. {
  61. return iomode == IOMODE_RW ?
  62. NFS_LAYOUT_RW_FAILED : NFS_LAYOUT_RO_FAILED;
  63. }
  64. /* Return true if a layout driver is being used for this mountpoint */
  65. static inline int pnfs_enabled_sb(struct nfs_server *nfss)
  66. {
  67. return nfss->pnfs_curr_ld != NULL;
  68. }
  69. #else /* CONFIG_NFS_V4_1 */
  70. static inline void pnfs_destroy_layout(struct nfs_inode *nfsi)
  71. {
  72. }
  73. static inline struct pnfs_layout_segment *
  74. pnfs_update_layout(struct inode *ino, struct nfs_open_context *ctx,
  75. enum pnfs_iomode access_type)
  76. {
  77. return NULL;
  78. }
  79. static inline void set_pnfs_layoutdriver(struct nfs_server *s, u32 id)
  80. {
  81. }
  82. static inline void unset_pnfs_layoutdriver(struct nfs_server *s)
  83. {
  84. }
  85. #endif /* CONFIG_NFS_V4_1 */
  86. #endif /* FS_NFS_PNFS_H */