]> nv-tegra.nvidia Code Review - linux-2.6.git/blob - include/linux/pagevec.h
swap: use an array for the LRU pagevecs
[linux-2.6.git] / include / linux / pagevec.h
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
8 #ifndef _LINUX_PAGEVEC_H
9 #define _LINUX_PAGEVEC_H
10
11 /* 14 pointers + two long's align the pagevec structure to a power of two */
12 #define PAGEVEC_SIZE    14
13
14 struct page;
15 struct address_space;
16
17 struct pagevec {
18         unsigned long nr;
19         unsigned long cold;
20         struct page *pages[PAGEVEC_SIZE];
21 };
22
23 void __pagevec_release(struct pagevec *pvec);
24 void __pagevec_release_nonlru(struct pagevec *pvec);
25 void __pagevec_free(struct pagevec *pvec);
26 void ____pagevec_lru_add(struct pagevec *pvec, enum lru_list lru);
27 void pagevec_strip(struct pagevec *pvec);
28 unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping,
29                 pgoff_t start, unsigned nr_pages);
30 unsigned pagevec_lookup_tag(struct pagevec *pvec,
31                 struct address_space *mapping, pgoff_t *index, int tag,
32                 unsigned nr_pages);
33
34 static inline void pagevec_init(struct pagevec *pvec, int cold)
35 {
36         pvec->nr = 0;
37         pvec->cold = cold;
38 }
39
40 static inline void pagevec_reinit(struct pagevec *pvec)
41 {
42         pvec->nr = 0;
43 }
44
45 static inline unsigned pagevec_count(struct pagevec *pvec)
46 {
47         return pvec->nr;
48 }
49
50 static inline unsigned pagevec_space(struct pagevec *pvec)
51 {
52         return PAGEVEC_SIZE - pvec->nr;
53 }
54
55 /*
56  * Add a page to a pagevec.  Returns the number of slots still available.
57  */
58 static inline unsigned pagevec_add(struct pagevec *pvec, struct page *page)
59 {
60         pvec->pages[pvec->nr++] = page;
61         return pagevec_space(pvec);
62 }
63
64
65 static inline void pagevec_release(struct pagevec *pvec)
66 {
67         if (pagevec_count(pvec))
68                 __pagevec_release(pvec);
69 }
70
71 static inline void pagevec_release_nonlru(struct pagevec *pvec)
72 {
73         if (pagevec_count(pvec))
74                 __pagevec_release_nonlru(pvec);
75 }
76
77 static inline void pagevec_free(struct pagevec *pvec)
78 {
79         if (pagevec_count(pvec))
80                 __pagevec_free(pvec);
81 }
82
83 static inline void __pagevec_lru_add(struct pagevec *pvec)
84 {
85         ____pagevec_lru_add(pvec, LRU_INACTIVE);
86 }
87
88 static inline void __pagevec_lru_add_active(struct pagevec *pvec)
89 {
90         ____pagevec_lru_add(pvec, LRU_ACTIVE);
91 }
92
93 static inline void pagevec_lru_add(struct pagevec *pvec)
94 {
95         if (pagevec_count(pvec))
96                 __pagevec_lru_add(pvec);
97 }
98
99 #endif /* _LINUX_PAGEVEC_H */