diff options
| -rw-r--r-- | arch/x86/kernel/e820.c | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/arch/x86/kernel/e820.c b/arch/x86/kernel/e820.c index 740b440fbd73..7bca3c6a02fb 100644 --- a/arch/x86/kernel/e820.c +++ b/arch/x86/kernel/e820.c | |||
| @@ -519,29 +519,45 @@ u64 __init e820_remove_range(u64 start, u64 size, unsigned old_type, | |||
| 519 | printk(KERN_DEBUG "e820 remove range: %016Lx - %016Lx ", | 519 | printk(KERN_DEBUG "e820 remove range: %016Lx - %016Lx ", |
| 520 | (unsigned long long) start, | 520 | (unsigned long long) start, |
| 521 | (unsigned long long) end); | 521 | (unsigned long long) end); |
| 522 | e820_print_type(old_type); | 522 | if (checktype) |
| 523 | e820_print_type(old_type); | ||
| 523 | printk(KERN_CONT "\n"); | 524 | printk(KERN_CONT "\n"); |
| 524 | 525 | ||
| 525 | for (i = 0; i < e820.nr_map; i++) { | 526 | for (i = 0; i < e820.nr_map; i++) { |
| 526 | struct e820entry *ei = &e820.map[i]; | 527 | struct e820entry *ei = &e820.map[i]; |
| 527 | u64 final_start, final_end; | 528 | u64 final_start, final_end; |
| 529 | u64 ei_end; | ||
| 528 | 530 | ||
| 529 | if (checktype && ei->type != old_type) | 531 | if (checktype && ei->type != old_type) |
| 530 | continue; | 532 | continue; |
| 533 | |||
| 534 | ei_end = ei->addr + ei->size; | ||
| 531 | /* totally covered? */ | 535 | /* totally covered? */ |
| 532 | if (ei->addr >= start && | 536 | if (ei->addr >= start && ei_end <= end) { |
| 533 | (ei->addr + ei->size) <= (start + size)) { | ||
| 534 | real_removed_size += ei->size; | 537 | real_removed_size += ei->size; |
| 535 | memset(ei, 0, sizeof(struct e820entry)); | 538 | memset(ei, 0, sizeof(struct e820entry)); |
| 536 | continue; | 539 | continue; |
| 537 | } | 540 | } |
| 541 | |||
| 542 | /* new range is totally covered? */ | ||
| 543 | if (ei->addr < start && ei_end > end) { | ||
| 544 | e820_add_region(end, ei_end - end, ei->type); | ||
| 545 | ei->size = start - ei->addr; | ||
| 546 | real_removed_size += size; | ||
| 547 | continue; | ||
| 548 | } | ||
| 549 | |||
| 538 | /* partially covered */ | 550 | /* partially covered */ |
| 539 | final_start = max(start, ei->addr); | 551 | final_start = max(start, ei->addr); |
| 540 | final_end = min(start + size, ei->addr + ei->size); | 552 | final_end = min(end, ei_end); |
| 541 | if (final_start >= final_end) | 553 | if (final_start >= final_end) |
| 542 | continue; | 554 | continue; |
| 543 | real_removed_size += final_end - final_start; | 555 | real_removed_size += final_end - final_start; |
| 544 | 556 | ||
| 557 | /* | ||
| 558 | * left range could be head or tail, so need to update | ||
| 559 | * size at first. | ||
| 560 | */ | ||
| 545 | ei->size -= final_end - final_start; | 561 | ei->size -= final_end - final_start; |
| 546 | if (ei->addr < final_start) | 562 | if (ei->addr < final_start) |
| 547 | continue; | 563 | continue; |
