pagevec.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * include/linux/pagevec.h
  3. *
  4. * In many places it is efficient to batch an operation up against multiple
  5. * pages. A pagevec is a multipage container which is used for that.
  6. */
  7. #ifndef _LINUX_PAGEVEC_H
  8. #define _LINUX_PAGEVEC_H
  9. /* 14 pointers + two long's align the pagevec structure to a power of two */
  10. #define PAGEVEC_SIZE 14
  11. struct page;
  12. struct address_space;
  13. struct pagevec {
  14. unsigned long nr;
  15. unsigned long cold;
  16. struct page *pages[PAGEVEC_SIZE];
  17. };
  18. void __pagevec_release(struct pagevec *pvec);
  19. void __pagevec_free(struct pagevec *pvec);
  20. void ____pagevec_lru_add(struct pagevec *pvec, enum lru_list lru);
  21. void pagevec_strip(struct pagevec *pvec);
  22. void pagevec_swap_free(struct pagevec *pvec);
  23. unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping,
  24. pgoff_t start, unsigned nr_pages);
  25. unsigned pagevec_lookup_tag(struct pagevec *pvec,
  26. struct address_space *mapping, pgoff_t *index, int tag,
  27. unsigned nr_pages);
  28. static inline void pagevec_init(struct pagevec *pvec, int cold)
  29. {
  30. pvec->nr = 0;
  31. pvec->cold = cold;
  32. }
  33. static inline void pagevec_reinit(struct pagevec *pvec)
  34. {
  35. pvec->nr = 0;
  36. }
  37. static inline unsigned pagevec_count(struct pagevec *pvec)
  38. {
  39. return pvec->nr;
  40. }
  41. static inline unsigned pagevec_space(struct pagevec *pvec)
  42. {
  43. return PAGEVEC_SIZE - pvec->nr;
  44. }
  45. /*
  46. * Add a page to a pagevec. Returns the number of slots still available.
  47. */
  48. static inline unsigned pagevec_add(struct pagevec *pvec, struct page *page)
  49. {
  50. pvec->pages[pvec->nr++] = page;
  51. return pagevec_space(pvec);
  52. }
  53. static inline void pagevec_release(struct pagevec *pvec)
  54. {
  55. if (pagevec_count(pvec))
  56. __pagevec_release(pvec);
  57. }
  58. static inline void pagevec_free(struct pagevec *pvec)
  59. {
  60. if (pagevec_count(pvec))
  61. __pagevec_free(pvec);
  62. }
  63. static inline void __pagevec_lru_add_anon(struct pagevec *pvec)
  64. {
  65. ____pagevec_lru_add(pvec, LRU_INACTIVE_ANON);
  66. }
  67. static inline void __pagevec_lru_add_active_anon(struct pagevec *pvec)
  68. {
  69. ____pagevec_lru_add(pvec, LRU_ACTIVE_ANON);
  70. }
  71. static inline void __pagevec_lru_add_file(struct pagevec *pvec)
  72. {
  73. ____pagevec_lru_add(pvec, LRU_INACTIVE_FILE);
  74. }
  75. static inline void __pagevec_lru_add_active_file(struct pagevec *pvec)
  76. {
  77. ____pagevec_lru_add(pvec, LRU_ACTIVE_FILE);
  78. }
  79. static inline void pagevec_lru_add_file(struct pagevec *pvec)
  80. {
  81. if (pagevec_count(pvec))
  82. __pagevec_lru_add_file(pvec);
  83. }
  84. static inline void pagevec_lru_add_anon(struct pagevec *pvec)
  85. {
  86. if (pagevec_count(pvec))
  87. __pagevec_lru_add_anon(pvec);
  88. }
  89. #endif /* _LINUX_PAGEVEC_H */