Commit d84a84775bba661d5a3fd06757bbb419381937f3

Authored by Alexey Dobriyan
Committed by Linus Torvalds
1 parent 00212fef81

[PATCH] Fix "biovec-(256)" in /proc/slabinfo

Stringify does what it was told to do.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -47,7 +47,7 @@
47 47 #define BIO_BUG_ON
48 48 #endif
49 49  
50   -#define BIO_MAX_PAGES (256)
  50 +#define BIO_MAX_PAGES 256
51 51 #define BIO_MAX_SIZE (BIO_MAX_PAGES << PAGE_CACHE_SHIFT)
52 52 #define BIO_MAX_SECTORS (BIO_MAX_SIZE >> 9)
53 53