aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/swap.h
diff options
context:
space:
mode:
authorHugh Dickins <hugh.dickins@tiscali.co.uk>2009-12-14 20:58:45 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2009-12-15 11:53:15 -0500
commit8d69aaee80c123b460918816cbfa2e83224c3646 (patch)
tree899a69417dbd81f9b53926d7076629cc9b394ae5 /include/linux/swap.h
parent253d553ba75ab26b3e9e2f70cbf6fbf0813f7e86 (diff)
swap_info: swap_map of chars not shorts
Halve the vmalloc'ed swap_map array from unsigned shorts to unsigned chars: it's still very unusual to reach a swap count of 126, and the next patch allows it to be extended indefinitely. Signed-off-by: Hugh Dickins <hugh.dickins@tiscali.co.uk> Reviewed-by: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Rik van Riel <riel@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/swap.h')
-rw-r--r--include/linux/swap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/swap.h b/include/linux/swap.h
index c9d8870892b8..f733deb10748 100644
--- a/include/linux/swap.h
+++ b/include/linux/swap.h
@@ -151,9 +151,9 @@ enum {
151 151
152#define SWAP_CLUSTER_MAX 32 152#define SWAP_CLUSTER_MAX 32
153 153
154#define SWAP_MAP_MAX 0x7ffe 154#define SWAP_MAP_MAX 0x7e
155#define SWAP_MAP_BAD 0x7fff 155#define SWAP_MAP_BAD 0x7f
156#define SWAP_HAS_CACHE 0x8000 /* There is a swap cache of entry. */ 156#define SWAP_HAS_CACHE 0x80 /* There is a swap cache of entry. */
157 157
158/* 158/*
159 * The in-memory structure used to track swap areas. 159 * The in-memory structure used to track swap areas.
@@ -167,7 +167,7 @@ struct swap_info_struct {
167 struct block_device *bdev; 167 struct block_device *bdev;
168 struct swap_extent first_swap_extent; 168 struct swap_extent first_swap_extent;
169 struct swap_extent *curr_swap_extent; 169 struct swap_extent *curr_swap_extent;
170 unsigned short *swap_map; 170 unsigned char *swap_map;
171 unsigned int lowest_bit; 171 unsigned int lowest_bit;
172 unsigned int highest_bit; 172 unsigned int highest_bit;
173 unsigned int lowest_alloc; /* while preparing discard cluster */ 173 unsigned int lowest_alloc; /* while preparing discard cluster */