diff options
Diffstat (limited to 'include/linux/pagevec.h')
-rw-r--r-- | include/linux/pagevec.h | 29 |
1 files changed, 23 insertions, 6 deletions
diff --git a/include/linux/pagevec.h b/include/linux/pagevec.h index fea3a982ee55..5fc96a4e760f 100644 --- a/include/linux/pagevec.h +++ b/include/linux/pagevec.h | |||
@@ -81,20 +81,37 @@ static inline void pagevec_free(struct pagevec *pvec) | |||
81 | __pagevec_free(pvec); | 81 | __pagevec_free(pvec); |
82 | } | 82 | } |
83 | 83 | ||
84 | static inline void __pagevec_lru_add(struct pagevec *pvec) | 84 | static inline void __pagevec_lru_add_anon(struct pagevec *pvec) |
85 | { | 85 | { |
86 | ____pagevec_lru_add(pvec, LRU_INACTIVE); | 86 | ____pagevec_lru_add(pvec, LRU_INACTIVE_ANON); |
87 | } | 87 | } |
88 | 88 | ||
89 | static inline void __pagevec_lru_add_active(struct pagevec *pvec) | 89 | static inline void __pagevec_lru_add_active_anon(struct pagevec *pvec) |
90 | { | 90 | { |
91 | ____pagevec_lru_add(pvec, LRU_ACTIVE); | 91 | ____pagevec_lru_add(pvec, LRU_ACTIVE_ANON); |
92 | } | 92 | } |
93 | 93 | ||
94 | static inline void pagevec_lru_add(struct pagevec *pvec) | 94 | static inline void __pagevec_lru_add_file(struct pagevec *pvec) |
95 | { | ||
96 | ____pagevec_lru_add(pvec, LRU_INACTIVE_FILE); | ||
97 | } | ||
98 | |||
99 | static inline void __pagevec_lru_add_active_file(struct pagevec *pvec) | ||
100 | { | ||
101 | ____pagevec_lru_add(pvec, LRU_ACTIVE_FILE); | ||
102 | } | ||
103 | |||
104 | |||
105 | static inline void pagevec_lru_add_file(struct pagevec *pvec) | ||
106 | { | ||
107 | if (pagevec_count(pvec)) | ||
108 | __pagevec_lru_add_file(pvec); | ||
109 | } | ||
110 | |||
111 | static inline void pagevec_lru_add_anon(struct pagevec *pvec) | ||
95 | { | 112 | { |
96 | if (pagevec_count(pvec)) | 113 | if (pagevec_count(pvec)) |
97 | __pagevec_lru_add(pvec); | 114 | __pagevec_lru_add_anon(pvec); |
98 | } | 115 | } |
99 | 116 | ||
100 | #endif /* _LINUX_PAGEVEC_H */ | 117 | #endif /* _LINUX_PAGEVEC_H */ |