diff options
Diffstat (limited to 'mm/vmalloc.c')
-rw-r--r-- | mm/vmalloc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 7465f22fec0c..2644afb9d6ab 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c | |||
@@ -381,8 +381,9 @@ found: | |||
381 | goto retry; | 381 | goto retry; |
382 | } | 382 | } |
383 | if (printk_ratelimit()) | 383 | if (printk_ratelimit()) |
384 | printk(KERN_WARNING "vmap allocation failed: " | 384 | printk(KERN_WARNING |
385 | "use vmalloc=<size> to increase size.\n"); | 385 | "vmap allocation for size %lu failed: " |
386 | "use vmalloc=<size> to increase size.\n", size); | ||
386 | return ERR_PTR(-EBUSY); | 387 | return ERR_PTR(-EBUSY); |
387 | } | 388 | } |
388 | 389 | ||