summaryrefslogtreecommitdiff
path: root/include/linux/pagevec.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/pagevec.h')
-rw-r--r--include/linux/pagevec.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/pagevec.h b/include/linux/pagevec.h
index e6e43ce82b55..39cca92a8d63 100644
--- a/include/linux/pagevec.h
+++ b/include/linux/pagevec.h
@@ -5,14 +5,14 @@
* pages. A pagevec is a multipage container which is used for that.
*/
-#define PAGEVEC_SIZE 16
+#define PAGEVEC_SIZE 15
struct page;
struct address_space;
struct pagevec {
- unsigned nr;
- int cold;
+ unsigned short nr;
+ unsigned short cold;
struct page *pages[PAGEVEC_SIZE];
};