From: Alexey Dobriyan [PATCH] Fix "biovec-(256)" in /proc/slabinfo Stringify does what it was told to do. Signed-off-by: Alexey Dobriyan Signed-off-by: Andrew Morton --- include/linux/bio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/bio.h~fix-biovec-256-in-proc-slabinfo include/linux/bio.h --- a/include/linux/bio.h~fix-biovec-256-in-proc-slabinfo +++ a/include/linux/bio.h @@ -47,7 +47,7 @@ #define BIO_BUG_ON #endif -#define BIO_MAX_PAGES (256) +#define BIO_MAX_PAGES 256 #define BIO_MAX_SIZE (BIO_MAX_PAGES << PAGE_CACHE_SHIFT) #define BIO_MAX_SECTORS (BIO_MAX_SIZE >> 9) _