nfs_page.h 5.7 KB

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