|
@@ -1320,6 +1320,8 @@ legacy_init_iomem_resources(struct resource *code_resource, struct resource *dat
|
|
probe_roms();
|
|
probe_roms();
|
|
for (i = 0; i < e820.nr_map; i++) {
|
|
for (i = 0; i < e820.nr_map; i++) {
|
|
struct resource *res;
|
|
struct resource *res;
|
|
|
|
+ if (e820.map[i].addr + e820.map[i].size > 0x100000000ULL)
|
|
|
|
+ continue;
|
|
res = kzalloc(sizeof(struct resource), GFP_ATOMIC);
|
|
res = kzalloc(sizeof(struct resource), GFP_ATOMIC);
|
|
switch (e820.map[i].type) {
|
|
switch (e820.map[i].type) {
|
|
case E820_RAM: res->name = "System RAM"; break;
|
|
case E820_RAM: res->name = "System RAM"; break;
|