blocklayout.h 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * linux/fs/nfs/blocklayout/blocklayout.h
  3. *
  4. * Module for the NFSv4.1 pNFS block layout driver.
  5. *
  6. * Copyright (c) 2006 The Regents of the University of Michigan.
  7. * All rights reserved.
  8. *
  9. * Andy Adamson <andros@citi.umich.edu>
  10. * Fred Isaman <iisaman@umich.edu>
  11. *
  12. * permission is granted to use, copy, create derivative works and
  13. * redistribute this software and such derivative works for any purpose,
  14. * so long as the name of the university of michigan is not used in
  15. * any advertising or publicity pertaining to the use or distribution
  16. * of this software without specific, written prior authorization. if
  17. * the above copyright notice or any other identification of the
  18. * university of michigan is included in any copy of any portion of
  19. * this software, then the disclaimer below must also be included.
  20. *
  21. * this software is provided as is, without representation from the
  22. * university of michigan as to its fitness for any purpose, and without
  23. * warranty by the university of michigan of any kind, either express
  24. * or implied, including without limitation the implied warranties of
  25. * merchantability and fitness for a particular purpose. the regents
  26. * of the university of michigan shall not be liable for any damages,
  27. * including special, indirect, incidental, or consequential damages,
  28. * with respect to any claim arising out or in connection with the use
  29. * of the software, even if it has been or is hereafter advised of the
  30. * possibility of such damages.
  31. */
  32. #ifndef FS_NFS_NFS4BLOCKLAYOUT_H
  33. #define FS_NFS_NFS4BLOCKLAYOUT_H
  34. #include <linux/device-mapper.h>
  35. #include <linux/nfs_fs.h>
  36. #include "../pnfs.h"
  37. enum exstate4 {
  38. PNFS_BLOCK_READWRITE_DATA = 0,
  39. PNFS_BLOCK_READ_DATA = 1,
  40. PNFS_BLOCK_INVALID_DATA = 2, /* mapped, but data is invalid */
  41. PNFS_BLOCK_NONE_DATA = 3 /* unmapped, it's a hole */
  42. };
  43. struct pnfs_inval_markings {
  44. /* STUB */
  45. };
  46. /* sector_t fields are all in 512-byte sectors */
  47. struct pnfs_block_extent {
  48. struct kref be_refcnt;
  49. struct list_head be_node; /* link into lseg list */
  50. struct nfs4_deviceid be_devid; /* FIXME: could use device cache instead */
  51. struct block_device *be_mdev;
  52. sector_t be_f_offset; /* the starting offset in the file */
  53. sector_t be_length; /* the size of the extent */
  54. sector_t be_v_offset; /* the starting offset in the volume */
  55. enum exstate4 be_state; /* the state of this extent */
  56. struct pnfs_inval_markings *be_inval; /* tracks INVAL->RW transition */
  57. };
  58. static inline void
  59. BL_INIT_INVAL_MARKS(struct pnfs_inval_markings *marks, sector_t blocksize)
  60. {
  61. /* STUB */
  62. }
  63. enum extentclass4 {
  64. RW_EXTENT = 0, /* READWRTE and INVAL */
  65. RO_EXTENT = 1, /* READ and NONE */
  66. EXTENT_LISTS = 2,
  67. };
  68. struct pnfs_block_layout {
  69. struct pnfs_layout_hdr bl_layout;
  70. struct pnfs_inval_markings bl_inval; /* tracks INVAL->RW transition */
  71. spinlock_t bl_ext_lock; /* Protects list manipulation */
  72. struct list_head bl_extents[EXTENT_LISTS]; /* R and RW extents */
  73. struct list_head bl_commit; /* Needs layout commit */
  74. struct list_head bl_committing; /* Layout committing */
  75. unsigned int bl_count; /* entries in bl_commit */
  76. sector_t bl_blocksize; /* Server blocksize in sectors */
  77. };
  78. static inline struct pnfs_block_layout *BLK_LO2EXT(struct pnfs_layout_hdr *lo)
  79. {
  80. return container_of(lo, struct pnfs_block_layout, bl_layout);
  81. }
  82. #endif /* FS_NFS_NFS4BLOCKLAYOUT_H */