search for: mpc_config_intsrc

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

2006 Feb 16
0
[PATCH] fix mp_current_pci_id duplicate declaration
...urrent_pci_id’ was here Signed-off-by: Chris Wright <chrisw@sous-sol.org> --- diff -r 2b0078f771cc xen/include/asm-x86/mpspec.h --- a/xen/include/asm-x86/mpspec.h Thu Feb 16 17:37:21 2006 +0100 +++ b/xen/include/asm-x86/mpspec.h Thu Feb 16 14:00:24 2006 -0500 @@ -23,7 +23,6 @@ extern struct mpc_config_intsrc mp_irqs extern struct mpc_config_intsrc mp_irqs [MAX_IRQ_SOURCES]; extern int mpc_default_type; extern int mp_bus_id_to_pci_bus [MAX_MP_BUSSES]; -extern int mp_current_pci_id; extern unsigned long mp_lapic_addr; extern int pic_mode; extern int using_apic_timer; _____________________________...
2011 Mar 09
0
[PATCH 04/11] x86: cleanup mpparse.c
...gned char __read_mostly apic_version[MAX_APICS]; +unsigned char __read_mostly mp_bus_id_to_type[MAX_MP_BUSSES]; /* I/O APIC entries */ -struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS]; +struct mpc_config_ioapic __read_mostly mp_ioapics[MAX_IO_APICS]; /* # of MP IRQ source entries */ -struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES]; +struct mpc_config_intsrc __read_mostly mp_irqs[MAX_IRQ_SOURCES]; /* MP IRQ source entries */ -int mp_irq_entries; +int __read_mostly mp_irq_entries; -int pic_mode; -unsigned long mp_lapic_addr; - -unsigned int def_to_bigsmp = 0; +bool_t __read_mostly pic_mode; +bool_...