diff options
| author | 2008-06-25 12:30:54 +0200 | |
|---|---|---|
| committer | 2008-06-25 12:30:54 +0200 | |
| commit | 0ed368c71aa65cba8d349432bd4dab4a9a2eb39c (patch) | |
| tree | 7746534bafd57f6764bda8f26efc3929a4acf914 /mm/bootmem.c | |
| parent | Merge branch 'linus' into x86/kconfig (diff) | |
| parent | Linux 2.6.26-rc8 (diff) | |
| download | linux-dev-0ed368c71aa65cba8d349432bd4dab4a9a2eb39c.tar.xz linux-dev-0ed368c71aa65cba8d349432bd4dab4a9a2eb39c.zip | |
Merge branch 'linus' into x86/kconfig
Diffstat (limited to 'mm/bootmem.c')
| -rw-r--r-- | mm/bootmem.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mm/bootmem.c b/mm/bootmem.c index e8fb927392b9..8d9f60e06f62 100644 --- a/mm/bootmem.c +++ b/mm/bootmem.c @@ -442,15 +442,17 @@ unsigned long __init init_bootmem_node(pg_data_t *pgdat, unsigned long freepfn, return init_bootmem_core(pgdat, freepfn, startpfn, endpfn); } -void __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, +int __init reserve_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, unsigned long size, int flags) { int ret; ret = can_reserve_bootmem_core(pgdat->bdata, physaddr, size, flags); if (ret < 0) - return; + return -ENOMEM; reserve_bootmem_core(pgdat->bdata, physaddr, size, flags); + + return 0; } void __init free_bootmem_node(pg_data_t *pgdat, unsigned long physaddr, |
