Nova 32 bits on older Pentium 4 computer.
Paul Dufresne
dufresnep at ...9...
Mon Jan 21 19:46:53 CET 2013
Well, this old Pentium 4 computer does seems to have an IOAPIC, as
seen in the dmesg log:
[ 0.015459] Freeing SMP alternatives: 24k freed
[ 0.015506] ACPI: Core revision 20120320
[ 0.019020] ftrace: allocating 22322 entries in 44 pages
[ 0.031186] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.031562] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[ 0.031997] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[ 0.031997] ...trying to set up timer (IRQ0) through the 8259A ...
[ 0.031997] ..... (found apic 0 pin 0) ...
[ 0.042985] ....... works.
[ 0.042988] CPU0: Intel(R) Pentium(R) 4 CPU 2.26GHz stepping 04
[ 0.043996] Performance Events: Netburst events, Netburst P4/Xeon PMU driver.
[ 0.043996] ... version: 0
[ 0.043996] ... bit width: 40
[ 0.043996] ... generic registers: 18
[ 0.043996] ... value mask: 000000ffffffffff
[ 0.043996] ... max period: 0000007fffffffff
[ 0.043996] ... fixed-purpose events: 0
[ 0.043996] ... event mask: 000000000003ffff
[ 0.044304] NMI watchdog: enabled on all CPUs, permanently consumes
one hw-PMU counter.
[ 0.044410] Brought up 1 CPUs
[ 0.044415] Total of 1 processors activated (4517.85 BogoMIPS).
[ 0.045127] devtmpfs: initialized
Although "[ 0.031997] ..MP-BIOS bug: 8254 timer not connected to
IO-APIC" suggest some problem with it.
Up to now, by adding some Console::print in bootstrap.cpp (Nova):
extern "C" NORETURN
void bootstrap()
{
static mword barrier;
Cpu::init();
Console::print("Cpu::init done in bootstrap");
// Create idle EC
Ec::current = new Ec (Pd::current = &Pd::kern, 0, Ec::idle, Cpu::id);
Space_obj::insert_root (Sc::current = new Sc (&Pd::kern, Cpu::id,
Ec::current));
// Barrier: wait for all ECs to arrive here
for (Atomic::add (barrier, 1UL); barrier != Cpu::online; pause()) ;
Console::print("about to Msr::write");
Msr::write<uint64>(Msr::IA32_TSC, 0);
Console::print("will create root task");
// Create root task
if (Cpu::bsp) {
Hip::add_check();
Ec *root_ec = new Ec (&Pd::root, NUM_EXC + 1, &Pd::root,
Ec::root_invoke, Cpu::id, 0, USER_ADDR - 2 * PAGE_SIZE, 0);
Sc *root_sc = new Sc (&Pd::root, NUM_EXC + 2, root_ec,
Cpu::id, Sc::default_prio, Sc::default_quantum);
root_sc->remote_enqueue();
}
Console::print("Scheduling");
Sc::schedule();
}
I do see my "Scheduling" when booting. But I don't understand which
code is executed next.
Ok... I understand it is not a interesting computer to use Nova on.
-------------- next part --------------
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 3.5.3-1.fc17.i686 (mockbuild@) (gcc version 4.7.0 20120507 (Red Hat 4.7.0-5) (GCC) ) #1 SMP Wed Aug 29 19:25:38 UTC 2012
[ 0.000000] e820: BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fceffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000001fcf0000-0x000000001fcfafff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000001fcfb000-0x000000001fcfffff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000001fd00000-0x000000001fe7ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000001fe80000-0x000000001fffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff800000-0x00000000ffbfffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffffc00-0x00000000ffffffff] reserved
[ 0.000000] Notice: NX (Execute Disable) protection missing in CPU!
[ 0.000000] DMI present.
[ 0.000000] DMI: IBM 8303KKU/IBM, BIOS 24KT28AUS 10/09/2002
[ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] e820: last_pfn = 0x1fe80 max_arch_pfn = 0x100000
[ 0.000000] MTRR default type: uncachable
[ 0.000000] MTRR fixed ranges enabled:
[ 0.000000] 00000-9FFFF write-back
[ 0.000000] A0000-BFFFF uncachable
[ 0.000000] C0000-C7FFF write-protect
[ 0.000000] C8000-E3FFF uncachable
[ 0.000000] E4000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask FE0000000 write-back
[ 0.000000] 1 base 01FF80000 mask FFFF80000 uncachable
[ 0.000000] 2 disabled
[ 0.000000] 3 disabled
[ 0.000000] 4 disabled
[ 0.000000] 5 disabled
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[ 0.000000] original variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 512MB, type WB
[ 0.000000] reg 1, base: 523776KB, range: 512KB, type UC
[ 0.000000] total RAM covered: 511M
[ 0.000000] Found optimal setting for mtrr clean up
[ 0.000000] gran_size: 64K chunk_size: 1M num_reg: 2 lose cover RAM: 0G
[ 0.000000] New variable MTRRs
[ 0.000000] reg 0, base: 0GB, range: 512MB, type WB
[ 0.000000] reg 1, base: 523776KB, range: 512KB, type UC
[ 0.000000] found SMP MP-table at [mem 0x000f62d0-0x000f62df] mapped at [c00f62d0]
[ 0.000000] initial memory mapped: [mem 0x00000000-0x00ffffff]
[ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[ 0.000000] init_memory_mapping: [mem 0x00000000-0x1fe7ffff]
[ 0.000000] [mem 0x00000000-0x003fffff] page 4k
[ 0.000000] [mem 0x00400000-0x1fbfffff] page 2M
[ 0.000000] [mem 0x1fc00000-0x1fe7ffff] page 4k
[ 0.000000] kernel direct mapping tables up to 0x1fe7ffff @ [mem 0x00ff9000-0x00ffffff]
[ 0.000000] RAMDISK: [mem 0x1e48a000-0x1f50bfff]
[ 0.000000] ACPI: RSDP 000f6360 00014 (v00 PTLTD )
[ 0.000000] ACPI: RSDT 1fcf7424 00034 (v01 PTLTD RSDT 060400D0 LTP 00000000)
[ 0.000000] ACPI: FACP 1fcfaee2 00074 (v01 IBM NETVISTA 060400D0 PTL 00000001)
[ 0.000000] ACPI: DSDT 1fcf7458 03A8A (v01 IBM Yelotail 060400D0 MSFT 0100000E)
[ 0.000000] ACPI: FACS 1fcfbfc0 00040
[ 0.000000] ACPI: TCPA 1fcfaf56 00032 (v01 IBM NETVISTA 060400D0 PTL 00000001)
[ 0.000000] ACPI: APIC 1fcfaf88 00050 (v01 PTLTD ? APIC 060400D0 LTP 00000000)
[ 0.000000] ACPI: BOOT 1fcfafd8 00028 (v01 PTLTD $SBFTBL$ 060400D0 LTP 00000001)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] 0MB HIGHMEM available.
[ 0.000000] 510MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 1fe80000
[ 0.000000] low ram: 0 - 1fe80000
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x00010000-0x00ffffff]
[ 0.000000] Normal [mem 0x01000000-0x1fe7ffff]
[ 0.000000] HighMem empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x00010000-0x0009efff]
[ 0.000000] node 0: [mem 0x00100000-0x1fceffff]
[ 0.000000] node 0: [mem 0x1fd00000-0x1fe7ffff]
[ 0.000000] On node 0 totalpages: 130559
[ 0.000000] free_area_init_node: node 0, pgdat c0bc9740, node_mem_map df8f0200
[ 0.000000] DMA zone: 32 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3951 pages, LIFO batch:0
[ 0.000000] Normal zone: 989 pages used for memmap
[ 0.000000] Normal zone: 125587 pages, LIFO batch:31
[ 0.000000] Using APIC driver default
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.000000] ACPI: IRQ9 used by override.
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] nr_irqs_gsi: 40
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
[ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
[ 0.000000] PM: Registered nosave memory: 000000001fcf0000 - 000000001fcfb000
[ 0.000000] PM: Registered nosave memory: 000000001fcfb000 - 000000001fd00000
[ 0.000000] e820: [mem 0x20000000-0xfebfffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:1 nr_node_ids:1
[ 0.000000] PERCPU: Embedded 13 pages/cpu @dfe6d000 s31552 r0 d21696 u53248
[ 0.000000] pcpu-alloc: s31552 r0 d21696 u53248 alloc=13*4096
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 129538
[ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.5.3-1.fc17.i686 root=/dev/mapper/vg_betegeuse-lv_root ro rd.md=0 rd.dm=0 rd.lvm.lv=vg_betegeuse/lv_swap SYSFONT=True rd.luks=0 rd.lvm.lv=vg_betegeuse/lv_root KEYTABLE=cf LANG=en_US.UTF-8 rhgb quiet
[ 0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.000000] __ex_table already sorted, skipping sort
[ 0.000000] Initializing CPU#0
[ 0.000000] allocated 1045376 bytes of page_cgroup
[ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[ 0.000000] Initializing HighMem for node 0 (00000000:00000000)
[ 0.000000] Memory: 490000k/522752k available (5424k kernel code, 32236k reserved, 2639k data, 624k init, 0k highmem)
[ 0.000000] virtual kernel memory layout:
[ 0.000000] fixmap : 0xffa96000 - 0xfffff000 (5540 kB)
[ 0.000000] pkmap : 0xff400000 - 0xff800000 (4096 kB)
[ 0.000000] vmalloc : 0xe0680000 - 0xff3fe000 ( 493 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xdfe80000 ( 510 MB)
[ 0.000000] .init : 0xc0be1000 - 0xc0c7d000 ( 624 kB)
[ 0.000000] .data : 0xc094c0e1 - 0xc0be0080 (2639 kB)
[ 0.000000] .text : 0xc0400000 - 0xc094c0e1 (5424 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: Genslabs=15, HWalign=128, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] NR_IRQS:2304 nr_irqs:256 16
[ 0.000000] CPU 0 irqstacks, hard=de008000 soft=de00a000
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] Fast TSC calibration using PIT
[ 0.000000] Detected 2258.926 MHz processor.
[ 0.002002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4517.85 BogoMIPS (lpj=2258926)
[ 0.002009] pid_max: default: 32768 minimum: 301
[ 0.002049] Security Framework initialized
[ 0.002063] SELinux: Initializing.
[ 0.002076] SELinux: Starting in permissive mode
[ 0.002175] Mount-cache hash table entries: 512
[ 0.002545] Initializing cgroup subsys cpuacct
[ 0.002551] Initializing cgroup subsys memory
[ 0.002567] Initializing cgroup subsys devices
[ 0.002570] Initializing cgroup subsys freezer
[ 0.002574] Initializing cgroup subsys net_cls
[ 0.002577] Initializing cgroup subsys blkio
[ 0.002581] Initializing cgroup subsys perf_event
[ 0.002633] CPU0: Hyper-Threading is disabled
[ 0.002638] mce: CPU supports 4 MCE banks
[ 0.002653] CPU0: Thermal monitoring enabled (TM1)
[ 0.002784] SMP alternatives: switching to UP code
[ 0.015459] Freeing SMP alternatives: 24k freed
[ 0.015506] ACPI: Core revision 20120320
[ 0.019020] ftrace: allocating 22322 entries in 44 pages
[ 0.031186] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.031562] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[ 0.031997] ..MP-BIOS bug: 8254 timer not connected to IO-APIC
[ 0.031997] ...trying to set up timer (IRQ0) through the 8259A ...
[ 0.031997] ..... (found apic 0 pin 0) ...
[ 0.042985] ....... works.
[ 0.042988] CPU0: Intel(R) Pentium(R) 4 CPU 2.26GHz stepping 04
[ 0.043996] Performance Events: Netburst events, Netburst P4/Xeon PMU driver.
[ 0.043996] ... version: 0
[ 0.043996] ... bit width: 40
[ 0.043996] ... generic registers: 18
[ 0.043996] ... value mask: 000000ffffffffff
[ 0.043996] ... max period: 0000007fffffffff
[ 0.043996] ... fixed-purpose events: 0
[ 0.043996] ... event mask: 000000000003ffff
[ 0.044304] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.044410] Brought up 1 CPUs
[ 0.044415] Total of 1 processors activated (4517.85 BogoMIPS).
[ 0.045127] devtmpfs: initialized
[ 0.045809] PM: Registering ACPI NVS region [mem 0x1fcfb000-0x1fcfffff] (20480 bytes)
[ 0.047795] atomic64 test passed for i586+ platform with CX8 and with SSE
[ 0.047830] RTC time: 18:28:55, date: 01/21/13
[ 0.047912] NET: Registered protocol family 16
[ 0.048497] ACPI: bus type pci registered
[ 0.049120] PCI: PCI BIOS revision 2.10 entry at 0xfd98d, last bus=2
[ 0.049123] PCI: Using configuration type 1 for base access
[ 0.051361] bio: create slab <bio-0> at 0
[ 0.051492] ACPI: Added _OSI(Module Device)
[ 0.051496] ACPI: Added _OSI(Processor Device)
[ 0.051499] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.051502] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.052220] ACPI: EC: Look up EC in DSDT
[ 0.054228] ACPI: Interpreter enabled
[ 0.054240] ACPI: (supports S0 S1 S3 S4 S5)
[ 0.054278] ACPI: Using IOAPIC for interrupt routing
[ 0.079619] ACPI: No dock devices found.
[ 0.079631] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[ 0.080653] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.082583] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
[ 0.082589] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
[ 0.082594] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[ 0.082599] pci_root PNP0A03:00: host bridge window [mem 0x000cc000-0x000cffff] (ignored)
[ 0.082603] pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000d3fff] (ignored)
[ 0.082607] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
[ 0.082611] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
[ 0.082615] pci_root PNP0A03:00: host bridge window [mem 0x000dc000-0x000dffff] (ignored)
[ 0.082620] pci_root PNP0A03:00: host bridge window [mem 0x20000000-0xfebfffff] (ignored)
[ 0.082623] PCI: root bus 00: using default resources
[ 0.082679] PCI host bridge to bus 0000:00
[ 0.082685] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
[ 0.082691] pci_bus 0000:00: root bus resource [mem 0x00000000-0xffffffff]
[ 0.082713] pci 0000:00:00.0: [8086:2560] type 00 class 0x060000
[ 0.082728] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
[ 0.082806] pci 0000:00:02.0: [8086:2562] type 00 class 0x030000
[ 0.082824] pci 0000:00:02.0: reg 10: [mem 0x88000000-0x8fffffff pref]
[ 0.082836] pci 0000:00:02.0: reg 14: [mem 0x80000000-0x8007ffff]
[ 0.082948] pci 0000:00:1d.0: [8086:24c2] type 00 class 0x0c0300
[ 0.083005] pci 0000:00:1d.0: reg 20: [io 0x1800-0x181f]
[ 0.083049] pci 0000:00:1d.1: [8086:24c4] type 00 class 0x0c0300
[ 0.083100] pci 0000:00:1d.1: reg 20: [io 0x1820-0x183f]
[ 0.083142] pci 0000:00:1d.2: [8086:24c7] type 00 class 0x0c0300
[ 0.083192] pci 0000:00:1d.2: reg 20: [io 0x1840-0x185f]
[ 0.083248] pci 0000:00:1d.7: [8086:24cd] type 00 class 0x0c0320
[ 0.083271] pci 0000:00:1d.7: reg 10: [mem 0xc0080000-0xc00803ff]
[ 0.083365] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.083389] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060400
[ 0.083441] pci 0000:00:1f.0: [8086:24c0] type 00 class 0x060100
[ 0.083446] * The chipset may have PM-Timer Bug. Due to workarounds for a bug,
[ 0.083446] * this clock source is slow. If you are sure your timer does not have
[ 0.083446] * this bug, please use "acpi_pm_good" to disable the workaround
[ 0.083523] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH4 ACPI/GPIO/TCO
[ 0.083530] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH4 GPIO
[ 0.083551] pci 0000:00:1f.1: [8086:24cb] type 00 class 0x01018a
[ 0.083568] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
[ 0.083580] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
[ 0.083593] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
[ 0.083605] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
[ 0.083617] pci 0000:00:1f.1: reg 20: [io 0x1860-0x186f]
[ 0.083630] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
[ 0.083665] pci 0000:00:1f.3: [8086:24c3] type 00 class 0x0c0500
[ 0.083716] pci 0000:00:1f.3: reg 20: [io 0x1880-0x189f]
[ 0.083761] pci 0000:00:1f.5: [8086:24c5] type 00 class 0x040100
[ 0.083780] pci 0000:00:1f.5: reg 10: [io 0x1c00-0x1cff]
[ 0.083791] pci 0000:00:1f.5: reg 14: [io 0x18c0-0x18ff]
[ 0.083803] pci 0000:00:1f.5: reg 18: [mem 0xc0080c00-0xc0080dff]
[ 0.083815] pci 0000:00:1f.5: reg 1c: [mem 0xc0080800-0xc00808ff]
[ 0.083867] pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
[ 0.083916] pci 0000:02:08.0: [8086:1039] type 00 class 0x020000
[ 0.083935] pci 0000:02:08.0: reg 10: [mem 0xc0100000-0xc0100fff]
[ 0.083947] pci 0000:02:08.0: reg 14: [io 0x2000-0x203f]
[ 0.084024] pci 0000:02:08.0: supports D1 D2
[ 0.084028] pci 0000:02:08.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.084068] pci 0000:00:1e.0: PCI bridge to [bus 02-02] (subtractive decode)
[ 0.084075] pci 0000:00:1e.0: bridge window [io 0x2000-0x2fff]
[ 0.084081] pci 0000:00:1e.0: bridge window [mem 0xc0100000-0xc01fffff]
[ 0.084088] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
[ 0.084092] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[ 0.084104] pci_bus 0000:00: on NUMA node 0
[ 0.084110] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.084288] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.SLOT._PRT]
[ 0.084528] pci0000:00: Unable to request _OSC control (_OSC support mask: 0x1e)
[ 0.149535] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12 14 15)
[ 0.149634] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 *9 10 11 12 14 15)
[ 0.149735] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 7 9 10 11 12 14 15)
[ 0.149831] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 *10 11 12 14 15)
[ 0.149932] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 *11 12 14 15)
[ 0.150043] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 0.150145] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12 14 15) *0, disabled.
[ 0.150248] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 *9 10 11 12 14 15)
[ 0.150426] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.150437] vgaarb: loaded
[ 0.150441] vgaarb: bridge control possible 0000:00:02.0
[ 0.150627] SCSI subsystem initialized
[ 0.150724] libata version 3.00 loaded.
[ 0.150773] ACPI: bus type usb registered
[ 0.150815] usbcore: registered new interface driver usbfs
[ 0.150832] usbcore: registered new interface driver hub
[ 0.150876] usbcore: registered new device driver usb
[ 0.151007] PCI: Using ACPI for IRQ routing
[ 0.151050] PCI: pci_cache_line_size set to 64 bytes
[ 0.151116] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[ 0.151120] e820: reserve RAM buffer [mem 0x1fcf0000-0x1fffffff]
[ 0.151124] e820: reserve RAM buffer [mem 0x1fe80000-0x1fffffff]
[ 0.151308] NetLabel: Initializing
[ 0.151311] NetLabel: domain hash size = 128
[ 0.151313] NetLabel: protocols = UNLABELED CIPSOv4
[ 0.151334] NetLabel: unlabeled traffic allowed by default
[ 0.166611] pnp: PnP ACPI init
[ 0.166649] ACPI: bus type pnp registered
[ 0.167756] pnp 00:00: [bus 00-ff]
[ 0.167762] pnp 00:00: [io 0x0000-0x0cf7 window]
[ 0.167768] pnp 00:00: [io 0x0cf8-0x0cff]
[ 0.167772] pnp 00:00: [io 0x0d00-0xffff window]
[ 0.167776] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[ 0.167780] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[ 0.167784] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[ 0.167788] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[ 0.167792] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[ 0.167796] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[ 0.167800] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[ 0.167803] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[ 0.167807] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[ 0.167811] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[ 0.167815] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[ 0.167819] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[ 0.167823] pnp 00:00: [mem 0x000ec000-0x000effff window]
[ 0.167827] pnp 00:00: [mem 0x20000000-0xfebfffff window]
[ 0.167914] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
[ 0.168075] pnp 00:01: [io 0x0010-0x001f]
[ 0.168079] pnp 00:01: [io 0x0024-0x0025]
[ 0.168083] pnp 00:01: [io 0x0028-0x0029]
[ 0.168086] pnp 00:01: [io 0x002c-0x002d]
[ 0.168090] pnp 00:01: [io 0x002e-0x002f]
[ 0.168093] pnp 00:01: [io 0x0030-0x0031]
[ 0.168097] pnp 00:01: [io 0x0034-0x0035]
[ 0.168100] pnp 00:01: [io 0x0038-0x0039]
[ 0.168104] pnp 00:01: [io 0x003c-0x003d]
[ 0.168107] pnp 00:01: [io 0x0050-0x0053]
[ 0.168111] pnp 00:01: [io 0x0072-0x0077]
[ 0.168114] pnp 00:01: [io 0x0080]
[ 0.168118] pnp 00:01: [io 0x0090-0x009f]
[ 0.168121] pnp 00:01: [io 0x00a4-0x00a5]
[ 0.168125] pnp 00:01: [io 0x00a8-0x00a9]
[ 0.168128] pnp 00:01: [io 0x00ac-0x00ad]
[ 0.168132] pnp 00:01: [io 0x00b0-0x00b5]
[ 0.168135] pnp 00:01: [io 0x00b8-0x00b9]
[ 0.168139] pnp 00:01: [io 0x00bc-0x00bd]
[ 0.168142] pnp 00:01: [io 0x04d0-0x04d1]
[ 0.168146] pnp 00:01: [io 0xfe00]
[ 0.168149] pnp 00:01: [io 0x0800-0x087f]
[ 0.168153] pnp 00:01: [io 0x1000-0x107f]
[ 0.168158] pnp 00:01: [io 0x1100-0x111f]
[ 0.168162] pnp 00:01: [io 0x1180-0x11bf]
[ 0.168166] pnp 00:01: [mem 0xfec00000]
[ 0.168169] pnp 00:01: [mem 0xfee00000]
[ 0.168173] pnp 00:01: [mem 0xeffffc00-0x00000000]
[ 0.168297] system 00:01: [io 0x04d0-0x04d1] has been reserved
[ 0.168302] system 00:01: [io 0xfe00] has been reserved
[ 0.168307] system 00:01: [io 0x0800-0x087f] has been reserved
[ 0.168311] system 00:01: [io 0x1000-0x107f] has been reserved
[ 0.168316] system 00:01: [io 0x1100-0x111f] has been reserved
[ 0.168320] system 00:01: [io 0x1180-0x11bf] has been reserved
[ 0.168326] system 00:01: [mem 0xfec00000] could not be reserved
[ 0.168331] system 00:01: [mem 0xfee00000] has been reserved
[ 0.168336] system 00:01: [mem 0xeffffc00-0x00000000] could not be reserved
[ 0.168342] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.168361] pnp 00:02: [io 0x0000-0x000f]
[ 0.168366] pnp 00:02: [io 0x0081-0x008f]
[ 0.168380] pnp 00:02: [io 0x00c0-0x00df]
[ 0.168385] pnp 00:02: [dma 4]
[ 0.168420] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.168438] pnp 00:03: [io 0x00f0-0x00fe]
[ 0.168463] pnp 00:03: [irq 13]
[ 0.168499] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.168528] pnp 00:04: [io 0x0070-0x0071]
[ 0.168536] pnp 00:04: [irq 8]
[ 0.168572] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.168589] pnp 00:05: [io 0x0061]
[ 0.168631] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
[ 0.168885] pnp 00:06: [mem 0xff800000-0xffffffff]
[ 0.168928] pnp 00:06: Plug and Play ACPI device, IDs INT0800 (active)
[ 0.169018] pnp 00:07: [io 0x0060]
[ 0.169022] pnp 00:07: [io 0x0064]
[ 0.169031] pnp 00:07: [irq 1]
[ 0.169089] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.169196] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.173082] pnp 00:09: [irq 12]
[ 0.174127] pnp 00:09: Plug and Play ACPI device, IDs PNP0f13 (active)
[ 0.176038] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.179077] pnp 00:0b: [io 0x03f0-0x03f5]
[ 0.179082] pnp 00:0b: [io 0x03f7]
[ 0.179092] pnp 00:0b: [irq 6]
[ 0.179096] pnp 00:0b: [dma 2]
[ 0.180150] pnp 00:0b: Plug and Play ACPI device, IDs PNP0700 (active)
[ 0.183074] pnp 00:0c: [io 0x03f8-0x03ff]
[ 0.183084] pnp 00:0c: [irq 4]
[ 0.184150] pnp 00:0c: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.188074] pnp 00:0d: [io 0x02f8-0x02ff]
[ 0.188084] pnp 00:0d: [irq 3]
[ 0.189140] pnp 00:0d: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.193074] pnp 00:0e: [io 0x0378-0x037f]
[ 0.193079] pnp 00:0e: [io 0x0778-0x077f]
[ 0.193087] pnp 00:0e: [irq 7]
[ 0.193091] pnp 00:0e: [dma 3]
[ 0.194146] pnp 00:0e: Plug and Play ACPI device, IDs PNP0401 (active)
[ 0.196045] pnp: PnP ACPI: found 15 devices
[ 0.196048] ACPI: ACPI bus type pnp unregistered
[ 0.234095] Switching to clocksource acpi_pm
[ 0.234163] pci 0000:00:1f.1: BAR 5: assigned [mem 0x20000000-0x200003ff]
[ 0.234174] pci 0000:00:1e.0: PCI bridge to [bus 02-02]
[ 0.234180] pci 0000:00:1e.0: bridge window [io 0x2000-0x2fff]
[ 0.234189] pci 0000:00:1e.0: bridge window [mem 0xc0100000-0xc01fffff]
[ 0.234214] pci 0000:00:1e.0: setting latency timer to 64
[ 0.234222] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
[ 0.234226] pci_bus 0000:00: resource 5 [mem 0x00000000-0xffffffff]
[ 0.234231] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
[ 0.234235] pci_bus 0000:02: resource 1 [mem 0xc0100000-0xc01fffff]
[ 0.234239] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
[ 0.234242] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
[ 0.234311] NET: Registered protocol family 2
[ 0.234411] IP route cache hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.234608] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.234750] TCP bind hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.234883] TCP: Hash tables configured (established 16384 bind 16384)
[ 0.234886] TCP: reno registered
[ 0.234890] UDP hash table entries: 256 (order: 1, 8192 bytes)
[ 0.234902] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[ 0.234973] NET: Registered protocol family 1
[ 0.234973] pci 0000:00:02.0: Boot video device
[ 0.235175] pci 0000:02:08.0: Firmware left e100 interrupts enabled; disabling
[ 0.235183] PCI: CLS 32 bytes, default 64
[ 0.235308] Unpacking initramfs...
[ 0.846384] Freeing initrd memory: 16904k freed
[ 0.880966] Simple Boot Flag at 0x6c set to 0x1
[ 0.881587] IBM machine detected. Enabling interrupts during APM calls.
[ 0.881591] apm: BIOS not found.
[ 0.882074] audit: initializing netlink socket (disabled)
[ 0.882104] type=2000 audit(1358792935.881:1): initialized
[ 0.905795] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 0.908281] VFS: Disk quotas dquot_6.5.2
[ 0.908357] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.909213] msgmni has been set to 990
[ 0.909340] SELinux: Registering netfilter hooks
[ 0.910120] alg: No test for stdrng (krng)
[ 0.910130] NET: Registered protocol family 38
[ 0.910219] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[ 0.910268] io scheduler noop registered
[ 0.910272] io scheduler deadline registered
[ 0.910287] io scheduler cfq registered (default)
[ 0.910559] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 0.910596] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[ 0.910599] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.910940] vesafb: mode is 640x480x16, linelength=1280, pages=0
[ 0.910944] vesafb: scrolling: redraw
[ 0.910949] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
[ 0.911099] vesafb: framebuffer at 0x88000000, mapped to 0xe0700000, using 640k, total 640k
[ 0.911267] Console: switching to colour frame buffer device 80x30
[ 0.924514] fb0: VESA VGA frame buffer device
[ 0.924664] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A03:00/PNP0C0C:00/input/input0
[ 0.924672] ACPI: Power Button [PWRB]
[ 0.924741] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 0.924747] ACPI: Power Button [PWRF]
[ 0.965282] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.965287] ACPI: Thermal Zone [THM0] (58 C)
[ 0.965395] GHES: HEST is not enabled!
[ 0.965518] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.986054] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 1.006664] serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 1.027606] 00:0c: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
[ 1.048226] 00:0d: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
[ 1.048670] Non-volatile memory driver v1.3
[ 1.048675] Linux agpgart interface v0.103
[ 1.048789] agpgart-intel 0000:00:00.0: Intel 845G Chipset
[ 1.048820] agpgart-intel 0000:00:00.0: detected gtt size: 131072K total, 131072K mappable
[ 1.048975] agpgart-intel 0000:00:00.0: detected 1024K stolen memory
[ 1.049199] agpgart-intel 0000:00:00.0: AGP aperture is 128M @ 0x88000000
[ 1.050539] loop: module loaded
[ 1.050699] ata_piix 0000:00:1f.1: version 2.13
[ 1.050717] ata_piix 0000:00:1f.1: enabling device (0005 -> 0007)
[ 1.050811] ata_piix 0000:00:1f.1: setting latency timer to 64
[ 1.051347] scsi0 : ata_piix
[ 1.051461] scsi1 : ata_piix
[ 1.052595] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1860 irq 14
[ 1.052600] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1868 irq 15
[ 1.052754] Fixed MDIO Bus: probed
[ 1.052874] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.052937] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 1.052944] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 1.053047] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 1.056977] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[ 1.057028] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xc0080000
[ 1.063047] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 1.063085] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.063089] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.063093] usb usb1: Product: EHCI Host Controller
[ 1.063097] usb usb1: Manufacturer: Linux 3.5.3-1.fc17.i686 ehci_hcd
[ 1.063100] usb usb1: SerialNumber: 0000:00:1d.7
[ 1.063286] hub 1-0:1.0: USB hub found
[ 1.063294] hub 1-0:1.0: 6 ports detected
[ 1.063417] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.063440] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.063486] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 1.063493] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 1.063573] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 1.063623] uhci_hcd 0000:00:1d.0: irq 16, io base 0x00001800
[ 1.063679] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.063683] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.063687] usb usb2: Product: UHCI Host Controller
[ 1.063691] usb usb2: Manufacturer: Linux 3.5.3-1.fc17.i686 uhci_hcd
[ 1.063694] usb usb2: SerialNumber: 0000:00:1d.0
[ 1.063852] hub 2-0:1.0: USB hub found
[ 1.063859] hub 2-0:1.0: 2 ports detected
[ 1.063964] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 1.063970] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 1.064067] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 1.064108] uhci_hcd 0000:00:1d.1: irq 19, io base 0x00001820
[ 1.064168] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.064172] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.064176] usb usb3: Product: UHCI Host Controller
[ 1.064180] usb usb3: Manufacturer: Linux 3.5.3-1.fc17.i686 uhci_hcd
[ 1.064183] usb usb3: SerialNumber: 0000:00:1d.1
[ 1.064338] hub 3-0:1.0: USB hub found
[ 1.064347] hub 3-0:1.0: 2 ports detected
[ 1.064455] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 1.064461] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 1.064538] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 1.064577] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001840
[ 1.064632] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.064636] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.064640] usb usb4: Product: UHCI Host Controller
[ 1.064643] usb usb4: Manufacturer: Linux 3.5.3-1.fc17.i686 uhci_hcd
[ 1.064647] usb usb4: SerialNumber: 0000:00:1d.2
[ 1.064795] hub 4-0:1.0: USB hub found
[ 1.064802] hub 4-0:1.0: 2 ports detected
[ 1.064966] usbcore: registered new interface driver usbserial
[ 1.064984] usbcore: registered new interface driver usbserial_generic
[ 1.064998] USB Serial support registered for generic
[ 1.065036] usbserial: USB Serial Driver core
[ 1.065123] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PSM] at 0x60,0x64 irq 1,12
[ 1.066866] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.066878] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.067051] mousedev: PS/2 mouse device common for all mice
[ 1.067310] rtc_cmos 00:04: RTC can wake from S4
[ 1.067497] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[ 1.067526] rtc0: alarms up to one month, y3k, 114 bytes nvram
[ 1.067659] device-mapper: uevent: version 1.0.3
[ 1.067783] device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel at redhat.com
[ 1.067857] cpuidle: using governor ladder
[ 1.067861] cpuidle: using governor menu
[ 1.068264] EFI Variables Facility v0.08 2004-May-17
[ 1.068469] usbcore: registered new interface driver usbhid
[ 1.068472] usbhid: USB HID core driver
[ 1.068506] drop_monitor: Initializing network drop monitor service
[ 1.068681] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 1.068726] TCP: cubic registered
[ 1.068731] Initializing XFRM netlink socket
[ 1.068920] NET: Registered protocol family 10
[ 1.069250] mip6: Mobile IPv6
[ 1.069255] NET: Registered protocol family 17
[ 1.069277] Key type dns_resolver registered
[ 1.069506] Using IPI No-Shortcut mode
[ 1.069704] PM: Hibernation image not present or could not be loaded.
[ 1.069725] registered taskstats version 1
[ 1.070061] Magic number: 13:382:494
[ 1.070192] rtc_cmos 00:04: setting system clock to 2013-01-21 18:28:56 UTC (1358792936)
[ 1.070262] ondemand governor failed, too long transition latency of HW, fallback to performance governor
[ 1.070271] p4-clockmod: P4/Xeon(TM) CPU On-Demand Clock Modulation available
[ 1.093527] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 1.214677] ata1.00: ATA-5: IC35L040AVVN07-0, VA2OAF1A, max UDMA/100
[ 1.214684] ata1.00: 78156288 sectors, multi 16: LBA
[ 1.223541] ata1.00: configured for UDMA/100
[ 1.223735] scsi 0:0:0:0: Direct-Access ATA IC35L040AVVN07-0 VA2O PQ: 0 ANSI: 5
[ 1.224113] sd 0:0:0:0: [sda] 78156288 512-byte logical blocks: (40.0 GB/37.2 GiB)
[ 1.224209] sd 0:0:0:0: [sda] Write Protect is off
[ 1.224214] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.224255] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.224736] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.227313] ata2.00: ATAPI: HL-DT-STDVD-ROM GDR8160B, 0009, max UDMA/66
[ 1.233176] ata2.00: configured for UDMA/66
[ 1.235495] sda: sda1 sda2
[ 1.235934] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.240036] scsi 1:0:0:0: CD-ROM HL-DT-ST DVD-ROM GDR8160B 0009 PQ: 0 ANSI: 5
[ 1.244920] sr0: scsi3-mmc drive: 20x/48x cd/rw xa/form2 cdda tray
[ 1.244925] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1.245134] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 1.245327] sr 1:0:0:0: Attached scsi generic sg1 type 5
[ 1.245434] Freeing unused kernel memory: 624k freed
[ 1.246497] Write protecting the kernel text: 5428k
[ 1.246535] Write protecting the kernel read-only data: 2132k
[ 1.289319] psmouse serio1: hgpk: ID: 10 00 64
[ 1.358453] dracut: dracut-018-98.git20120813.fc17
[ 1.418510] dracut: rd.luks=0: removing cryptoluks activation
[ 1.468608] udevd[100]: starting version 182
[ 1.521418] [drm] Initialized drm 1.1.0 20060810
[ 1.582917] checking generic (88000000 a0000) vs hw (88000000 8000000)
[ 1.582924] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
[ 1.582960] Console: switching to colour dummy device 80x25
[ 1.583173] i915 0000:00:02.0: setting latency timer to 64
[ 1.583495] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 1.583498] [drm] Driver supports precise vblank timestamp query.
[ 1.583568] [drm] applying pipe a force quirk
[ 1.583587] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 1.609677] [drm] initialized overlay support
[ 1.811779] fbcon: inteldrmfb (fb0) is primary device
[ 1.908051] Refined TSC clocksource calibration: 2259.140 MHz.
[ 1.908058] Switching to clocksource tsc
[ 1.920073] Console: switching to colour frame buffer device 128x48
[ 1.924802] fb0: inteldrmfb frame buffer device
[ 1.924804] drm: registered panic notifier
[ 1.924879] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[ 1.932452] dracut: Starting plymouth daemon
[ 1.972189] input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input3
[ 2.273925] dracut: rd.dm=0: removing DM RAID activation
[ 2.300142] dracut: rd.md=0: removing MD RAID activation
[ 2.919551] dracut: Scanning devices sda2 for LVM logical volumes vg_betegeuse/lv_swap vg_betegeuse/lv_root
[ 2.969749] dracut: inactive '/dev/vg_betegeuse/lv_swap' [992.00 MiB] inherit
[ 2.970281] dracut: inactive '/dev/vg_betegeuse/lv_root' [35.78 GiB] inherit
[ 3.568856] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[ 3.714496] dracut: Checking ext4: /dev/mapper/vg_betegeuse-lv_root
[ 3.714870] dracut: issuing e2fsck -a /dev/mapper/vg_betegeuse-lv_root
[ 3.796679] dracut: _Hanthana-17-i38: clean, 402748/2351104 files, 2904013/9379840 blocks
[ 3.797749] dracut: Remounting /dev/mapper/vg_betegeuse-lv_root with -o ro
[ 3.910879] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
[ 3.956242] dracut: Mounted root filesystem /dev/mapper/vg_betegeuse-lv_root
[ 4.291287] dracut: Switching root
[ 5.036996] type=1404 audit(1358792940.464:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[ 5.222721] SELinux: 2048 avtab hash slots, 101849 rules.
[ 5.260154] SELinux: 2048 avtab hash slots, 101849 rules.
[ 5.807567] SELinux: 9 users, 15 roles, 4177 types, 227 bools, 1 sens, 1024 cats
[ 5.807578] SELinux: 83 classes, 101849 rules
[ 5.822062] SELinux: Permission wake_alarm in class capability2 not defined in policy.
[ 5.822071] SELinux: Permission block_suspend in class capability2 not defined in policy.
[ 5.822083] SELinux: the above unknown classes and permissions will be allowed
[ 5.822112] SELinux: Completing initialization.
[ 5.822114] SELinux: Setting up existing superblocks.
[ 5.822140] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[ 5.822153] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[ 5.822181] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[ 5.822196] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[ 5.822214] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 5.822262] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[ 5.823230] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[ 5.823241] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[ 5.825717] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[ 5.825747] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[ 5.825756] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[ 5.825805] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[ 5.825816] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[ 5.825831] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[ 5.825865] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[ 5.826876] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 5.826925] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 5.826997] SELinux: initialized (dev dm-1, type ext4), uses xattr
[ 5.827446] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[ 5.831408] type=1403 audit(1358792941.259:3): policy loaded auid=4294967295 ses=4294967295
[ 5.840187] systemd[1]: Successfully loaded SELinux policy in 858ms 797us.
[ 5.933891] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 5.934792] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 6.147364] systemd[1]: Relabelled /dev and /run in 212ms 133us.
[ 6.174702] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 6.175465] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 6.176441] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 6.177145] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 6.177781] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 6.178457] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 6.179129] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 6.179778] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[ 6.180117] systemd[1]: systemd 44 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP; fedora)
[ 6.218343] systemd[1]: Set hostname to <Betegeuse>.
[ 7.999632] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
[ 9.419270] udevd[323]: starting version 182
[ 9.536950] systemd-journald[320]: Fixed max_use=24.7M max_size=3.1M min_size=64.0K keep_free=12.3M
[ 9.537843] systemd-journald[320]: Vacuuming...
[ 9.703821] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[ 9.705694] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[ 9.712481] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[ 9.860888] EXT4-fs (dm-1): re-mounted. Opts: (null)
[ 10.686379] SELinux: initialized (dev binfmt_misc, type binfmt_misc), uses genfs_contexts
[ 12.390529] e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
[ 12.390536] e100: Copyright(c) 1999-2006 Intel Corporation
[ 12.431888] intel_rng: Firmware space is locked read-only. If you can't or
[ 12.431888] intel_rng: don't want to disable this in firmware setup, and if
[ 12.431888] intel_rng: you are certain that your system has a functional
[ 12.431888] intel_rng: RNG, try using the 'no_fwh_detect' option.
[ 12.433080] ACPI Warning: 0x00001880-0x0000189f SystemIO conflicts with Region \_SB_.PCI0.SMBS.SMBR 1 (20120320/utaddress-251)
[ 12.433092] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 12.434184] ACPI Warning: 0x00001028-0x0000102f SystemIO conflicts with Region \_SB_.PCI0.LPC0.PMIO 1 (20120320/utaddress-251)
[ 12.434195] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 12.434203] lpc_ich 0000:00:1f.0: I/O space for GPIO uninitialized
[ 12.434207] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 12.452247] e100 0000:02:08.0: eth0: addr 0xc0100000, irq 20, MAC addr 00:09:6b:62:70:34
[ 12.471810] microcode: CPU0 sig=0xf24, pf=0x4, revision=0xf
[ 12.510861] parport_pc 00:0e: reported by Plug and Play ACPI
[ 12.510934] parport0: PC-style at 0x378 (0x778), irq 7 [PCSPP,TRISTATE]
[ 12.995096] iTCO_vendor_support: vendor-support=0
[ 12.997972] ppdev: user-space parallel port driver
[ 13.001316] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
[ 13.001365] iTCO_wdt: Found a ICH4 TCO device (Version=1, TCOBASE=0x1060)
[ 13.008173] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 13.113853] microcode: CPU0 updated to revision 0x1e, date = 2003-06-05
[ 13.114130] microcode: Microcode Update Driver: v2.00 <tigran at aivazian.fsnet.co.uk>, Peter Oruba
[ 13.506873] snd_intel8x0 0000:00:1f.5: setting latency timer to 64
[ 13.875064] intel8x0_measure_ac97_clock: measured 50059 usecs (2413 samples)
[ 13.875072] intel8x0: clocking to 48000
[ 14.347403] Adding 1015804k swap on /dev/mapper/vg_betegeuse-lv_swap. Priority:0 extents:1 across:1015804k
[ 17.755192] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[ 17.906684] SELinux: initialized (dev sda1, type ext4), uses xattr
[ 23.419247] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 23.433439] nf_conntrack version 0.5.0 (7930 buckets, 31720 max)
[ 23.917343] Loading iSCSI transport class v2.0-870.
[ 23.932422] iscsi: registered transport (tcp)
[ 24.000114] iscsi: registered transport (iser)
[ 24.033703] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[ 24.033711] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[ 24.056521] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[ 24.058125] iscsi: registered transport (cxgb3i)
[ 24.081433] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[ 24.081490] iscsi: registered transport (cxgb4i)
[ 24.102469] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.10 (March 21, 2012)
[ 24.113406] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Apr 25, 2012)
[ 24.113503] iscsi: registered transport (bnx2i)
[ 24.136564] iscsi: registered transport (be2iscsi)
[ 26.904857] Bluetooth: Core ver 2.16
[ 26.911078] NET: Registered protocol family 31
[ 26.911086] Bluetooth: HCI device and connection manager initialized
[ 26.911090] Bluetooth: HCI socket layer initialized
[ 26.911093] Bluetooth: L2CAP socket layer initialized
[ 26.911105] Bluetooth: SCO socket layer initialized
[ 26.941671] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 26.941678] Bluetooth: BNEP filters: protocol multicast
[ 27.355607] IPv6: ADDRCONF(NETDEV_UP): em1: link is not ready
[ 27.609252] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
[ 27.681562] RPC: Registered named UNIX socket transport module.
[ 27.681570] RPC: Registered udp transport module.
[ 27.681572] RPC: Registered tcp transport module.
[ 27.681574] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 27.879370] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
[ 28.120337] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
[ 29.963811] Bridge firewalling registered
[ 30.143879] IPv6: ADDRCONF(NETDEV_UP): virbr0: link is not ready
[ 30.862657] Ebtables v2.0 registered
[ 32.473300] [drm] capturing error event; look for more information in /debug/dri/0/i915_error_state
[ 32.474011] i915: render error detected, EIR: 0x00000010
[ 32.474011] [drm:i915_report_and_clear_eir] *ERROR* EIR stuck: 0x00000010, masking
[ 32.474011] i915: render error detected, EIR: 0x00000010
[ 33.870817] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[ 33.875638] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[ 33.902276] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[ 33.902441] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[ 41.688016] [drm:i915_hangcheck_hung] *ERROR* Hangcheck timer elapsed... GPU hung
[ 41.692188] i915: render error detected, EIR: 0x00000010
[ 41.692201] [drm:i915_report_and_clear_eir] *ERROR* EIR stuck: 0x00000010, masking
[ 41.692212] i915: render error detected, EIR: 0x00000010
[ 43.196016] [drm:i915_hangcheck_hung] *ERROR* Hangcheck timer elapsed... GPU hung
[ 52.780302] fuse init (API version 7.19)
[ 52.815061] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[ 52.867771] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
[ 385.240035] usb 1-3: new high-speed USB device number 2 using ehci_hcd
[ 385.358917] usb 1-3: New USB device found, idVendor=0930, idProduct=6545
[ 385.358924] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 385.358929] usb 1-3: Product: DataTraveler G3
[ 385.358933] usb 1-3: Manufacturer: Kingston
[ 385.358936] usb 1-3: SerialNumber: 001CC0EC34D2EC315642018E
[ 385.467151] Initializing USB Mass Storage driver...
[ 385.467374] scsi2 : usb-storage 1-3:1.0
[ 385.469603] usbcore: registered new interface driver usb-storage
[ 385.469611] USB Mass Storage support registered.
[ 386.545765] scsi 2:0:0:0: Direct-Access Kingston DataTraveler G3 PMAP PQ: 0 ANSI: 0 CCS
[ 386.552816] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 387.932762] sd 2:0:0:0: [sdb] 30481152 512-byte logical blocks: (15.6 GB/14.5 GiB)
[ 387.933255] sd 2:0:0:0: [sdb] Write Protect is off
[ 387.933261] sd 2:0:0:0: [sdb] Mode Sense: 23 00 00 00
[ 387.933739] sd 2:0:0:0: [sdb] No Caching mode page present
[ 387.933745] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 387.937648] sd 2:0:0:0: [sdb] No Caching mode page present
[ 387.937659] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 387.958479] sdb: sdb1
[ 387.961216] sd 2:0:0:0: [sdb] No Caching mode page present
[ 387.961227] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 387.961233] sd 2:0:0:0: [sdb] Attached SCSI removable disk
[ 388.369316] SELinux: initialized (dev sdb1, type vfat), uses genfs_contexts
More information about the users
mailing list