filelayout.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /*
  2. * NFSv4 file layout driver 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_NFS4FILELAYOUT_H
  30. #define FS_NFS_NFS4FILELAYOUT_H
  31. #include "../pnfs.h"
  32. /*
  33. * Field testing shows we need to support up to 4096 stripe indices.
  34. * We store each index as a u8 (u32 on the wire) to keep the memory footprint
  35. * reasonable. This in turn means we support a maximum of 256
  36. * RFC 5661 multipath_list4 structures.
  37. */
  38. #define NFS4_PNFS_MAX_STRIPE_CNT 4096
  39. #define NFS4_PNFS_MAX_MULTI_CNT 256 /* 256 fit into a u8 stripe_index */
  40. enum stripetype4 {
  41. STRIPE_SPARSE = 1,
  42. STRIPE_DENSE = 2
  43. };
  44. struct nfs4_file_layout_dsaddr {
  45. struct nfs4_deviceid_node id_node;
  46. u32 stripe_count;
  47. u8 *stripe_indices;
  48. u32 ds_num;
  49. struct nfs4_pnfs_ds *ds_list[1];
  50. };
  51. struct nfs4_filelayout_segment {
  52. struct pnfs_layout_segment generic_hdr;
  53. u32 stripe_type;
  54. u32 commit_through_mds;
  55. u32 stripe_unit;
  56. u32 first_stripe_index;
  57. u64 pattern_offset;
  58. struct nfs4_file_layout_dsaddr *dsaddr; /* Point to GETDEVINFO data */
  59. unsigned int num_fh;
  60. struct nfs_fh **fh_array;
  61. };
  62. struct nfs4_filelayout {
  63. struct pnfs_layout_hdr generic_hdr;
  64. struct pnfs_ds_commit_info commit_info;
  65. };
  66. static inline struct nfs4_filelayout *
  67. FILELAYOUT_FROM_HDR(struct pnfs_layout_hdr *lo)
  68. {
  69. return container_of(lo, struct nfs4_filelayout, generic_hdr);
  70. }
  71. static inline struct nfs4_filelayout_segment *
  72. FILELAYOUT_LSEG(struct pnfs_layout_segment *lseg)
  73. {
  74. return container_of(lseg,
  75. struct nfs4_filelayout_segment,
  76. generic_hdr);
  77. }
  78. static inline struct nfs4_deviceid_node *
  79. FILELAYOUT_DEVID_NODE(struct pnfs_layout_segment *lseg)
  80. {
  81. return &FILELAYOUT_LSEG(lseg)->dsaddr->id_node;
  82. }
  83. static inline bool
  84. filelayout_test_devid_invalid(struct nfs4_deviceid_node *node)
  85. {
  86. return test_bit(NFS_DEVICEID_INVALID, &node->flags);
  87. }
  88. extern bool
  89. filelayout_test_devid_unavailable(struct nfs4_deviceid_node *node);
  90. extern struct nfs_fh *
  91. nfs4_fl_select_ds_fh(struct pnfs_layout_segment *lseg, u32 j);
  92. u32 nfs4_fl_calc_j_index(struct pnfs_layout_segment *lseg, loff_t offset);
  93. u32 nfs4_fl_calc_ds_index(struct pnfs_layout_segment *lseg, u32 j);
  94. struct nfs4_pnfs_ds *nfs4_fl_prepare_ds(struct pnfs_layout_segment *lseg,
  95. u32 ds_idx);
  96. extern struct nfs4_file_layout_dsaddr *
  97. nfs4_fl_alloc_deviceid_node(struct nfs_server *server,
  98. struct pnfs_device *pdev, gfp_t gfp_flags);
  99. extern void nfs4_fl_put_deviceid(struct nfs4_file_layout_dsaddr *dsaddr);
  100. extern void nfs4_fl_free_deviceid(struct nfs4_file_layout_dsaddr *dsaddr);
  101. #endif /* FS_NFS_NFS4FILELAYOUT_H */