diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/swap.h | 5 | ||||
-rw-r--r-- | include/linux/vmstat.h | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/linux/swap.h b/include/linux/swap.h index 5423559a44a6..817e1b47007f 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
@@ -170,11 +170,14 @@ extern void swapin_readahead(swp_entry_t, unsigned long, struct vm_area_struct * | |||
170 | extern unsigned long totalram_pages; | 170 | extern unsigned long totalram_pages; |
171 | extern unsigned long totalreserve_pages; | 171 | extern unsigned long totalreserve_pages; |
172 | extern long nr_swap_pages; | 172 | extern long nr_swap_pages; |
173 | extern unsigned int nr_free_pages(void); | ||
174 | extern unsigned int nr_free_pages_pgdat(pg_data_t *pgdat); | 173 | extern unsigned int nr_free_pages_pgdat(pg_data_t *pgdat); |
175 | extern unsigned int nr_free_buffer_pages(void); | 174 | extern unsigned int nr_free_buffer_pages(void); |
176 | extern unsigned int nr_free_pagecache_pages(void); | 175 | extern unsigned int nr_free_pagecache_pages(void); |
177 | 176 | ||
177 | /* Definition of global_page_state not available yet */ | ||
178 | #define nr_free_pages() global_page_state(NR_FREE_PAGES) | ||
179 | |||
180 | |||
178 | /* linux/mm/swap.c */ | 181 | /* linux/mm/swap.c */ |
179 | extern void FASTCALL(lru_cache_add(struct page *)); | 182 | extern void FASTCALL(lru_cache_add(struct page *)); |
180 | extern void FASTCALL(lru_cache_add_active(struct page *)); | 183 | extern void FASTCALL(lru_cache_add_active(struct page *)); |
diff --git a/include/linux/vmstat.h b/include/linux/vmstat.h index c8d55bcc09b9..77caf911969c 100644 --- a/include/linux/vmstat.h +++ b/include/linux/vmstat.h | |||
@@ -3,6 +3,7 @@ | |||
3 | 3 | ||
4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
5 | #include <linux/percpu.h> | 5 | #include <linux/percpu.h> |
6 | #include <linux/mm.h> | ||
6 | #include <linux/mmzone.h> | 7 | #include <linux/mmzone.h> |
7 | #include <asm/atomic.h> | 8 | #include <asm/atomic.h> |
8 | 9 | ||