ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[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 #define PAGEVEC_SIZE    16
9
10 struct page;
11 struct address_space;
12
13 struct pagevec {
14         unsigned nr;
15         int cold;
16         struct page *pages[PAGEVEC_SIZE];
17 };
18
19 void __pagevec_release(struct pagevec *pvec);
20 void __pagevec_release_nonlru(struct pagevec *pvec);
21 void __pagevec_free(struct pagevec *pvec);
22 void __pagevec_lru_add(struct pagevec *pvec);
23 void __pagevec_lru_add_active(struct pagevec *pvec);
24 void pagevec_strip(struct pagevec *pvec);
25 unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping,
26                 pgoff_t start, unsigned nr_pages);
27 unsigned pagevec_lookup_tag(struct pagevec *pvec,
28                 struct address_space *mapping, pgoff_t *index, int tag,
29                 unsigned nr_pages);
30
31 static inline void pagevec_init(struct pagevec *pvec, int cold)
32 {
33         pvec->nr = 0;
34         pvec->cold = cold;
35 }
36
37 static inline void pagevec_reinit(struct pagevec *pvec)
38 {
39         pvec->nr = 0;
40 }
41
42 static inline unsigned pagevec_count(struct pagevec *pvec)
43 {
44         return pvec->nr;
45 }
46
47 static inline unsigned pagevec_space(struct pagevec *pvec)
48 {
49         return PAGEVEC_SIZE - pvec->nr;
50 }
51
52 /*
53  * Add a page to a pagevec.  Returns the number of slots still available.
54  */
55 static inline unsigned pagevec_add(struct pagevec *pvec, struct page *page)
56 {
57         pvec->pages[pvec->nr++] = page;
58         return pagevec_space(pvec);
59 }
60
61
62 static inline void pagevec_release(struct pagevec *pvec)
63 {
64         if (pagevec_count(pvec))
65                 __pagevec_release(pvec);
66 }
67
68 static inline void pagevec_release_nonlru(struct pagevec *pvec)
69 {
70         if (pagevec_count(pvec))
71                 __pagevec_release_nonlru(pvec);
72 }
73
74 static inline void pagevec_free(struct pagevec *pvec)
75 {
76         if (pagevec_count(pvec))
77                 __pagevec_free(pvec);
78 }
79
80 static inline void pagevec_lru_add(struct pagevec *pvec)
81 {
82         if (pagevec_count(pvec))
83                 __pagevec_lru_add(pvec);
84 }