iomap.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. #ifndef LINUX_IOMAP_H
  2. #define LINUX_IOMAP_H 1
  3. #include <linux/types.h>
  4. struct fiemap_extent_info;
  5. struct inode;
  6. struct iov_iter;
  7. struct kiocb;
  8. struct vm_area_struct;
  9. struct vm_fault;
  10. /*
  11. * Types of block ranges for iomap mappings:
  12. */
  13. #define IOMAP_HOLE 0x01 /* no blocks allocated, need allocation */
  14. #define IOMAP_DELALLOC 0x02 /* delayed allocation blocks */
  15. #define IOMAP_MAPPED 0x03 /* blocks allocated @blkno */
  16. #define IOMAP_UNWRITTEN 0x04 /* blocks allocated @blkno in unwritten state */
  17. /*
  18. * Flags for all iomap mappings:
  19. */
  20. #define IOMAP_F_NEW 0x01 /* blocks have been newly allocated */
  21. /*
  22. * Flags that only need to be reported for IOMAP_REPORT requests:
  23. */
  24. #define IOMAP_F_MERGED 0x10 /* contains multiple blocks/extents */
  25. #define IOMAP_F_SHARED 0x20 /* block shared with another file */
  26. /*
  27. * Magic value for blkno:
  28. */
  29. #define IOMAP_NULL_BLOCK -1LL /* blkno is not valid */
  30. struct iomap {
  31. sector_t blkno; /* 1st sector of mapping, 512b units */
  32. loff_t offset; /* file offset of mapping, bytes */
  33. u64 length; /* length of mapping, bytes */
  34. u16 type; /* type of mapping */
  35. u16 flags; /* flags for mapping */
  36. struct block_device *bdev; /* block device for I/O */
  37. };
  38. /*
  39. * Flags for iomap_begin / iomap_end. No flag implies a read.
  40. */
  41. #define IOMAP_WRITE (1 << 0) /* writing, must allocate blocks */
  42. #define IOMAP_ZERO (1 << 1) /* zeroing operation, may skip holes */
  43. #define IOMAP_REPORT (1 << 2) /* report extent status, e.g. FIEMAP */
  44. struct iomap_ops {
  45. /*
  46. * Return the existing mapping at pos, or reserve space starting at
  47. * pos for up to length, as long as we can do it as a single mapping.
  48. * The actual length is returned in iomap->length.
  49. */
  50. int (*iomap_begin)(struct inode *inode, loff_t pos, loff_t length,
  51. unsigned flags, struct iomap *iomap);
  52. /*
  53. * Commit and/or unreserve space previous allocated using iomap_begin.
  54. * Written indicates the length of the successful write operation which
  55. * needs to be commited, while the rest needs to be unreserved.
  56. * Written might be zero if no data was written.
  57. */
  58. int (*iomap_end)(struct inode *inode, loff_t pos, loff_t length,
  59. ssize_t written, unsigned flags, struct iomap *iomap);
  60. };
  61. ssize_t iomap_file_buffered_write(struct kiocb *iocb, struct iov_iter *from,
  62. struct iomap_ops *ops);
  63. int iomap_file_dirty(struct inode *inode, loff_t pos, loff_t len,
  64. struct iomap_ops *ops);
  65. int iomap_zero_range(struct inode *inode, loff_t pos, loff_t len,
  66. bool *did_zero, struct iomap_ops *ops);
  67. int iomap_truncate_page(struct inode *inode, loff_t pos, bool *did_zero,
  68. struct iomap_ops *ops);
  69. int iomap_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf,
  70. struct iomap_ops *ops);
  71. int iomap_fiemap(struct inode *inode, struct fiemap_extent_info *fieinfo,
  72. loff_t start, loff_t len, struct iomap_ops *ops);
  73. #endif /* LINUX_IOMAP_H */