]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
x86: split e820 reserved entries record to late, v7
authorYinghai Lu <yhlu.kernel@gmail.com>
Thu, 4 Sep 2008 18:59:22 +0000 (20:59 +0200)
committerIngo Molnar <mingo@elte.hu>
Thu, 4 Sep 2008 19:04:25 +0000 (21:04 +0200)
try to insert_resource second time, by expanding the resource...

for case: e820 reserved entry is partially overlapped with bar res...

hope it will never happen

Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/e820.c

index a7a71339bfb02da17b24a0e9a5127084e5fd8aaf..e24d1bc47b4672281f51e675caf54d2f52d5f6b7 100644 (file)
@@ -1320,7 +1320,7 @@ void __init e820_reserve_resources_late(void)
        res = e820_res;
        for (i = 0; i < e820.nr_map; i++) {
                if (!res->parent && res->end)
-                       insert_resource(&iomem_resource, res);
+                       reserve_region_with_split(&iomem_resource, res->start, res->end, res->name);
                res++;
        }
 }