nfs_page.h 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * linux/include/linux/nfs_page.h
  4. *
  5. * Copyright (C) 2000 Trond Myklebust
  6. *
  7. * NFS page cache wrapper.
  8. */
  9. #ifndef _LINUX_NFS_PAGE_H
  10. #define _LINUX_NFS_PAGE_H
  11. #include <linux/list.h>
  12. #include <linux/pagemap.h>
  13. #include <linux/wait.h>
  14. #include <linux/sunrpc/auth.h>
  15. #include <linux/nfs_xdr.h>
  16. #include <linux/kref.h>
  17. /*
  18. * Valid flags for a dirty buffer
  19. */
  20. enum {
  21. PG_BUSY = 0, /* nfs_{un}lock_request */
  22. PG_MAPPED, /* page private set for buffered io */
  23. PG_CLEAN, /* write succeeded */
  24. PG_COMMIT_TO_DS, /* used by pnfs layouts */
  25. PG_INODE_REF, /* extra ref held by inode when in writeback */
  26. PG_HEADLOCK, /* page group lock of wb_head */
  27. PG_TEARDOWN, /* page group sync for destroy */
  28. PG_UNLOCKPAGE, /* page group sync bit in read path */
  29. PG_UPTODATE, /* page group sync bit in read path */
  30. PG_WB_END, /* page group sync bit in write path */
  31. PG_REMOVE, /* page group sync bit in write path */
  32. PG_CONTENDED1, /* Is someone waiting for a lock? */
  33. PG_CONTENDED2, /* Is someone waiting for a lock? */
  34. };
  35. struct nfs_inode;
  36. struct nfs_page {
  37. struct list_head wb_list; /* Defines state of page: */
  38. struct page *wb_page; /* page to read in/write out */
  39. struct nfs_open_context *wb_context; /* File state context info */
  40. struct nfs_lock_context *wb_lock_context; /* lock context info */
  41. pgoff_t wb_index; /* Offset >> PAGE_SHIFT */
  42. unsigned int wb_offset, /* Offset & ~PAGE_MASK */
  43. wb_pgbase, /* Start of page data */
  44. wb_bytes; /* Length of request */
  45. struct kref wb_kref; /* reference count */
  46. unsigned long wb_flags;
  47. struct nfs_write_verifier wb_verf; /* Commit cookie */
  48. struct nfs_page *wb_this_page; /* list of reqs for this page */
  49. struct nfs_page *wb_head; /* head pointer for req list */
  50. };
  51. struct nfs_pageio_descriptor;
  52. struct nfs_pageio_ops {
  53. void (*pg_init)(struct nfs_pageio_descriptor *, struct nfs_page *);
  54. size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *,
  55. struct nfs_page *);
  56. int (*pg_doio)(struct nfs_pageio_descriptor *);
  57. unsigned int (*pg_get_mirror_count)(struct nfs_pageio_descriptor *,
  58. struct nfs_page *);
  59. void (*pg_cleanup)(struct nfs_pageio_descriptor *);
  60. };
  61. struct nfs_rw_ops {
  62. struct nfs_pgio_header *(*rw_alloc_header)(void);
  63. void (*rw_free_header)(struct nfs_pgio_header *);
  64. int (*rw_done)(struct rpc_task *, struct nfs_pgio_header *,
  65. struct inode *);
  66. void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *);
  67. void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *,
  68. const struct nfs_rpc_ops *,
  69. struct rpc_task_setup *, int);
  70. };
  71. struct nfs_pgio_mirror {
  72. struct list_head pg_list;
  73. unsigned long pg_bytes_written;
  74. size_t pg_count;
  75. size_t pg_bsize;
  76. unsigned int pg_base;
  77. unsigned char pg_recoalesce : 1;
  78. };
  79. struct nfs_pageio_descriptor {
  80. unsigned char pg_moreio : 1;
  81. struct inode *pg_inode;
  82. const struct nfs_pageio_ops *pg_ops;
  83. const struct nfs_rw_ops *pg_rw_ops;
  84. int pg_ioflags;
  85. int pg_error;
  86. const struct rpc_call_ops *pg_rpc_callops;
  87. const struct nfs_pgio_completion_ops *pg_completion_ops;
  88. struct pnfs_layout_segment *pg_lseg;
  89. struct nfs_io_completion *pg_io_completion;
  90. struct nfs_direct_req *pg_dreq;
  91. unsigned int pg_bsize; /* default bsize for mirrors */
  92. u32 pg_mirror_count;
  93. struct nfs_pgio_mirror *pg_mirrors;
  94. struct nfs_pgio_mirror pg_mirrors_static[1];
  95. struct nfs_pgio_mirror *pg_mirrors_dynamic;
  96. u32 pg_mirror_idx; /* current mirror */
  97. };
  98. /* arbitrarily selected limit to number of mirrors */
  99. #define NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX 16
  100. #define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags))
  101. extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx,
  102. struct page *page,
  103. struct nfs_page *last,
  104. unsigned int offset,
  105. unsigned int count);
  106. extern void nfs_release_request(struct nfs_page *);
  107. extern void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
  108. struct inode *inode,
  109. const struct nfs_pageio_ops *pg_ops,
  110. const struct nfs_pgio_completion_ops *compl_ops,
  111. const struct nfs_rw_ops *rw_ops,
  112. size_t bsize,
  113. int how);
  114. extern int nfs_pageio_add_request(struct nfs_pageio_descriptor *,
  115. struct nfs_page *);
  116. extern int nfs_pageio_resend(struct nfs_pageio_descriptor *,
  117. struct nfs_pgio_header *);
  118. extern void nfs_pageio_complete(struct nfs_pageio_descriptor *desc);
  119. extern void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *, pgoff_t);
  120. extern size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
  121. struct nfs_page *prev,
  122. struct nfs_page *req);
  123. extern int nfs_wait_on_request(struct nfs_page *);
  124. extern void nfs_unlock_request(struct nfs_page *req);
  125. extern void nfs_unlock_and_release_request(struct nfs_page *);
  126. extern int nfs_page_group_lock(struct nfs_page *);
  127. extern void nfs_page_group_unlock(struct nfs_page *);
  128. extern bool nfs_page_group_sync_on_bit(struct nfs_page *, unsigned int);
  129. extern bool nfs_async_iocounter_wait(struct rpc_task *, struct nfs_lock_context *);
  130. /*
  131. * Lock the page of an asynchronous request
  132. */
  133. static inline int
  134. nfs_lock_request(struct nfs_page *req)
  135. {
  136. return !test_and_set_bit(PG_BUSY, &req->wb_flags);
  137. }
  138. /**
  139. * nfs_list_add_request - Insert a request into a list
  140. * @req: request
  141. * @head: head of list into which to insert the request.
  142. */
  143. static inline void
  144. nfs_list_add_request(struct nfs_page *req, struct list_head *head)
  145. {
  146. list_add_tail(&req->wb_list, head);
  147. }
  148. /**
  149. * nfs_list_move_request - Move a request to a new list
  150. * @req: request
  151. * @head: head of list into which to insert the request.
  152. */
  153. static inline void
  154. nfs_list_move_request(struct nfs_page *req, struct list_head *head)
  155. {
  156. list_move_tail(&req->wb_list, head);
  157. }
  158. /**
  159. * nfs_list_remove_request - Remove a request from its wb_list
  160. * @req: request
  161. */
  162. static inline void
  163. nfs_list_remove_request(struct nfs_page *req)
  164. {
  165. if (list_empty(&req->wb_list))
  166. return;
  167. list_del_init(&req->wb_list);
  168. }
  169. static inline struct nfs_page *
  170. nfs_list_entry(struct list_head *head)
  171. {
  172. return list_entry(head, struct nfs_page, wb_list);
  173. }
  174. static inline
  175. loff_t req_offset(struct nfs_page *req)
  176. {
  177. return (((loff_t)req->wb_index) << PAGE_SHIFT) + req->wb_offset;
  178. }
  179. #endif /* _LINUX_NFS_PAGE_H */