nfs_page.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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/mm.h>
  12. #include <linux/wait.h>
  13. #include <linux/sunrpc/auth.h>
  14. #include <linux/nfs_xdr.h>
  15. /*
  16.  * Valid flags for a dirty buffer
  17.  */
  18. #define PG_BUSY 0
  19. struct nfs_page {
  20. struct list_head wb_hash, /* Inode */
  21. wb_lru, /* superblock lru list */
  22. wb_list, /* Defines state of page: */
  23. *wb_list_head; /*      read/write/commit */
  24. struct file *wb_file;
  25. struct inode *wb_inode;
  26. struct rpc_cred *wb_cred;
  27. struct page *wb_page; /* page to read in/write out */
  28. wait_queue_head_t wb_wait; /* wait queue */
  29. unsigned long wb_timeout; /* when to read/write/commit */
  30. unsigned int wb_offset, /* Offset of read/write */
  31. wb_bytes, /* Length of request */
  32. wb_count; /* reference count */
  33. unsigned long wb_flags;
  34. struct nfs_writeverf wb_verf; /* Commit cookie */
  35. };
  36. #define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags))
  37. extern struct nfs_page *nfs_create_request(struct file *, struct inode *,
  38.     struct page *,
  39.     unsigned int, unsigned int);
  40. extern void nfs_release_request(struct nfs_page *req);
  41. extern void nfs_list_add_request(struct nfs_page *, struct list_head *);
  42. extern int nfs_scan_lru(struct list_head *, struct list_head *, int);
  43. extern int nfs_scan_lru_timeout(struct list_head *, struct list_head *, int);
  44. extern int nfs_scan_list(struct list_head *, struct list_head *,
  45.   struct file *, unsigned long, unsigned int);
  46. extern int nfs_coalesce_requests(struct list_head *, struct list_head *,
  47.   unsigned int);
  48. extern  int nfs_wait_on_request(struct nfs_page *);
  49. extern spinlock_t nfs_wreq_lock;
  50. /*
  51.  * Lock the page of an asynchronous request without incrementing the wb_count
  52.  */
  53. static inline int
  54. nfs_lock_request_dontget(struct nfs_page *req)
  55. {
  56. if (test_and_set_bit(PG_BUSY, &req->wb_flags))
  57. return 0;
  58. return 1;
  59. }
  60. /*
  61.  * Lock the page of an asynchronous request
  62.  */
  63. static inline int
  64. nfs_lock_request(struct nfs_page *req)
  65. {
  66. if (test_and_set_bit(PG_BUSY, &req->wb_flags))
  67. return 0;
  68. req->wb_count++;
  69. return 1;
  70. }
  71. static inline void
  72. nfs_unlock_request(struct nfs_page *req)
  73. {
  74. if (!NFS_WBACK_BUSY(req)) {
  75. printk(KERN_ERR "NFS: Invalid unlock attemptedn");
  76. BUG();
  77. }
  78. smp_mb__before_clear_bit();
  79. clear_bit(PG_BUSY, &req->wb_flags);
  80. smp_mb__after_clear_bit();
  81. if (waitqueue_active(&req->wb_wait))
  82. wake_up_all(&req->wb_wait);
  83. nfs_release_request(req);
  84. }
  85. /**
  86.  * nfs_list_remove_request - Remove a request from its wb_list
  87.  * @req: request
  88.  */
  89. static inline void
  90. nfs_list_remove_request(struct nfs_page *req)
  91. {
  92. if (list_empty(&req->wb_list))
  93. return;
  94. if (!NFS_WBACK_BUSY(req)) {
  95. printk(KERN_ERR "NFS: unlocked request attempted removed from list!n");
  96. BUG();
  97. }
  98. list_del_init(&req->wb_list);
  99. req->wb_list_head = NULL;
  100. }
  101. static inline struct nfs_page *
  102. nfs_list_entry(struct list_head *head)
  103. {
  104. return list_entry(head, struct nfs_page, wb_list);
  105. }
  106. static inline struct nfs_page *
  107. nfs_inode_wb_entry(struct list_head *head)
  108. {
  109. return list_entry(head, struct nfs_page, wb_hash);
  110. }
  111. static inline void
  112. __nfs_add_lru(struct list_head *head, struct nfs_page *req)
  113. {
  114. list_add_tail(&req->wb_lru, head);
  115. }
  116. static inline void
  117. __nfs_del_lru(struct nfs_page *req)
  118. {
  119. if (list_empty(&req->wb_lru))
  120. return;
  121. list_del_init(&req->wb_lru);
  122. }
  123. static inline struct nfs_page *
  124. nfs_lru_entry(struct list_head *head)
  125. {
  126.         return list_entry(head, struct nfs_page, wb_lru);
  127. }
  128. #endif /* _LINUX_NFS_PAGE_H */