search for: xen_phys_cpus

Displaying 2 results from an estimated 2 matches for "xen_phys_cpus".

2007 Sep 20
2
Re: [PATCH] kexec/kdump: statically allocate xen_phys_cpus
...: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 @@ void xen_machine_kexec_setup_resources(v > > xen_max_nr_phys_cpus = k; > > - /* allocate xen_phys_cpus */ > - > - xen_phys_c...
2008 Jun 12
0
[PATCH 2/2] extract vmcoreinfo from /proc/vmcore for Xen
...rivers/xen/core/machine_kexec.c --- a/drivers/xen/core/machine_kexec.c Wed Jun 11 09:28:01 2008 +0100 +++ b/drivers/xen/core/machine_kexec.c Thu Jun 12 13:10:40 2008 +0900 @@ -19,6 +19,9 @@ static struct resource xen_hypervisor_re static struct resource xen_hypervisor_res; static struct resource *xen_phys_cpus; +size_t vmcoreinfo_size_xen; +unsigned long paddr_vmcoreinfo_xen; + void __init xen_machine_kexec_setup_resources(void) { xen_kexec_range_t range; @@ -94,6 +97,18 @@ void __init xen_machine_kexec_setup_reso if (range.size) { crashk_res.start = range.start; crashk_res.end = range.star...