diff options
Diffstat (limited to 'include/linux/pagevec.h')
-rw-r--r-- | include/linux/pagevec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/pagevec.h b/include/linux/pagevec.h index 5fb6580f7f23..6dc456ac6136 100644 --- a/include/linux/pagevec.h +++ b/include/linux/pagevec.h | |||
@@ -9,14 +9,14 @@ | |||
9 | #ifndef _LINUX_PAGEVEC_H | 9 | #ifndef _LINUX_PAGEVEC_H |
10 | #define _LINUX_PAGEVEC_H | 10 | #define _LINUX_PAGEVEC_H |
11 | 11 | ||
12 | /* 14 pointers + two long's align the pagevec structure to a power of two */ | 12 | /* 15 pointers + header align the pagevec structure to a power of two */ |
13 | #define PAGEVEC_SIZE 14 | 13 | #define PAGEVEC_SIZE 15 |
14 | 14 | ||
15 | struct page; | 15 | struct page; |
16 | struct address_space; | 16 | struct address_space; |
17 | 17 | ||
18 | struct pagevec { | 18 | struct pagevec { |
19 | unsigned long nr; | 19 | unsigned char nr; |
20 | bool percpu_pvec_drained; | 20 | bool percpu_pvec_drained; |
21 | struct page *pages[PAGEVEC_SIZE]; | 21 | struct page *pages[PAGEVEC_SIZE]; |
22 | }; | 22 | }; |