diff options
Diffstat (limited to 'mm/nommu.c')
-rw-r--r-- | mm/nommu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mm/nommu.c b/mm/nommu.c index c4c542c736a9..5afce48ce339 100644 --- a/mm/nommu.c +++ b/mm/nommu.c | |||
@@ -1235,7 +1235,7 @@ error_free: | |||
1235 | enomem: | 1235 | enomem: |
1236 | printk("Allocation of length %lu from process %d (%s) failed\n", | 1236 | printk("Allocation of length %lu from process %d (%s) failed\n", |
1237 | len, current->pid, current->comm); | 1237 | len, current->pid, current->comm); |
1238 | show_free_areas(); | 1238 | show_free_areas(0); |
1239 | return -ENOMEM; | 1239 | return -ENOMEM; |
1240 | } | 1240 | } |
1241 | 1241 | ||
@@ -1468,14 +1468,14 @@ error_getting_vma: | |||
1468 | printk(KERN_WARNING "Allocation of vma for %lu byte allocation" | 1468 | printk(KERN_WARNING "Allocation of vma for %lu byte allocation" |
1469 | " from process %d failed\n", | 1469 | " from process %d failed\n", |
1470 | len, current->pid); | 1470 | len, current->pid); |
1471 | show_free_areas(); | 1471 | show_free_areas(0); |
1472 | return -ENOMEM; | 1472 | return -ENOMEM; |
1473 | 1473 | ||
1474 | error_getting_region: | 1474 | error_getting_region: |
1475 | printk(KERN_WARNING "Allocation of vm region for %lu byte allocation" | 1475 | printk(KERN_WARNING "Allocation of vm region for %lu byte allocation" |
1476 | " from process %d failed\n", | 1476 | " from process %d failed\n", |
1477 | len, current->pid); | 1477 | len, current->pid); |
1478 | show_free_areas(); | 1478 | show_free_areas(0); |
1479 | return -ENOMEM; | 1479 | return -ENOMEM; |
1480 | } | 1480 | } |
1481 | EXPORT_SYMBOL(do_mmap_pgoff); | 1481 | EXPORT_SYMBOL(do_mmap_pgoff); |