Commit ffc43836 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Ingo Molnar

x86, ioapic: Get rid of needless check and simplify ioapic_setup_resources()

alloc_bootmem() already panics on allocation failure. There is
no need to check the result.

Also there is a way to unbind global variable from its body and
use it as a parameter which allow us to simplify
ioapic_init_mappings as well -- "for" cycle already uses
nr_ioapics as a conditional variable and there is no need to
check if ioapic_setup_resources was returning NULL again.
Signed-off-by: default avatarCyrill Gorcunov <gorcunov@openvz.org>
Cc: Yinghai Lu <yinghai@kernel.org>
LKML-Reference: <20090824175551.493629148@openvz.org>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 8f3e1df4
...@@ -4053,7 +4053,7 @@ void __init setup_ioapic_dest(void) ...@@ -4053,7 +4053,7 @@ void __init setup_ioapic_dest(void)
static struct resource *ioapic_resources; static struct resource *ioapic_resources;
static struct resource * __init ioapic_setup_resources(void) static struct resource * __init ioapic_setup_resources(int nr_ioapics)
{ {
unsigned long n; unsigned long n;
struct resource *res; struct resource *res;
...@@ -4069,15 +4069,13 @@ static struct resource * __init ioapic_setup_resources(void) ...@@ -4069,15 +4069,13 @@ static struct resource * __init ioapic_setup_resources(void)
mem = alloc_bootmem(n); mem = alloc_bootmem(n);
res = (void *)mem; res = (void *)mem;
if (mem != NULL) { mem += sizeof(struct resource) * nr_ioapics;
mem += sizeof(struct resource) * nr_ioapics;
for (i = 0; i < nr_ioapics; i++) { for (i = 0; i < nr_ioapics; i++) {
res[i].name = mem; res[i].name = mem;
res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY; res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
sprintf(mem, "IOAPIC %u", i); sprintf(mem, "IOAPIC %u", i);
mem += IOAPIC_RESOURCE_NAME_SIZE; mem += IOAPIC_RESOURCE_NAME_SIZE;
}
} }
ioapic_resources = res; ioapic_resources = res;
...@@ -4091,7 +4089,7 @@ void __init ioapic_init_mappings(void) ...@@ -4091,7 +4089,7 @@ void __init ioapic_init_mappings(void)
struct resource *ioapic_res; struct resource *ioapic_res;
int i; int i;
ioapic_res = ioapic_setup_resources(); ioapic_res = ioapic_setup_resources(nr_ioapics);
for (i = 0; i < nr_ioapics; i++) { for (i = 0; i < nr_ioapics; i++) {
if (smp_found_config) { if (smp_found_config) {
ioapic_phys = mp_ioapics[i].apicaddr; ioapic_phys = mp_ioapics[i].apicaddr;
...@@ -4120,11 +4118,9 @@ void __init ioapic_init_mappings(void) ...@@ -4120,11 +4118,9 @@ void __init ioapic_init_mappings(void)
__fix_to_virt(idx), ioapic_phys); __fix_to_virt(idx), ioapic_phys);
idx++; idx++;
if (ioapic_res != NULL) { ioapic_res->start = ioapic_phys;
ioapic_res->start = ioapic_phys; ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
ioapic_res->end = ioapic_phys + (4 * 1024) - 1; ioapic_res++;
ioapic_res++;
}
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment