| Kernel v2.4.10-pre15 /mm/bootmem.c |
|---|
 2.4.10-pre15
 mm
 bootmem.c
diff -u --recursive --new-file v2.4.9/linux/mm/bootmem.c linux/mm/bootmem.c
--- v2.4.9/linux/mm/bootmem.c Tue Jul 3 17:08:22 2001
+++ linux/mm/bootmem.c Tue Sep 18 14:10:43 2001
@@ -344,7 +344,8 @@
/*
* Whoops, we cannot satisfy the allocation request.
*/
- BUG();
+ printk(KERN_ALERT "bootmem alloc of %lu bytes failed!\n", size);
+ panic("Out of memory");
return NULL;
}
|