nfs_page.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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_CACHE_SHIFT */
  39. unsigned int wb_offset, /* Offset & ~PAGE_CACHE_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. };
  55. struct nfs_rw_ops {
  56. const fmode_t rw_mode;
  57. struct nfs_pgio_header *(*rw_alloc_header)(void);
  58. void (*rw_free_header)(struct nfs_pgio_header *);
  59. void (*rw_release)(struct nfs_pgio_header *);
  60. int (*rw_done)(struct rpc_task *, struct nfs_pgio_header *,
  61. struct inode *);
  62. void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *);
  63. void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *,
  64. struct rpc_task_setup *, int);
  65. };
  66. struct nfs_pageio_descriptor {
  67. struct list_head pg_list;
  68. unsigned long pg_bytes_written;
  69. size_t pg_count;
  70. size_t pg_bsize;
  71. unsigned int pg_base;
  72. unsigned char pg_moreio : 1,
  73. pg_recoalesce : 1;
  74. struct inode *pg_inode;
  75. const struct nfs_pageio_ops *pg_ops;
  76. const struct nfs_rw_ops *pg_rw_ops;
  77. int pg_ioflags;
  78. int pg_error;
  79. const struct rpc_call_ops *pg_rpc_callops;
  80. const struct nfs_pgio_completion_ops *pg_completion_ops;
  81. struct pnfs_layout_segment *pg_lseg;
  82. struct nfs_direct_req *pg_dreq;
  83. void *pg_layout_private;
  84. };
  85. #define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags))
  86. extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx,
  87. struct page *page,
  88. struct nfs_page *last,
  89. unsigned int offset,
  90. unsigned int count);
  91. extern void nfs_release_request(struct nfs_page *);
  92. extern void nfs_pageio_init(struct nfs_pageio_descriptor *desc,
  93. struct inode *inode,
  94. const struct nfs_pageio_ops *pg_ops,
  95. const struct nfs_pgio_completion_ops *compl_ops,
  96. const struct nfs_rw_ops *rw_ops,
  97. size_t bsize,
  98. int how);
  99. extern int nfs_pageio_add_request(struct nfs_pageio_descriptor *,
  100. struct nfs_page *);
  101. extern int nfs_pageio_resend(struct nfs_pageio_descriptor *,
  102. struct nfs_pgio_header *);
  103. extern void nfs_pageio_complete(struct nfs_pageio_descriptor *desc);
  104. extern void nfs_pageio_cond_complete(struct nfs_pageio_descriptor *, pgoff_t);
  105. extern size_t nfs_generic_pg_test(struct nfs_pageio_descriptor *desc,
  106. struct nfs_page *prev,
  107. struct nfs_page *req);
  108. extern int nfs_wait_on_request(struct nfs_page *);
  109. extern void nfs_unlock_request(struct nfs_page *req);
  110. extern void nfs_unlock_and_release_request(struct nfs_page *);
  111. extern int nfs_page_group_lock(struct nfs_page *, bool);
  112. extern void nfs_page_group_lock_wait(struct nfs_page *);
  113. extern void nfs_page_group_unlock(struct nfs_page *);
  114. extern bool nfs_page_group_sync_on_bit(struct nfs_page *, unsigned int);
  115. /*
  116. * Lock the page of an asynchronous request
  117. */
  118. static inline int
  119. nfs_lock_request(struct nfs_page *req)
  120. {
  121. return !test_and_set_bit(PG_BUSY, &req->wb_flags);
  122. }
  123. /**
  124. * nfs_list_add_request - Insert a request into a list
  125. * @req: request
  126. * @head: head of list into which to insert the request.
  127. */
  128. static inline void
  129. nfs_list_add_request(struct nfs_page *req, struct list_head *head)
  130. {
  131. list_add_tail(&req->wb_list, head);
  132. }
  133. /**
  134. * nfs_list_remove_request - Remove a request from its wb_list
  135. * @req: request
  136. */
  137. static inline void
  138. nfs_list_remove_request(struct nfs_page *req)
  139. {
  140. if (list_empty(&req->wb_list))
  141. return;
  142. list_del_init(&req->wb_list);
  143. }
  144. static inline struct nfs_page *
  145. nfs_list_entry(struct list_head *head)
  146. {
  147. return list_entry(head, struct nfs_page, wb_list);
  148. }
  149. static inline
  150. loff_t req_offset(struct nfs_page *req)
  151. {
  152. return (((loff_t)req->wb_index) << PAGE_CACHE_SHIFT) + req->wb_offset;
  153. }
  154. #endif /* _LINUX_NFS_PAGE_H */