Displaying 1 result from an estimated 1 matches for "machine_kexec_setup_load_arg".
2007 Sep 20
2
Re: [PATCH] kexec/kdump: statically allocate xen_phys_cpus
...rivers/xen/core/machine_kexec.c
> ===================================================================
> --- x/drivers/xen/core/machine_kexec.c 2007-05-11 18:19:20.000000000 +0900
> +++ x/drivers/xen/core/machine_kexec.c 2007-05-14 19:18:03.000000000 +0900
> @@ -13,7 +13,7 @@ extern void machine_kexec_setup_load_arg
>
> static int __initdata xen_max_nr_phys_cpus;
> static struct resource xen_hypervisor_res;
> -static struct resource *xen_phys_cpus;
> +static struct resource xen_phys_cpus[NR_CPUS];
>
> void __init xen_machine_kexec_setup_resources(void)
> {
> @@ -42,11 +42,6 @...