diff options
author | Zhang Yanfei <zhangyanfei@cn.fujitsu.com> | 2013-02-22 19:35:46 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-23 20:50:22 -0500 |
commit | 43be594a6b0ce34ab5fa3b13e08727a99fb95b91 (patch) | |
tree | bd76623b74473a04d4ebb4e044ac2382bfb43a54 | |
parent | 6434b94a16b09ac84a6411adb2bc0b645245d007 (diff) |
fs/buffer.c: change type of max_buffer_heads to unsigned long
max_buffer_heads is calculated from nr_free_buffer_pages(), so change
its type to unsigned long in case of overflow.
Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/buffer.c b/fs/buffer.c index 2ea9cd44aeae..62169c192c21 100644 --- a/fs/buffer.c +++ b/fs/buffer.c | |||
@@ -3227,7 +3227,7 @@ static struct kmem_cache *bh_cachep __read_mostly; | |||
3227 | * Once the number of bh's in the machine exceeds this level, we start | 3227 | * Once the number of bh's in the machine exceeds this level, we start |
3228 | * stripping them in writeback. | 3228 | * stripping them in writeback. |
3229 | */ | 3229 | */ |
3230 | static int max_buffer_heads; | 3230 | static unsigned long max_buffer_heads; |
3231 | 3231 | ||
3232 | int buffer_heads_over_limit; | 3232 | int buffer_heads_over_limit; |
3233 | 3233 | ||
@@ -3343,7 +3343,7 @@ EXPORT_SYMBOL(bh_submit_read); | |||
3343 | 3343 | ||
3344 | void __init buffer_init(void) | 3344 | void __init buffer_init(void) |
3345 | { | 3345 | { |
3346 | int nrpages; | 3346 | unsigned long nrpages; |
3347 | 3347 | ||
3348 | bh_cachep = kmem_cache_create("buffer_head", | 3348 | bh_cachep = kmem_cache_create("buffer_head", |
3349 | sizeof(struct buffer_head), 0, | 3349 | sizeof(struct buffer_head), 0, |