uclinux: add process name to allocation error message

This patch adds the name of the process to the bad allocation error
message on non-MMU systems.

Changed suggested by jsujjavanich@syntech-fuelmaster.com

Signed-off-by: Greg Ungerer <gerg@uclinux.org>
This commit is contained in:
Greg Ungerer 2009-01-13 17:30:22 +10:00
parent b9d57f94bb
commit 05ae6fa318

View file

@ -1161,8 +1161,8 @@ static int do_mmap_private(struct vm_area_struct *vma,
return ret;
enomem:
printk("Allocation of length %lu from process %d failed\n",
len, current->pid);
printk("Allocation of length %lu from process %d (%s) failed\n",
len, current->pid, current->comm);
show_free_areas();
return -ENOMEM;
}