From: Stefan Bader <stefan.bader@canonical.com>
To: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Konrad Rzeszutek Wilk <konrad@darnok.org>,
"xen-devel@lists.xensource.com" <xen-devel@lists.xensource.com>,
Jan Beulich <jbeulich@suse.com>,
Boris Ostrovsky <boris.ostrovsky@amd.com>
Subject: Re: Workings/effectiveness of the xen-acpi-processor driver
Date: Fri, 04 May 2012 10:00:32 +0200 [thread overview]
Message-ID: <4FA38CA0.3020601@canonical.com> (raw)
In-Reply-To: <20120503170858.GC9992@phenom.dumpdata.com>
[-- Attachment #1.1.1: Type: text/plain, Size: 5430 bytes --]
On 03.05.2012 19:08, Konrad Rzeszutek Wilk wrote:
>>> Hmmm, so xen_apic_read is still correct...
>>>
>>> [ 0.000000] ACPI: Local APIC address 0xfee00000
>>> [ 0.000000] xxx xen_apic_read(20)
>>> [ 0.000000] xxx xen_apic_read -> 10
>>> [ 0.000000] boot_cpu_physical_apicid = 0
>>> [ 0.000000] xxx xen_apic_read(30)
>>> [ 0.000000] +- apic version = 10
>>>
>>> there seems to be a slightly strange tweak (at least for me) in read_apic_id...
>>>
>>> static inline unsigned int read_apic_id(void)
>>> {
>>> unsigned int reg;
>>>
>>> reg = apic_read(APIC_ID); // calls apic->read(reg)
>>>
>>> return apic->get_apic_id(reg);
>>
>> Duh!! Let me spin out a new patch that will do this.
>
> Meaning bit-shift it. We ended up doing 10 >> 24 (get_apic_id does that)
> which results in zero. So lets be a bit more cautious and over-write
> the get_apic_id and set_apic_id and as well do the proper bit-shifting.
>
I can confirm that with this patch applied I can load the xen-acpi-processor
driver and see P-states changing in xenpm. No BIOS bug messages.
Also tested on the i7 and it does still work. I am attaching the dmesg output of
both runs. On the i7 the xen apic functions are called in two places and for
cpu#0 only. On AMD, I see additional call later and for all cpus while enabling
them. apic->read bails out, but apic->get_apic_id returns 0 (though I could see
no immediate problem from that). Maybe that info is helpful for the next stage.
-Stefan
> commit 4bb450ea9dca1b8d845f1b53ab6476615a32badf
> Author: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
> Date: Wed May 2 15:04:51 2012 -0400
>
> xen/apic: Return the APIC ID (and version) for CPU 0.
>
> On x86_64 on AMD machines where the first APIC_ID is not zero, we get:
>
> ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
> BIOS bug: APIC version is 0 for CPU 1/0x10, fixing up to 0x10
> BIOS bug: APIC version mismatch, boot CPU: 0, CPU 1: version 10
>
> which means that when the ACPI processor driver loads and
> tries to parse the _Pxx states it fails to do as, as it
> ends up calling acpi_get_cpuid which does this:
>
> for_each_possible_cpu(i) {
> if (cpu_physical_id(i) == apic_id)
> return i;
> }
>
> And the bootup CPU, has not been found so it fails and returns -1
> for the first CPU - which then subsequently in the loop that
> "acpi_processor_get_info" does results in returning an error, which
> means that "acpi_processor_add" failing and per_cpu(processor)
> is never set (and is NULL).
>
> That means that when xen-acpi-processor tries to load (much much
> later on) and parse the P-states it gets -ENODEV from
> acpi_processor_register_performance() (which tries to read
> the per_cpu(processor)) and fails to parse the data.
>
> Reported-by: Stefan Bader <stefan.bader@canonical.com>
> Suggested-by: Boris Ostrovsky <boris.ostrovsky@amd.com>
> [v2: Bit-shift APIC ID by 24 bits]
> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Tested-by: Stefan Bader <stefan.bader@canonical.com>
>
> diff --git a/arch/x86/xen/enlighten.c b/arch/x86/xen/enlighten.c
> index a8f8844..63d6c22 100644
> --- a/arch/x86/xen/enlighten.c
> +++ b/arch/x86/xen/enlighten.c
> @@ -53,6 +53,9 @@
> #include <asm/processor.h>
> #include <asm/proto.h>
> #include <asm/msr-index.h>
> +#ifdef CONFIG_NUMA
> +#include <asm/numa.h>
> +#endif
> #include <asm/traps.h>
> #include <asm/setup.h>
> #include <asm/desc.h>
> @@ -809,9 +812,40 @@ static void xen_io_delay(void)
> }
>
> #ifdef CONFIG_X86_LOCAL_APIC
> +static unsigned long xen_set_apic_id(unsigned int x)
> +{
> + WARN_ON(1);
> + return x;
> +}
> +static unsigned int xen_get_apic_id(unsigned long x)
> +{
> + return (((x)>>24) & 0xFFu);
> +}
> static u32 xen_apic_read(u32 reg)
> {
> - return 0;
> + struct xen_platform_op op = {
> + .cmd = XENPF_get_cpuinfo,
> + .interface_version = XENPF_INTERFACE_VERSION,
> + .u.pcpu_info.xen_cpuid = 0,
> + };
> + int ret = 0;
> +
> + /* Shouldn't need this as APIC is turned off for PV, and we only
> + * get called on the bootup processor. But just in case. */
> + if (!xen_initial_domain() || smp_processor_id())
> + return 0;
> +
> + if (reg == APIC_LVR)
> + return 0x10;
> +
> + if (reg != APIC_ID)
> + return 0;
> +
> + ret = HYPERVISOR_dom0_op(&op);
> + if (ret)
> + return 0;
> +
> + return op.u.pcpu_info.apic_id << 24;
> }
>
> static void xen_apic_write(u32 reg, u32 val)
> @@ -849,6 +883,8 @@ static void set_xen_basic_apic_ops(void)
> apic->icr_write = xen_apic_icr_write;
> apic->wait_icr_idle = xen_apic_wait_icr_idle;
> apic->safe_wait_icr_idle = xen_safe_apic_wait_icr_idle;
> + apic->set_apic_id = xen_set_apic_id;
> + apic->get_apic_id = xen_get_apic_id;
> }
>
> #endif
> @@ -1294,6 +1330,9 @@ asmlinkage void __init xen_start_kernel(void)
> */
> acpi_numa = -1;
> #endif
> +#if defined(CONFIG_NUMA) && defined(CONFIG_X86_32)
> + numa_off = 1;
> +#endif
>
> pgd = (pgd_t *)xen_start_info->pt_base;
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel
[-- Attachment #1.1.2: dmesg.i7.txt --]
[-- Type: text/plain, Size: 75489 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.2.0-24-generic (root@gomeisa) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #38+xendbg8 SMP Thu May 3 17:40:06 UTC 2012 (Ubuntu 3.2.0-24.38+xendbg8-generic 3.2.16)
[ 0.000000] Command line: placeholder root=/dev/mapper/rootvg-magrathea ro nomodeset debug lapic=debug console=hvc0 loglevel=10 earlyprintk=xenboot
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Freeing 97-100 pfn range: 105 pages freed
[ 0.000000] 1-1 mapping on 97->100
[ 0.000000] 1-1 mapping on dfee0->100000
[ 0.000000] Released 105 pages of unused memory
[ 0.000000] Set 131465 page(s) to 1-1 mapping
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] Xen: 0000000000000000 - 0000000000097000 (usable)
[ 0.000000] Xen: 000000000009f800 - 0000000000100000 (reserved)
[ 0.000000] Xen: 0000000000100000 - 00000000dfee0000 (usable)
[ 0.000000] Xen: 00000000dfee0000 - 00000000dfee1000 (ACPI NVS)
[ 0.000000] Xen: 00000000dfee1000 - 00000000dfef0000 (ACPI data)
[ 0.000000] Xen: 00000000dfef0000 - 00000000dff00000 (reserved)
[ 0.000000] Xen: 00000000f0000000 - 00000000f4000000 (reserved)
[ 0.000000] Xen: 00000000fec00000 - 0000000100000000 (reserved)
[ 0.000000] Xen: 0000000100000000 - 0000000180120000 (usable)
[ 0.000000] Xen: 0000000180120000 - 0000000220000000 (unusable)
[ 0.000000] bootconsole [xenboot0] enabled
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] DMI 2.4 present.
[ 0.000000] DMI: Gigabyte Technology Co., Ltd. EX58-UD3R/EX58-UD3R, BIOS F11 03/11/2010
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] No AGP bridge found
[ 0.000000] last_pfn = 0x180120 max_arch_pfn = 0x400000000
[ 0.000000] last_pfn = 0xdfee0 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [ffff8800000f5cc0] f5cc0
[ 0.000000] initial memory mapped : 0 - 047e7000
[ 0.000000] Base memory trampoline at [ffff880000092000] 92000 size 20480
[ 0.000000] init_memory_mapping: 0000000000000000-00000000dfee0000
[ 0.000000] 0000000000 - 00dfee0000 page 4k
[ 0.000000] kernel direct mapping tables up to dfee0000 @ 8fb000-1000000
[ 0.000000] xen: setting RW the range fd4000 - 1000000
[ 0.000000] init_memory_mapping: 0000000100000000-0000000180120000
[ 0.000000] 0100000000 - 0180120000 page 4k
[ 0.000000] kernel direct mapping tables up to 180120000 @ 1f3f7000-20000000
[ 0.000000] xen: setting RW the range 1f7fb000 - 20000000
[ 0.000000] RAMDISK: 02060000 - 047e7000
[ 0.000000] ACPI: RSDP 00000000000f7680 00014 (v00 GBT )
[ 0.000000] ACPI: RSDT 00000000dfee1040 00040 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.000000] ACPI: FACP 00000000dfee10c0 00074 (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.000000] ACPI: DSDT 00000000dfee1180 04BA7 (v01 GBT GBTUACPI 00001000 MSFT 0100000C)
[ 0.000000] ACPI: FACS 00000000dfee0000 00040
[ 0.000000] ACPI: HPET 00000000dfee5f00 00038 (v01 GBT GBTUACPI 42302E31 GBTU 00000098)
[ 0.000000] ACPI: MCFG 00000000dfee5f80 0003C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.000000] ACPI: EUDS 00000000dfee5fc0 00470 (v01 GBT 00000000 00000000)
[ 0.000000] ACPI: TAMG 00000000dfee6430 00B72 (v01 GBT GBT B0 5455312E BG?? 53450101)
[ 0.000000] ACPI: APIC 00000000dfee5d80 0012C (v01 GBT GBTUACPI 42302E31 GBTU 01010101)
[ 0.000000] ACPI: SSDT 00000000dfee6fb0 02FE4 (v01 INTEL PPM RCM 80000001 INTL 20061109)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] xxx xen_apic_read(0x20) -> 0x0
[ 0.000000] xxx xen_get_apic_id(0x0) -> 0x0
[ 0.000000] xxx xen_apic_read(0x30) -> 0x10
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-0000000180120000
[ 0.000000] Initmem setup node 0 0000000000000000-0000000180120000
[ 0.000000] NODE_DATA [000000001fffb000 - 000000001fffffff]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x00180120
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[3] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x00000097
[ 0.000000] 0: 0x00000100 -> 0x000dfee0
[ 0.000000] 0: 0x00100000 -> 0x00180120
[ 0.000000] On node 0 totalpages: 1441671
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 1758 pages reserved
[ 0.000000] DMA zone: 2153 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 16320 pages used for memmap
[ 0.000000] DMA32 zone: 896800 pages, LIFO batch:31
[ 0.000000] Normal zone: 8197 pages used for memmap
[ 0.000000] Normal zone: 516379 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x408
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x06] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x01] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x03] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x07] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x08] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x09] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x0a] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x0b] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x0c] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0d] lapic_id[0x0d] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0e] lapic_id[0x0e] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0f] lapic_id[0x0f] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x09] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0a] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0b] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0c] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0d] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0e] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x0f] dfl dfl lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 2, version 255, address 0xfec00000, GSI 0-255
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.000000] SMP: Allowing 16 CPUs, 8 hotplug CPUs
[ 0.000000] xxx xen_apic_read(0x20) -> 0x0
[ 0.000000] xxx xen_get_apic_id(0x0) -> 0x0
[ 0.000000] nr_irqs_gsi: 272
[ 0.000000] PM: Registered nosave memory: 0000000000097000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 00000000dfee0000 - 00000000dfee1000
[ 0.000000] PM: Registered nosave memory: 00000000dfee1000 - 00000000dfef0000
[ 0.000000] PM: Registered nosave memory: 00000000dfef0000 - 00000000dff00000
[ 0.000000] PM: Registered nosave memory: 00000000dff00000 - 00000000f0000000
[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000fec00000
[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
[ 0.000000] Allocating PCI resources starting at dff00000 (gap: dff00000:10100000)
[ 0.000000] Booting paravirtualized kernel on Xen
[ 0.000000] Xen version: 4.1.2 (preserve-AD)
[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:16 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88001fdeb000 s83072 r8192 d23424 u114688
[ 0.000000] pcpu-alloc: s83072 r8192 d23424 u114688 alloc=28*4096
[ 0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07
[ 0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15
[ 2.348911] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1415332
[ 2.348914] Policy zone: Normal
[ 2.348917] Kernel command line: placeholder root=/dev/mapper/rootvg-magrathea ro nomodeset debug lapic=debug console=hvc0 loglevel=10 earlyprintk=xenboot
[ 2.349396] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 2.378521] Placing 64MB software IO TLB between ffff880015400000 - ffff880019400000
[ 2.378525] software IO TLB at phys 0x15400000 - 0x19400000
[ 2.379958] Memory: 294916k/6292608k available (6654k kernel code, 525924k absent, 5471768k reserved, 6550k data, 920k init)
[ 2.380035] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[ 2.380070] Hierarchical RCU implementation.
[ 2.380072] RCU dyntick-idle grace-period acceleration is enabled.
[ 2.380083] NR_IRQS:16640 nr_irqs:4096 16
[ 2.380142] xen: sci override: global_irq=9 trigger=0 polarity=0
[ 2.380145] xen: registering gsi 9 triggering 0 polarity 0
[ 2.380154] xen: --> pirq=9 -> irq=9 (gsi=9)
[ 2.380159] xen: acpi sci 9
[ 2.380162] xen: --> pirq=1 -> irq=1 (gsi=1)
[ 2.380166] xen: --> pirq=2 -> irq=2 (gsi=2)
[ 2.380169] xen: --> pirq=3 -> irq=3 (gsi=3)
[ 2.380173] xen: --> pirq=4 -> irq=4 (gsi=4)
[ 2.380176] xen: --> pirq=5 -> irq=5 (gsi=5)
[ 2.380179] xen: --> pirq=6 -> irq=6 (gsi=6)
[ 2.380182] xen: --> pirq=7 -> irq=7 (gsi=7)
[ 2.380186] xen: --> pirq=8 -> irq=8 (gsi=8)
[ 2.380188] xen_map_pirq_gsi: returning irq 9 for gsi 9
[ 2.380190] xen: --> pirq=9 -> irq=9 (gsi=9)
[ 2.380193] xen: --> pirq=10 -> irq=10 (gsi=10)
[ 2.380197] xen: --> pirq=11 -> irq=11 (gsi=11)
[ 2.380200] xen: --> pirq=12 -> irq=12 (gsi=12)
[ 2.380204] xen: --> pirq=13 -> irq=13 (gsi=13)
[ 2.380207] xen: --> pirq=14 -> irq=14 (gsi=14)
[ 2.380210] xen: --> pirq=15 -> irq=15 (gsi=15)
[ 2.382007] Console: colour VGA+ 80x25
[ 2.382011] console [hvc0] enabled, bootconsole disabled
[ 2.390775] allocated 47185920 bytes of page_cgroup
[ 2.390779] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 2.390818] Xen: using vcpuop timer interface
[ 2.390825] installing Xen timer for CPU 0
[ 2.390854] Detected 2664.850 MHz processor.
[ 2.390861] Calibrating delay loop (skipped), value calculated using timer frequency.. 5329.70 BogoMIPS (lpj=10659400)
[ 2.390866] pid_max: default: 32768 minimum: 301
[ 2.390896] Security Framework initialized
[ 2.390906] AppArmor: AppArmor initialized
[ 2.390908] Yama: becoming mindful.
[ 2.393465] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 2.395968] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 2.396755] Mount-cache hash table entries: 256
[ 2.396908] Initializing cgroup subsys cpuacct
[ 2.396914] Initializing cgroup subsys memory
[ 2.396926] Initializing cgroup subsys devices
[ 2.396929] Initializing cgroup subsys freezer
[ 2.396932] Initializing cgroup subsys blkio
[ 2.396943] Initializing cgroup subsys perf_event
[ 2.396999] CPU: Physical Processor ID: 0
[ 2.397001] CPU: Processor Core ID: 0
[ 2.399115] ACPI: Core revision 20110623
[ 2.408066] ftrace: allocating 27104 entries in 107 pages
[ 2.414834] cpu 0 spinlock event irq 273
[ 2.414887] Performance Events: unsupported p6 CPU model 26 no PMU driver, software events only.
[ 2.415004] NMI watchdog disabled (cpu0): hardware events not enabled
[ 2.415078] installing Xen timer for CPU 1
[ 2.415089] cpu 1 spinlock event irq 279
[ 2.415214] NMI watchdog disabled (cpu1): hardware events not enabled
[ 2.415291] installing Xen timer for CPU 2
[ 2.415302] cpu 2 spinlock event irq 285
[ 2.415386] NMI watchdog disabled (cpu2): hardware events not enabled
[ 2.415455] installing Xen timer for CPU 3
[ 2.415466] cpu 3 spinlock event irq 291
[ 2.415545] NMI watchdog disabled (cpu3): hardware events not enabled
[ 2.415617] installing Xen timer for CPU 4
[ 2.415627] cpu 4 spinlock event irq 297
[ 2.415712] NMI watchdog disabled (cpu4): hardware events not enabled
[ 2.415786] installing Xen timer for CPU 5
[ 2.415797] cpu 5 spinlock event irq 303
[ 2.415880] NMI watchdog disabled (cpu5): hardware events not enabled
[ 2.415950] installing Xen timer for CPU 6
[ 2.415960] cpu 6 spinlock event irq 309
[ 2.416047] NMI watchdog disabled (cpu6): hardware events not enabled
[ 2.416118] installing Xen timer for CPU 7
[ 2.416131] cpu 7 spinlock event irq 315
[ 2.416213] NMI watchdog disabled (cpu7): hardware events not enabled
[ 2.416234] Brought up 8 CPUs
[ 2.416605] devtmpfs: initialized
[ 2.417654] EVM: security.selinux
[ 2.417657] EVM: security.SMACK64
[ 2.417659] EVM: security.capability
[ 2.417704] PM: Registering ACPI NVS region at dfee0000 (4096 bytes)
[ 2.418293] Grant table initialized
[ 2.418336] print_constraints: dummy:
[ 2.418372] RTC time: 9:37:06, date: 05/04/12
[ 2.418401] NET: Registered protocol family 16
[ 2.418497] Trying to unpack rootfs image as initramfs...
[ 2.423099] ACPI: bus type pci registered
[ 2.423174] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[ 2.423178] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[ 2.440460] PCI: Using configuration type 1 for base access
[ 2.441457] bio: create slab <bio-0> at 0
[ 2.441567] ACPI: Added _OSI(Module Device)
[ 2.441570] ACPI: Added _OSI(Processor Device)
[ 2.441573] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 2.441576] ACPI: Added _OSI(Processor Aggregator Device)
[ 2.443539] ACPI: EC: Look up EC in DSDT
[ 2.451390] ACPI Warning: Incorrect checksum in table [TAMG] - 0x0C, should be 0x0B (20110623/tbutils-314)
[ 2.454463] ACPI: Interpreter enabled
[ 2.454468] ACPI: (supports S0 S3 S4 S5)
[ 2.454494] ACPI: Using IOAPIC for interrupt routing
[ 2.458582] Freeing initrd memory: 40476k freed
[ 2.461357] ACPI: No dock devices found.
[ 2.461362] HEST: Table not found.
[ 2.461366] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 2.461499] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
[ 2.461744] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7]
[ 2.461748] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff]
[ 2.461751] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 2.461754] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
[ 2.461758] pci_root PNP0A03:00: host bridge window [mem 0xdff00000-0xfebfffff]
[ 2.461784] pci 0000:00:00.0: [8086:3405] type 0 class 0x000600
[ 2.461890] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[ 2.461896] pci 0000:00:00.0: PME# disabled
[ 2.461939] pci 0000:00:01.0: [8086:3408] type 1 class 0x000604
[ 2.462052] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 2.462058] pci 0000:00:01.0: PME# disabled
[ 2.462101] pci 0000:00:03.0: [8086:340a] type 1 class 0x000604
[ 2.462214] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[ 2.462220] pci 0000:00:03.0: PME# disabled
[ 2.462266] pci 0000:00:07.0: [8086:340e] type 1 class 0x000604
[ 2.462378] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[ 2.462384] pci 0000:00:07.0: PME# disabled
[ 2.462430] pci 0000:00:10.0: [8086:3425] type 0 class 0x000800
[ 2.462559] pci 0000:00:10.1: [8086:3426] type 0 class 0x000800
[ 2.462672] pci 0000:00:11.0: [8086:3427] type 0 class 0x000800
[ 2.462802] pci 0000:00:11.1: [8086:3428] type 0 class 0x000800
[ 2.462917] pci 0000:00:13.0: [8086:342d] type 0 class 0x000800
[ 2.462939] pci 0000:00:13.0: reg 10: [mem 0xfbfff000-0xfbffffff]
[ 2.463037] pci 0000:00:13.0: PME# supported from D0 D3hot D3cold
[ 2.463043] pci 0000:00:13.0: PME# disabled
[ 2.463078] pci 0000:00:14.0: [8086:342e] type 0 class 0x000800
[ 2.463209] pci 0000:00:14.1: [8086:3422] type 0 class 0x000800
[ 2.463342] pci 0000:00:14.2: [8086:3423] type 0 class 0x000800
[ 2.463476] pci 0000:00:15.0: [8086:342f] type 0 class 0x000800
[ 2.463596] pci 0000:00:1a.0: [8086:3a37] type 0 class 0x000c03
[ 2.463672] pci 0000:00:1a.0: reg 20: [io 0xff00-0xff1f]
[ 2.463761] pci 0000:00:1a.1: [8086:3a38] type 0 class 0x000c03
[ 2.463836] pci 0000:00:1a.1: reg 20: [io 0xfe00-0xfe1f]
[ 2.463928] pci 0000:00:1a.2: [8086:3a39] type 0 class 0x000c03
[ 2.464000] pci 0000:00:1a.2: reg 20: [io 0xfd00-0xfd1f]
[ 2.464113] pci 0000:00:1a.7: [8086:3a3c] type 0 class 0x000c03
[ 2.464148] pci 0000:00:1a.7: reg 10: [mem 0xfbffe000-0xfbffe3ff]
[ 2.464305] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 2.464312] pci 0000:00:1a.7: PME# disabled
[ 2.464357] pci 0000:00:1b.0: [8086:3a3e] type 0 class 0x000403
[ 2.464384] pci 0000:00:1b.0: reg 10: [mem 0xfbff4000-0xfbff7fff 64bit]
[ 2.464508] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 2.464515] pci 0000:00:1b.0: PME# disabled
[ 2.464549] pci 0000:00:1c.0: [8086:3a40] type 1 class 0x000604
[ 2.464677] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 2.464683] pci 0000:00:1c.0: PME# disabled
[ 2.464721] pci 0000:00:1c.1: [8086:3a42] type 1 class 0x000604
[ 2.464849] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 2.464855] pci 0000:00:1c.1: PME# disabled
[ 2.464897] pci 0000:00:1c.4: [8086:3a48] type 1 class 0x000604
[ 2.465026] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 2.465032] pci 0000:00:1c.4: PME# disabled
[ 2.465074] pci 0000:00:1d.0: [8086:3a34] type 0 class 0x000c03
[ 2.465149] pci 0000:00:1d.0: reg 20: [io 0xfc00-0xfc1f]
[ 2.465238] pci 0000:00:1d.1: [8086:3a35] type 0 class 0x000c03
[ 2.465313] pci 0000:00:1d.1: reg 20: [io 0xfb00-0xfb1f]
[ 2.465402] pci 0000:00:1d.2: [8086:3a36] type 0 class 0x000c03
[ 2.465477] pci 0000:00:1d.2: reg 20: [io 0xfa00-0xfa1f]
[ 2.465582] pci 0000:00:1d.7: [8086:3a3a] type 0 class 0x000c03
[ 2.465617] pci 0000:00:1d.7: reg 10: [mem 0xfbffd000-0xfbffd3ff]
[ 2.465771] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 2.465779] pci 0000:00:1d.7: PME# disabled
[ 2.465815] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
[ 2.465928] pci 0000:00:1f.0: [8086:3a16] type 0 class 0x000601
[ 2.466059] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0800 (mask 000f)
[ 2.466064] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0290 (mask 000f)
[ 2.466147] pci 0000:00:1f.2: [8086:2822] type 0 class 0x000104
[ 2.466182] pci 0000:00:1f.2: reg 10: [io 0xf900-0xf907]
[ 2.466196] pci 0000:00:1f.2: reg 14: [io 0xf800-0xf803]
[ 2.466211] pci 0000:00:1f.2: reg 18: [io 0xf700-0xf707]
[ 2.466225] pci 0000:00:1f.2: reg 1c: [io 0xf600-0xf603]
[ 2.466239] pci 0000:00:1f.2: reg 20: [io 0xf500-0xf51f]
[ 2.466253] pci 0000:00:1f.2: reg 24: [mem 0xfbffc000-0xfbffc7ff]
[ 2.466340] pci 0000:00:1f.2: PME# supported from D3hot
[ 2.466346] pci 0000:00:1f.2: PME# disabled
[ 2.466375] pci 0000:00:1f.3: [8086:3a30] type 0 class 0x000c05
[ 2.466402] pci 0000:00:1f.3: reg 10: [mem 0xfbffb000-0xfbffb0ff 64bit]
[ 2.466441] pci 0000:00:1f.3: reg 20: [io 0x0500-0x051f]
[ 2.466557] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 2.466656] pci 0000:02:00.0: [10de:05e1] type 0 class 0x000300
[ 2.466676] pci 0000:02:00.0: reg 10: [mem 0xf8000000-0xf8ffffff]
[ 2.466696] pci 0000:02:00.0: reg 14: [mem 0xe0000000-0xefffffff 64bit pref]
[ 2.466717] pci 0000:02:00.0: reg 1c: [mem 0xf6000000-0xf7ffffff 64bit]
[ 2.466730] pci 0000:02:00.0: reg 24: [io 0xef00-0xef7f]
[ 2.466744] pci 0000:02:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
[ 2.472216] pci 0000:00:03.0: PCI bridge to [bus 02-02]
[ 2.472227] pci 0000:00:03.0: bridge window [io 0xe000-0xefff]
[ 2.472237] pci 0000:00:03.0: bridge window [mem 0xf6000000-0xf9ffffff]
[ 2.472251] pci 0000:00:03.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 2.472331] pci 0000:00:07.0: PCI bridge to [bus 03-03]
[ 2.472414] pci 0000:00:1c.0: PCI bridge to [bus 04-04]
[ 2.472521] pci 0000:05:00.0: [197b:2363] type 0 class 0x000101
[ 2.472649] pci 0000:05:00.0: reg 24: [mem 0xfbefe000-0xfbefffff]
[ 2.472741] pci 0000:05:00.0: PME# supported from D3hot
[ 2.472749] pci 0000:05:00.0: PME# disabled
[ 2.472789] pci 0000:05:00.1: [197b:2363] type 0 class 0x000101
[ 2.472824] pci 0000:05:00.1: reg 10: [io 0xdf00-0xdf07]
[ 2.472845] pci 0000:05:00.1: reg 14: [io 0xde00-0xde03]
[ 2.472864] pci 0000:05:00.1: reg 18: [io 0xdd00-0xdd07]
[ 2.472884] pci 0000:05:00.1: reg 1c: [io 0xdc00-0xdc03]
[ 2.472904] pci 0000:05:00.1: reg 20: [io 0xdb00-0xdb0f]
[ 2.473025] pci 0000:05:00.0: disabling ASPM on pre-1.1 PCIe device. You can enable it with 'pcie_aspm=force'
[ 2.473045] pci 0000:00:1c.1: PCI bridge to [bus 05-05]
[ 2.473051] pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
[ 2.473057] pci 0000:00:1c.1: bridge window [mem 0xfbe00000-0xfbefffff]
[ 2.473161] pci 0000:06:00.0: [10ec:8168] type 0 class 0x000200
[ 2.473185] pci 0000:06:00.0: reg 10: [io 0xce00-0xceff]
[ 2.473228] pci 0000:06:00.0: reg 18: [mem 0xfbbff000-0xfbbfffff 64bit pref]
[ 2.473256] pci 0000:06:00.0: reg 20: [mem 0xfbbf8000-0xfbbfbfff 64bit pref]
[ 2.473274] pci 0000:06:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[ 2.473374] pci 0000:06:00.0: supports D1 D2
[ 2.473376] pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 2.473384] pci 0000:06:00.0: PME# disabled
[ 2.480327] pci 0000:00:1c.4: PCI bridge to [bus 06-06]
[ 2.480338] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
[ 2.480348] pci 0000:00:1c.4: bridge window [mem 0xfbc00000-0xfbcfffff]
[ 2.480363] pci 0000:00:1c.4: bridge window [mem 0xfbb00000-0xfbbfffff 64bit pref]
[ 2.480446] pci 0000:07:06.0: [104c:8024] type 0 class 0x000c00
[ 2.480475] pci 0000:07:06.0: reg 10: [mem 0xfbdff000-0xfbdff7ff]
[ 2.480491] pci 0000:07:06.0: reg 14: [mem 0xfbdf8000-0xfbdfbfff]
[ 2.480606] pci 0000:07:06.0: supports D1 D2
[ 2.480608] pci 0000:07:06.0: PME# supported from D0 D1 D2 D3hot
[ 2.480615] pci 0000:07:06.0: PME# disabled
[ 2.480674] pci 0000:00:1e.0: PCI bridge to [bus 07-07] (subtractive decode)
[ 2.480684] pci 0000:00:1e.0: bridge window [mem 0xfbd00000-0xfbdfffff]
[ 2.480694] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 2.480698] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff] (subtractive decode)
[ 2.480701] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 2.480705] pci 0000:00:1e.0: bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
[ 2.480708] pci 0000:00:1e.0: bridge window [mem 0xdff00000-0xfebfffff] (subtractive decode)
[ 2.480766] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 2.481021] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
[ 2.481077] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
[ 2.481158] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
[ 2.481215] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
[ 2.481382] pci0000:00: Requesting ACPI _OSC control (0x1d)
[ 2.481387] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[ 2.481390] ACPI _OSC control for PCIe not granted, disabling ASPM
[ 2.511626] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
[ 2.511725] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
[ 2.511822] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
[ 2.511918] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
[ 2.512015] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
[ 2.512113] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
[ 2.512210] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
[ 2.512306] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 *4 5 6 7 9 10 11 12 14 15)
[ 2.512365] xen/balloon: Initialising balloon driver.
[ 2.528500] xen-balloon: Initialising balloon driver.
[ 2.528525] xen/balloon: Xen selfballooning driver disabled for domain0.
[ 2.528652] vgaarb: device added: PCI:0000:02:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 2.528658] vgaarb: loaded
[ 2.528659] vgaarb: bridge control possible 0000:02:00.0
[ 2.528742] i2c-core: driver [aat2870] using legacy suspend method
[ 2.528745] i2c-core: driver [aat2870] using legacy resume method
[ 2.528802] SCSI subsystem initialized
[ 2.528882] libata version 3.00 loaded.
[ 2.528927] usbcore: registered new interface driver usbfs
[ 2.528939] usbcore: registered new interface driver hub
[ 2.528981] usbcore: registered new device driver usb
[ 2.529085] PCI: Using ACPI for IRQ routing
[ 2.531669] PCI: Discovered peer bus 3f
[ 2.531705] pci 0000:3f:00.0: [8086:2c41] type 0 class 0x000600
[ 2.531765] pci 0000:3f:00.1: [8086:2c01] type 0 class 0x000600
[ 2.531826] pci 0000:3f:02.0: [8086:2c10] type 0 class 0x000600
[ 2.531878] pci 0000:3f:02.1: [8086:2c11] type 0 class 0x000600
[ 2.531936] pci 0000:3f:03.0: [8086:2c18] type 0 class 0x000600
[ 2.531990] pci 0000:3f:03.1: [8086:2c19] type 0 class 0x000600
[ 2.532044] pci 0000:3f:03.4: [8086:2c1c] type 0 class 0x000600
[ 2.532100] pci 0000:3f:04.0: [8086:2c20] type 0 class 0x000600
[ 2.532152] pci 0000:3f:04.1: [8086:2c21] type 0 class 0x000600
[ 2.532203] pci 0000:3f:04.2: [8086:2c22] type 0 class 0x000600
[ 2.532255] pci 0000:3f:04.3: [8086:2c23] type 0 class 0x000600
[ 2.532312] pci 0000:3f:05.0: [8086:2c28] type 0 class 0x000600
[ 2.532364] pci 0000:3f:05.1: [8086:2c29] type 0 class 0x000600
[ 2.532417] pci 0000:3f:05.2: [8086:2c2a] type 0 class 0x000600
[ 2.532470] pci 0000:3f:05.3: [8086:2c2b] type 0 class 0x000600
[ 2.532527] pci 0000:3f:06.0: [8086:2c30] type 0 class 0x000600
[ 2.532579] pci 0000:3f:06.1: [8086:2c31] type 0 class 0x000600
[ 2.532631] pci 0000:3f:06.2: [8086:2c32] type 0 class 0x000600
[ 2.532683] pci 0000:3f:06.3: [8086:2c33] type 0 class 0x000600
[ 2.533181] PCI: pci_cache_line_size set to 64 bytes
[ 2.533395] reserve RAM buffer: 0000000000097000 - 000000000009ffff
[ 2.533399] reserve RAM buffer: 00000000dfee0000 - 00000000dfffffff
[ 2.533402] reserve RAM buffer: 0000000180120000 - 0000000183ffffff
[ 2.533484] NetLabel: Initializing
[ 2.533487] NetLabel: domain hash size = 128
[ 2.533489] NetLabel: protocols = UNLABELED CIPSOv4
[ 2.533498] NetLabel: unlabeled traffic allowed by default
[ 2.533578] Switching to clocksource xen
[ 2.539394] AppArmor: AppArmor Filesystem Enabled
[ 2.539411] pnp: PnP ACPI init
[ 2.539420] ACPI: bus type pnp registered
[ 2.539581] pnp 00:00: [bus 00-3f]
[ 2.539585] pnp 00:00: [io 0x0cf8-0x0cff]
[ 2.539587] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 2.539590] pnp 00:00: [io 0x0d00-0xffff window]
[ 2.539593] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 2.539596] pnp 00:00: [mem 0x000c0000-0x000dffff window]
[ 2.539598] pnp 00:00: [mem 0xdff00000-0xfebfffff window]
[ 2.539673] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
[ 2.539822] pnp 00:01: [io 0x0010-0x001f]
[ 2.539825] pnp 00:01: [io 0x0022-0x003f]
[ 2.539827] pnp 00:01: [io 0x0044-0x005f]
[ 2.539830] pnp 00:01: [io 0x0062-0x0063]
[ 2.539832] pnp 00:01: [io 0x0065-0x006f]
[ 2.539834] pnp 00:01: [io 0x0074-0x007f]
[ 2.539837] pnp 00:01: [io 0x0091-0x0093]
[ 2.539839] pnp 00:01: [io 0x00a2-0x00bf]
[ 2.539841] pnp 00:01: [io 0x00e0-0x00ef]
[ 2.539844] pnp 00:01: [io 0x04d0-0x04d1]
[ 2.539846] pnp 00:01: [io 0x0290-0x029f]
[ 2.539848] pnp 00:01: [io 0x0800-0x087f]
[ 2.539850] pnp 00:01: [io 0x0290-0x0294]
[ 2.539853] pnp 00:01: [io 0x0880-0x088f]
[ 2.539927] system 00:01: [io 0x04d0-0x04d1] has been reserved
[ 2.539930] system 00:01: [io 0x0290-0x029f] has been reserved
[ 2.539934] system 00:01: [io 0x0800-0x087f] has been reserved
[ 2.539937] system 00:01: [io 0x0290-0x0294] has been reserved
[ 2.539940] system 00:01: [io 0x0880-0x088f] has been reserved
[ 2.539944] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 2.539964] pnp 00:02: [dma 4]
[ 2.539966] pnp 00:02: [io 0x0000-0x000f]
[ 2.539968] pnp 00:02: [io 0x0080-0x0090]
[ 2.539971] pnp 00:02: [io 0x0094-0x009f]
[ 2.539973] pnp 00:02: [io 0x00c0-0x00df]
[ 2.540007] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[ 2.540105] pnp 00:03: [irq 0 disabled]
[ 2.540109] xen: registering gsi 8 triggering 1 polarity 0
[ 2.540114] xen_map_pirq_gsi: returning irq 8 for gsi 8
[ 2.540116] xen: --> pirq=8 -> irq=8 (gsi=8)
[ 2.540123] pnp 00:03: [irq 8]
[ 2.540125] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[ 2.540166] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[ 2.540220] pnp 00:04: [io 0x0070-0x0073]
[ 2.540260] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 2.540276] pnp 00:05: [io 0x0061]
[ 2.540313] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
[ 2.540327] pnp 00:06: [io 0x00f0-0x00ff]
[ 2.540330] xen: registering gsi 13 triggering 1 polarity 0
[ 2.540334] xen_map_pirq_gsi: returning irq 13 for gsi 13
[ 2.540336] xen: --> pirq=13 -> irq=13 (gsi=13)
[ 2.540341] pnp 00:06: [irq 13]
[ 2.540380] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 2.540755] pnp 00:07: [io 0x0400-0x04cf]
[ 2.540758] pnp 00:07: [io 0x04d2-0x04ff]
[ 2.540828] system 00:07: [io 0x0400-0x04cf] has been reserved
[ 2.540832] system 00:07: [io 0x04d2-0x04ff] has been reserved
[ 2.540836] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 2.541231] pnp 00:08: [mem 0xf0000000-0xf3ffffff]
[ 2.541316] system 00:08: [mem 0xf0000000-0xf3ffffff] has been reserved
[ 2.541320] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 2.541752] pnp 00:09: [mem 0x000d5200-0x000d7fff]
[ 2.541756] pnp 00:09: [mem 0x000f0000-0x000f7fff]
[ 2.541758] pnp 00:09: [mem 0x000f8000-0x000fbfff]
[ 2.541761] pnp 00:09: [mem 0x000fc000-0x000fffff]
[ 2.541764] pnp 00:09: [mem 0xdfee0000-0xdfefffff]
[ 2.541766] pnp 00:09: [mem 0x00000000-0x0009ffff]
[ 2.541769] pnp 00:09: [mem 0x00100000-0xdfedffff]
[ 2.541771] pnp 00:09: [mem 0xfec00000-0xfec00fff]
[ 2.541774] pnp 00:09: [mem 0xfed10000-0xfed1dfff]
[ 2.541776] pnp 00:09: [mem 0xfed20000-0xfed8ffff]
[ 2.541779] pnp 00:09: [mem 0xfee00000-0xfee00fff]
[ 2.541781] pnp 00:09: [mem 0xffb00000-0xffb7ffff]
[ 2.541784] pnp 00:09: [mem 0xfff00000-0xffffffff]
[ 2.541786] pnp 00:09: [mem 0x000e0000-0x000effff]
[ 2.541878] system 00:09: [mem 0x000d5200-0x000d7fff] could not be reserved
[ 2.541881] system 00:09: [mem 0x000f0000-0x000f7fff] could not be reserved
[ 2.541885] system 00:09: [mem 0x000f8000-0x000fbfff] could not be reserved
[ 2.541888] system 00:09: [mem 0x000fc000-0x000fffff] could not be reserved
[ 2.541891] system 00:09: [mem 0xdfee0000-0xdfefffff] could not be reserved
[ 2.541894] system 00:09: [mem 0x00000000-0x0009ffff] could not be reserved
[ 2.541897] system 00:09: [mem 0x00100000-0xdfedffff] could not be reserved
[ 2.541901] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 2.541904] system 00:09: [mem 0xfed10000-0xfed1dfff] has been reserved
[ 2.541907] system 00:09: [mem 0xfed20000-0xfed8ffff] has been reserved
[ 2.541910] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
[ 2.541914] system 00:09: [mem 0xffb00000-0xffb7ffff] has been reserved
[ 2.541917] system 00:09: [mem 0xfff00000-0xffffffff] has been reserved
[ 2.541920] system 00:09: [mem 0x000e0000-0x000effff] could not be reserved
[ 2.541924] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 2.541960] pnp 00:0a: [mem 0xffb80000-0xffbfffff]
[ 2.542018] pnp 00:0a: Plug and Play ACPI device, IDs INT0800 (active)
[ 2.542028] pnp: PnP ACPI: found 11 devices
[ 2.542030] ACPI: ACPI bus type pnp unregistered
[ 2.548697] PM-Timer failed consistency check (0x0xffffff) - aborting.
[ 2.548723] PCI: max bus depth: 1 pci_try_num: 2
[ 2.548819] pci 0000:00:1c.1: BAR 15: assigned [mem 0xf4000000-0xf41fffff 64bit pref]
[ 2.548824] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf4200000-0xf43fffff]
[ 2.548827] pci 0000:00:1c.0: BAR 15: assigned [mem 0xf4400000-0xf45fffff 64bit pref]
[ 2.548832] pci 0000:00:1c.0: BAR 13: assigned [io 0x1000-0x1fff]
[ 2.548835] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 2.548852] pci 0000:02:00.0: BAR 6: assigned [mem 0xf9000000-0xf907ffff pref]
[ 2.548855] pci 0000:00:03.0: PCI bridge to [bus 02-02]
[ 2.548860] pci 0000:00:03.0: bridge window [io 0xe000-0xefff]
[ 2.548867] pci 0000:00:03.0: bridge window [mem 0xf6000000-0xf9ffffff]
[ 2.548873] pci 0000:00:03.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 2.548882] pci 0000:00:07.0: PCI bridge to [bus 03-03]
[ 2.548897] pci 0000:00:1c.0: PCI bridge to [bus 04-04]
[ 2.548902] pci 0000:00:1c.0: bridge window [io 0x1000-0x1fff]
[ 2.548910] pci 0000:00:1c.0: bridge window [mem 0xf4200000-0xf43fffff]
[ 2.548916] pci 0000:00:1c.0: bridge window [mem 0xf4400000-0xf45fffff 64bit pref]
[ 2.548926] pci 0000:00:1c.1: PCI bridge to [bus 05-05]
[ 2.548930] pci 0000:00:1c.1: bridge window [io 0xd000-0xdfff]
[ 2.548938] pci 0000:00:1c.1: bridge window [mem 0xfbe00000-0xfbefffff]
[ 2.548944] pci 0000:00:1c.1: bridge window [mem 0xf4000000-0xf41fffff 64bit pref]
[ 2.548955] pci 0000:06:00.0: BAR 6: assigned [mem 0xfbb00000-0xfbb1ffff pref]
[ 2.548958] pci 0000:00:1c.4: PCI bridge to [bus 06-06]
[ 2.548962] pci 0000:00:1c.4: bridge window [io 0xc000-0xcfff]
[ 2.548970] pci 0000:00:1c.4: bridge window [mem 0xfbc00000-0xfbcfffff]
[ 2.548976] pci 0000:00:1c.4: bridge window [mem 0xfbb00000-0xfbbfffff 64bit pref]
[ 2.548986] pci 0000:00:1e.0: PCI bridge to [bus 07-07]
[ 2.548993] pci 0000:00:1e.0: bridge window [mem 0xfbd00000-0xfbdfffff]
[ 2.549012] xen: registering gsi 16 triggering 0 polarity 1
[ 2.549023] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 2.549028] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 2.549036] pci 0000:00:01.0: setting latency timer to 64
[ 2.549044] xen: registering gsi 16 triggering 0 polarity 1
[ 2.549047] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 2.549050] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 2.549052] Already setup the GSI :16
[ 2.549055] pci 0000:00:03.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 2.549061] pci 0000:00:03.0: setting latency timer to 64
[ 2.549068] xen: registering gsi 16 triggering 0 polarity 1
[ 2.549071] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 2.549074] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 2.549076] Already setup the GSI :16
[ 2.549079] pci 0000:00:07.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 2.549086] pci 0000:00:07.0: setting latency timer to 64
[ 2.549096] pci 0000:00:1c.0: enabling device (0000 -> 0003)
[ 2.549100] xen: registering gsi 16 triggering 0 polarity 1
[ 2.549103] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 2.549106] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 2.549108] Already setup the GSI :16
[ 2.549111] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 2.549119] pci 0000:00:1c.0: setting latency timer to 64
[ 2.549127] xen: registering gsi 17 triggering 0 polarity 1
[ 2.549133] xen: --> pirq=17 -> irq=17 (gsi=17)
[ 2.549138] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 2.549144] pci 0000:00:1c.1: setting latency timer to 64
[ 2.549153] xen: registering gsi 16 triggering 0 polarity 1
[ 2.549156] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 2.549159] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 2.549161] Already setup the GSI :16
[ 2.549164] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 2.549170] pci 0000:00:1c.4: setting latency timer to 64
[ 2.549181] pci 0000:00:1e.0: setting latency timer to 64
[ 2.549186] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 2.549189] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 2.549192] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 2.549195] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
[ 2.549198] pci_bus 0000:00: resource 8 [mem 0xdff00000-0xfebfffff]
[ 2.549201] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
[ 2.549205] pci_bus 0000:02: resource 1 [mem 0xf6000000-0xf9ffffff]
[ 2.549208] pci_bus 0000:02: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[ 2.549213] pci_bus 0000:04: resource 0 [io 0x1000-0x1fff]
[ 2.549216] pci_bus 0000:04: resource 1 [mem 0xf4200000-0xf43fffff]
[ 2.549220] pci_bus 0000:04: resource 2 [mem 0xf4400000-0xf45fffff 64bit pref]
[ 2.549224] pci_bus 0000:05: resource 0 [io 0xd000-0xdfff]
[ 2.549228] pci_bus 0000:05: resource 1 [mem 0xfbe00000-0xfbefffff]
[ 2.549232] pci_bus 0000:05: resource 2 [mem 0xf4000000-0xf41fffff 64bit pref]
[ 2.549236] pci_bus 0000:06: resource 0 [io 0xc000-0xcfff]
[ 2.549239] pci_bus 0000:06: resource 1 [mem 0xfbc00000-0xfbcfffff]
[ 2.549243] pci_bus 0000:06: resource 2 [mem 0xfbb00000-0xfbbfffff 64bit pref]
[ 2.549247] pci_bus 0000:07: resource 1 [mem 0xfbd00000-0xfbdfffff]
[ 2.549251] pci_bus 0000:07: resource 4 [io 0x0000-0x0cf7]
[ 2.549254] pci_bus 0000:07: resource 5 [io 0x0d00-0xffff]
[ 2.549258] pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff]
[ 2.549262] pci_bus 0000:07: resource 7 [mem 0x000c0000-0x000dffff]
[ 2.549265] pci_bus 0000:07: resource 8 [mem 0xdff00000-0xfebfffff]
[ 2.549269] pci_bus 0000:3f: resource 0 [io 0x0000-0xffff]
[ 2.549272] pci_bus 0000:3f: resource 1 [mem 0x00000000-0xfffffffff]
[ 2.549307] NET: Registered protocol family 2
[ 2.549520] IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
[ 2.550969] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[ 2.551996] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 2.552158] TCP: Hash tables configured (established 262144 bind 65536)
[ 2.552161] TCP reno registered
[ 2.552204] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[ 2.552268] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[ 2.552352] NET: Registered protocol family 1
[ 2.552399] xen: registering gsi 16 triggering 0 polarity 1
[ 2.552405] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 2.552407] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 2.552410] Already setup the GSI :16
[ 2.552413] pci 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 2.552437] pci 0000:00:1a.0: PCI INT A disabled
[ 2.552446] xen: registering gsi 21 triggering 0 polarity 1
[ 2.552453] xen: --> pirq=21 -> irq=21 (gsi=21)
[ 2.552458] pci 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 2.552481] pci 0000:00:1a.1: PCI INT B disabled
[ 2.552489] xen: registering gsi 18 triggering 0 polarity 1
[ 2.552495] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.552500] pci 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.552523] pci 0000:00:1a.2: PCI INT C disabled
[ 2.552533] xen: registering gsi 18 triggering 0 polarity 1
[ 2.552536] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.552539] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.552541] Already setup the GSI :18
[ 2.552544] pci 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.565694] pci 0000:00:1a.7: PCI INT C disabled
[ 2.565728] xen: registering gsi 23 triggering 0 polarity 1
[ 2.565736] xen: --> pirq=23 -> irq=23 (gsi=23)
[ 2.565741] pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 2.565763] pci 0000:00:1d.0: PCI INT A disabled
[ 2.565772] xen: registering gsi 19 triggering 0 polarity 1
[ 2.565778] xen: --> pirq=19 -> irq=19 (gsi=19)
[ 2.565782] pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 2.565805] pci 0000:00:1d.1: PCI INT B disabled
[ 2.565813] xen: registering gsi 18 triggering 0 polarity 1
[ 2.565816] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.565819] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.565821] Already setup the GSI :18
[ 2.565824] pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.565846] pci 0000:00:1d.2: PCI INT C disabled
[ 2.565857] xen: registering gsi 23 triggering 0 polarity 1
[ 2.565860] xen_map_pirq_gsi: returning irq 23 for gsi 23
[ 2.565862] xen: --> pirq=23 -> irq=23 (gsi=23)
[ 2.565865] Already setup the GSI :23
[ 2.565867] pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 2.581691] pci 0000:00:1d.7: PCI INT A disabled
[ 2.581738] pci 0000:02:00.0: Boot video device
[ 2.581791] PCI: CLS 64 bytes, default 64
[ 2.582332] audit: initializing netlink socket (disabled)
[ 2.582344] type=2000 audit(1336124227.574:1): initialized
[ 2.601350] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 2.602798] VFS: Disk quotas dquot_6.5.2
[ 2.602848] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 2.603292] fuse init (API version 7.17)
[ 2.603394] msgmni has been set to 655
[ 2.603880] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 2.603921] io scheduler noop registered
[ 2.603925] io scheduler deadline registered
[ 2.603959] io scheduler cfq registered (default)
[ 2.604276] pcieport 0000:00:1c.0: setting latency timer to 64
[ 2.604443] pcieport 0000:00:1c.1: setting latency timer to 64
[ 2.604593] pcieport 0000:00:1c.4: setting latency timer to 64
[ 2.604763] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 2.604784] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 2.604895] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[ 2.604901] ACPI: Power Button [PWRB]
[ 2.604945] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 2.604949] ACPI: Power Button [PWRF]
[ 2.609738] ERST: Table is not found!
[ 2.609742] GHES: HEST is not enabled!
[ 2.610105] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 2.764246] hpet_acpi_add: no address or irqs in _CRS
[ 2.764262] Linux agpgart interface v0.103
[ 2.765650] brd: module loaded
[ 2.766434] loop: module loaded
[ 2.766554] ahci 0000:00:1f.2: version 3.0
[ 2.766567] xen: registering gsi 19 triggering 0 polarity 1
[ 2.766572] xen_map_pirq_gsi: returning irq 19 for gsi 19
[ 2.766575] xen: --> pirq=19 -> irq=19 (gsi=19)
[ 2.766578] Already setup the GSI :19
[ 2.766581] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 2.766663] ahci 0000:00:1f.2: controller can't do SNTF, turning off CAP_SNTF
[ 2.766686] ahci: SSS flag set, parallel bus scan disabled
[ 2.766725] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl RAID mode
[ 2.766729] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pmp pio slum part ccc ems
[ 2.766736] ahci 0000:00:1f.2: setting latency timer to 64
[ 2.806086] scsi0 : ahci
[ 2.806164] scsi1 : ahci
[ 2.806231] scsi2 : ahci
[ 2.806301] scsi3 : ahci
[ 2.806367] scsi4 : ahci
[ 2.806433] scsi5 : ahci
[ 2.806671] ata1: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc100 irq 325
[ 2.806676] ata2: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc180 irq 325
[ 2.806679] ata3: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc200 irq 325
[ 2.806683] ata4: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc280 irq 325
[ 2.806687] ata5: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc300 irq 325
[ 2.806690] ata6: SATA max UDMA/133 abar m2048@0xfbffc000 port 0xfbffc380 irq 325
[ 2.806715] xen: registering gsi 17 triggering 0 polarity 1
[ 2.806719] xen_map_pirq_gsi: returning irq 17 for gsi 17
[ 2.806722] xen: --> pirq=17 -> irq=17 (gsi=17)
[ 2.806724] Already setup the GSI :17
[ 2.806727] ahci 0000:05:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 2.821697] ahci 0000:05:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
[ 2.821705] ahci 0000:05:00.0: flags: 64bit ncq pm led clo pmp pio slum part
[ 2.821717] ahci 0000:05:00.0: setting latency timer to 64
[ 2.821961] scsi6 : ahci
[ 2.822036] scsi7 : ahci
[ 2.822147] ata7: SATA max UDMA/133 abar m8192@0xfbefe000 port 0xfbefe100 irq 17
[ 2.822152] ata8: SATA max UDMA/133 abar m8192@0xfbefe000 port 0xfbefe180 irq 17
[ 2.822245] pata_acpi 0000:05:00.1: enabling device (0000 -> 0001)
[ 2.822252] xen: registering gsi 18 triggering 0 polarity 1
[ 2.822257] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.822259] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.822262] Already setup the GSI :18
[ 2.822265] pata_acpi 0000:05:00.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
[ 2.822293] pata_acpi 0000:05:00.1: setting latency timer to 64
[ 2.822308] pata_acpi 0000:05:00.1: PCI INT B disabled
[ 2.822536] Fixed MDIO Bus: probed
[ 2.822551] tun: Universal TUN/TAP device driver, 1.6
[ 2.822553] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 2.822607] PPP generic driver version 2.4.2
[ 2.822704] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 2.822722] xen: registering gsi 18 triggering 0 polarity 1
[ 2.822727] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.822729] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.822732] Already setup the GSI :18
[ 2.822735] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.822753] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[ 2.822758] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[ 2.822803] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[ 2.822850] ehci_hcd 0000:00:1a.7: debug port 1
[ 2.826735] ehci_hcd 0000:00:1a.7: cache line size of 64 is not supported
[ 2.826753] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xfbffe000
[ 2.841667] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 2.841804] hub 1-0:1.0: USB hub found
[ 2.841809] hub 1-0:1.0: 6 ports detected
[ 2.841884] xen: registering gsi 23 triggering 0 polarity 1
[ 2.841888] xen_map_pirq_gsi: returning irq 23 for gsi 23
[ 2.841891] xen: --> pirq=23 -> irq=23 (gsi=23)
[ 2.841893] Already setup the GSI :23
[ 2.841896] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 2.841914] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 2.841919] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 2.841966] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 2.842007] ehci_hcd 0000:00:1d.7: debug port 1
[ 2.845901] ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
[ 2.845919] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xfbffd000
[ 2.861667] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 2.861792] hub 2-0:1.0: USB hub found
[ 2.861797] hub 2-0:1.0: 6 ports detected
[ 2.861871] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 2.861886] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.861905] xen: registering gsi 16 triggering 0 polarity 1
[ 2.861909] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 2.861912] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 2.861914] Already setup the GSI :16
[ 2.861917] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 2.861930] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[ 2.861934] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 2.861981] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[ 2.862024] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000ff00
[ 2.862160] hub 3-0:1.0: USB hub found
[ 2.862165] hub 3-0:1.0: 2 ports detected
[ 2.862233] xen: registering gsi 21 triggering 0 polarity 1
[ 2.862237] xen_map_pirq_gsi: returning irq 21 for gsi 21
[ 2.862240] xen: --> pirq=21 -> irq=21 (gsi=21)
[ 2.862242] Already setup the GSI :21
[ 2.862245] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
[ 2.862255] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[ 2.862260] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 2.862310] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[ 2.862352] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000fe00
[ 2.862479] hub 4-0:1.0: USB hub found
[ 2.862484] hub 4-0:1.0: 2 ports detected
[ 2.862551] xen: registering gsi 18 triggering 0 polarity 1
[ 2.862556] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.862559] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.862561] Already setup the GSI :18
[ 2.862564] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.862574] uhci_hcd 0000:00:1a.2: setting latency timer to 64
[ 2.862579] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[ 2.862626] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
[ 2.862656] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000fd00
[ 2.862781] hub 5-0:1.0: USB hub found
[ 2.862786] hub 5-0:1.0: 2 ports detected
[ 2.862854] xen: registering gsi 23 triggering 0 polarity 1
[ 2.862858] xen_map_pirq_gsi: returning irq 23 for gsi 23
[ 2.862861] xen: --> pirq=23 -> irq=23 (gsi=23)
[ 2.862864] Already setup the GSI :23
[ 2.862867] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[ 2.862877] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 2.862881] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 2.862928] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[ 2.862959] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000fc00
[ 2.863090] hub 6-0:1.0: USB hub found
[ 2.863095] hub 6-0:1.0: 2 ports detected
[ 2.863165] xen: registering gsi 19 triggering 0 polarity 1
[ 2.863169] xen_map_pirq_gsi: returning irq 19 for gsi 19
[ 2.863172] xen: --> pirq=19 -> irq=19 (gsi=19)
[ 2.863174] Already setup the GSI :19
[ 2.863177] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 2.863187] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 2.863192] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 2.863239] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
[ 2.863282] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000fb00
[ 2.863406] hub 7-0:1.0: USB hub found
[ 2.863411] hub 7-0:1.0: 2 ports detected
[ 2.863478] xen: registering gsi 18 triggering 0 polarity 1
[ 2.863483] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.863486] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.863488] Already setup the GSI :18
[ 2.863491] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.863501] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 2.863506] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 2.863556] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
[ 2.863588] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000fa00
[ 2.863713] hub 8-0:1.0: USB hub found
[ 2.863718] hub 8-0:1.0: 2 ports detected
[ 2.863832] usbcore: registered new interface driver libusual
[ 2.863860] i8042: PNP: No PS/2 controller found. Probing ports directly.
[ 2.864282] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 2.864290] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 2.864434] mousedev: PS/2 mouse device common for all mice
[ 2.864615] rtc_cmos 00:04: RTC can wake from S4
[ 2.864746] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[ 2.864778] rtc0: alarms up to one month, 242 bytes nvram
[ 2.864840] device-mapper: uevent: version 1.0.3
[ 2.864917] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[ 2.864924] EFI Variables Facility v0.08 2004-May-17
[ 2.865139] TCP cubic registered
[ 2.865218] NET: Registered protocol family 10
[ 2.865693] NET: Registered protocol family 17
[ 2.865709] Registering the dns_resolver key type
[ 2.865853] PM: Hibernation image not present or could not be loaded.
[ 2.865863] registered taskstats version 1
[ 2.874865] Magic number: 12:825:625
[ 2.874953] rtc_cmos 00:04: setting system clock to 2012-05-04 09:37:07 UTC (1336124227)
[ 2.875310] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 2.875313] EDD information not available.
[ 3.125677] ata1: SATA link down (SStatus 0 SControl 300)
[ 3.209669] usb 1-2: new high-speed USB device number 3 using ehci_hcd
[ 3.313680] ata8: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 3.313711] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.314188] ata8.00: ATAPI: TSSTcorp CDDVDW SH-S223Q, SB02, max UDMA/100
[ 3.314514] ata7.00: HPA detected: current 976771055, native 976773168
[ 3.314603] ata7.00: ATA-8: WDC WD5002ABYS-01B1B0, 02.03B02, max UDMA/133
[ 3.314610] ata7.00: 976771055 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 3.314919] ata8.00: configured for UDMA/100
[ 3.315569] ata7.00: configured for UDMA/133
[ 3.343469] hub 1-2:1.0: USB hub found
[ 3.343799] hub 1-2:1.0: 4 ports detected
[ 3.445676] ata2: SATA link down (SStatus 0 SControl 300)
[ 3.581676] usb 3-1: new low-speed USB device number 2 using uhci_hcd
[ 3.845940] usb 1-2.1: new full-speed USB device number 4 using ehci_hcd
[ 3.937680] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3.938574] ata3.00: ATA-8: WDC WD5002ABYS-01B1B0, 02.03B02, max UDMA/133
[ 3.938581] ata3.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[ 3.939522] ata3.00: configured for UDMA/133
[ 3.939618] scsi 2:0:0:0: Direct-Access ATA WDC WD5002ABYS-0 02.0 PQ: 0 ANSI: 5
[ 3.939738] sd 2:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 3.939764] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 3.939857] sd 2:0:0:0: [sda] Write Protect is off
[ 3.939862] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 3.939910] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 3.952649] sda: sda1 < >
[ 3.952948] sd 2:0:0:0: [sda] Attached SCSI disk
[ 4.013936] usb 1-2.3: new high-speed USB device number 5 using ehci_hcd
[ 4.107479] hub 1-2.3:1.0: USB hub found
[ 4.107808] hub 1-2.3:1.0: 4 ports detected
[ 4.257672] ata4: SATA link down (SStatus 0 SControl 300)
[ 4.377921] usb 1-2.3.3: new low-speed USB device number 6 using ehci_hcd
[ 4.749671] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 4.750538] ata5.00: ATA-8: WDC WD5002ABYS-01B1B0, 02.03B02, max UDMA/133
[ 4.750545] ata5.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[ 4.751475] ata5.00: configured for UDMA/133
[ 4.751552] scsi 4:0:0:0: Direct-Access ATA WDC WD5002ABYS-0 02.0 PQ: 0 ANSI: 5
[ 4.751681] sd 4:0:0:0: Attached scsi generic sg1 type 0
[ 4.751686] sd 4:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 4.751768] sd 4:0:0:0: [sdb] Write Protect is off
[ 4.751772] sd 4:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 4.751797] sd 4:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.759298] sdb: sdb1 < sdb5 >
[ 4.759566] sd 4:0:0:0: [sdb] Attached SCSI disk
[ 5.241676] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 5.242570] ata6.00: ATA-8: WDC WD5002ABYS-01B1B0, 02.03B02, max UDMA/133
[ 5.242577] ata6.00: 976773168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[ 5.243554] ata6.00: configured for UDMA/133
[ 5.243619] scsi 5:0:0:0: Direct-Access ATA WDC WD5002ABYS-0 02.0 PQ: 0 ANSI: 5
[ 5.243730] sd 5:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/465 GiB)
[ 5.243742] sd 5:0:0:0: Attached scsi generic sg2 type 0
[ 5.243804] sd 5:0:0:0: [sdc] Write Protect is off
[ 5.243809] sd 5:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 5.243837] sd 5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.243867] scsi 6:0:0:0: Direct-Access ATA WDC WD5002ABYS-0 02.0 PQ: 0 ANSI: 5
[ 5.243993] sd 6:0:0:0: [sdd] 976771055 512-byte logical blocks: (500 GB/465 GiB)
[ 5.244017] sd 6:0:0:0: Attached scsi generic sg3 type 0
[ 5.244084] sd 6:0:0:0: [sdd] Write Protect is off
[ 5.244089] sd 6:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[ 5.244155] sd 6:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 5.244645] scsi 7:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S223Q SB02 PQ: 0 ANSI: 5
[ 5.247992] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[ 5.247999] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 5.248118] sr 7:0:0:0: Attached scsi CD-ROM sr0
[ 5.248197] sr 7:0:0:0: Attached scsi generic sg4 type 5
[ 5.250149] sdc: unknown partition table
[ 5.250336] sd 5:0:0:0: [sdc] Attached SCSI disk
[ 5.267374] sdd: sdd1 sdd2 sdd3 sdd4
[ 5.267760] sd 6:0:0:0: [sdd] Attached SCSI disk
[ 5.268071] Freeing unused kernel memory: 920k freed
[ 5.268219] Write protecting the kernel read-only data: 12288k
[ 5.272885] Freeing unused kernel memory: 1520k freed
[ 5.273494] Freeing unused kernel memory: 1140k freed
[ 5.308013] udevd[132]: starting version 175
[ 5.331716] xor: automatically using best checksumming function: generic_sse
[ 5.349663] generic_sse: 2980.000 MB/sec
[ 5.349671] xor: using function: generic_sse (2980.000 MB/sec)
[ 5.350809] device-mapper: dm-raid45: initialized v0.2594b
[ 5.390280] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[ 5.390312] xen: registering gsi 16 triggering 0 polarity 1
[ 5.390324] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 5.390329] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 5.390335] Already setup the GSI :16
[ 5.390341] r8169 0000:06:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 5.390390] r8169 0000:06:00.0: setting latency timer to 64
[ 5.391065] r8169 0000:06:00.0: eth0: RTL8168d/8111d at 0xffffc90000c2a000, 00:1f:d0:dc:30:92, XID 081000c0 IRQ 326
[ 5.391072] r8169 0000:06:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 5.400017] xen: registering gsi 18 triggering 0 polarity 1
[ 5.400028] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 5.400033] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 5.400037] Already setup the GSI :18
[ 5.400045] firewire_ohci 0000:07:06.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 5.426325] input: HID 046a:0011 as /devices/pci0000:00/0000:00:1a.0/usb3/3-1/3-1:1.0/input/input2
[ 5.426466] generic-usb 0003:046A:0011.0001: input,hidraw0: USB HID v1.11 Keyboard [HID 046a:0011] on usb-0000:00:1a.0-1/input0
[ 5.444109] input: Microsoft SideWinder Force Feedback 2 Joystick as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2.1/1-2.1:1.0/input/input3
[ 5.453759] firewire_ohci: Added fw-ohci device 0000:07:06.0, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x2
[ 5.457035] generic-usb 0003:045E:001B.0002: device reports 0 simultaneous effects
[ 5.466411] generic-usb 0003:045E:001B.0002: pid_block_load failed 60 times
[ 5.466415] generic-usb 0003:045E:001B.0002: upload request failed
[ 5.466422] generic-usb 0003:045E:001B.0002: input,hidraw1: USB HID v1.00 Joystick [Microsoft SideWinder Force Feedback 2 Joystick] on usb-0000:00:1a.7-2.1/input0
[ 5.468987] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1a.7/usb1/1-2/1-2.3/1-2.3.3/1-2.3.3:1.0/input/input4
[ 5.469093] generic-usb 0003:046D:C03F.0003: input,hidraw2: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1a.7-2.3.3/input0
[ 5.469114] usbcore: registered new interface driver usbhid
[ 5.469116] usbhid: USB HID core driver
[ 5.887488] EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
[ 5.953765] firewire_core: created device fw0: GUID 00ac14fa00001fd0, S400
[ 6.089730] device-mapper: dm-raid45: /dev/sda is raid disk 0
[ 6.089735] device-mapper: dm-raid45: /dev/sdb is raid disk 1
[ 6.089738] device-mapper: dm-raid45: /dev/sdc is raid disk 2
[ 6.089742] device-mapper: dm-raid45: 128/128/256 sectors chunk/io/recovery size, 80 stripes
[ 6.089743] algorithm "xor_32", 8 chunks with 9687MB/s
[ 6.089744] RAID5 (left asymmetric) set with net 2/3 devices
[ 12.114699] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 12.138489] udevd[813]: starting version 175
[ 12.142198] Adding 8000364k swap on /dev/sdd3. Priority:-1 extents:1 across:8000364k
[ 12.154311] lp: driver loaded but no devices found
[ 12.163818] it87: Found IT8720F chip at 0x290, revision 5
[ 12.163831] it87: VID is disabled (pins used for GPIO)
[ 12.163850] it87: Routing internal VCCH to in7
[ 12.163857] it87: Beeping is supported
[ 12.180420] wmi: Mapper loaded
[ 12.184995] [drm] Initialized drm 1.1.0 20060810
[ 12.200678] EDAC MC: Ver: 2.1.0
[ 12.202418] EDAC MC0: Giving out device to 'i7core_edac.c' 'i7 core #0': DEV 0000:3f:03.0
[ 12.202444] EDAC PCI0: Giving out device to module 'i7core_edac' controller 'EDAC PCI controller': DEV '0000:3f:03.0' (POLLED)
[ 12.202451] EDAC i7core: Driver loaded, 1 memory controller(s) found.
[ 12.216439] xen: registering gsi 22 triggering 0 polarity 1
[ 12.216454] xen: --> pirq=22 -> irq=22 (gsi=22)
[ 12.216462] snd_hda_intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 12.216611] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
[ 12.217497] xen: registering gsi 18 triggering 0 polarity 1
[ 12.217502] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 12.217505] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 12.217508] Already setup the GSI :18
[ 12.217512] pata_jmicron 0000:05:00.1: PCI INT B -> GSI 18 (level, low) -> IRQ 18
[ 12.217548] pata_jmicron 0000:05:00.1: setting latency timer to 64
[ 12.218032] scsi8 : pata_jmicron
[ 12.218152] scsi9 : pata_jmicron
[ 12.219786] ata9: PATA max UDMA/100 cmd 0xdf00 ctl 0xde00 bmdma 0xdb00 irq 18
[ 12.219790] ata10: PATA max UDMA/100 cmd 0xdd00 ctl 0xdc00 bmdma 0xdb08 irq 18
[ 12.263346] device-mapper: multipath: version 1.3.0 loaded
[ 12.336747] EXT4-fs (dm-0): re-mounted. Opts: errors=remount-ro
[ 12.542332] hda_codec: ALC888: BIOS auto-probing.
[ 12.543375] Bridge firewalling registered
[ 12.548962] device eth0 entered promiscuous mode
[ 12.551463] input: HDA Intel Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[ 12.551572] input: HDA Intel Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[ 12.551683] input: HDA Intel Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[ 12.551935] input: HDA Intel Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[ 12.552150] input: HDA Intel Line-Out Side as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 12.552297] input: HDA Intel Line-Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 12.552399] input: HDA Intel Line-Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 12.552528] input: HDA Intel Line-Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 12.615063] r8169 0000:06:00.0: eth0: link down
[ 12.615074] r8169 0000:06:00.0: eth0: link down
[ 12.615254] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 12.620123] ADDRCONF(NETDEV_UP): br0: link is not ready
[ 12.634440] kjournald starting. Commit interval 5 seconds
[ 12.634669] EXT3-fs (sdd2): using internal journal
[ 12.634675] EXT3-fs (sdd2): mounted filesystem with ordered data mode
[ 12.664546] type=1400 audit(1336117037.284:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=1318 comm="apparmor_parser"
[ 12.664683] type=1400 audit(1336117037.284:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1330 comm="apparmor_parser"
[ 12.664979] type=1400 audit(1336117037.284:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1318 comm="apparmor_parser"
[ 12.664991] type=1400 audit(1336117037.284:5): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1330 comm="apparmor_parser"
[ 12.665196] type=1400 audit(1336117037.284:6): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=1318 comm="apparmor_parser"
[ 12.665259] type=1400 audit(1336117037.284:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1330 comm="apparmor_parser"
[ 12.982722] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[ 13.813737] init: failsafe main process (1433) killed by TERM signal
[ 13.866358] init: udev-fallback-graphics main process (1546) terminated with status 1
[ 13.878401] type=1400 audit(1336117038.500:8): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1589 comm="apparmor_parser"
[ 13.878607] type=1400 audit(1336117038.500:9): apparmor="STATUS" operation="profile_load" name="/usr/sbin/libvirtd" pid=1591 comm="apparmor_parser"
[ 13.878617] type=1400 audit(1336117038.500:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/libvirt/virt-aa-helper" pid=1590 comm="apparmor_parser"
[ 13.878735] type=1400 audit(1336117038.500:11): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1589 comm="apparmor_parser"
[ 14.084048] Event-channel device installed.
[ 14.119852] XENBUS: Unable to read cpu state
[ 14.119937] XENBUS: Unable to read cpu state
[ 14.120029] XENBUS: Unable to read cpu state
[ 14.120112] XENBUS: Unable to read cpu state
[ 14.120190] XENBUS: Unable to read cpu state
[ 14.120327] XENBUS: Unable to read cpu state
[ 14.120421] XENBUS: Unable to read cpu state
[ 14.120504] XENBUS: Unable to read cpu state
[ 14.276690] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 14.328570] nf_conntrack version 0.5.0 (2648 buckets, 10592 max)
[ 14.353742] ADDRCONF(NETDEV_UP): virbr0: link is not ready
[ 15.006250] r8169 0000:06:00.0: eth0: link up
[ 15.006398] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 15.007175] br0: port 1(eth0) entering forwarding state
[ 15.007179] br0: port 1(eth0) entering forwarding state
[ 15.007314] ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[ 15.266765] Ebtables v2.0 registered
[ 15.283111] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 25.249649] br0: no IPv6 routers present
[ 140.007915] xen-acpi-processor: Max ACPI ID: 14
[ 140.009899] ACPI CPU0 - P-states uploaded.
[ 140.009901] *P0: 2661 MHz, 130000 mW, 10 uS
[ 140.009904] P1: 2660 MHz, 130000 mW, 10 uS
[ 140.009906] P2: 2527 MHz, 109000 mW, 10 uS
[ 140.009907] P3: 2394 MHz, 100000 mW, 10 uS
[ 140.009909] P4: 2261 MHz, 83000 mW, 10 uS
[ 140.009911] P5: 2128 MHz, 76000 mW, 10 uS
[ 140.009913] P6: 1995 MHz, 63000 mW, 10 uS
[ 140.009915] P7: 1862 MHz, 57000 mW, 10 uS
[ 140.009917] P8: 1729 MHz, 47000 mW, 10 uS
[ 140.009918] P9: 1596 MHz, 43000 mW, 10 uS
[ 140.009926] ACPI CPU1 - P-states uploaded.
[ 140.009928] *P0: 2661 MHz, 130000 mW, 10 uS
[ 140.009930] P1: 2660 MHz, 130000 mW, 10 uS
[ 140.009932] P2: 2527 MHz, 109000 mW, 10 uS
[ 140.009934] P3: 2394 MHz, 100000 mW, 10 uS
[ 140.009935] P4: 2261 MHz, 83000 mW, 10 uS
[ 140.009937] P5: 2128 MHz, 76000 mW, 10 uS
[ 140.009939] P6: 1995 MHz, 63000 mW, 10 uS
[ 140.009941] P7: 1862 MHz, 57000 mW, 10 uS
[ 140.009943] P8: 1729 MHz, 47000 mW, 10 uS
[ 140.009945] P9: 1596 MHz, 43000 mW, 10 uS
[ 140.009950] ACPI CPU2 - P-states uploaded.
[ 140.009952] *P0: 2661 MHz, 130000 mW, 10 uS
[ 140.009954] P1: 2660 MHz, 130000 mW, 10 uS
[ 140.009956] P2: 2527 MHz, 109000 mW, 10 uS
[ 140.009958] P3: 2394 MHz, 100000 mW, 10 uS
[ 140.009960] P4: 2261 MHz, 83000 mW, 10 uS
[ 140.009962] P5: 2128 MHz, 76000 mW, 10 uS
[ 140.009964] P6: 1995 MHz, 63000 mW, 10 uS
[ 140.009965] P7: 1862 MHz, 57000 mW, 10 uS
[ 140.009967] P8: 1729 MHz, 47000 mW, 10 uS
[ 140.009969] P9: 1596 MHz, 43000 mW, 10 uS
[ 140.009975] ACPI CPU3 - P-states uploaded.
[ 140.009977] *P0: 2661 MHz, 130000 mW, 10 uS
[ 140.009979] P1: 2660 MHz, 130000 mW, 10 uS
[ 140.009981] P2: 2527 MHz, 109000 mW, 10 uS
[ 140.009983] P3: 2394 MHz, 100000 mW, 10 uS
[ 140.009984] P4: 2261 MHz, 83000 mW, 10 uS
[ 140.009986] P5: 2128 MHz, 76000 mW, 10 uS
[ 140.009988] P6: 1995 MHz, 63000 mW, 10 uS
[ 140.009990] P7: 1862 MHz, 57000 mW, 10 uS
[ 140.009992] P8: 1729 MHz, 47000 mW, 10 uS
[ 140.009994] P9: 1596 MHz, 43000 mW, 10 uS
[ 140.009999] ACPI CPU4 - P-states uploaded.
[ 140.010001] *P0: 2661 MHz, 130000 mW, 10 uS
[ 140.010003] P1: 2660 MHz, 130000 mW, 10 uS
[ 140.010005] P2: 2527 MHz, 109000 mW, 10 uS
[ 140.010007] P3: 2394 MHz, 100000 mW, 10 uS
[ 140.010008] P4: 2261 MHz, 83000 mW, 10 uS
[ 140.010010] P5: 2128 MHz, 76000 mW, 10 uS
[ 140.010012] P6: 1995 MHz, 63000 mW, 10 uS
[ 140.010014] P7: 1862 MHz, 57000 mW, 10 uS
[ 140.010016] P8: 1729 MHz, 47000 mW, 10 uS
[ 140.010018] P9: 1596 MHz, 43000 mW, 10 uS
[ 140.010023] ACPI CPU5 - P-states uploaded.
[ 140.010025] *P0: 2661 MHz, 130000 mW, 10 uS
[ 140.010027] P1: 2660 MHz, 130000 mW, 10 uS
[ 140.010029] P2: 2527 MHz, 109000 mW, 10 uS
[ 140.010031] P3: 2394 MHz, 100000 mW, 10 uS
[ 140.010033] P4: 2261 MHz, 83000 mW, 10 uS
[ 140.010035] P5: 2128 MHz, 76000 mW, 10 uS
[ 140.010036] P6: 1995 MHz, 63000 mW, 10 uS
[ 140.010038] P7: 1862 MHz, 57000 mW, 10 uS
[ 140.010040] P8: 1729 MHz, 47000 mW, 10 uS
[ 140.010042] P9: 1596 MHz, 43000 mW, 10 uS
[ 140.010046] ACPI CPU6 - P-states uploaded.
[ 140.010048] *P0: 2661 MHz, 130000 mW, 10 uS
[ 140.010050] P1: 2660 MHz, 130000 mW, 10 uS
[ 140.010051] P2: 2527 MHz, 109000 mW, 10 uS
[ 140.010053] P3: 2394 MHz, 100000 mW, 10 uS
[ 140.010055] P4: 2261 MHz, 83000 mW, 10 uS
[ 140.010057] P5: 2128 MHz, 76000 mW, 10 uS
[ 140.010059] P6: 1995 MHz, 63000 mW, 10 uS
[ 140.010061] P7: 1862 MHz, 57000 mW, 10 uS
[ 140.010062] P8: 1729 MHz, 47000 mW, 10 uS
[ 140.010064] P9: 1596 MHz, 43000 mW, 10 uS
[ 140.010070] ACPI CPU7 - P-states uploaded.
[ 140.010072] *P0: 2661 MHz, 130000 mW, 10 uS
[ 140.010074] P1: 2660 MHz, 130000 mW, 10 uS
[ 140.010075] P2: 2527 MHz, 109000 mW, 10 uS
[ 140.010077] P3: 2394 MHz, 100000 mW, 10 uS
[ 140.010079] P4: 2261 MHz, 83000 mW, 10 uS
[ 140.010081] P5: 2128 MHz, 76000 mW, 10 uS
[ 140.010083] P6: 1995 MHz, 63000 mW, 10 uS
[ 140.010085] P7: 1862 MHz, 57000 mW, 10 uS
[ 140.010086] P8: 1729 MHz, 47000 mW, 10 uS
[ 140.010088] P9: 1596 MHz, 43000 mW, 10 uS
[ 140.010095] xen-acpi-processor: ACPI CPU0 w/ PBLK:0x410
[ 140.010184] xen-acpi-processor: ACPI CPU1 w/ PBLK:0x410
[ 140.010269] xen-acpi-processor: ACPI CPU2 w/ PBLK:0x410
[ 140.010356] xen-acpi-processor: ACPI CPU3 w/ PBLK:0x410
[ 140.010441] xen-acpi-processor: ACPI CPU4 w/ PBLK:0x410
[ 140.010526] xen-acpi-processor: ACPI CPU5 w/ PBLK:0x410
[ 140.010611] xen-acpi-processor: ACPI CPU6 w/ PBLK:0x410
[ 140.010696] xen-acpi-processor: ACPI CPU7 w/ PBLK:0x410
[ 140.010781] xen-acpi-processor: ACPI CPU8 w/ PBLK:0x410
[ 140.010787] xen-acpi-processor: ACPI CPU9 w/ PBLK:0x410
[ 140.010793] xen-acpi-processor: ACPI CPU10 w/ PBLK:0x410
[ 140.010798] xen-acpi-processor: ACPI CPU11 w/ PBLK:0x410
[ 140.010804] xen-acpi-processor: ACPI CPU12 w/ PBLK:0x410
[ 140.010809] xen-acpi-processor: ACPI CPU13 w/ PBLK:0x410
[ 140.010815] xen-acpi-processor: ACPI CPU14 w/ PBLK:0x410
[ 140.010820] xen-acpi-processor: ACPI CPU15 w/ PBLK:0x410
[ 140.011061] xen-acpi-processor: No _Cx for ACPI CPU 8
[ 140.011064] xen-acpi-processor: No _Cx for ACPI CPU 9
[ 140.011066] xen-acpi-processor: No _Cx for ACPI CPU 10
[ 140.011068] xen-acpi-processor: No _Cx for ACPI CPU 11
[ 140.011070] xen-acpi-processor: No _Cx for ACPI CPU 12
[ 140.011072] xen-acpi-processor: No _Cx for ACPI CPU 13
[ 140.011074] xen-acpi-processor: No _Cx for ACPI CPU 14
[ 183.118282] init: tty1 main process ended, respawning
[-- Attachment #1.1.3: dmesg.opt.txt --]
[-- Type: text/plain, Size: 67655 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.2.0-24-generic (root@gomeisa) (gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5) ) #38+xendbg8 SMP Thu May 3 17:40:06 UTC 2012 (Ubuntu 3.2.0-24.38+xendbg8-generic 3.2.16)
[ 0.000000] Command line: placeholder root=UUID=f2b75052-a98e-447a-bf78-51b2e1b15b8b ro nomodeset debug lapic=debug console=hvc0 loglevel=10 earlyprintk=xenboot
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Freeing 96-100 pfn range: 106 pages freed
[ 0.000000] 1-1 mapping on 96->100
[ 0.000000] 1-1 mapping on dfe90->100000
[ 0.000000] Released 106 pages of unused memory
[ 0.000000] Set 131546 page(s) to 1-1 mapping
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] Xen: 0000000000000000 - 0000000000096000 (usable)
[ 0.000000] Xen: 0000000000096800 - 0000000000100000 (reserved)
[ 0.000000] Xen: 0000000000100000 - 00000000dfe90000 (usable)
[ 0.000000] Xen: 00000000dfe9e000 - 00000000dfea0000 type 9
[ 0.000000] Xen: 00000000dfea0000 - 00000000dfeb2000 (ACPI data)
[ 0.000000] Xen: 00000000dfeb2000 - 00000000dfee0000 (ACPI NVS)
[ 0.000000] Xen: 00000000dfee0000 - 00000000f0000000 (reserved)
[ 0.000000] Xen: 00000000fec00000 - 00000000fec01000 (reserved)
[ 0.000000] Xen: 00000000fee00000 - 00000000fee01000 (reserved)
[ 0.000000] Xen: 00000000ffe00000 - 0000000100000000 (reserved)
[ 0.000000] Xen: 0000000100000000 - 00000002e0170000 (usable)
[ 0.000000] Xen: 00000002e0170000 - 0000000820000000 (unusable)
[ 0.000000] bootconsole [xenboot0] enabled
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] DMI present.
[ 0.000000] DMI: Supermicro H8SGL/H8SGL, BIOS 1.1a 02/17/11
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] No AGP bridge found
[ 0.000000] last_pfn = 0x2e0170 max_arch_pfn = 0x400000000
[ 0.000000] last_pfn = 0xdfe90 max_arch_pfn = 0x400000000
[ 0.000000] found SMP MP-table at [ffff8800000ff780] ff780
[ 0.000000] initial memory mapped : 0 - 04782000
[ 0.000000] Base memory trampoline at [ffff880000091000] 91000 size 20480
[ 0.000000] init_memory_mapping: 0000000000000000-00000000dfe90000
[ 0.000000] 0000000000 - 00dfe90000 page 4k
[ 0.000000] kernel direct mapping tables up to dfe90000 @ 8fb000-1000000
[ 0.000000] xen: setting RW the range fd4000 - 1000000
[ 0.000000] init_memory_mapping: 0000000100000000-00000002e0170000
[ 0.000000] 0100000000 - 02e0170000 page 4k
[ 0.000000] kernel direct mapping tables up to 2e0170000 @ 3e8f2000-40000000
[ 0.000000] xen: setting RW the range 3f7fb000 - 40000000
[ 0.000000] RAMDISK: 02060000 - 04782000
[ 0.000000] ACPI: RSDP 00000000000f9fc0 00024 (v02 ACPIAM)
[ 0.000000] ACPI: XSDT 00000000dfea0100 00084 (v01 SMCI 20110217 MSFT 00000097)
[ 0.000000] ACPI: FACP 00000000dfea0290 000F4 (v04 021711 FACP1552 20110217 MSFT 00000097)
[ 0.000000] ACPI: DSDT 00000000dfea0610 05A04 (v02 1A711 1A711000 00000000 INTL 20051117)
[ 0.000000] ACPI: FACS 00000000dfeb2000 00040
[ 0.000000] ACPI: APIC 00000000dfea0390 000B8 (v02 021711 APIC1552 20110217 MSFT 00000097)
[ 0.000000] ACPI: MCFG 00000000dfea0450 0003C (v01 021711 OEMMCFG 20110217 MSFT 00000097)
[ 0.000000] ACPI: OEMB 00000000dfeb2040 00075 (v01 021711 OEMB1552 20110217 MSFT 00000097)
[ 0.000000] ACPI: HPET 00000000dfeaa610 00038 (v01 021711 OEMHPET 20110217 MSFT 00000097)
[ 0.000000] ACPI: IVRS 00000000dfeaa650 000A8 (v01 AMD RD890S 00202031 AMD 00000000)
[ 0.000000] ACPI: SRAT 00000000dfeaa700 00128 (v02 AMD F10 00000001 AMD 00000001)
[ 0.000000] ACPI: SSDT 00000000dfeaa830 0143C (v01 A M I POWERNOW 00000001 AMD 00000001)
[ 0.000000] ACPI: EINJ 00000000dfeabc70 00130 (v01 AMIER AMI_EINJ 20110217 MSFT 00000097)
[ 0.000000] ACPI: BERT 00000000dfeabe00 00030 (v01 AMIER AMI_BERT 20110217 MSFT 00000097)
[ 0.000000] ACPI: ERST 00000000dfeabe30 001B0 (v01 AMIER AMI_ERST 20110217 MSFT 00000097)
[ 0.000000] ACPI: HEST 00000000dfeabfe0 000A8 (v01 AMIER ABC_HEST 20110217 MSFT 00000097)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] xxx xen_apic_read(0x20) -> 0x10000000
[ 0.000000] xxx xen_get_apic_id(0x10000000) -> 0x10
[ 0.000000] xxx xen_apic_read(0x30) -> 0x10
[ 0.000000] Scanning NUMA topology in Northbridge 24
[ 0.000000] Number of physical nodes 2
[ 0.000000] Node 0 using interleaving mode 1/0
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at 0000000000000000-00000002e0170000
[ 0.000000] Initmem setup node 0 0000000000000000-00000002e0170000
[ 0.000000] NODE_DATA [000000003fffb000 - 000000003fffffff]
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] DMA32 0x00001000 -> 0x00100000
[ 0.000000] Normal 0x00100000 -> 0x002e0170
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[3] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x00000096
[ 0.000000] 0: 0x00000100 -> 0x000dfe90
[ 0.000000] 0: 0x00100000 -> 0x002e0170
[ 0.000000] On node 0 totalpages: 2883462
[ 0.000000] DMA zone: 64 pages used for memmap
[ 0.000000] DMA zone: 1758 pages reserved
[ 0.000000] DMA zone: 2152 pages, LIFO batch:0
[ 0.000000] DMA32 zone: 16320 pages used for memmap
[ 0.000000] DMA32 zone: 896720 pages, LIFO batch:31
[ 0.000000] Normal zone: 30726 pages used for memmap
[ 0.000000] Normal zone: 1935722 pages, LIFO batch:31
[ 0.000000] ACPI: PM-Timer IO Port: 0x808
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x10] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x11] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x12] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x13] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x14] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x15] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x16] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x17] enabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x09] lapic_id[0x88] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0a] lapic_id[0x89] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0b] lapic_id[0x8a] disabled)
[ 0.000000] ACPI: LAPIC (acpi_id[0x0c] lapic_id[0x8b] disabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 0, version 255, address 0xfec00000, GSI 0-255
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] ACPI: IRQ0 used by override.
[ 0.000000] ACPI: IRQ2 used by override.
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
[ 0.000000] SMP: Allowing 12 CPUs, 4 hotplug CPUs
[ 0.000000] xxx xen_apic_read(0x20) -> 0x10000000
[ 0.000000] xxx xen_get_apic_id(0x10000000) -> 0x10
[ 0.000000] nr_irqs_gsi: 272
[ 0.000000] PM: Registered nosave memory: 0000000000096000 - 0000000000097000
[ 0.000000] PM: Registered nosave memory: 0000000000097000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 00000000dfe90000 - 00000000dfe9e000
[ 0.000000] PM: Registered nosave memory: 00000000dfe9e000 - 00000000dfea0000
[ 0.000000] PM: Registered nosave memory: 00000000dfea0000 - 00000000dfeb2000
[ 0.000000] PM: Registered nosave memory: 00000000dfeb2000 - 00000000dfee0000
[ 0.000000] PM: Registered nosave memory: 00000000dfee0000 - 00000000f0000000
[ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000fec00000
[ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fee00000
[ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffe00000
[ 0.000000] PM: Registered nosave memory: 00000000ffe00000 - 0000000100000000
[ 0.000000] Allocating PCI resources starting at f0000000 (gap: f0000000:ec00000)
[ 0.000000] Booting paravirtualized kernel on Xen
[ 0.000000] Xen version: 4.1.2 (preserve-AD)
[ 0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:12 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88003fe5b000 s83072 r8192 d23424 u114688
[ 0.000000] pcpu-alloc: s83072 r8192 d23424 u114688 alloc=28*4096
[ 0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07
[ 0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 2834594
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: placeholder root=UUID=f2b75052-a98e-447a-bf78-51b2e1b15b8b ro nomodeset debug lapic=debug console=hvc0 loglevel=10 earlyprintk=xenboot
[ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.000000] Placing 64MB software IO TLB between ffff88002f200000 - ffff880033200000
[ 0.000000] software IO TLB at phys 0x2f200000 - 0x33200000
[ 0.000000] Memory: 717456k/12060096k available (6654k kernel code, 526248k absent, 10816392k reserved, 6550k data, 920k init)
[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] NR_IRQS:16640 nr_irqs:3072 16
[ 0.000000] xen: sci override: global_irq=9 trigger=0 polarity=1
[ 0.000000] xen: registering gsi 9 triggering 0 polarity 1
[ 0.000000] xen: --> pirq=9 -> irq=9 (gsi=9)
[ 0.000000] xen: acpi sci 9
[ 0.000000] xen: --> pirq=1 -> irq=1 (gsi=1)
[ 0.000000] xen: --> pirq=2 -> irq=2 (gsi=2)
[ 0.000000] xen: --> pirq=3 -> irq=3 (gsi=3)
[ 0.000000] xen: --> pirq=4 -> irq=4 (gsi=4)
[ 0.000000] xen: --> pirq=5 -> irq=5 (gsi=5)
[ 0.000000] xen: --> pirq=6 -> irq=6 (gsi=6)
[ 0.000000] xen: --> pirq=7 -> irq=7 (gsi=7)
[ 0.000000] xen: --> pirq=8 -> irq=8 (gsi=8)
[ 0.000000] xen_map_pirq_gsi: returning irq 9 for gsi 9
[ 0.000000] xen: --> pirq=9 -> irq=9 (gsi=9)
[ 0.000000] xen: --> pirq=10 -> irq=10 (gsi=10)
[ 0.000000] xen: --> pirq=11 -> irq=11 (gsi=11)
[ 0.000000] xen: --> pirq=12 -> irq=12 (gsi=12)
[ 0.000000] xen: --> pirq=13 -> irq=13 (gsi=13)
[ 0.000000] xen: --> pirq=14 -> irq=14 (gsi=14)
[ 0.000000] xen: --> pirq=15 -> irq=15 (gsi=15)
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [hvc0] enabled, bootconsole disabled
[ 0.000000] allocated 93323264 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] Xen: using vcpuop timer interface
[ 0.000000] installing Xen timer for CPU 0
[ 0.000000] Detected 2000.170 MHz processor.
[ 0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 4000.34 BogoMIPS (lpj=8000680)
[ 0.004000] pid_max: default: 32768 minimum: 301
[ 0.004000] Security Framework initialized
[ 0.004000] AppArmor: AppArmor initialized
[ 0.004000] Yama: becoming mindful.
[ 0.008086] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[ 0.017132] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[ 0.019745] Mount-cache hash table entries: 256
[ 0.019990] Initializing cgroup subsys cpuacct
[ 0.020001] Initializing cgroup subsys memory
[ 0.020001] Initializing cgroup subsys devices
[ 0.020001] Initializing cgroup subsys freezer
[ 0.020001] Initializing cgroup subsys blkio
[ 0.020001] Initializing cgroup subsys perf_event
[ 0.020072] xxx xen_apic_read(0x20) -> 0x10000000
[ 0.020077] xxx xen_get_apic_id(0x10000000) -> 0x10
[ 0.020089] tseg: 00dff00000
[ 0.020096] CPU: Physical Processor ID: 0
[ 0.020100] CPU: Processor Core ID: 0
[ 0.023042] ACPI: Core revision 20110623
[ 0.039041] ftrace: allocating 27104 entries in 107 pages
[ 0.040131] cpu 0 spinlock event irq 273
[ 0.040231] Performance Events: Broken PMU hardware detected, using software events only.
[ 0.040494] NMI watchdog disabled (cpu0): hardware events not enabled
[ 0.040626] installing Xen timer for CPU 1
[ 0.040644] cpu 1 spinlock event irq 279
[ 0.004000] dom0=1 cpuid=1
[ 0.004000] xxx xen_get_apic_id(0x0) -> 0x0
[ 0.040859] NMI watchdog disabled (cpu1): hardware events not enabled
[ 0.040985] installing Xen timer for CPU 2
[ 0.041004] cpu 2 spinlock event irq 285
[ 0.004000] dom0=1 cpuid=2
[ 0.004000] xxx xen_get_apic_id(0x0) -> 0x0
[ 0.041173] NMI watchdog disabled (cpu2): hardware events not enabled
[ 0.041291] installing Xen timer for CPU 3
[ 0.041306] cpu 3 spinlock event irq 291
[ 0.004000] dom0=1 cpuid=3
[ 0.004000] xxx xen_get_apic_id(0x0) -> 0x0
[ 0.041477] NMI watchdog disabled (cpu3): hardware events not enabled
[ 0.041597] installing Xen timer for CPU 4
[ 0.041612] cpu 4 spinlock event irq 297
[ 0.004000] dom0=1 cpuid=4
[ 0.004000] xxx xen_get_apic_id(0x0) -> 0x0
[ 0.041808] NMI watchdog disabled (cpu4): hardware events not enabled
[ 0.041935] installing Xen timer for CPU 5
[ 0.041951] cpu 5 spinlock event irq 303
[ 0.004000] dom0=1 cpuid=5
[ 0.004000] xxx xen_get_apic_id(0x0) -> 0x0
[ 0.042121] NMI watchdog disabled (cpu5): hardware events not enabled
[ 0.042241] installing Xen timer for CPU 6
[ 0.042257] cpu 6 spinlock event irq 309
[ 0.004000] dom0=1 cpuid=6
[ 0.004000] xxx xen_get_apic_id(0x0) -> 0x0
[ 0.042422] NMI watchdog disabled (cpu6): hardware events not enabled
[ 0.042541] installing Xen timer for CPU 7
[ 0.042557] cpu 7 spinlock event irq 315
[ 0.004000] dom0=1 cpuid=7
[ 0.004000] xxx xen_get_apic_id(0x0) -> 0x0
[ 0.042727] NMI watchdog disabled (cpu7): hardware events not enabled
[ 0.042763] Brought up 8 CPUs
[ 0.042991] devtmpfs: initialized
[ 0.045406] EVM: security.selinux
[ 0.045410] EVM: security.SMACK64
[ 0.045414] EVM: security.capability
[ 0.045490] PM: Registering ACPI NVS region at dfeb2000 (188416 bytes)
[ 0.045490] Grant table initialized
[ 0.045490] print_constraints: dummy:
[ 0.045490] RTC time: 7:45:48, date: 05/04/12
[ 0.045490] NET: Registered protocol family 16
[ 0.045490] Trying to unpack rootfs image as initramfs...
[ 0.060265] node 0 link 0: io port [1000, ffffff]
[ 0.060279] TOM: 00000000e0000000 aka 3584M
[ 0.060286] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
[ 0.060296] node 0 link 0: mmio [e0000000, efffffff] ==> none
[ 0.060305] node 0 link 0: mmio [f0000000, ffffffff]
[ 0.060313] node 0 link 0: mmio [a0000, bffff]
[ 0.060321] TOM2: 0000000820000000 aka 33280M
[ 0.060326] bus: [00, 1f] on node 0 link 0
[ 0.060331] bus: 00 index 0 [io 0x0000-0xffff]
[ 0.060336] bus: 00 index 1 [mem 0xf0000000-0xffffffff]
[ 0.060341] bus: 00 index 2 [mem 0x000a0000-0x000bffff]
[ 0.060345] bus: 00 index 3 [mem 0x820000000-0xfcffffffff]
[ 0.060369] Extended Config Space enabled on 2 nodes
[ 0.060539] ACPI: bus type pci registered
[ 0.060643] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.060652] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.181523] Freeing initrd memory: 40072k freed
[ 0.219949] PCI: Using configuration type 1 for base access
[ 0.221489] bio: create slab <bio-0> at 0
[ 0.221489] ACPI: Added _OSI(Module Device)
[ 0.221489] ACPI: Added _OSI(Processor Device)
[ 0.221489] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.221489] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.224154] ACPI: EC: Look up EC in DSDT
[ 0.228666] ACPI: Executed 2 blocks of module-level executable AML code
[ 0.253662] ACPI: Interpreter enabled
[ 0.253671] ACPI: (supports S0 S1 S4 S5)
[ 0.253715] ACPI: Using IOAPIC for interrupt routing
[ 0.267308] ACPI: No dock devices found.
[ 0.267371] HEST: Table parsing has been initialized.
[ 0.267379] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.267684] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.268245] pci_root PNP0A08:00: host bridge window [io 0x0000-0x0cf7]
[ 0.268252] pci_root PNP0A08:00: host bridge window [io 0x0d00-0xffff]
[ 0.268258] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
[ 0.268265] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000dffff]
[ 0.268271] pci_root PNP0A08:00: host bridge window [mem 0xf0000000-0xfebfffff]
[ 0.268344] pci 0000:00:00.0: [1002:5a13] type 0 class 0x000600
[ 0.268542] pci 0000:00:00.2: [1002:5a23] type 0 class 0x000806
[ 0.268745] pci 0000:00:09.0: [1002:5a1c] type 1 class 0x000604
[ 0.268862] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
[ 0.268871] pci 0000:00:09.0: PME# disabled
[ 0.268913] pci 0000:00:0a.0: [1002:5a1d] type 1 class 0x000604
[ 0.269029] pci 0000:00:0a.0: PME# supported from D0 D3hot D3cold
[ 0.269038] pci 0000:00:0a.0: PME# disabled
[ 0.269100] pci 0000:00:11.0: [1002:4391] type 0 class 0x000106
[ 0.269138] pci 0000:00:11.0: reg 10: [io 0xc000-0xc007]
[ 0.269158] pci 0000:00:11.0: reg 14: [io 0xb000-0xb003]
[ 0.269178] pci 0000:00:11.0: reg 18: [io 0xa000-0xa007]
[ 0.269198] pci 0000:00:11.0: reg 1c: [io 0x9000-0x9003]
[ 0.269218] pci 0000:00:11.0: reg 20: [io 0x8000-0x800f]
[ 0.269238] pci 0000:00:11.0: reg 24: [mem 0xfe9fa400-0xfe9fa7ff]
[ 0.269347] pci 0000:00:12.0: [1002:4397] type 0 class 0x000c03
[ 0.269374] pci 0000:00:12.0: reg 10: [mem 0xfe9f6000-0xfe9f6fff]
[ 0.269497] pci 0000:00:12.1: [1002:4398] type 0 class 0x000c03
[ 0.269524] pci 0000:00:12.1: reg 10: [mem 0xfe9f7000-0xfe9f7fff]
[ 0.269658] pci 0000:00:12.2: [1002:4396] type 0 class 0x000c03
[ 0.269727] pci 0000:00:12.2: reg 10: [mem 0xfe9fa800-0xfe9fa8ff]
[ 0.269885] pci 0000:00:12.2: supports D1 D2
[ 0.269890] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[ 0.269900] pci 0000:00:12.2: PME# disabled
[ 0.269940] pci 0000:00:13.0: [1002:4397] type 0 class 0x000c03
[ 0.269967] pci 0000:00:13.0: reg 10: [mem 0xfe9f8000-0xfe9f8fff]
[ 0.270090] pci 0000:00:13.1: [1002:4398] type 0 class 0x000c03
[ 0.270117] pci 0000:00:13.1: reg 10: [mem 0xfe9f9000-0xfe9f9fff]
[ 0.270253] pci 0000:00:13.2: [1002:4396] type 0 class 0x000c03
[ 0.270291] pci 0000:00:13.2: reg 10: [mem 0xfe9fac00-0xfe9facff]
[ 0.270449] pci 0000:00:13.2: supports D1 D2
[ 0.270454] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[ 0.270464] pci 0000:00:13.2: PME# disabled
[ 0.270509] pci 0000:00:14.0: [1002:4385] type 0 class 0x000c05
[ 0.270700] pci 0000:00:14.3: [1002:439d] type 0 class 0x000601
[ 0.270844] pci 0000:00:14.4: [1002:4384] type 1 class 0x000604
[ 0.270925] pci 0000:00:14.5: [1002:4399] type 0 class 0x000c03
[ 0.270953] pci 0000:00:14.5: reg 10: [mem 0xfe9fb000-0xfe9fbfff]
[ 0.271126] pci 0000:00:18.0: [1022:1200] type 0 class 0x000600
[ 0.271255] pci 0000:00:18.1: [1022:1201] type 0 class 0x000600
[ 0.271316] pci 0000:00:18.2: [1022:1202] type 0 class 0x000600
[ 0.271384] pci 0000:00:18.3: [1022:1203] type 0 class 0x000600
[ 0.271474] pci 0000:00:18.4: [1022:1204] type 0 class 0x000600
[ 0.271587] pci 0000:00:19.0: [1022:1200] type 0 class 0x000600
[ 0.271703] pci 0000:00:19.1: [1022:1201] type 0 class 0x000600
[ 0.271767] pci 0000:00:19.2: [1022:1202] type 0 class 0x000600
[ 0.271833] pci 0000:00:19.3: [1022:1203] type 0 class 0x000600
[ 0.271926] pci 0000:00:19.4: [1022:1204] type 0 class 0x000600
[ 0.272016] pci 0000:03:00.0: [8086:10d3] type 0 class 0x000200
[ 0.272016] pci 0000:03:00.0: reg 10: [mem 0xfebe0000-0xfebfffff]
[ 0.272016] pci 0000:03:00.0: reg 18: [io 0xe800-0xe81f]
[ 0.272016] pci 0000:03:00.0: reg 1c: [mem 0xfebdc000-0xfebdffff]
[ 0.272031] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.272042] pci 0000:03:00.0: PME# disabled
[ 0.280056] pci 0000:00:09.0: PCI bridge to [bus 03-03]
[ 0.280070] pci 0000:00:09.0: bridge window [io 0xe000-0xefff]
[ 0.280080] pci 0000:00:09.0: bridge window [mem 0xfeb00000-0xfebfffff]
[ 0.280204] pci 0000:02:00.0: [8086:10d3] type 0 class 0x000200
[ 0.280239] pci 0000:02:00.0: reg 10: [mem 0xfeae0000-0xfeafffff]
[ 0.280284] pci 0000:02:00.0: reg 18: [io 0xd800-0xd81f]
[ 0.280341] pci 0000:02:00.0: reg 1c: [mem 0xfeadc000-0xfeadffff]
[ 0.280522] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.280533] pci 0000:02:00.0: PME# disabled
[ 0.288055] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
[ 0.288068] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
[ 0.288077] pci 0000:00:0a.0: bridge window [mem 0xfea00000-0xfeafffff]
[ 0.288144] pci 0000:01:04.0: [102b:0532] type 0 class 0x000300
[ 0.288183] pci 0000:01:04.0: reg 10: [mem 0xfc000000-0xfcffffff pref]
[ 0.288206] pci 0000:01:04.0: reg 14: [mem 0xfdffc000-0xfdffffff]
[ 0.288229] pci 0000:01:04.0: reg 18: [mem 0xfe000000-0xfe7fffff]
[ 0.288437] pci 0000:00:14.4: PCI bridge to [bus 01-01] (subtractive decode)
[ 0.288452] pci 0000:00:14.4: bridge window [mem 0xfdf00000-0xfe7fffff]
[ 0.288462] pci 0000:00:14.4: bridge window [mem 0xfc000000-0xfcffffff pref]
[ 0.288500] pci 0000:00:14.4: bridge window [io 0x0000-0x0cf7] (subtractive decode)
[ 0.288507] pci 0000:00:14.4: bridge window [io 0x0d00-0xffff] (subtractive decode)
[ 0.288514] pci 0000:00:14.4: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[ 0.288520] pci 0000:00:14.4: bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
[ 0.288527] pci 0000:00:14.4: bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
[ 0.288562] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.288973] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PC09._PRT]
[ 0.289046] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PC0A._PRT]
[ 0.289157] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT]
[ 0.289332] pci0000:00: Requesting ACPI _OSC control (0x1d)
[ 0.289340] pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
[ 0.289346] ACPI _OSC control for PCIe not granted, disabling ASPM
[ 0.307588] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 *7 10 11 12 14 15)
[ 0.307762] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 7 10 *11 12 14 15)
[ 0.307897] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 *10 11 12 14 15)
[ 0.308018] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 11 12 *14 15)
[ 0.308136] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 12 14 *15)
[ 0.308278] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 11 12 14 15) *0, disabled.
[ 0.308414] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 *10 11 12 14 15)
[ 0.308552] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 12 14 15) *0, disabled.
[ 0.308623] xen/balloon: Initialising balloon driver.
[ 0.352000] xen-balloon: Initialising balloon driver.
[ 0.352021] xen/balloon: Xen selfballooning driver disabled for domain0.
[ 0.352167] vgaarb: device added: PCI:0000:01:04.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.352167] vgaarb: loaded
[ 0.352167] vgaarb: bridge control possible 0000:01:04.0
[ 0.352240] i2c-core: driver [aat2870] using legacy suspend method
[ 0.352245] i2c-core: driver [aat2870] using legacy resume method
[ 0.352336] SCSI subsystem initialized
[ 0.352409] libata version 3.00 loaded.
[ 0.352409] usbcore: registered new interface driver usbfs
[ 0.352409] usbcore: registered new interface driver hub
[ 0.352409] usbcore: registered new device driver usb
[ 0.352409] PCI: Using ACPI for IRQ routing
[ 0.356021] PCI: pci_cache_line_size set to 64 bytes
[ 0.356021] reserve RAM buffer: 0000000000096000 - 000000000009ffff
[ 0.356021] reserve RAM buffer: 00000000dfe90000 - 00000000dfffffff
[ 0.356021] reserve RAM buffer: 00000002e0170000 - 00000002e3ffffff
[ 0.356116] NetLabel: Initializing
[ 0.356120] NetLabel: domain hash size = 128
[ 0.356125] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.356141] NetLabel: unlabeled traffic allowed by default
[ 0.356218] Switching to clocksource xen
[ 0.365440] AppArmor: AppArmor Filesystem Enabled
[ 0.365479] pnp: PnP ACPI init
[ 0.365499] ACPI: bus type pnp registered
[ 0.365893] pnp 00:00: [bus 00-ff]
[ 0.365898] pnp 00:00: [io 0x0cf8-0x0cff]
[ 0.365904] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 0.365909] pnp 00:00: [io 0x0d00-0xffff window]
[ 0.365914] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 0.365919] pnp 00:00: [mem 0x000d0000-0x000dffff window]
[ 0.365925] pnp 00:00: [mem 0xe0000000-0xdfffffff window disabled]
[ 0.365930] pnp 00:00: [mem 0xf0000000-0xfebfffff window]
[ 0.366054] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[ 0.366329] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
[ 0.366335] pnp 00:01: [mem 0x00000000-0xffffffffffffffff disabled]
[ 0.366414] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.366595] pnp 00:02: [mem 0xf6000000-0xf6003fff]
[ 0.366656] system 00:02: [mem 0xf6000000-0xf6003fff] has been reserved
[ 0.366664] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.367350] pnp 00:03: [dma 4]
[ 0.367355] pnp 00:03: [io 0x0000-0x000f]
[ 0.367360] pnp 00:03: [io 0x0081-0x0083]
[ 0.367365] pnp 00:03: [io 0x0087]
[ 0.367369] pnp 00:03: [io 0x0089-0x008b]
[ 0.367374] pnp 00:03: [io 0x008f]
[ 0.367378] pnp 00:03: [io 0x00c0-0x00df]
[ 0.367436] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.367463] pnp 00:04: [io 0x0070-0x0071]
[ 0.367470] xen: registering gsi 8 triggering 1 polarity 0
[ 0.367480] xen_map_pirq_gsi: returning irq 8 for gsi 8
[ 0.367485] xen: --> pirq=8 -> irq=8 (gsi=8)
[ 0.367507] pnp 00:04: [irq 8]
[ 0.367564] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.367635] pnp 00:05: [io 0x0060]
[ 0.367639] pnp 00:05: [io 0x0064]
[ 0.367644] xen: registering gsi 1 triggering 1 polarity 0
[ 0.367649] xen_map_pirq_gsi: returning irq 1 for gsi 1
[ 0.367654] xen: --> pirq=1 -> irq=1 (gsi=1)
[ 0.367671] pnp 00:05: [irq 1]
[ 0.367726] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[ 0.367842] xen: registering gsi 12 triggering 1 polarity 0
[ 0.367848] xen_map_pirq_gsi: returning irq 12 for gsi 12
[ 0.367852] xen: --> pirq=12 -> irq=12 (gsi=12)
[ 0.367869] pnp 00:06: [irq 12]
[ 0.367929] pnp 00:06: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[ 0.367951] pnp 00:07: [io 0x0061]
[ 0.368009] pnp 00:07: Plug and Play ACPI device, IDs PNP0800 (active)
[ 0.368030] pnp 00:08: [io 0x00f0-0x00ff]
[ 0.368035] xen: registering gsi 13 triggering 1 polarity 0
[ 0.368041] xen_map_pirq_gsi: returning irq 13 for gsi 13
[ 0.368045] xen: --> pirq=13 -> irq=13 (gsi=13)
[ 0.368071] pnp 00:08: [irq 13]
[ 0.368128] pnp 00:08: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.368329] pnp 00:09: [io 0x0000-0xffffffffffffffff disabled]
[ 0.368335] pnp 00:09: [io 0x0000-0xffffffffffffffff disabled]
[ 0.368340] pnp 00:09: [io 0x0a10-0x0a1f]
[ 0.368456] system 00:09: [io 0x0a10-0x0a1f] has been reserved
[ 0.368463] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.368556] pnp 00:0a: [mem 0xfed00000-0xfed003ff]
[ 0.368618] pnp 00:0a: Plug and Play ACPI device, IDs PNP0103 (active)
[ 0.368922] pnp 00:0b: [mem 0xfec00000-0xfec00fff]
[ 0.368927] pnp 00:0b: [mem 0xfee00000-0xfee00fff]
[ 0.369011] system 00:0b: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.369018] system 00:0b: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.369025] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.369526] pnp 00:0c: [io 0x0010-0x001f]
[ 0.369531] pnp 00:0c: [io 0x0022-0x003f]
[ 0.369536] pnp 00:0c: [io 0x0062-0x0063]
[ 0.369540] pnp 00:0c: [io 0x0065-0x006f]
[ 0.369545] pnp 00:0c: [io 0x0072-0x007f]
[ 0.369549] pnp 00:0c: [io 0x0080]
[ 0.369553] pnp 00:0c: [io 0x0084-0x0086]
[ 0.369558] pnp 00:0c: [io 0x0088]
[ 0.369562] pnp 00:0c: [io 0x008c-0x008e]
[ 0.369566] pnp 00:0c: [io 0x0090-0x009f]
[ 0.369571] pnp 00:0c: [io 0x00a2-0x00bf]
[ 0.369575] pnp 00:0c: [io 0x00b1]
[ 0.369580] pnp 00:0c: [io 0x00e0-0x00ef]
[ 0.369584] pnp 00:0c: [io 0x0ca2-0x0ca3]
[ 0.369589] pnp 00:0c: [io 0x0550-0x0551]
[ 0.369593] pnp 00:0c: [io 0x04d0-0x04d1]
[ 0.369597] pnp 00:0c: [io 0x040b]
[ 0.369602] pnp 00:0c: [io 0x04d6]
[ 0.369606] pnp 00:0c: [io 0x0c00-0x0c01]
[ 0.369610] pnp 00:0c: [io 0x0c14]
[ 0.369615] pnp 00:0c: [io 0x0c50-0x0c51]
[ 0.369619] pnp 00:0c: [io 0x0c52]
[ 0.369623] pnp 00:0c: [io 0x0c6c]
[ 0.369627] pnp 00:0c: [io 0x0c6f]
[ 0.369632] pnp 00:0c: [io 0x0cd0-0x0cd1]
[ 0.369636] pnp 00:0c: [io 0x0cd2-0x0cd3]
[ 0.369640] pnp 00:0c: [io 0x0cd4-0x0cd5]
[ 0.369645] pnp 00:0c: [io 0x0cd6-0x0cd7]
[ 0.369649] pnp 00:0c: [io 0x0cd8-0x0cdf]
[ 0.369654] pnp 00:0c: [io 0x0800-0x089f]
[ 0.369659] pnp 00:0c: [io 0x0000-0xffffffffffffffff disabled]
[ 0.369664] pnp 00:0c: [io 0x0b00-0x0b0f]
[ 0.369668] pnp 00:0c: [io 0x0b20-0x0b3f]
[ 0.369673] pnp 00:0c: [io 0x0900-0x090f]
[ 0.369677] pnp 00:0c: [io 0x0910-0x091f]
[ 0.369682] pnp 00:0c: [io 0xfe00-0xfefe]
[ 0.369686] pnp 00:0c: [io 0x0060-0x005f disabled]
[ 0.369691] pnp 00:0c: [io 0x0064-0x0063 disabled]
[ 0.369696] pnp 00:0c: [mem 0xffb80000-0xffbfffff]
[ 0.369704] pnp 00:0c: [mem 0xfec10000-0xfec1001f]
[ 0.369849] system 00:0c: [io 0x0ca2-0x0ca3] has been reserved
[ 0.369855] system 00:0c: [io 0x0550-0x0551] has been reserved
[ 0.369861] system 00:0c: [io 0x04d0-0x04d1] has been reserved
[ 0.369867] system 00:0c: [io 0x040b] has been reserved
[ 0.369873] system 00:0c: [io 0x04d6] has been reserved
[ 0.369878] system 00:0c: [io 0x0c00-0x0c01] has been reserved
[ 0.369884] system 00:0c: [io 0x0c14] has been reserved
[ 0.369889] system 00:0c: [io 0x0c50-0x0c51] has been reserved
[ 0.369895] system 00:0c: [io 0x0c52] has been reserved
[ 0.369901] system 00:0c: [io 0x0c6c] has been reserved
[ 0.369906] system 00:0c: [io 0x0c6f] has been reserved
[ 0.369912] system 00:0c: [io 0x0cd0-0x0cd1] has been reserved
[ 0.369918] system 00:0c: [io 0x0cd2-0x0cd3] has been reserved
[ 0.369923] system 00:0c: [io 0x0cd4-0x0cd5] has been reserved
[ 0.369929] system 00:0c: [io 0x0cd6-0x0cd7] has been reserved
[ 0.369935] system 00:0c: [io 0x0cd8-0x0cdf] has been reserved
[ 0.369944] system 00:0c: [io 0x0800-0x089f] has been reserved
[ 0.369950] system 00:0c: [io 0x0b00-0x0b0f] has been reserved
[ 0.369955] system 00:0c: [io 0x0b20-0x0b3f] has been reserved
[ 0.369961] system 00:0c: [io 0x0900-0x090f] has been reserved
[ 0.369967] system 00:0c: [io 0x0910-0x091f] has been reserved
[ 0.369973] system 00:0c: [io 0xfe00-0xfefe] has been reserved
[ 0.369980] system 00:0c: [mem 0xffb80000-0xffbfffff] has been reserved
[ 0.369986] system 00:0c: [mem 0xfec10000-0xfec1001f] has been reserved
[ 0.369993] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.370547] pnp 00:0d: [io 0x03f8-0x03ff]
[ 0.370553] xen: registering gsi 4 triggering 1 polarity 0
[ 0.370558] xen_map_pirq_gsi: returning irq 4 for gsi 4
[ 0.370563] xen: --> pirq=4 -> irq=4 (gsi=4)
[ 0.370576] pnp 00:0d: [irq 4]
[ 0.370581] pnp 00:0d: [dma 0 disabled]
[ 0.370705] pnp 00:0d: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.371284] pnp 00:0e: [io 0x02f8-0x02ff]
[ 0.371289] xen: registering gsi 3 triggering 1 polarity 0
[ 0.371295] xen_map_pirq_gsi: returning irq 3 for gsi 3
[ 0.371300] xen: --> pirq=3 -> irq=3 (gsi=3)
[ 0.371305] Already setup the GSI :3
[ 0.371309] pnp 00:0e: [irq 3]
[ 0.371314] pnp 00:0e: [dma 0 disabled]
[ 0.371433] pnp 00:0e: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.371577] pnp 00:0f: [mem 0xe0000000-0xefffffff]
[ 0.371661] system 00:0f: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.371668] system 00:0f: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.372634] pnp 00:10: [mem 0x00000000-0x0009ffff]
[ 0.372640] pnp 00:10: [mem 0x000c0000-0x000cffff]
[ 0.372645] pnp 00:10: [mem 0x000e0000-0x000fffff]
[ 0.372650] pnp 00:10: [mem 0x00100000-0xdfffffff]
[ 0.372659] pnp 00:10: [mem 0xfec00000-0xffffffff]
[ 0.372759] system 00:10: [mem 0x00000000-0x0009ffff] could not be reserved
[ 0.372766] system 00:10: [mem 0x000c0000-0x000cffff] could not be reserved
[ 0.372772] system 00:10: [mem 0x000e0000-0x000fffff] could not be reserved
[ 0.372779] system 00:10: [mem 0x00100000-0xdfffffff] could not be reserved
[ 0.372785] system 00:10: [mem 0xfec00000-0xffffffff] could not be reserved
[ 0.372792] system 00:10: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.373111] pnp: PnP ACPI: found 17 devices
[ 0.373116] ACPI: ACPI bus type pnp unregistered
[ 0.380486] PM-Timer failed consistency check (0x0xffffff) - aborting.
[ 0.380513] PCI: max bus depth: 1 pci_try_num: 2
[ 0.380551] pci 0000:00:09.0: PCI bridge to [bus 03-03]
[ 0.380558] pci 0000:00:09.0: bridge window [io 0xe000-0xefff]
[ 0.380568] pci 0000:00:09.0: bridge window [mem 0xfeb00000-0xfebfffff]
[ 0.380582] pci 0000:00:0a.0: PCI bridge to [bus 02-02]
[ 0.380588] pci 0000:00:0a.0: bridge window [io 0xd000-0xdfff]
[ 0.380598] pci 0000:00:0a.0: bridge window [mem 0xfea00000-0xfeafffff]
[ 0.380612] pci 0000:00:14.4: PCI bridge to [bus 01-01]
[ 0.380630] pci 0000:00:14.4: bridge window [mem 0xfdf00000-0xfe7fffff]
[ 0.380640] pci 0000:00:14.4: bridge window [mem 0xfc000000-0xfcffffff pref]
[ 0.380663] xen: registering gsi 17 triggering 0 polarity 1
[ 0.380681] xen: --> pirq=17 -> irq=17 (gsi=17)
[ 0.380696] pci 0000:00:09.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 0.380706] pci 0000:00:09.0: setting latency timer to 64
[ 0.380717] xen: registering gsi 18 triggering 0 polarity 1
[ 0.380728] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 0.380740] pci 0000:00:0a.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 0.380749] pci 0000:00:0a.0: setting latency timer to 64
[ 0.380765] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7]
[ 0.380770] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff]
[ 0.380775] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.380781] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
[ 0.380786] pci_bus 0000:00: resource 8 [mem 0xf0000000-0xfebfffff]
[ 0.380792] pci_bus 0000:03: resource 0 [io 0xe000-0xefff]
[ 0.380798] pci_bus 0000:03: resource 1 [mem 0xfeb00000-0xfebfffff]
[ 0.380804] pci_bus 0000:02: resource 0 [io 0xd000-0xdfff]
[ 0.380809] pci_bus 0000:02: resource 1 [mem 0xfea00000-0xfeafffff]
[ 0.380816] pci_bus 0000:01: resource 1 [mem 0xfdf00000-0xfe7fffff]
[ 0.380822] pci_bus 0000:01: resource 2 [mem 0xfc000000-0xfcffffff pref]
[ 0.380828] pci_bus 0000:01: resource 4 [io 0x0000-0x0cf7]
[ 0.380833] pci_bus 0000:01: resource 5 [io 0x0d00-0xffff]
[ 0.380839] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff]
[ 0.380877] pci_bus 0000:01: resource 7 [mem 0x000d0000-0x000dffff]
[ 0.380883] pci_bus 0000:01: resource 8 [mem 0xf0000000-0xfebfffff]
[ 0.380940] NET: Registered protocol family 2
[ 0.383015] IP route cache hash table entries: 524288 (order: 10, 4194304 bytes)
[ 0.388281] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[ 0.391514] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[ 0.391860] TCP: Hash tables configured (established 524288 bind 65536)
[ 0.391866] TCP reno registered
[ 0.392022] UDP hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.392296] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
[ 0.392549] NET: Registered protocol family 1
[ 0.392605] xen: registering gsi 16 triggering 0 polarity 1
[ 0.392628] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 0.392649] pci 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.120157] pci 0000:00:12.0: PCI INT A disabled
[ 1.120188] xen: registering gsi 16 triggering 0 polarity 1
[ 1.120202] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 1.120207] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 1.120212] Already setup the GSI :16
[ 1.120218] pci 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.204175] pci 0000:00:12.1: PCI INT A disabled
[ 1.204209] xen: registering gsi 17 triggering 0 polarity 1
[ 1.204223] xen_map_pirq_gsi: returning irq 17 for gsi 17
[ 1.204228] xen: --> pirq=17 -> irq=17 (gsi=17)
[ 1.204233] Already setup the GSI :17
[ 1.204239] pci 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 1.204376] pci 0000:00:12.2: PCI INT B disabled
[ 1.204391] xen: registering gsi 18 triggering 0 polarity 1
[ 1.204397] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 1.204401] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 1.204405] Already setup the GSI :18
[ 1.204410] pci 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 1.288203] pci 0000:00:13.0: PCI INT A disabled
[ 1.288235] xen: registering gsi 18 triggering 0 polarity 1
[ 1.288248] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 1.288253] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 1.288259] Already setup the GSI :18
[ 1.288264] pci 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 1.372178] pci 0000:00:13.1: PCI INT A disabled
[ 1.372212] xen: registering gsi 19 triggering 0 polarity 1
[ 1.372238] xen: --> pirq=19 -> irq=19 (gsi=19)
[ 1.372256] pci 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.372392] pci 0000:00:13.2: PCI INT B disabled
[ 1.372417] xen: registering gsi 18 triggering 0 polarity 1
[ 1.372423] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 1.372428] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 1.372433] Already setup the GSI :18
[ 1.372437] pci 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 1.456174] pci 0000:00:14.5: PCI INT C disabled
[ 1.456260] pci 0000:01:04.0: Boot video device
[ 1.456268] PCI: CLS 64 bytes, default 64
[ 1.457351] audit: initializing netlink socket (disabled)
[ 1.457370] type=2000 audit(1336117549.732:1): initialized
[ 1.485594] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[ 1.487850] VFS: Disk quotas dquot_6.5.2
[ 1.487931] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.488646] fuse init (API version 7.17)
[ 1.488820] msgmni has been set to 1479
[ 1.489539] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 1.489597] io scheduler noop registered
[ 1.489602] io scheduler deadline registered
[ 1.489645] io scheduler cfq registered (default)
[ 1.490128] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 1.490164] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 1.490353] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[ 1.490364] ACPI: Power Button [PWRB]
[ 1.490424] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 1.490432] ACPI: Power Button [PWRF]
[ 1.692991] APEI: Can not request iomem region <00000000dfec60ea-00000000dfec60ec> for GARs.
[ 1.693118] [Firmware Warn]: GHES: Poll interval is 0 for generic hardware error source: 1, disabled.
[ 1.693300] GHES: APEI firmware first mode is enabled by WHEA _OSC.
[ 1.693866] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.697843] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 1.722349] 00:0d: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 1.848430] hpet_acpi_add: no address or irqs in _CRS
[ 1.848451] Linux agpgart interface v0.103
[ 1.852373] brd: module loaded
[ 1.853467] loop: module loaded
[ 1.853824] ahci 0000:00:11.0: version 3.0
[ 1.853849] xen: registering gsi 22 triggering 0 polarity 1
[ 1.853871] xen: --> pirq=22 -> irq=22 (gsi=22)
[ 1.853890] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[ 1.854111] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[ 1.854121] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc
[ 1.855082] scsi0 : ahci
[ 1.855199] scsi1 : ahci
[ 1.855293] scsi2 : ahci
[ 1.855392] scsi3 : ahci
[ 1.855498] scsi4 : ahci
[ 1.855590] scsi5 : ahci
[ 1.856528] ata1: SATA max UDMA/133 abar m1024@0xfe9fa400 port 0xfe9fa500 irq 22
[ 1.856537] ata2: SATA max UDMA/133 abar m1024@0xfe9fa400 port 0xfe9fa580 irq 22
[ 1.856544] ata3: SATA max UDMA/133 abar m1024@0xfe9fa400 port 0xfe9fa600 irq 22
[ 1.856552] ata4: SATA max UDMA/133 abar m1024@0xfe9fa400 port 0xfe9fa680 irq 22
[ 1.856559] ata5: SATA max UDMA/133 abar m1024@0xfe9fa400 port 0xfe9fa700 irq 22
[ 1.856566] ata6: SATA max UDMA/133 abar m1024@0xfe9fa400 port 0xfe9fa780 irq 22
[ 1.857062] Fixed MDIO Bus: probed
[ 1.857086] tun: Universal TUN/TAP device driver, 1.6
[ 1.857092] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 1.857178] PPP generic driver version 2.4.2
[ 1.857328] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.857416] xen: registering gsi 17 triggering 0 polarity 1
[ 1.857425] xen_map_pirq_gsi: returning irq 17 for gsi 17
[ 1.857430] xen: --> pirq=17 -> irq=17 (gsi=17)
[ 1.857435] Already setup the GSI :17
[ 1.857441] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[ 1.857474] ehci_hcd 0000:00:12.2: EHCI Host Controller
[ 1.857569] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[ 1.857582] ehci_hcd 0000:00:12.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 1.857679] ehci_hcd 0000:00:12.2: debug port 1
[ 1.857734] ehci_hcd 0000:00:12.2: irq 17, io mem 0xfe9fa800
[ 1.868101] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[ 1.868295] hub 1-0:1.0: USB hub found
[ 1.868303] hub 1-0:1.0: 6 ports detected
[ 1.868553] xen: registering gsi 19 triggering 0 polarity 1
[ 1.868561] xen_map_pirq_gsi: returning irq 19 for gsi 19
[ 1.868566] xen: --> pirq=19 -> irq=19 (gsi=19)
[ 1.868571] Already setup the GSI :19
[ 1.868576] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[ 1.868610] ehci_hcd 0000:00:13.2: EHCI Host Controller
[ 1.868733] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[ 1.868749] ehci_hcd 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[ 1.868809] ehci_hcd 0000:00:13.2: debug port 1
[ 1.868857] ehci_hcd 0000:00:13.2: irq 19, io mem 0xfe9fac00
[ 1.880099] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[ 1.880312] hub 2-0:1.0: USB hub found
[ 1.880320] hub 2-0:1.0: 6 ports detected
[ 1.880437] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.880591] xen: registering gsi 16 triggering 0 polarity 1
[ 1.880598] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 1.880603] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 1.880608] Already setup the GSI :16
[ 1.880613] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.880648] ohci_hcd 0000:00:12.0: OHCI Host Controller
[ 1.880742] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[ 1.880808] ohci_hcd 0000:00:12.0: irq 16, io mem 0xfe9f6000
[ 1.940279] hub 3-0:1.0: USB hub found
[ 1.940294] hub 3-0:1.0: 3 ports detected
[ 1.940504] xen: registering gsi 16 triggering 0 polarity 1
[ 1.940512] xen_map_pirq_gsi: returning irq 16 for gsi 16
[ 1.940517] xen: --> pirq=16 -> irq=16 (gsi=16)
[ 1.940521] Already setup the GSI :16
[ 1.940527] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[ 1.940562] ohci_hcd 0000:00:12.1: OHCI Host Controller
[ 1.940640] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
[ 1.940680] ohci_hcd 0000:00:12.1: irq 16, io mem 0xfe9f7000
[ 2.000312] hub 4-0:1.0: USB hub found
[ 2.000326] hub 4-0:1.0: 3 ports detected
[ 2.000550] xen: registering gsi 18 triggering 0 polarity 1
[ 2.000558] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.000562] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.000567] Already setup the GSI :18
[ 2.000572] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 2.000607] ohci_hcd 0000:00:13.0: OHCI Host Controller
[ 2.000697] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
[ 2.000763] ohci_hcd 0000:00:13.0: irq 18, io mem 0xfe9f8000
[ 2.060288] hub 5-0:1.0: USB hub found
[ 2.060302] hub 5-0:1.0: 3 ports detected
[ 2.060512] xen: registering gsi 18 triggering 0 polarity 1
[ 2.060520] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.060525] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.060530] Already setup the GSI :18
[ 2.060535] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 2.060569] ohci_hcd 0000:00:13.1: OHCI Host Controller
[ 2.060639] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
[ 2.060679] ohci_hcd 0000:00:13.1: irq 18, io mem 0xfe9f9000
[ 2.120307] hub 6-0:1.0: USB hub found
[ 2.120322] hub 6-0:1.0: 3 ports detected
[ 2.120531] xen: registering gsi 18 triggering 0 polarity 1
[ 2.120539] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.120544] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.120548] Already setup the GSI :18
[ 2.120554] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[ 2.120589] ohci_hcd 0000:00:14.5: OHCI Host Controller
[ 2.120658] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
[ 2.120697] ohci_hcd 0000:00:14.5: irq 18, io mem 0xfe9fb000
[ 2.176217] ata5: SATA link down (SStatus 0 SControl 300)
[ 2.180292] hub 7-0:1.0: USB hub found
[ 2.180305] hub 7-0:1.0: 2 ports detected
[ 2.180389] uhci_hcd: USB Universal Host Controller Interface driver
[ 2.180472] usbcore: registered new interface driver libusual
[ 2.180529] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 2.183449] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 2.183462] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 2.183618] mousedev: PS/2 mouse device common for all mice
[ 2.183827] rtc_cmos 00:04: RTC can wake from S4
[ 2.184001] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[ 2.184056] rtc0: alarms up to one month, y3k, 114 bytes nvram
[ 2.184170] device-mapper: uevent: version 1.0.3
[ 2.184272] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
[ 2.184285] EFI Variables Facility v0.08 2004-May-17
[ 2.184602] TCP cubic registered
[ 2.184733] NET: Registered protocol family 10
[ 2.185460] NET: Registered protocol family 17
[ 2.185485] Registering the dns_resolver key type
[ 2.185692] PM: Hibernation image not present or could not be loaded.
[ 2.185709] registered taskstats version 1
[ 2.192089] usb 2-2: new high-speed USB device number 2 using ehci_hcd
[ 2.203117] Magic number: 12:269:773
[ 2.203129] hub 2-0:1.0: hash matches
[ 2.203312] rtc_cmos 00:04: setting system clock to 2012-05-04 07:45:50 UTC (1336117550)
[ 2.203445] powernow-k8: Found 1 AMD Opteron(tm) Processor 6128 (8 cpu cores) (version 2.20.00)
[ 2.203553] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 2.203558] EDD information not available.
[ 2.216671] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 2.330229] Initializing USB Mass Storage driver...
[ 2.330450] scsi6 : usb-storage 2-2:1.0
[ 2.330530] usbcore: registered new interface driver usb-storage
[ 2.330536] USB Mass Storage support registered.
[ 2.352138] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.352171] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.352197] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.352222] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 2.352246] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 2.352815] ata6.00: ATAPI: TSSTcorp CDDVDW SH-S223L, SB03, max UDMA/100
[ 2.353565] ata6.00: configured for UDMA/100
[ 2.361793] ata1.00: ATA-8: WDC WD2502ABYS-02B7A0, 02.03B03, max UDMA/133
[ 2.361801] ata1.00: 490350672 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[ 2.362506] ata4.00: ATA-8: WDC WD2502ABYS-02B7A0, 02.03B03, max UDMA/133
[ 2.362513] ata4.00: 490350672 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[ 2.362961] ata1.00: configured for UDMA/133
[ 2.363111] scsi 0:0:0:0: Direct-Access ATA WDC WD2502ABYS-0 02.0 PQ: 0 ANSI: 5
[ 2.363320] sd 0:0:0:0: [sda] 490350672 512-byte logical blocks: (251 GB/233 GiB)
[ 2.363455] sd 0:0:0:0: [sda] Write Protect is off
[ 2.363461] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.363501] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 2.363592] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.363707] ata4.00: configured for UDMA/133
[ 2.364219] ata2.00: ATA-8: WDC WD2502ABYS-02B7A0, 02.03B03, max UDMA/133
[ 2.364226] ata2.00: 490350672 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[ 2.364758] ata3.00: ATA-8: WDC WD2502ABYS-02B7A0, 02.03B03, max UDMA/133
[ 2.364765] ata3.00: 490350672 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
[ 2.365423] ata2.00: configured for UDMA/133
[ 2.365595] scsi 1:0:0:0: Direct-Access ATA WDC WD2502ABYS-0 02.0 PQ: 0 ANSI: 5
[ 2.365803] sd 1:0:0:0: [sdb] 490350672 512-byte logical blocks: (251 GB/233 GiB)
[ 2.365808] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 2.365866] ata3.00: configured for UDMA/133
[ 2.365956] sd 1:0:0:0: [sdb] Write Protect is off
[ 2.365962] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 2.366002] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.366038] scsi 2:0:0:0: Direct-Access ATA WDC WD2502ABYS-0 02.0 PQ: 0 ANSI: 5
[ 2.366232] sd 2:0:0:0: [sdc] 490350672 512-byte logical blocks: (251 GB/233 GiB)
[ 2.366251] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 2.366340] sd 2:0:0:0: [sdc] Write Protect is off
[ 2.366347] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 2.366389] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.366409] scsi 3:0:0:0: Direct-Access ATA WDC WD2502ABYS-0 02.0 PQ: 0 ANSI: 5
[ 2.366595] sd 3:0:0:0: Attached scsi generic sg3 type 0
[ 2.366642] sd 3:0:0:0: [sdd] 490350672 512-byte logical blocks: (251 GB/233 GiB)
[ 2.366810] sd 3:0:0:0: [sdd] Write Protect is off
[ 2.366817] sd 3:0:0:0: [sdd] Mode Sense: 00 3a 00 00
[ 2.366855] sd 3:0:0:0: [sdd] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.367260] scsi 5:0:0:0: CD-ROM TSSTcorp CDDVDW SH-S223L SB03 PQ: 0 ANSI: 5
[ 2.370973] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[ 2.370981] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 2.371158] sr 5:0:0:0: Attached scsi CD-ROM sr0
[ 2.371246] sr 5:0:0:0: Attached scsi generic sg4 type 5
[ 2.375170] sdd: unknown partition table
[ 2.375459] sd 3:0:0:0: [sdd] Attached SCSI disk
[ 2.376358] sdb: sdb1 sdb2
[ 2.376797] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 2.377565] sdc: unknown partition table
[ 2.377850] sd 2:0:0:0: [sdc] Attached SCSI disk
[ 2.480467] sda: sda1 sda2 sda3 < sda5 sda6 sda7 sda8 sda9 sda10 sda11 sda12 sda13 sda14 sda15 sda16 >
[ 2.481471] sd 0:0:0:0: [sda] Attached SCSI disk
[ 2.482098] Freeing unused kernel memory: 920k freed
[ 2.482415] Write protecting the kernel read-only data: 12288k
[ 2.489624] Freeing unused kernel memory: 1520k freed
[ 2.490773] Freeing unused kernel memory: 1140k freed
[ 2.557089] udevd[165]: starting version 175
[ 2.636458] e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
[ 2.636467] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
[ 2.636601] e1000e 0000:03:00.0: Disabling ASPM L0s
[ 2.636626] xen: registering gsi 17 triggering 0 polarity 1
[ 2.636639] xen_map_pirq_gsi: returning irq 17 for gsi 17
[ 2.636644] xen: --> pirq=17 -> irq=17 (gsi=17)
[ 2.636650] Already setup the GSI :17
[ 2.636656] e1000e 0000:03:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[ 2.636687] e1000e 0000:03:00.0: setting latency timer to 64
[ 2.708140] usb 5-3: new full-speed USB device number 2 using ohci_hcd
[ 2.749851] e1000e 0000:03:00.0: eth0: (PCI Express:2.5GT/s:Width x1) 00:25:90:29:de:05
[ 2.749861] e1000e 0000:03:00.0: eth0: Intel(R) PRO/1000 Network Connection
[ 2.749946] e1000e 0000:03:00.0: eth0: MAC: 3, PHY: 8, PBA No: 0101FF-0FF
[ 2.750112] e1000e 0000:02:00.0: Disabling ASPM L0s
[ 2.750137] xen: registering gsi 18 triggering 0 polarity 1
[ 2.750148] xen_map_pirq_gsi: returning irq 18 for gsi 18
[ 2.750153] xen: --> pirq=18 -> irq=18 (gsi=18)
[ 2.750159] Already setup the GSI :18
[ 2.750164] e1000e 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[ 2.750195] e1000e 0000:02:00.0: setting latency timer to 64
[ 2.861339] e1000e 0000:02:00.0: eth1: (PCI Express:2.5GT/s:Width x1) 00:25:90:29:de:04
[ 2.861348] e1000e 0000:02:00.0: eth1: Intel(R) PRO/1000 Network Connection
[ 2.861432] e1000e 0000:02:00.0: eth1: MAC: 3, PHY: 8, PBA No: 0101FF-0FF
[ 2.890458] input: Winbond Electronics Corp Hermon USB hidmouse Device as /devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3:1.0/input/input3
[ 2.890716] generic-usb 0003:0557:2221.0001: input,hidraw0: USB HID v1.00 Mouse [Winbond Electronics Corp Hermon USB hidmouse Device] on usb-0000:00:13.0-3/input0
[ 2.894400] input: Winbond Electronics Corp Hermon USB hidmouse Device as /devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3:1.1/input/input4
[ 2.894568] generic-usb 0003:0557:2221.0002: input,hidraw1: USB HID v1.00 Keyboard [Winbond Electronics Corp Hermon USB hidmouse Device] on usb-0000:00:13.0-3/input1
[ 2.894593] usbcore: registered new interface driver usbhid
[ 2.894599] usbhid: USB HID core driver
[ 3.329089] scsi 6:0:0:0: Direct-Access Generic- SD/MMC 1.00 PQ: 0 ANSI: 0
[ 3.329668] scsi 6:0:0:1: Direct-Access Generic- Compact Flash 1.01 PQ: 0 ANSI: 0
[ 3.330387] scsi 6:0:0:2: Direct-Access Generic- SM/xD-Picture 1.02 PQ: 0 ANSI: 0
[ 3.331105] scsi 6:0:0:3: Direct-Access Generic- MS/MS-Pro 1.03 PQ: 0 ANSI: 0
[ 3.332076] sd 6:0:0:0: Attached scsi generic sg5 type 0
[ 3.332307] sd 6:0:0:1: Attached scsi generic sg6 type 0
[ 3.332917] sd 6:0:0:2: Attached scsi generic sg7 type 0
[ 3.333248] sd 6:0:0:3: Attached scsi generic sg8 type 0
[ 3.337387] sd 6:0:0:1: [sdf] Attached SCSI removable disk
[ 3.341169] sd 6:0:0:3: [sdh] Attached SCSI removable disk
[ 3.341766] sd 6:0:0:0: [sde] Attached SCSI removable disk
[ 3.345257] sd 6:0:0:2: [sdg] Attached SCSI removable disk
[ 9.072230] EXT4-fs (sda15): mounted filesystem with ordered data mode. Opts: (null)
[ 15.826798] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 15.826809] ADDRCONF(NETDEV_UP): eth1: link is not ready
[ 15.857000] udevd[690]: starting version 175
[ 15.968225] Adding 32226300k swap on /dev/sda2. Priority:-1 extents:1 across:32226300k
[ 15.993626] MCE: In-kernel MCE decoding enabled.
[ 15.994765] lp: driver loaded but no devices found
[ 15.994879] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[ 15.996578] SP5100 TCO timer: SP5100 TCO WatchDog Timer Driver v0.01
[ 15.996892] SP5100 TCO timer: mmio address 0xfec000f0 already in use
[ 15.998543] type=1400 audit(1336117564.289:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=796 comm="apparmor_parser"
[ 15.999196] type=1400 audit(1336117564.289:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=796 comm="apparmor_parser"
[ 15.999554] type=1400 audit(1336117564.289:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=796 comm="apparmor_parser"
[ 16.006597] EDAC MC: Ver: 2.1.0
[ 16.012142] ipmi message handler version 39.2
[ 16.012461] device-mapper: multipath: version 1.3.0 loaded
[ 16.014209] ipmi device interface
[ 16.017746] AMD64 EDAC driver v3.4.0
[ 16.021604] EDAC amd64: DRAM ECC enabled.
[ 16.021668] EDAC amd64: F10h detected (node 0).
[ 16.021752] EDAC MC: DCT0 chip selects:
[ 16.021756] EDAC amd64: MC: 0: 2048MB 1: 2048MB
[ 16.021760] EDAC amd64: MC: 2: 2048MB 3: 2048MB
[ 16.021763] EDAC amd64: MC: 4: 0MB 5: 0MB
[ 16.021766] EDAC amd64: MC: 6: 0MB 7: 0MB
[ 16.021769] EDAC MC: DCT1 chip selects:
[ 16.021771] EDAC amd64: MC: 0: 2048MB 1: 2048MB
[ 16.021774] EDAC amd64: MC: 2: 2048MB 3: 2048MB
[ 16.021777] EDAC amd64: MC: 4: 0MB 5: 0MB
[ 16.021780] EDAC amd64: MC: 6: 0MB 7: 0MB
[ 16.021783] EDAC amd64: using x8 syndromes.
[ 16.021786] EDAC amd64: MCT channel count: 2
[ 16.021829] EDAC amd64: CS0: Unbuffered DDR3 RAM
[ 16.021833] EDAC amd64: CS1: Unbuffered DDR3 RAM
[ 16.021836] EDAC amd64: CS2: Unbuffered DDR3 RAM
[ 16.021839] EDAC amd64: CS3: Unbuffered DDR3 RAM
[ 16.021916] EDAC MC0: Giving out device to 'amd64_edac' 'F10h': DEV 0000:00:18.2
[ 16.022350] IPMI System Interface driver.
[ 16.022584] ipmi_si: probing via SMBIOS
[ 16.022589] ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
[ 16.022593] ipmi_si: Adding SMBIOS-specified kcs state machine
[ 16.022600] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
[ 16.022975] EDAC amd64: DRAM ECC enabled.
[ 16.022981] EDAC amd64: F10h detected (node 1).
[ 16.023069] EDAC MC: DCT0 chip selects:
[ 16.023076] EDAC amd64: MC: 0: 2048MB 1: 2048MB
[ 16.023080] EDAC amd64: MC: 2: 2048MB 3: 2048MB
[ 16.023083] EDAC amd64: MC: 4: 0MB 5: 0MB
[ 16.023086] EDAC amd64: MC: 6: 0MB 7: 0MB
[ 16.023088] EDAC MC: DCT1 chip selects:
[ 16.023091] EDAC amd64: MC: 0: 2048MB 1: 2048MB
[ 16.023098] EDAC amd64: MC: 2: 2048MB 3: 2048MB
[ 16.023101] EDAC amd64: MC: 4: 0MB 5: 0MB
[ 16.023104] EDAC amd64: MC: 6: 0MB 7: 0MB
[ 16.023107] EDAC amd64: using x8 syndromes.
[ 16.023110] EDAC amd64: MCT channel count: 2
[ 16.023170] EDAC amd64: CS0: Unbuffered DDR3 RAM
[ 16.023173] EDAC amd64: CS1: Unbuffered DDR3 RAM
[ 16.023180] EDAC amd64: CS2: Unbuffered DDR3 RAM
[ 16.023183] EDAC amd64: CS3: Unbuffered DDR3 RAM
[ 16.023295] EDAC MC1: Giving out device to 'amd64_edac' 'F10h': DEV 0000:00:19.2
[ 16.023410] EDAC PCI0: Giving out device to module 'amd64_edac' controller 'EDAC PCI controller': DEV '0000:00:18.2' (POLLED)
[ 16.042005] Bridge firewalling registered
[ 16.053097] device eth0 entered promiscuous mode
[ 16.132100] ipmi_si: Invalid return from get global enables command, cannot enable the event buffer.
[ 16.151879] ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 16.160814] ipmi_si ipmi_si.0: Found new BMC (man_id: 0x00b980, prod_id: 0xa711, dev_id: 0x20)
[ 16.160999] ipmi_si ipmi_si.0: IPMI kcs interface initialized
[ 16.182200] ADDRCONF(NETDEV_UP): br0: link is not ready
[ 16.319392] ADDRCONF(NETDEV_UP): eth1: link is not ready
[ 16.330234] EXT4-fs (sda15): re-mounted. Opts: errors=remount-ro
[ 17.144823] input: ImPS/2 Generic Wheel Mouse as /devices/platform/i8042/serio1/input/input5
[ 17.593397] EXT4-fs (dm-30): mounted filesystem with ordered data mode. Opts: (null)
[ 19.417104] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
[ 19.419524] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 19.419662] br0: port 1(eth0) entering forwarding state
[ 19.419679] br0: port 1(eth0) entering forwarding state
[ 19.421850] ADDRCONF(NETDEV_CHANGE): br0: link becomes ready
[ 23.013339] init: udev-fallback-graphics main process (1809) terminated with status 1
[ 23.151179] init: failsafe main process (1693) killed by TERM signal
[ 23.262932] type=1400 audit(1336117571.553:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/libvirt/virt-aa-helper" pid=1907 comm="apparmor_parser"
[ 23.263053] type=1400 audit(1336117571.553:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1905 comm="apparmor_parser"
[ 23.263150] type=1400 audit(1336117571.553:7): apparmor="STATUS" operation="profile_load" name="/usr/sbin/libvirtd" pid=1908 comm="apparmor_parser"
[ 23.263716] type=1400 audit(1336117571.553:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1905 comm="apparmor_parser"
[ 23.264106] type=1400 audit(1336117571.557:9): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1905 comm="apparmor_parser"
[ 23.264198] type=1400 audit(1336117571.557:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/mysqld-akonadi" pid=1909 comm="apparmor_parser"
[ 23.264557] type=1400 audit(1336117571.557:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/mysqld-akonadi///usr/sbin/mysqld" pid=1909 comm="apparmor_parser"
[ 23.264863] type=1400 audit(1336117571.557:12): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1911 comm="apparmor_parser"
[ 23.544492] init: Failed to spawn alsa-restore main process: unable to execute: No such file or directory
[ 23.762025] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 23.862906] nf_conntrack version 0.5.0 (5946 buckets, 23784 max)
[ 23.915808] ADDRCONF(NETDEV_UP): virbr0: link is not ready
[ 24.143570] Event-channel device installed.
[ 24.207277] XENBUS: Unable to read cpu state
[ 24.207486] XENBUS: Unable to read cpu state
[ 24.207676] XENBUS: Unable to read cpu state
[ 24.207856] XENBUS: Unable to read cpu state
[ 24.208129] XENBUS: Unable to read cpu state
[ 24.208292] XENBUS: Unable to read cpu state
[ 24.208467] XENBUS: Unable to read cpu state
[ 24.208605] XENBUS: Unable to read cpu state
[ 25.164557] Ebtables v2.0 registered
[ 25.195793] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 29.556089] br0: no IPv6 routers present
[ 112.342255] xen-acpi-processor: Max ACPI ID: 16
[ 112.344764] ACPI CPU1 - P-states uploaded.
[ 112.344771] *P0: 2000 MHz, 10580 mW, 4 uS
[ 112.344775] P1: 1500 MHz, 8265 mW, 4 uS
[ 112.344779] P2: 1200 MHz, 6825 mW, 4 uS
[ 112.344782] P3: 1000 MHz, 5600 mW, 4 uS
[ 112.344785] P4: 800 MHz, 4777 mW, 4 uS
[ 112.344804] ACPI CPU2 - P-states uploaded.
[ 112.344809] *P0: 2000 MHz, 10580 mW, 4 uS
[ 112.344817] P1: 1500 MHz, 8265 mW, 4 uS
[ 112.344823] P2: 1200 MHz, 6825 mW, 4 uS
[ 112.344829] P3: 1000 MHz, 5600 mW, 4 uS
[ 112.344834] P4: 800 MHz, 4777 mW, 4 uS
[ 112.344856] ACPI CPU3 - P-states uploaded.
[ 112.344861] *P0: 2000 MHz, 10580 mW, 4 uS
[ 112.344865] P1: 1500 MHz, 8265 mW, 4 uS
[ 112.344871] P2: 1200 MHz, 6825 mW, 4 uS
[ 112.344876] P3: 1000 MHz, 5600 mW, 4 uS
[ 112.344881] P4: 800 MHz, 4777 mW, 4 uS
[ 112.344900] ACPI CPU4 - P-states uploaded.
[ 112.344905] *P0: 2000 MHz, 10580 mW, 4 uS
[ 112.344910] P1: 1500 MHz, 8265 mW, 4 uS
[ 112.344915] P2: 1200 MHz, 6825 mW, 4 uS
[ 112.344920] P3: 1000 MHz, 5600 mW, 4 uS
[ 112.344925] P4: 800 MHz, 4777 mW, 4 uS
[ 112.344937] ACPI CPU5 - P-states uploaded.
[ 112.344942] *P0: 2000 MHz, 10580 mW, 4 uS
[ 112.344947] P1: 1500 MHz, 8265 mW, 4 uS
[ 112.344952] P2: 1200 MHz, 6825 mW, 4 uS
[ 112.344957] P3: 1000 MHz, 5600 mW, 4 uS
[ 112.344962] P4: 800 MHz, 4777 mW, 4 uS
[ 112.344972] ACPI CPU6 - P-states uploaded.
[ 112.344979] *P0: 2000 MHz, 10580 mW, 4 uS
[ 112.344984] P1: 1500 MHz, 8265 mW, 4 uS
[ 112.344991] P2: 1200 MHz, 6825 mW, 4 uS
[ 112.344995] P3: 1000 MHz, 5600 mW, 4 uS
[ 112.345000] P4: 800 MHz, 4777 mW, 4 uS
[ 112.345013] ACPI CPU7 - P-states uploaded.
[ 112.345017] *P0: 2000 MHz, 10580 mW, 4 uS
[ 112.345022] P1: 1500 MHz, 8265 mW, 4 uS
[ 112.345028] P2: 1200 MHz, 6825 mW, 4 uS
[ 112.345033] P3: 1000 MHz, 5600 mW, 4 uS
[ 112.345037] P4: 800 MHz, 4777 mW, 4 uS
[ 112.345049] ACPI CPU8 - P-states uploaded.
[ 112.345054] *P0: 2000 MHz, 10580 mW, 4 uS
[ 112.345059] P1: 1500 MHz, 8265 mW, 4 uS
[ 112.345064] P2: 1200 MHz, 6825 mW, 4 uS
[ 112.345069] P3: 1000 MHz, 5600 mW, 4 uS
[ 112.345074] P4: 800 MHz, 4777 mW, 4 uS
[ 112.345100] xen-acpi-processor: ACPI CPU1 w/ PBLK:0x810
[ 112.345116] xen-acpi-processor: ACPI CPU2 w/ PBLK:0x0
[ 112.345128] xen-acpi-processor: ACPI CPU3 w/ PBLK:0x0
[ 112.345140] xen-acpi-processor: ACPI CPU4 w/ PBLK:0x0
[ 112.345150] xen-acpi-processor: ACPI CPU5 w/ PBLK:0x0
[ 112.345163] xen-acpi-processor: ACPI CPU6 w/ PBLK:0x0
[ 112.345175] xen-acpi-processor: ACPI CPU7 w/ PBLK:0x0
[ 112.345188] xen-acpi-processor: ACPI CPU8 w/ PBLK:0x0
[ 112.345199] xen-acpi-processor: ACPI CPU9 w/ PBLK:0x0
[ 112.345208] xen-acpi-processor: ACPI CPU10 w/ PBLK:0x0
[ 112.345216] xen-acpi-processor: ACPI CPU11 w/ PBLK:0x0
[ 112.345225] xen-acpi-processor: ACPI CPU12 w/ PBLK:0x0
[-- Attachment #1.2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 900 bytes --]
[-- Attachment #2: Type: text/plain, Size: 126 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel
next prev parent reply other threads:[~2012-05-04 8:00 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-25 13:00 Workings/effectiveness of the xen-acpi-processor driver Stefan Bader
2012-04-26 15:50 ` Konrad Rzeszutek Wilk
2012-04-26 16:25 ` Stefan Bader
2012-04-26 17:04 ` Konrad Rzeszutek Wilk
2012-05-06 15:23 ` Pasi Kärkkäinen
2012-05-07 17:33 ` Konrad Rzeszutek Wilk
2012-05-07 17:44 ` Pasi Kärkkäinen
2012-05-01 20:02 ` Konrad Rzeszutek Wilk
2012-05-01 22:35 ` Boris Ostrovsky
2012-05-01 22:54 ` Konrad Rzeszutek Wilk
2012-05-02 0:47 ` Konrad Rzeszutek Wilk
2012-05-02 1:11 ` Boris Ostrovsky
2012-05-02 9:19 ` Jan Beulich
2012-05-02 14:56 ` Stefan Bader
2012-05-02 8:36 ` Stefan Bader
2012-05-02 15:01 ` Stefan Bader
2012-05-02 16:08 ` Konrad Rzeszutek Wilk
2012-05-02 17:06 ` Boris Ostrovsky
2012-05-02 17:14 ` Konrad Rzeszutek Wilk
2012-05-02 21:31 ` Boris Ostrovsky
2012-05-02 21:41 ` Konrad Rzeszutek Wilk
2012-05-02 22:09 ` Boris Ostrovsky
2012-05-03 6:55 ` Stefan Bader
2012-05-03 10:00 ` Stefan Bader
2012-05-03 12:58 ` Stefan Bader
2012-05-03 14:47 ` Stefan Bader
2012-05-03 15:46 ` Konrad Rzeszutek Wilk
2012-05-03 17:02 ` Boris Ostrovsky
2012-05-03 17:08 ` Konrad Rzeszutek Wilk
2012-05-04 8:00 ` Stefan Bader [this message]
2012-05-03 16:14 ` Konrad Rzeszutek Wilk
2012-05-02 21:29 ` Stefan Bader
2012-05-02 8:22 ` Stefan Bader
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4FA38CA0.3020601@canonical.com \
--to=stefan.bader@canonical.com \
--cc=boris.ostrovsky@amd.com \
--cc=jbeulich@suse.com \
--cc=konrad.wilk@oracle.com \
--cc=konrad@darnok.org \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).