* Re: [next-20101038] Call trace in ext4
2010-10-28 19:32 ` Ted Ts'o
2010-10-28 19:36 ` Eric Sandeen
@ 2010-10-28 19:54 ` Sedat Dilek
2010-10-28 20:05 ` Ted Ts'o
1 sibling, 1 reply; 20+ messages in thread
From: Sedat Dilek @ 2010-10-28 19:54 UTC (permalink / raw)
To: Ted Ts'o, Markus Trippelsdorf, sedat.dilek, LKML, linux-ext4,
sfr
[-- Attachment #1: Type: text/plain, Size: 3675 bytes --]
On Thu, Oct 28, 2010 at 9:32 PM, Ted Ts'o <tytso@mit.edu> wrote:
> On Thu, Oct 28, 2010 at 02:01:18PM -0400, Ted Ts'o wrote:
>> On Thu, Oct 28, 2010 at 07:52:21PM +0200, Markus Trippelsdorf wrote:
>> >
>> > The same BUG (inode.c:2721) happend here today running latest vanilla
>> > git. There is nothing in my logs unfortunately, but I shot a photo of
>> > the trace (see attachment).
>>
>> I see, it's the page_buffers() call which is triggering. Looking into
>> it...
>
> Can folks let me know if this fixes the problem?
>
> In this case I haven't been able to replicate the problem, but I've
> eyeballed the problem and I'm about 90% certain this should fix
> things. But I don't want to push this to Linus until I get
> confirmation from you all that it fixes things. That's just one of
> the ways in which your testing is critically important for ext4, so
> thanks again for your help in the past, present, and future.
> Thanks!!
>
> - Ted
>
> commit 51279fcb9720aa856ad81673886ca2349a373dac
> Author: Theodore Ts'o <tytso@mit.edu>
> Date: Thu Oct 28 15:15:21 2010 -0400
>
> ext4: BUG_ON fix: check if page has buffers before calling page_buffers()
>
> We need to make check if a page does not have buffes by checking
> page_has_buffers(page) before calling page_buffers(page) in
> ext4_writepage(). Otherwise page_buffers() could throw a BUG_ON.
>
> Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
>
> diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
> index 2d6c6c8..1916164 100644
> --- a/fs/ext4/inode.c
> +++ b/fs/ext4/inode.c
> @@ -2718,7 +2718,7 @@ static int ext4_writepage(struct page *page,
> * try to create them using __block_write_begin. If this
> * fails, redirty the page and move on.
> */
> - if (!page_buffers(page)) {
> + if (!page_has_buffers(page)) {
> if (__block_write_begin(page, 0, len,
> noalloc_get_block_write)) {
> redirty_page:
> @@ -2732,12 +2732,10 @@ static int ext4_writepage(struct page *page,
> if (walk_page_buffers(NULL, page_bufs, 0, len, NULL,
> ext4_bh_delay_or_unwritten)) {
> /*
> - * We don't want to do block allocation So redirty the
> - * page and return We may reach here when we do a
> - * journal commit via
> - * journal_submit_inode_data_buffers. If we don't
> - * have mapping block we just ignore them. We can also
> - * reach here via shrink_page_list
> + * We don't want to do block allocation, so redirty
> + * the page and return. We may reach here when we do
> + * a journal commit via journal_submit_inode_data_buffers.
> + * We can also reach here via shrink_page_list
> */
> goto redirty_page;
> }
>
Hm, unfortunately NO (see logs).
I have compiled via M=fs/ext4 in an already compiled build-tree with
these 3 patches.
sd@tbox:~/src/linux-2.6/linux-2.6.36/debian/build/source_i386_none$
cat .pc/applied-patches
0001-ext4-Fix-build-when-CONFIG_EXT4_FS_XATTR.patch
0002-fs-build-fix-when-CONFIG_BLOCK.patch
ext4-BUG_ON-fix-check-if-page-has-buffers-before-calling-page_buffers.patch
- Sedat -
[-- Attachment #2: dmesg.txt --]
[-- Type: text/plain, Size: 57037 bytes --]
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Linux version 2.6.36-git11.sd.1-686 (Debian 2.6.36-9~git11.sd.1~dileks.1) (sedat.dilek@gmail.com) (gcc version 4.4.5 (Debian 4.4.5-5) ) #1 SMP Thu Oct 28 18:58:11 CEST 2010
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
[ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
[ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
[ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
[ 0.000000] BIOS-e820: 0000000000100000 - 000000003ff60000 (usable)
[ 0.000000] BIOS-e820: 000000003ff60000 - 000000003ff77000 (ACPI data)
[ 0.000000] BIOS-e820: 000000003ff77000 - 000000003ff79000 (ACPI NVS)
[ 0.000000] BIOS-e820: 000000003ff80000 - 0000000040000000 (reserved)
[ 0.000000] BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
[ 0.000000] Notice: NX (Execute Disable) protection missing in CPU or disabled in BIOS!
[ 0.000000] DMI present.
[ 0.000000] DMI: 2374SG6/2374SG6, BIOS 1RETDRWW (3.23 ) 06/18/2007
[ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[ 0.000000] last_pfn = 0x3ff60 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-CFFFF write-protect
[ 0.000000] D0000-DBFFF uncachable
[ 0.000000] DC000-DFFFF write-back
[ 0.000000] E0000-FFFFF write-protect
[ 0.000000] MTRR variable ranges enabled:
[ 0.000000] 0 base 000000000 mask FC0000000 write-back
[ 0.000000] 1 base 03FF80000 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] PAT not supported by CPU.
[ 0.000000] initial memory mapped : 0 - 01800000
[ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[ 0.000000] 0000000000 - 0000400000 page 4k
[ 0.000000] 0000400000 - 0037400000 page 2M
[ 0.000000] 0037400000 - 00377fe000 page 4k
[ 0.000000] kernel direct mapping tables up to 377fe000 @ 17fb000-1800000
[ 0.000000] RAMDISK: 2f5cd000 - 2ffc8000
[ 0.000000] ACPI: RSDP 000f6d70 00024 (v02 IBM )
[ 0.000000] ACPI: XSDT 3ff6a672 0004C (v01 IBM TP-1R 00003230 LTP 00000000)
[ 0.000000] ACPI: FACP 3ff6a700 000F4 (v03 IBM TP-1R 00003230 IBM 00000001)
[ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20101013/tbfadt-526)
[ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20101013/tbfadt-557)
[ 0.000000] ACPI: DSDT 3ff6a8e7 0C530 (v01 IBM TP-1R 00003230 MSFT 0100000E)
[ 0.000000] ACPI: FACS 3ff78000 00040
[ 0.000000] ACPI: SSDT 3ff6a8b4 00033 (v01 IBM TP-1R 00003230 MSFT 0100000E)
[ 0.000000] ACPI: ECDT 3ff76e17 00052 (v01 IBM TP-1R 00003230 IBM 00000001)
[ 0.000000] ACPI: TCPA 3ff76e69 00032 (v01 IBM TP-1R 00003230 PTL 00000001)
[ 0.000000] ACPI: BOOT 3ff76fd8 00028 (v01 IBM TP-1R 00003230 LTP 00000001)
[ 0.000000] 135MB HIGHMEM available.
[ 0.000000] 887MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 377fe000
[ 0.000000] low ram: 0 - 377fe000
[ 0.000000] Zone PFN ranges:
[ 0.000000] DMA 0x00000010 -> 0x00001000
[ 0.000000] Normal 0x00001000 -> 0x000377fe
[ 0.000000] HighMem 0x000377fe -> 0x0003ff60
[ 0.000000] Movable zone start PFN for each node
[ 0.000000] early_node_map[2] active PFN ranges
[ 0.000000] 0: 0x00000010 -> 0x0000009f
[ 0.000000] 0: 0x00000100 -> 0x0003ff60
[ 0.000000] On node 0 totalpages: 261871
[ 0.000000] free_area_init_node: node 0, pgdat c13bff80, node_mem_map f6ffd200
[ 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: 1744 pages used for memmap
[ 0.000000] Normal zone: 221486 pages, LIFO batch:31
[ 0.000000] HighMem zone: 271 pages used for memmap
[ 0.000000] HighMem zone: 34387 pages, LIFO batch:7
[ 0.000000] Using APIC driver default
[ 0.000000] ACPI: PM-Timer IO Port: 0x1008
[ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
[ 0.000000] APIC: disable apic facility
[ 0.000000] APIC: switched to apic NOOP
[ 0.000000] nr_irqs_gsi: 16
[ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
[ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
[ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000
[ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000
[ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bf800000)
[ 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 12 pages/cpu @f6800000 s26880 r0 d22272 u4194304
[ 0.000000] pcpu-alloc: s26880 r0 d22272 u4194304 alloc=1*4194304
[ 0.000000] pcpu-alloc: [0] 0
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259824
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.36-git11.sd.1-686 root=UUID=1ceb69a7-ecf4-47e9-a231-b74e0f0a9b62 ro radeon.modeset=1 3 quiet
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Initializing CPU#0
[ 0.000000] Initializing HighMem for node 0 (000377fe:0003ff60)
[ 0.000000] Memory: 1023172k/1047936k available (2594k kernel code, 24312k reserved, 1282k data, 388k init, 138632k highmem)
[ 0.000000] virtual kernel memory layout:
[ 0.000000] fixmap : 0xffd36000 - 0xfffff000 (2852 kB)
[ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
[ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
[ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
[ 0.000000] .init : 0xc13ca000 - 0xc142b000 ( 388 kB)
[ 0.000000] .data : 0xc1288bb4 - 0xc13c9538 (1282 kB)
[ 0.000000] .text : 0xc1000000 - 0xc1288bb4 (2594 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
[ 0.000000] RCU-based detection of stalled CPUs is disabled.
[ 0.000000] NR_IRQS:1280
[ 0.000000] CPU 0 irqstacks, hard=f6408000 soft=f640a000
[ 0.000000] Extended CMOS year: 2000
[ 0.000000] Console: colour VGA+ 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] Fast TSC calibration using PIT
[ 0.000000] Detected 1694.278 MHz processor.
[ 0.008008] Calibrating delay loop (skipped), value calculated using timer frequency.. 3388.55 BogoMIPS (lpj=6777112)
[ 0.008014] pid_max: default: 32768 minimum: 301
[ 0.008049] Security Framework initialized
[ 0.008059] SELinux: Disabled at boot.
[ 0.008081] Mount-cache hash table entries: 512
[ 0.008291] Initializing cgroup subsys ns
[ 0.008298] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
[ 0.008302] Initializing cgroup subsys cpuacct
[ 0.008308] Initializing cgroup subsys devices
[ 0.008311] Initializing cgroup subsys freezer
[ 0.008314] Initializing cgroup subsys net_cls
[ 0.008318] Initializing cgroup subsys blkio
[ 0.008372] mce: CPU supports 5 MCE banks
[ 0.008397] Performance Events:
[ 0.008400] no APIC, boot with the "lapic" boot parameter to force-enable it.
[ 0.008403] no hardware sampling interrupt available.
[ 0.008405] p6 PMU driver.
[ 0.008411] ... version: 0
[ 0.008413] ... bit width: 32
[ 0.008415] ... generic registers: 2
[ 0.008418] ... value mask: 00000000ffffffff
[ 0.008420] ... max period: 000000007fffffff
[ 0.008422] ... fixed-purpose events: 0
[ 0.008425] ... event mask: 0000000000000003
[ 0.008947] SMP alternatives: switching to UP code
[ 0.013686] Freeing SMP alternatives: 16k freed
[ 0.013694] ACPI: Core revision 20101013
[ 0.029767] ACPI: setting ELCR to 0200 (from 0800)
[ 0.032080] weird, boot CPU (#0) not listed by the BIOS.
[ 0.032083] SMP motherboard not detected.
[ 0.032086] Local APIC not detected. Using dummy APIC emulation.
[ 0.032088] SMP disabled
[ 0.032440] Brought up 1 CPUs
[ 0.032443] Total of 1 processors activated (3388.55 BogoMIPS).
[ 0.036162] devtmpfs: initialized
[ 0.036579] regulator: core version 0.5
[ 0.036632] NET: Registered protocol family 16
[ 0.036756] ACPI: bus type pci registered
[ 0.037076] PCI: PCI BIOS revision 2.10 entry at 0xfd8d6, last bus=8
[ 0.037079] PCI: Using configuration type 1 for base access
[ 0.037566] bio: create slab <bio-0> at 0
[ 0.039245] ACPI: EC: EC description table is found, configuring boot EC
[ 0.054262] ACPI: Interpreter enabled
[ 0.054267] ACPI: (supports S0 S3 S4 S5)
[ 0.054291] ACPI: Using PIC for interrupt routing
[ 0.060784] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
[ 0.060826] ACPI: Power Resource [PUBS] (on)
[ 0.060826] ACPI: ACPI Dock Station Driver: 3 docks/bays found
[ 0.060826] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[ 0.060826] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.060844] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
[ 0.060848] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
[ 0.060852] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[ 0.060856] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
[ 0.060860] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
[ 0.060864] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored)
[ 0.060884] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
[ 0.061017] pci 0000:00:1d.0: reg 20: [io 0x1800-0x181f]
[ 0.061091] pci 0000:00:1d.1: reg 20: [io 0x1820-0x183f]
[ 0.061164] pci 0000:00:1d.2: reg 20: [io 0x1840-0x185f]
[ 0.061227] pci 0000:00:1d.7: reg 10: [mem 0xc0000000-0xc00003ff]
[ 0.061305] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.061311] pci 0000:00:1d.7: PME# disabled
[ 0.061430] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH4 ACPI/GPIO/TCO
[ 0.061435] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH4 GPIO
[ 0.061462] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
[ 0.061473] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
[ 0.061483] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
[ 0.061494] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
[ 0.061504] pci 0000:00:1f.1: reg 20: [io 0x1860-0x186f]
[ 0.061515] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
[ 0.061584] pci 0000:00:1f.3: reg 20: [io 0x1880-0x189f]
[ 0.061633] pci 0000:00:1f.5: reg 10: [io 0x1c00-0x1cff]
[ 0.061642] pci 0000:00:1f.5: reg 14: [io 0x18c0-0x18ff]
[ 0.061652] pci 0000:00:1f.5: reg 18: [mem 0xc0000c00-0xc0000dff]
[ 0.061662] pci 0000:00:1f.5: reg 1c: [mem 0xc0000800-0xc00008ff]
[ 0.061700] pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
[ 0.061705] pci 0000:00:1f.5: PME# disabled
[ 0.061734] pci 0000:00:1f.6: reg 10: [io 0x2400-0x24ff]
[ 0.061744] pci 0000:00:1f.6: reg 14: [io 0x2000-0x207f]
[ 0.061794] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[ 0.061799] pci 0000:00:1f.6: PME# disabled
[ 0.064031] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe7ffffff pref]
[ 0.064040] pci 0000:01:00.0: reg 14: [io 0x3000-0x30ff]
[ 0.064048] pci 0000:01:00.0: reg 18: [mem 0xc0100000-0xc010ffff]
[ 0.064072] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
[ 0.064091] pci 0000:01:00.0: supports D1 D2
[ 0.064125] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 0.064129] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
[ 0.064133] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
[ 0.064137] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
[ 0.064176] pci 0000:02:00.0: reg 10: [mem 0xb0000000-0xb0000fff]
[ 0.064195] pci 0000:02:00.0: supports D1 D2
[ 0.064198] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.064203] pci 0000:02:00.0: PME# disabled
[ 0.064237] pci 0000:02:00.1: reg 10: [mem 0xb1000000-0xb1000fff]
[ 0.064256] pci 0000:02:00.1: supports D1 D2
[ 0.064259] pci 0000:02:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.064264] pci 0000:02:00.1: PME# disabled
[ 0.064306] pci 0000:02:01.0: reg 10: [mem 0xc0220000-0xc023ffff]
[ 0.064317] pci 0000:02:01.0: reg 14: [mem 0xc0200000-0xc020ffff]
[ 0.064327] pci 0000:02:01.0: reg 18: [io 0x8000-0x803f]
[ 0.064359] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
[ 0.064382] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
[ 0.064387] pci 0000:02:01.0: PME# disabled
[ 0.064421] pci 0000:02:02.0: reg 10: [mem 0xc0210000-0xc021ffff]
[ 0.064518] pci 0000:00:1e.0: PCI bridge to [bus 02-08] (subtractive decode)
[ 0.064524] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
[ 0.064530] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
[ 0.064535] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
[ 0.064539] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
[ 0.064543] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
[ 0.064617] pci_bus 0000:00: on NUMA node 0
[ 0.064621] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[ 0.064670] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
[ 0.064695] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
[ 0.067895] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.068034] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.068161] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.068286] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.068389] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.068493] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.068598] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
[ 0.068724] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
[ 0.068774] HEST: Table is not found!
[ 0.068852] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[ 0.068856] vgaarb: loaded
[ 0.068921] PCI: Using ACPI for IRQ routing
[ 0.069056] PCI: pci_cache_line_size set to 64 bytes
[ 0.069119] reserve RAM buffer: 000000000009f000 - 000000000009ffff
[ 0.069122] reserve RAM buffer: 000000003ff60000 - 000000003fffffff
[ 0.069270] Switching to clocksource tsc
[ 0.070692] pnp: PnP ACPI init
[ 0.070716] ACPI: bus type pnp registered
[ 0.071502] pnp 00:00: [mem 0x00000000-0x0009ffff]
[ 0.071505] pnp 00:00: [mem 0x000c0000-0x000c3fff]
[ 0.071509] pnp 00:00: [mem 0x000c4000-0x000c7fff]
[ 0.071512] pnp 00:00: [mem 0x000c8000-0x000cbfff]
[ 0.071515] pnp 00:00: [mem 0x000cc000-0x000cffff]
[ 0.071518] pnp 00:00: [mem 0x000d0000-0x000d3fff]
[ 0.071521] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
[ 0.071524] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
[ 0.071527] pnp 00:00: [mem 0x000dc000-0x000dffff]
[ 0.071530] pnp 00:00: [mem 0x000e0000-0x000e3fff]
[ 0.071533] pnp 00:00: [mem 0x000e4000-0x000e7fff]
[ 0.071536] pnp 00:00: [mem 0x000e8000-0x000ebfff]
[ 0.071539] pnp 00:00: [mem 0x000ec000-0x000effff]
[ 0.071542] pnp 00:00: [mem 0x000f0000-0x000fffff]
[ 0.071545] pnp 00:00: [mem 0x00100000-0x3fffffff]
[ 0.071548] pnp 00:00: [mem 0xfec00000-0xffffffff]
[ 0.071622] pnp 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.071651] pnp 00:01: [bus 00-ff]
[ 0.071654] pnp 00:01: [io 0x0cf8-0x0cff]
[ 0.071657] pnp 00:01: [io 0x0000-0x0cf7 window]
[ 0.071660] pnp 00:01: [io 0x0d00-0xffff window]
[ 0.071670] pnp 00:01: [mem 0x000a0000-0x000bffff window]
[ 0.071673] pnp 00:01: [mem 0x000c0000-0x000c3fff window]
[ 0.071676] pnp 00:01: [mem 0x000c4000-0x000c7fff window]
[ 0.071679] pnp 00:01: [mem 0x000c8000-0x000cbfff window]
[ 0.071683] pnp 00:01: [mem 0x000cc000-0x000cffff window]
[ 0.071686] pnp 00:01: [mem 0x000d0000-0x000d3fff window]
[ 0.071689] pnp 00:01: [mem 0x000d4000-0x000d7fff window]
[ 0.071692] pnp 00:01: [mem 0x000d8000-0x000dbfff window]
[ 0.071696] pnp 00:01: [mem 0x000dc000-0x000dffff window]
[ 0.071699] pnp 00:01: [mem 0x000e0000-0x000e3fff window]
[ 0.071702] pnp 00:01: [mem 0x000e4000-0x000e7fff window]
[ 0.071705] pnp 00:01: [mem 0x000e8000-0x000ebfff window]
[ 0.071708] pnp 00:01: [mem 0x000ec000-0x000effff window]
[ 0.071712] pnp 00:01: [mem 0x40000000-0xfebfffff window]
[ 0.071771] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
[ 0.071911] pnp 00:02: [io 0x0010-0x001f]
[ 0.071914] pnp 00:02: [io 0x0090-0x009f]
[ 0.071917] pnp 00:02: [io 0x0024-0x0025]
[ 0.071920] pnp 00:02: [io 0x0028-0x0029]
[ 0.071922] pnp 00:02: [io 0x002c-0x002d]
[ 0.071925] pnp 00:02: [io 0x0030-0x0031]
[ 0.071928] pnp 00:02: [io 0x0034-0x0035]
[ 0.071931] pnp 00:02: [io 0x0038-0x0039]
[ 0.071933] pnp 00:02: [io 0x003c-0x003d]
[ 0.071936] pnp 00:02: [io 0x00a4-0x00a5]
[ 0.071939] pnp 00:02: [io 0x00a8-0x00a9]
[ 0.071942] pnp 00:02: [io 0x00ac-0x00ad]
[ 0.071944] pnp 00:02: [io 0x00b0-0x00b5]
[ 0.071947] pnp 00:02: [io 0x00b8-0x00b9]
[ 0.071950] pnp 00:02: [io 0x00bc-0x00bd]
[ 0.071952] pnp 00:02: [io 0x0050-0x0053]
[ 0.071955] pnp 00:02: [io 0x0072-0x0077]
[ 0.071958] pnp 00:02: [io 0x002e-0x002f]
[ 0.071961] pnp 00:02: [io 0x1000-0x107f]
[ 0.071963] pnp 00:02: [io 0x1180-0x11bf]
[ 0.071966] pnp 00:02: [io 0x15e0-0x15ef]
[ 0.071969] pnp 00:02: [io 0x1600-0x162f]
[ 0.071972] pnp 00:02: [io 0x1632-0x167f]
[ 0.071974] pnp 00:02: [io 0x004e-0x004f]
[ 0.071977] pnp 00:02: [io 0x1630-0x1631]
[ 0.071977] pnp 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.071977] pnp 00:03: [io 0x0000-0x000f]
[ 0.071977] pnp 00:03: [io 0x0080-0x008f]
[ 0.071977] pnp 00:03: [io 0x00c0-0x00df]
[ 0.071977] pnp 00:03: [dma 4]
[ 0.071977] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
[ 0.071977] pnp 00:04: [io 0x0061]
[ 0.071977] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
[ 0.071977] pnp 00:05: [io 0x00f0]
[ 0.071977] pnp 00:05: [irq 13]
[ 0.071977] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
[ 0.071977] pnp 00:06: [io 0x0070-0x0071]
[ 0.071977] pnp 00:06: [irq 8]
[ 0.071977] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.071977] pnp 00:07: [io 0x0060]
[ 0.071977] pnp 00:07: [io 0x0064]
[ 0.071977] pnp 00:07: [irq 1]
[ 0.071977] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[ 0.071977] pnp 00:08: [irq 12]
[ 0.071977] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
[ 0.071977] pnp 00:09: [io 0x03f0-0x03f5]
[ 0.071977] pnp 00:09: [io 0x03f7]
[ 0.071977] pnp 00:09: [irq 6]
[ 0.071977] pnp 00:09: [dma 2]
[ 0.071977] pnp 00:09: Plug and Play ACPI device, IDs PNP0700 (active)
[ 0.071977] pnp 00:0a: [io 0x03f8-0x03ff]
[ 0.071977] pnp 00:0a: [irq 4]
[ 0.071977] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.071977] pnp 00:0b: [io 0x03bc-0x03be]
[ 0.071977] pnp 00:0b: [irq 7]
[ 0.071977] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
[ 0.071977] pnp 00:0c: Plug and Play ACPI device, IDs IBM0071 PNP0511 (disabled)
[ 0.072512] pnp: PnP ACPI: found 13 devices
[ 0.072515] ACPI: ACPI bus type pnp unregistered
[ 0.072519] PnPBIOS: Disabled by ACPI PNP
[ 0.072534] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
[ 0.072539] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
[ 0.072543] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
[ 0.072547] system 00:00: [mem 0x000c8000-0x000cbfff] could not be reserved
[ 0.072551] system 00:00: [mem 0x000cc000-0x000cffff] could not be reserved
[ 0.072555] system 00:00: [mem 0x000d0000-0x000d3fff] could not be reserved
[ 0.072559] system 00:00: [mem 0x000dc000-0x000dffff] could not be reserved
[ 0.072563] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
[ 0.072567] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
[ 0.072571] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
[ 0.072575] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
[ 0.072579] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
[ 0.072584] system 00:00: [mem 0x00100000-0x3fffffff] could not be reserved
[ 0.072588] system 00:00: [mem 0xfec00000-0xffffffff] could not be reserved
[ 0.072597] system 00:02: [io 0x1000-0x107f] has been reserved
[ 0.072600] system 00:02: [io 0x1180-0x11bf] has been reserved
[ 0.072604] system 00:02: [io 0x15e0-0x15ef] has been reserved
[ 0.072608] system 00:02: [io 0x1600-0x162f] has been reserved
[ 0.072612] system 00:02: [io 0x1632-0x167f] has been reserved
[ 0.072615] system 00:02: [io 0x1630-0x1631] has been reserved
[ 0.109713] pci 0000:00:1f.1: BAR 5: assigned [mem 0x40000000-0x400003ff]
[ 0.109721] pci 0000:00:1f.1: BAR 5: set to [mem 0x40000000-0x400003ff] (PCI address [0x40000000-0x400003ff]
[ 0.109727] pci 0000:01:00.0: BAR 6: assigned [mem 0xc0120000-0xc013ffff pref]
[ 0.109731] pci 0000:00:01.0: PCI bridge to [bus 01-01]
[ 0.109735] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
[ 0.109740] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
[ 0.109744] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
[ 0.109752] pci 0000:02:00.0: BAR 15: assigned [mem 0xe8000000-0xebffffff pref]
[ 0.109756] pci 0000:02:00.0: BAR 16: assigned [mem 0xc4000000-0xc7ffffff]
[ 0.109760] pci 0000:02:00.1: BAR 15: assigned [mem 0xec000000-0xefffffff pref]
[ 0.109764] pci 0000:02:00.1: BAR 16: assigned [mem 0xc8000000-0xcbffffff]
[ 0.109768] pci 0000:02:01.0: BAR 6: assigned [mem 0xc0240000-0xc024ffff pref]
[ 0.109772] pci 0000:02:00.0: BAR 13: assigned [io 0x4000-0x40ff]
[ 0.109776] pci 0000:02:00.0: BAR 14: assigned [io 0x4400-0x44ff]
[ 0.109779] pci 0000:02:00.1: BAR 13: assigned [io 0x4800-0x48ff]
[ 0.109783] pci 0000:02:00.1: BAR 14: assigned [io 0x4c00-0x4cff]
[ 0.109786] pci 0000:02:00.0: CardBus bridge to [bus 03-06]
[ 0.109789] pci 0000:02:00.0: bridge window [io 0x4000-0x40ff]
[ 0.109794] pci 0000:02:00.0: bridge window [io 0x4400-0x44ff]
[ 0.109800] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xebffffff pref]
[ 0.109805] pci 0000:02:00.0: bridge window [mem 0xc4000000-0xc7ffffff]
[ 0.109811] pci 0000:02:00.1: CardBus bridge to [bus 07-07]
[ 0.109814] pci 0000:02:00.1: bridge window [io 0x4800-0x48ff]
[ 0.109819] pci 0000:02:00.1: bridge window [io 0x4c00-0x4cff]
[ 0.109825] pci 0000:02:00.1: bridge window [mem 0xec000000-0xefffffff pref]
[ 0.109830] pci 0000:02:00.1: bridge window [mem 0xc8000000-0xcbffffff]
[ 0.109836] pci 0000:00:1e.0: PCI bridge to [bus 02-08]
[ 0.109840] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
[ 0.109846] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
[ 0.109852] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
[ 0.109872] pci 0000:00:1e.0: setting latency timer to 64
[ 0.110131] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
[ 0.110134] PCI: setting IRQ 11 as level-triggered
[ 0.110141] pci 0000:02:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
[ 0.110363] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
[ 0.110368] pci 0000:02:00.1: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[ 0.110375] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
[ 0.110379] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
[ 0.110382] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
[ 0.110386] pci_bus 0000:01: resource 1 [mem 0xc0100000-0xc01fffff]
[ 0.110389] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe7ffffff pref]
[ 0.110393] pci_bus 0000:02: resource 0 [io 0x4000-0x8fff]
[ 0.110396] pci_bus 0000:02: resource 1 [mem 0xc0200000-0xcfffffff]
[ 0.110400] pci_bus 0000:02: resource 2 [mem 0xe8000000-0xefffffff pref]
[ 0.110403] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
[ 0.110406] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
[ 0.110410] pci_bus 0000:03: resource 0 [io 0x4000-0x40ff]
[ 0.110413] pci_bus 0000:03: resource 1 [io 0x4400-0x44ff]
[ 0.110417] pci_bus 0000:03: resource 2 [mem 0xe8000000-0xebffffff pref]
[ 0.110420] pci_bus 0000:03: resource 3 [mem 0xc4000000-0xc7ffffff]
[ 0.110423] pci_bus 0000:07: resource 0 [io 0x4800-0x48ff]
[ 0.110427] pci_bus 0000:07: resource 1 [io 0x4c00-0x4cff]
[ 0.110430] pci_bus 0000:07: resource 2 [mem 0xec000000-0xefffffff pref]
[ 0.110434] pci_bus 0000:07: resource 3 [mem 0xc8000000-0xcbffffff]
[ 0.110483] NET: Registered protocol family 2
[ 0.110563] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.110952] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.112838] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[ 0.114006] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.114011] TCP reno registered
[ 0.114018] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.114058] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.114254] NET: Registered protocol family 1
[ 0.114390] pci 0000:01:00.0: Boot video device
[ 0.114408] PCI: CLS 32 bytes, default 64
[ 0.114492] Unpacking initramfs...
[ 0.543409] Freeing initrd memory: 10220k freed
[ 0.559855] Simple Boot Flag at 0x35 set to 0x1
[ 0.560260] audit: initializing netlink socket (disabled)
[ 0.560283] type=2000 audit(1288302144.556:1): initialized
[ 0.573418] highmem bounce pool size: 64 pages
[ 0.573425] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[ 0.575996] VFS: Disk quotas dquot_6.5.2
[ 0.576080] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.576216] msgmni has been set to 1747
[ 0.576487] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[ 0.576492] io scheduler noop registered
[ 0.576494] io scheduler deadline registered
[ 0.576515] io scheduler cfq registered (default)
[ 0.576801] ERST: Table is not found!
[ 0.576821] isapnp: Scanning for PnP cards...
[ 0.930063] isapnp: No Plug & Play device found
[ 0.930315] Linux agpgart interface v0.103
[ 0.930454] agpgart-intel 0000:00:00.0: Intel 855PM Chipset
[ 0.943982] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
[ 0.944075] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[ 0.944179] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
[ 0.944627] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
[ 0.944744] serial 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[ 0.944752] serial 0000:00:1f.6: PCI INT B disabled
[ 0.944885] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[ 0.950374] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.950385] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.950552] mice: PS/2 mouse device common for all mice
[ 0.950606] rtc_cmos 00:06: RTC can wake from S4
[ 0.950662] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[ 0.950680] rtc0: alarms up to one month, y3k, 114 bytes nvram
[ 0.950697] cpuidle: using governor ladder
[ 0.950700] cpuidle: using governor menu
[ 0.951066] TCP cubic registered
[ 0.951253] NET: Registered protocol family 10
[ 0.951772] lo: Disabled Privacy Extensions
[ 0.952057] Mobile IPv6
[ 0.952061] NET: Registered protocol family 17
[ 0.952072] Registering the dns_resolver key type
[ 0.952099] Using IPI No-Shortcut mode
[ 0.952204] PM: Hibernation image not present or could not be loaded.
[ 0.952223] registered taskstats version 1
[ 0.952456] rtc_cmos 00:06: setting system clock to 2010-10-28 21:42:25 UTC (1288302145)
[ 0.952492] Initalizing network drop monitor service
[ 0.952544] Freeing unused kernel memory: 388k freed
[ 0.952813] Write protecting the kernel text: 2596k
[ 0.952838] Write protecting the kernel read-only data: 924k
[ 0.955109] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 1.027042] udev[47]: starting version 164
[ 1.236368] Floppy drive(s): fd0 is 1.44M
[ 1.248821] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.248825] ACPI: Thermal Zone [THM0] (50 C)
[ 1.272134] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k6-NAPI
[ 1.272140] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 1.272212] e1000 0000:02:01.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
[ 1.277094] FDC 0 is a National Semiconductor PC87306
[ 1.592760] usbcore: registered new interface driver usbfs
[ 1.592924] usbcore: registered new interface driver hub
[ 1.596108] usbcore: registered new device driver usb
[ 1.610031] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.613923] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
[ 1.614153] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
[ 1.614406] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
[ 1.614413] ehci_hcd 0000:00:1d.7: PCI INT D -> Link[LNKH] -> GSI 11 (level, low) -> IRQ 11
[ 1.614439] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[ 1.614444] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[ 1.614483] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
[ 1.614523] ehci_hcd 0000:00:1d.7: debug port 1
[ 1.618421] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[ 1.621446] SCSI subsystem initialized
[ 1.628051] ehci_hcd 0000:00:1d.7: irq 11, io mem 0xc0000000
[ 1.636496] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.640086] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 1.640147] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 1.640151] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.640154] usb usb1: Product: EHCI Host Controller
[ 1.640157] usb usb1: Manufacturer: Linux 2.6.36-git11.sd.1-686 ehci_hcd
[ 1.640160] usb usb1: SerialNumber: 0000:00:1d.7
[ 1.640363] hub 1-0:1.0: USB hub found
[ 1.640371] hub 1-0:1.0: 6 ports detected
[ 1.641450] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[ 1.641603] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
[ 1.641617] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
[ 1.641631] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[ 1.641636] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 1.641651] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 1.641683] uhci_hcd 0000:00:1d.0: irq 11, io base 0x00001800
[ 1.641731] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.641734] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.641738] usb usb2: Product: UHCI Host Controller
[ 1.641740] usb usb2: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
[ 1.641744] usb usb2: SerialNumber: 0000:00:1d.0
[ 1.641899] hub 2-0:1.0: USB hub found
[ 1.641905] hub 2-0:1.0: 2 ports detected
[ 1.642167] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
[ 1.642504] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
[ 1.642748] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
[ 1.642754] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
[ 1.642762] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[ 1.642767] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 1.642777] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[ 1.642802] uhci_hcd 0000:00:1d.1: irq 11, io base 0x00001820
[ 1.642840] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.642844] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.642847] usb usb3: Product: UHCI Host Controller
[ 1.642850] usb usb3: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
[ 1.642853] usb usb3: SerialNumber: 0000:00:1d.1
[ 1.643078] hub 3-0:1.0: USB hub found
[ 1.643084] hub 3-0:1.0: 2 ports detected
[ 1.643389] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
[ 1.643394] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
[ 1.643402] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[ 1.643406] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 1.643415] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[ 1.643439] uhci_hcd 0000:00:1d.2: irq 11, io base 0x00001840
[ 1.643477] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[ 1.643480] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.643484] usb usb4: Product: UHCI Host Controller
[ 1.643486] usb usb4: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
[ 1.643489] usb usb4: SerialNumber: 0000:00:1d.2
[ 1.643705] hub 4-0:1.0: USB hub found
[ 1.643711] hub 4-0:1.0: 2 ports detected
[ 1.684752] libata version 3.00 loaded.
[ 1.691330] ata_piix 0000:00:1f.1: version 2.13
[ 1.691347] ata_piix 0000:00:1f.1: enabling device (0005 -> 0007)
[ 1.691358] ata_piix 0000:00:1f.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
[ 1.691411] ata_piix 0000:00:1f.1: setting latency timer to 64
[ 1.692125] scsi0 : ata_piix
[ 1.692329] scsi1 : ata_piix
[ 1.693192] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1860 irq 14
[ 1.693196] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1868 irq 15
[ 1.729558] e1000 0000:02:01.0: eth0: (PCI:33MHz:32-bit) 00:0d:60:b0:62:87
[ 1.729566] e1000 0000:02:01.0: eth0: Intel(R) PRO/1000 Network Connection
[ 1.848422] ata2.01: NODEV after polling detection
[ 1.856972] ata1.00: HPA detected: current 110257519, native 117210240
[ 1.856979] ata1.00: ATA-6: HTS726060M9AT00, MH4OA6BA, max UDMA/100
[ 1.856982] ata1.00: 110257519 sectors, multi 16: LBA
[ 1.857078] ata2.00: ATAPI: UJDA755yDVD/CDRW, 1.70, max UDMA/33
[ 1.872668] ata2.00: configured for UDMA/33
[ 1.872723] ata1.00: configured for UDMA/100
[ 1.872888] scsi 0:0:0:0: Direct-Access ATA HTS726060M9AT00 MH4O PQ: 0 ANSI: 5
[ 1.876047] scsi 1:0:0:0: CD-ROM MATSHITA UJDA755yDVD/CDRW 1.70 PQ: 0 ANSI: 5
[ 1.907683] sd 0:0:0:0: [sda] 110257519 512-byte logical blocks: (56.4 GB/52.5 GiB)
[ 1.907825] sd 0:0:0:0: [sda] Write Protect is off
[ 1.907829] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.907855] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.912077] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
[ 1.912081] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1.912425] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 1.969792] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
[ 1.970484] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.987326] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.987796] sr 1:0:0:0: Attached scsi generic sg1 type 5
[ 2.008041] usb 1-4: new high speed USB device using ehci_hcd and address 3
[ 2.140978] usb 1-4: New USB device found, idVendor=152d, idProduct=2329
[ 2.140983] usb 1-4: New USB device strings: Mfr=10, Product=11, SerialNumber=3
[ 2.140987] usb 1-4: Product: Storagebird 35EV821
[ 2.140990] usb 1-4: Manufacturer: 0123456
[ 2.140992] usb 1-4: SerialNumber: 000000000340
[ 2.158046] Initializing USB Mass Storage driver...
[ 2.158167] scsi2 : usb-storage 1-4:1.0
[ 2.158337] usbcore: registered new interface driver usb-storage
[ 2.158339] USB Mass Storage support registered.
[ 2.380030] usb 3-1: new low speed USB device using uhci_hcd and address 2
[ 2.556825] usb 3-1: New USB device found, idVendor=046d, idProduct=c00e
[ 2.556830] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.556833] usb 3-1: Product: USB-PS/2 Optical Mouse
[ 2.556836] usb 3-1: Manufacturer: Logitech
[ 2.596309] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input1
[ 2.596497] generic-usb 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.1-1/input0
[ 2.596680] usbcore: registered new interface driver usbhid
[ 2.596682] usbhid: USB HID core driver
[ 2.668321] device-mapper: uevent: version 1.0.3
[ 2.668938] device-mapper: ioctl: 4.18.0-ioctl (2010-06-29) initialised: dm-devel@redhat.com
[ 2.952328] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[ 3.198345] scsi 2:0:0:0: Direct-Access WDC WD10 EAVS-00D7B0 PQ: 0 ANSI: 2 CCS
[ 3.198882] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 3.199435] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
[ 3.200186] sd 2:0:0:0: [sdb] Write Protect is off
[ 3.200190] sd 2:0:0:0: [sdb] Mode Sense: 34 00 00 00
[ 3.200194] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 3.201686] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 3.282062] sdb: sdb1 sdb2 sdb3 sdb4 < sdb5 sdb6 sdb7 sdb8 >
[ 3.283929] sd 2:0:0:0: [sdb] Assuming drive cache: write through
[ 3.283962] sd 2:0:0:0: [sdb] Attached SCSI disk
[ 3.673194] init[1]: systemd 10 running in system mode. (+PAM -LIBWRAP -AUDIT +SELINUX +SYSVINIT; debian)
[ 3.898630] init[1]: Set hostname to <tbox>.
[ 5.274608] EXT4-fs (sda5): re-mounted. Opts: (null)
[ 5.535813] fuse init (API version 7.15)
[ 5.755599] init[1]: screen-cleanup.service: control process exited, code=exited status=1
[ 5.755696] init[1]: Unit screen-cleanup.service entered failed state.
[ 5.881168] init[1]: console-setup.service: control process exited, code=exited status=208
[ 5.881272] init[1]: Unit console-setup.service entered failed state.
[ 6.281601] udev[366]: starting version 164
[ 6.576676] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[ 6.577737] ACPI: Lid Switch [LID]
[ 6.577835] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
[ 6.577842] ACPI: Sleep Button [SLPB]
[ 6.577944] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[ 6.577948] ACPI: Power Button [PWRF]
[ 6.643396] ACPI: Battery Slot [BAT0] (battery present)
[ 6.644928] ACPI: AC Adapter [AC] (on-line)
[ 6.684608] ACPI: acpi_idle registered with cpuidle
[ 6.685130] Marking TSC unstable due to TSC halts in idle
[ 6.686980] Switching to clocksource acpi_pm
[ 6.919407] Non-volatile memory driver v1.3
[ 7.019561] input: PC Speaker as /devices/platform/pcspkr/input/input5
[ 7.025333] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:03/LNXVIDEO:00/input/input6
[ 7.025483] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
[ 7.116534] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[ 7.154595] intel_rng: FWH not detected
[ 7.211083] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 7.223103] parport_pc 00:0b: reported by Plug and Play ACPI
[ 7.223153] parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
[ 7.323149] i801_smbus 0000:00:1f.3: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[ 7.398752] [drm] Initialized drm 1.1.0 20060810
[ 7.535416] NET: Registered protocol family 23
[ 7.536425] cfg80211: Calling CRDA to update world regulatory domain
[ 7.672782] yenta_cardbus 0000:02:00.0: CardBus bridge found [1014:0512]
[ 7.672802] yenta_cardbus 0000:02:00.0: Using INTVAL to route CSC interrupts to PCI
[ 7.672806] yenta_cardbus 0000:02:00.0: Routing CardBus interrupts to PCI
[ 7.672811] yenta_cardbus 0000:02:00.0: TI: mfunc 0x01d21022, devctl 0x64
[ 7.730989] nsc-ircc 00:0c: [io 0x02f8-0x02ff]
[ 7.731051] nsc-ircc 00:0c: [irq 3]
[ 7.731056] nsc-ircc 00:0c: [dma 1]
[ 7.731624] nsc-ircc 00:0c: activated
[ 7.731806] nsc-ircc, chip->init
[ 7.731815] nsc-ircc, Found chip at base=0x02e
[ 7.731839] nsc-ircc, driver loaded (Dag Brattli)
[ 7.733623] IrDA: Registered device irda0
[ 7.733627] nsc-ircc, Using dongle: IBM31T1100 or Temic TFDS6000/TFDS6500
[ 7.846219] Synaptics Touchpad, model: 1, fw: 5.9, id: 0x2c6ab1, caps: 0x884793/0x0/0x0
[ 7.846228] serio: Synaptics pass-through port at isa0060/serio1/input0
[ 7.902715] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
[ 7.912919] yenta_cardbus 0000:02:00.0: ISA IRQ mask 0x0438, PCI irq 11
[ 7.912924] yenta_cardbus 0000:02:00.0: Socket status: 30000006
[ 7.912934] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
[ 7.912940] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
[ 7.952224] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
[ 7.952231] pcmcia_socket pcmcia_socket0: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xc3a00000-0xcc1fffff 0xcfa00000-0xd01fffff
[ 7.952260] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
[ 7.952264] pcmcia_socket pcmcia_socket0: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
[ 7.964835] yenta_cardbus 0000:02:00.1: CardBus bridge found [1014:0512]
[ 7.964856] yenta_cardbus 0000:02:00.1: Using INTVAL to route CSC interrupts to PCI
[ 7.964860] yenta_cardbus 0000:02:00.1: Routing CardBus interrupts to PCI
[ 7.964866] yenta_cardbus 0000:02:00.1: TI: mfunc 0x01d21022, devctl 0x64
[ 8.159881] thinkpad_acpi: ThinkPad ACPI Extras v0.24
[ 8.159885] thinkpad_acpi: http://ibm-acpi.sf.net/
[ 8.159887] thinkpad_acpi: ThinkPad BIOS 1RETDRWW (3.23 ), EC 1RHT71WW-3.04
[ 8.159890] thinkpad_acpi: IBM ThinkPad T40p, model 2374SG6
[ 8.161537] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
[ 8.169947] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
[ 8.170763] Registered led device: tpacpi::thinklight
[ 8.171652] Registered led device: tpacpi::power
[ 8.171990] Registered led device: tpacpi::standby
[ 8.177470] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
[ 8.180805] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input8
[ 8.197000] yenta_cardbus 0000:02:00.1: ISA IRQ mask 0x0438, PCI irq 11
[ 8.197005] yenta_cardbus 0000:02:00.1: Socket status: 30000006
[ 8.197017] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
[ 8.197023] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
[ 8.223711] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
[ 8.223717] pcmcia_socket pcmcia_socket1: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xc3a00000-0xcc1fffff 0xcfa00000-0xd01fffff
[ 8.223745] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
[ 8.223749] pcmcia_socket pcmcia_socket1: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
[ 8.232379] ath5k 0000:02:02.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
[ 8.232509] ath5k 0000:02:02.0: registered as 'phy0'
[ 8.520058] [drm] radeon kernel modesetting enabled.
[ 8.520169] radeon 0000:01:00.0: power state changed by ACPI to D0
[ 8.520182] radeon 0000:01:00.0: power state changed by ACPI to D0
[ 8.520194] radeon 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
[ 8.534476] [drm] initializing kernel modesetting (RV250 0x1002:0x4C66).
[ 8.534630] [drm] register mmio base: 0xC0100000
[ 8.534632] [drm] register mmio size: 65536
[ 8.535018] agpgart-intel 0000:00:00.0: AGP 2.0 bridge
[ 8.535382] agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x mode
[ 8.535420] radeon 0000:01:00.0: putting AGP V2 device into 4x mode
[ 8.535449] radeon 0000:01:00.0: GTT: 256M 0xD0000000 - 0xDFFFFFFF
[ 8.535458] radeon 0000:01:00.0: VRAM: 128M 0xE0000000 - 0xE7FFFFFF (64M used)
[ 8.535469] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[ 8.535472] [drm] Driver supports precise vblank timestamp query.
[ 8.535493] [drm] radeon: irq initialized.
[ 8.536074] [drm] Detected VRAM RAM=128M, BAR=128M
[ 8.536078] [drm] RAM width 128bits DDR
[ 8.536172] [TTM] Zone kernel: Available graphics memory: 447582 kiB.
[ 8.536175] [TTM] Zone highmem: Available graphics memory: 516898 kiB.
[ 8.536178] [TTM] Initializing pool allocator.
[ 8.536211] [drm] radeon: 64M of VRAM memory ready
[ 8.536214] [drm] radeon: 256M of GTT memory ready.
[ 8.537696] radeon 0000:01:00.0: WB enabled
[ 8.538304] [drm] Loading R200 Microcode
[ 8.578476] ath: EEPROM regdomain: 0x61
[ 8.578479] ath: EEPROM indicates we should expect a direct regpair map
[ 8.578485] ath: Country alpha2 being used: 00
[ 8.578487] ath: Regpair used: 0x61
[ 8.663709] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
[ 8.664764] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
[ 8.665217] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x820-0x8ff: clean.
[ 8.665603] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xc00-0xcf7: clean.
[ 8.666022] pcmcia_socket pcmcia_socket1: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
[ 8.666085] pcmcia_socket pcmcia_socket1: cs: memory probe 0xa0000000-0xa0ffffff: clean.
[ 8.666147] pcmcia_socket pcmcia_socket1: cs: memory probe 0x60000000-0x60ffffff: clean.
[ 8.666215] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xa00-0xaff:
[ 8.666367] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
[ 8.667392] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
[ 8.667844] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: clean.
[ 8.668429] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7: clean.
[ 8.668848] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
[ 8.668909] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: clean.
[ 8.668971] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: clean.
[ 8.669039] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
[ 8.669837] clean.
[ 8.693688] Intel ICH 0000:00:1f.5: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[ 8.693726] Intel ICH 0000:00:1f.5: setting latency timer to 64
[ 8.721299] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 8.722206] Registered led device: ath5k-phy0::rx
[ 8.722234] Registered led device: ath5k-phy0::tx
[ 8.722246] ath5k phy0: Atheros AR5212 chip found (MAC: 0x56, PHY: 0x41)
[ 8.722250] ath5k phy0: RF5111 5GHz radio found (0x17)
[ 8.722253] ath5k phy0: RF2111 2GHz radio found (0x23)
[ 8.728269] [drm] radeon: ring at 0x00000000D0001000
[ 8.728291] [drm] ring test succeeded in 1 usecs
[ 8.728547] [drm] radeon: ib pool ready.
[ 8.728648] [drm] ib test succeeded in 0 usecs
[ 8.728924] [drm] Panel ID String: SXGA+ Single (85MHz)
[ 8.728927] [drm] Panel Size 1400x1050
[ 8.739921] [drm] radeon legacy LVDS backlight initialized
[ 8.758506] [drm] No TV DAC info found in BIOS
[ 8.758637] [drm] Radeon Display Connectors
[ 8.758640] [drm] Connector 0:
[ 8.758643] [drm] VGA
[ 8.758646] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
[ 8.758648] [drm] Encoders:
[ 8.758650] [drm] CRT1: INTERNAL_DAC1
[ 8.758653] [drm] Connector 1:
[ 8.758655] [drm] DVI-D
[ 8.758656] [drm] HPD1
[ 8.758659] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
[ 8.758661] [drm] Encoders:
[ 8.758663] [drm] DFP1: INTERNAL_TMDS1
[ 8.758666] [drm] Connector 2:
[ 8.758667] [drm] LVDS
[ 8.758669] [drm] Encoders:
[ 8.758671] [drm] LCD1: INTERNAL_LVDS
[ 8.758673] [drm] Connector 3:
[ 8.758674] [drm] S-video
[ 8.758676] [drm] Encoders:
[ 8.758678] [drm] TV1: INTERNAL_DAC2
[ 8.764668] [drm] radeon: power management initialized
[ 8.846521] [drm] fb mappable at 0xE0040000
[ 8.846525] [drm] vram apper at 0xE0000000
[ 8.846527] [drm] size 5914624
[ 8.846529] [drm] fb depth is 24
[ 8.846531] [drm] pitch is 5632
[ 8.916696] Console: switching to colour frame buffer device 175x65
[ 8.977288] fb0: radeondrmfb frame buffer device
[ 8.977291] drm: registered panic notifier
[ 8.978852] [drm] Initialized radeon 2.7.0 20080528 for 0000:01:00.0 on minor 0
[ 9.510016] EXT4-fs (sda3): warning: maximal mount count reached, running e2fsck is recommended
[ 9.510357] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[ 9.616039] intel8x0_measure_ac97_clock: measured 55402 usecs (2669 samples)
[ 9.616044] intel8x0: clocking to 48000
[ 9.617512] Intel ICH Modem 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
[ 9.617540] Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
[ 10.687303] Adding 1052244k swap on /dev/sda2. Priority:-1 extents:1 across:1052244k
[ 10.693961] EXT4-fs (sda5): re-mounted. Opts: (null)
[ 11.290047] EXT4-fs (sda5): re-mounted. Opts: (null)
[ 12.431524] init[1]: tmpwatch.service: main process exited, code=exited, status=203
[ 12.431677] init[1]: Unit tmpwatch.service entered failed state.
[ 13.267487] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 14.134990] IBM TrackPoint firmware: 0x0e, buttons: 3/3
[ 14.355796] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input9
[ 15.686258] lp0: using parport0 (interrupt-driven).
[ 15.957198] ppdev: user-space parallel port driver
[ 16.187060] sshd (1337): /proc/1337/oom_adj is deprecated, please use /proc/1337/oom_score_adj instead.
[ 17.346972] P-state transition latency capped at 20 uS
[ 18.253916] Bluetooth: Core ver 2.15
[ 18.253950] NET: Registered protocol family 31
[ 18.253952] Bluetooth: HCI device and connection manager initialized
[ 18.253955] Bluetooth: HCI socket layer initialized
[ 18.660168] wlan0: authenticate with 00:04:0e:e4:00:3d (try 1)
[ 18.661618] wlan0: authenticated
[ 18.661655] wlan0: associate with 00:04:0e:e4:00:3d (try 1)
[ 18.665511] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
[ 18.665522] wlan0: associated
[ 18.667469] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 19.187205] Bluetooth: L2CAP ver 2.15
[ 19.187209] Bluetooth: L2CAP socket layer initialized
[ 19.331748] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 19.331758] Bluetooth: BNEP filters: protocol multicast
[ 19.335659] Bluetooth: RFCOMM TTY layer initialized
[ 19.335664] Bluetooth: RFCOMM socket layer initialized
[ 19.335667] Bluetooth: RFCOMM ver 1.11
[ 19.596575] Bluetooth: SCO (Voice Link) ver 0.6
[ 19.596579] Bluetooth: SCO socket layer initialized
[ 19.997363] padlock: VIA PadLock not detected.
[ 29.384046] wlan0: no IPv6 routers present
[ 100.884524] ------------[ cut here ]------------
[ 100.884718] kernel BUG at /home/sd/src/linux-2.6/linux-2.6.36/debian/build/source_i386_none/fs/ext4/inode.c:2721!
[ 100.885100] invalid opcode: 0000 [#1] SMP
[ 100.885277] last sysfs file: /sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:01/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/energy_full
[ 100.885731] Modules linked in: aes_i586 aes_generic sco rfcomm bnep l2cap bluetooth acpi_cpufreq mperf cpufreq_powersave cpufreq_userspace cpufreq_stats cpufreq_conservative ppdev lp dm_crypt binfmt_misc snd_intel8x0m arc4 snd_intel8x0 snd_pcm_oss ecb snd_mixer_oss snd_ac97_codec radeon ac97_bus thinkpad_acpi snd_pcm pcmcia ath5k joydev snd_seq_midi ath ttm mac80211 snd_rawmidi snd_seq_midi_event nsc_ircc snd_seq yenta_socket drm_kms_helper snd_timer cfg80211 irda pcmcia_rsrc snd_seq_device rfkill drm i2c_i801 i2c_algo_bit pcmcia_core i2c_core snd parport_pc snd_page_alloc shpchp tpm_tis rng_core soundcore pci_hotplug parport tpm crc_ccitt tpm_bios psmouse video pcspkr led_class nvram serio_raw output processor evdev ac battery power_supply button fuse autofs4 ext4 mbcache jbd2 crc16 dm_mod usbhid hid usb_storage sg sd_mod sr_mod crc_t10dif cdrom ata_generic ata_piix libata uhci_hcd ehci_hcd scsi_mod usbcore e1000 thermal thermal_sys floppy nls_base [last unloaded: scsi_wait_scan]
[ 100.888026]
[ 100.888026] Pid: 234, comm: jbd2/sda5-8 Not tainted 2.6.36-git11.sd.1-686 #1 2374SG6/2374SG6
[ 100.888026] EIP: 0060:[<f85de3af>] EFLAGS: 00010246 CPU: 0
[ 100.888026] EIP is at ext4_writepage+0x8d/0x1f1 [ext4]
[ 100.888026] EAX: 40020029 EBX: f7691180 ECX: 05050030 EDX: 00000000
[ 100.888026] ESI: 00005050 EDI: 00001000 EBP: f5f07848 ESP: efa21dbc
[ 100.888026] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 100.888026] Process jbd2/sda5-8 (pid: 234, ti=efa20000 task=ef96d040 task.ti=efa20000)
[ 100.888026] Stack:
[ 100.888026] 0000000c 00000000 efa21e98 00000000 f5f07900 efa21e98 00000000 00005050
[ 100.888026] c1090efa f7691180 c1091f30 00000001 f5f07900 00000005 00000002 00000000
[ 100.888026] 0000000d 0000000e ef8de180 c1090ef2 f030877f 0000000e 00000000 f7690ee0
[ 100.888026] Call Trace:
[ 100.888026] [<c1090efa>] ? __writepage+0x8/0x1f
[ 100.888026] [<c1091f30>] ? write_cache_pages+0x1cc/0x281
[ 100.888026] [<c1090ef2>] ? __writepage+0x0/0x1f
[ 100.888026] [<c1091ffb>] ? generic_writepages+0x16/0x1d
[ 100.888026] [<f8561925>] ? journal_submit_data_buffers+0xf5/0x150 [jbd2]
[ 100.888026] [<f8561d6a>] ? jbd2_journal_commit_transaction+0x2d1/0xda3 [jbd2]
[ 100.888026] [<c1025d55>] ? dequeue_task_fair+0x1b/0x57
[ 100.888026] [<c103944d>] ? lock_timer_base+0x19/0x34
[ 100.888026] [<c10394c4>] ? try_to_del_timer_sync+0x5c/0x63
[ 100.888026] [<f8566018>] ? kjournald2+0x9e/0x1c7 [jbd2]
[ 100.888026] [<c104422a>] ? autoremove_wake_function+0x0/0x29
[ 100.888026] [<f8565f7a>] ? kjournald2+0x0/0x1c7 [jbd2]
[ 100.888026] [<c1043ed6>] ? kthread+0x63/0x68
[ 100.888026] [<c1043e73>] ? kthread+0x0/0x68
[ 100.888026] [<c100353e>] ? kernel_thread_helper+0x6/0x10
[ 100.888026] Code: 0c 89 34 24 89 ce 0f ac d6 0c 39 7c 24 04 75 05 39 34 24 74 07 bf 00 10 00 00 eb 08 89 cf 81 e7 ff 0f 00 00 8b 03 f6 c4 08 75 04 <0f> 0b eb fe c7 04 24 00 00 00 00 83 7b 0c 00 75 37 68 69 0c 5e
[ 100.888026] EIP: [<f85de3af>] ext4_writepage+0x8d/0x1f1 [ext4] SS:ESP 0068:efa21dbc
[ 100.968847] ---[ end trace 6fe8d288bc8bea39 ]---
[ 154.455567] EXT3-fs: barriers not enabled
[ 154.467107] kjournald starting. Commit interval 5 seconds
[ 154.467574] EXT3-fs (sdb5): warning: maximal mount count reached, running e2fsck is recommended
[ 154.468926] EXT3-fs (sdb5): using internal journal
[ 154.469150] EXT3-fs (sdb5): mounted filesystem with ordered data mode
[-- Attachment #3: debug --]
[-- Type: application/octet-stream, Size: 87441 bytes --]
Oct 28 20:00:58 tbox kernel: [ 0.061165] pci 0000:00:1d.2: reg 20: [io 0x1840-0x185f]
Oct 28 20:00:58 tbox kernel: [ 0.061228] pci 0000:00:1d.7: reg 10: [mem 0xc0000000-0xc00003ff]
Oct 28 20:00:58 tbox kernel: [ 0.061307] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Oct 28 20:00:58 tbox kernel: [ 0.061313] pci 0000:00:1d.7: PME# disabled
Oct 28 20:00:58 tbox kernel: [ 0.061464] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
Oct 28 20:00:58 tbox kernel: [ 0.061474] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
Oct 28 20:00:58 tbox kernel: [ 0.061485] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
Oct 28 20:00:58 tbox kernel: [ 0.061495] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
Oct 28 20:00:58 tbox kernel: [ 0.061506] pci 0000:00:1f.1: reg 20: [io 0x1860-0x186f]
Oct 28 20:00:58 tbox kernel: [ 0.061517] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
Oct 28 20:00:58 tbox kernel: [ 0.064013] pci 0000:00:1f.3: reg 20: [io 0x1880-0x189f]
Oct 28 20:00:58 tbox kernel: [ 0.064063] pci 0000:00:1f.5: reg 10: [io 0x1c00-0x1cff]
Oct 28 20:00:58 tbox kernel: [ 0.064072] pci 0000:00:1f.5: reg 14: [io 0x18c0-0x18ff]
Oct 28 20:00:58 tbox kernel: [ 0.064082] pci 0000:00:1f.5: reg 18: [mem 0xc0000c00-0xc0000dff]
Oct 28 20:00:58 tbox kernel: [ 0.064092] pci 0000:00:1f.5: reg 1c: [mem 0xc0000800-0xc00008ff]
Oct 28 20:00:58 tbox kernel: [ 0.064130] pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
Oct 28 20:00:58 tbox kernel: [ 0.064135] pci 0000:00:1f.5: PME# disabled
Oct 28 20:00:58 tbox kernel: [ 0.064164] pci 0000:00:1f.6: reg 10: [io 0x2400-0x24ff]
Oct 28 20:00:58 tbox kernel: [ 0.064174] pci 0000:00:1f.6: reg 14: [io 0x2000-0x207f]
Oct 28 20:00:58 tbox kernel: [ 0.064224] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Oct 28 20:00:58 tbox kernel: [ 0.064229] pci 0000:00:1f.6: PME# disabled
Oct 28 20:00:58 tbox kernel: [ 0.064266] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe7ffffff pref]
Oct 28 20:00:58 tbox kernel: [ 0.064274] pci 0000:01:00.0: reg 14: [io 0x3000-0x30ff]
Oct 28 20:00:58 tbox kernel: [ 0.064283] pci 0000:01:00.0: reg 18: [mem 0xc0100000-0xc010ffff]
Oct 28 20:00:58 tbox kernel: [ 0.064306] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
Oct 28 20:00:58 tbox kernel: [ 0.064325] pci 0000:01:00.0: supports D1 D2
Oct 28 20:00:58 tbox kernel: [ 0.064363] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Oct 28 20:00:58 tbox kernel: [ 0.064367] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
Oct 28 20:00:58 tbox kernel: [ 0.064372] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
Oct 28 20:00:58 tbox kernel: [ 0.064410] pci 0000:02:00.0: reg 10: [mem 0xb0000000-0xb0000fff]
Oct 28 20:00:58 tbox kernel: [ 0.064429] pci 0000:02:00.0: supports D1 D2
Oct 28 20:00:58 tbox kernel: [ 0.064432] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 20:00:58 tbox kernel: [ 0.064437] pci 0000:02:00.0: PME# disabled
Oct 28 20:00:58 tbox kernel: [ 0.064471] pci 0000:02:00.1: reg 10: [mem 0xb1000000-0xb1000fff]
Oct 28 20:00:58 tbox kernel: [ 0.064490] pci 0000:02:00.1: supports D1 D2
Oct 28 20:00:58 tbox kernel: [ 0.064493] pci 0000:02:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 20:00:58 tbox kernel: [ 0.064498] pci 0000:02:00.1: PME# disabled
Oct 28 20:00:58 tbox kernel: [ 0.064541] pci 0000:02:01.0: reg 10: [mem 0xc0220000-0xc023ffff]
Oct 28 20:00:58 tbox kernel: [ 0.064551] pci 0000:02:01.0: reg 14: [mem 0xc0200000-0xc020ffff]
Oct 28 20:00:58 tbox kernel: [ 0.064562] pci 0000:02:01.0: reg 18: [io 0x8000-0x803f]
Oct 28 20:00:58 tbox kernel: [ 0.064593] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
Oct 28 20:00:58 tbox kernel: [ 0.064617] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
Oct 28 20:00:58 tbox kernel: [ 0.064622] pci 0000:02:01.0: PME# disabled
Oct 28 20:00:58 tbox kernel: [ 0.064655] pci 0000:02:02.0: reg 10: [mem 0xc0210000-0xc021ffff]
Oct 28 20:00:58 tbox kernel: [ 0.064758] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
Oct 28 20:00:58 tbox kernel: [ 0.064764] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
Oct 28 20:00:58 tbox kernel: [ 0.064770] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
Oct 28 20:00:58 tbox kernel: [ 0.064773] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
Oct 28 20:00:58 tbox kernel: [ 0.064777] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
Oct 28 20:00:58 tbox kernel: [ 0.064852] pci_bus 0000:00: on NUMA node 0
Oct 28 20:00:58 tbox kernel: [ 0.064856] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Oct 28 20:00:58 tbox kernel: [ 0.064904] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
Oct 28 20:00:58 tbox kernel: [ 0.064929] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
Oct 28 20:00:58 tbox kernel: [ 0.069286] PCI: pci_cache_line_size set to 64 bytes
Oct 28 20:00:58 tbox kernel: [ 0.069350] reserve RAM buffer: 000000000009f000 - 000000000009ffff
Oct 28 20:00:58 tbox kernel: [ 0.069353] reserve RAM buffer: 000000003ff60000 - 000000003fffffff
Oct 28 20:00:58 tbox kernel: [ 0.071736] pnp 00:00: [mem 0x00000000-0x0009ffff]
Oct 28 20:00:58 tbox kernel: [ 0.071740] pnp 00:00: [mem 0x000c0000-0x000c3fff]
Oct 28 20:00:58 tbox kernel: [ 0.071743] pnp 00:00: [mem 0x000c4000-0x000c7fff]
Oct 28 20:00:58 tbox kernel: [ 0.071746] pnp 00:00: [mem 0x000c8000-0x000cbfff]
Oct 28 20:00:58 tbox kernel: [ 0.071749] pnp 00:00: [mem 0x000cc000-0x000cffff]
Oct 28 20:00:58 tbox kernel: [ 0.071752] pnp 00:00: [mem 0x000d0000-0x000d3fff]
Oct 28 20:00:58 tbox kernel: [ 0.071755] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
Oct 28 20:00:58 tbox kernel: [ 0.071758] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
Oct 28 20:00:58 tbox kernel: [ 0.071761] pnp 00:00: [mem 0x000dc000-0x000dffff]
Oct 28 20:00:58 tbox kernel: [ 0.071764] pnp 00:00: [mem 0x000e0000-0x000e3fff]
Oct 28 20:00:58 tbox kernel: [ 0.071767] pnp 00:00: [mem 0x000e4000-0x000e7fff]
Oct 28 20:00:58 tbox kernel: [ 0.071770] pnp 00:00: [mem 0x000e8000-0x000ebfff]
Oct 28 20:00:58 tbox kernel: [ 0.071773] pnp 00:00: [mem 0x000ec000-0x000effff]
Oct 28 20:00:58 tbox kernel: [ 0.071776] pnp 00:00: [mem 0x000f0000-0x000fffff]
Oct 28 20:00:58 tbox kernel: [ 0.071779] pnp 00:00: [mem 0x00100000-0x3fffffff]
Oct 28 20:00:58 tbox kernel: [ 0.071782] pnp 00:00: [mem 0xfec00000-0xffffffff]
Oct 28 20:00:58 tbox kernel: [ 0.071857] pnp 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071886] pnp 00:01: [bus 00-ff]
Oct 28 20:00:58 tbox kernel: [ 0.071889] pnp 00:01: [io 0x0cf8-0x0cff]
Oct 28 20:00:58 tbox kernel: [ 0.071892] pnp 00:01: [io 0x0000-0x0cf7 window]
Oct 28 20:00:58 tbox kernel: [ 0.071896] pnp 00:01: [io 0x0d00-0xffff window]
Oct 28 20:00:58 tbox kernel: [ 0.071905] pnp 00:01: [mem 0x000a0000-0x000bffff window]
Oct 28 20:00:58 tbox kernel: [ 0.071908] pnp 00:01: [mem 0x000c0000-0x000c3fff window]
Oct 28 20:00:58 tbox kernel: [ 0.071911] pnp 00:01: [mem 0x000c4000-0x000c7fff window]
Oct 28 20:00:58 tbox kernel: [ 0.071914] pnp 00:01: [mem 0x000c8000-0x000cbfff window]
Oct 28 20:00:58 tbox kernel: [ 0.071918] pnp 00:01: [mem 0x000cc000-0x000cffff window]
Oct 28 20:00:58 tbox kernel: [ 0.071921] pnp 00:01: [mem 0x000d0000-0x000d3fff window]
Oct 28 20:00:58 tbox kernel: [ 0.071924] pnp 00:01: [mem 0x000d4000-0x000d7fff window]
Oct 28 20:00:58 tbox kernel: [ 0.071927] pnp 00:01: [mem 0x000d8000-0x000dbfff window]
Oct 28 20:00:58 tbox kernel: [ 0.071931] pnp 00:01: [mem 0x000dc000-0x000dffff window]
Oct 28 20:00:58 tbox kernel: [ 0.071934] pnp 00:01: [mem 0x000e0000-0x000e3fff window]
Oct 28 20:00:58 tbox kernel: [ 0.071937] pnp 00:01: [mem 0x000e4000-0x000e7fff window]
Oct 28 20:00:58 tbox kernel: [ 0.071940] pnp 00:01: [mem 0x000e8000-0x000ebfff window]
Oct 28 20:00:58 tbox kernel: [ 0.071943] pnp 00:01: [mem 0x000ec000-0x000effff window]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:01: [mem 0x40000000-0xfebfffff window]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x0010-0x001f]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x0090-0x009f]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x0024-0x0025]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x0028-0x0029]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x002c-0x002d]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x0030-0x0031]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x0034-0x0035]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x0038-0x0039]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x003c-0x003d]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x00a4-0x00a5]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x00a8-0x00a9]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x00ac-0x00ad]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x00b0-0x00b5]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x00b8-0x00b9]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x00bc-0x00bd]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x0050-0x0053]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x0072-0x0077]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x002e-0x002f]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x1000-0x107f]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x1180-0x11bf]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x15e0-0x15ef]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x1600-0x162f]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x1632-0x167f]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x004e-0x004f]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: [io 0x1630-0x1631]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:03: [io 0x0000-0x000f]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:03: [io 0x0080-0x008f]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:03: [io 0x00c0-0x00df]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:03: [dma 4]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:04: [io 0x0061]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:05: [io 0x00f0]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:05: [irq 13]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:06: [io 0x0070-0x0071]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:06: [irq 8]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:07: [io 0x0060]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:07: [io 0x0064]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:07: [irq 1]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:08: [irq 12]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:09: [io 0x03f0-0x03f5]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:09: [io 0x03f7]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:09: [irq 6]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:09: [dma 2]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:09: Plug and Play ACPI device, IDs PNP0700 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:0a: [io 0x03f8-0x03ff]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:0a: [irq 4]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:0b: [io 0x03bc-0x03be]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:0b: [irq 7]
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
Oct 28 20:00:58 tbox kernel: [ 0.071947] pnp 00:0c: Plug and Play ACPI device, IDs IBM0071 PNP0511 (disabled)
Oct 28 20:00:58 tbox kernel: [ 0.109858] pci 0000:00:1e.0: setting latency timer to 64
Oct 28 20:00:58 tbox kernel: [ 0.110121] PCI: setting IRQ 11 as level-triggered
Oct 28 20:00:58 tbox kernel: [ 0.110362] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
Oct 28 20:00:58 tbox kernel: [ 0.110366] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
Oct 28 20:00:58 tbox kernel: [ 0.110369] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
Oct 28 20:00:58 tbox kernel: [ 0.110373] pci_bus 0000:01: resource 1 [mem 0xc0100000-0xc01fffff]
Oct 28 20:00:58 tbox kernel: [ 0.110376] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe7ffffff pref]
Oct 28 20:00:58 tbox kernel: [ 0.110380] pci_bus 0000:02: resource 0 [io 0x4000-0x8fff]
Oct 28 20:00:58 tbox kernel: [ 0.110383] pci_bus 0000:02: resource 1 [mem 0xc0200000-0xcfffffff]
Oct 28 20:00:58 tbox kernel: [ 0.110387] pci_bus 0000:02: resource 2 [mem 0xe8000000-0xefffffff pref]
Oct 28 20:00:58 tbox kernel: [ 0.110390] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
Oct 28 20:00:58 tbox kernel: [ 0.110393] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
Oct 28 20:00:58 tbox kernel: [ 0.110397] pci_bus 0000:03: resource 0 [io 0x4000-0x40ff]
Oct 28 20:00:58 tbox kernel: [ 0.110400] pci_bus 0000:03: resource 1 [io 0x4400-0x44ff]
Oct 28 20:00:58 tbox kernel: [ 0.110403] pci_bus 0000:03: resource 2 [mem 0xe8000000-0xebffffff pref]
Oct 28 20:00:58 tbox kernel: [ 0.110407] pci_bus 0000:03: resource 3 [mem 0xc4000000-0xc7ffffff]
Oct 28 20:00:58 tbox kernel: [ 0.110410] pci_bus 0000:07: resource 0 [io 0x4800-0x48ff]
Oct 28 20:00:58 tbox kernel: [ 0.110414] pci_bus 0000:07: resource 1 [io 0x4c00-0x4cff]
Oct 28 20:00:58 tbox kernel: [ 0.110417] pci_bus 0000:07: resource 2 [mem 0xec000000-0xefffffff pref]
Oct 28 20:00:58 tbox kernel: [ 0.110420] pci_bus 0000:07: resource 3 [mem 0xc8000000-0xcbffffff]
Oct 28 20:00:58 tbox kernel: [ 0.114376] pci 0000:01:00.0: Boot video device
Oct 28 20:00:58 tbox kernel: [ 0.114394] PCI: CLS 32 bytes, default 64
Oct 28 20:00:58 tbox kernel: [ 0.952964] PM: Hibernation image not present or could not be loaded.
Oct 28 20:00:58 tbox kernel: [ 1.620980] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Oct 28 20:00:58 tbox kernel: [ 1.624942] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
Oct 28 20:00:58 tbox kernel: [ 1.657472] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Oct 28 20:00:58 tbox kernel: [ 1.658916] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Oct 28 20:00:58 tbox kernel: [ 1.659585] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Oct 28 20:00:58 tbox kernel: [ 1.708816] libata version 3.00 loaded.
Oct 28 20:00:58 tbox kernel: [ 1.715377] ata_piix 0000:00:1f.1: version 2.13
Oct 28 20:00:58 tbox kernel: [ 1.715463] ata_piix 0000:00:1f.1: setting latency timer to 64
Oct 28 20:00:58 tbox kernel: [ 1.872411] ata2.01: NODEV after polling detection
Oct 28 20:00:58 tbox kernel: [ 1.931534] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 28 20:00:58 tbox kernel: [ 1.937270] sr 1:0:0:0: Attached scsi CD-ROM sr0
Oct 28 20:00:58 tbox kernel: [ 3.216045] sd 2:0:0:0: [sdb] Mode Sense: 34 00 00 00
Oct 28 20:00:58 tbox kernel: [ 7.184976] ACPI: acpi_idle registered with cpuidle
Oct 28 20:00:58 tbox kernel: [ 7.380480] nsc-ircc 00:0c: [io 0x02f8-0x02ff]
Oct 28 20:00:58 tbox kernel: [ 7.380539] nsc-ircc 00:0c: [irq 3]
Oct 28 20:00:58 tbox kernel: [ 7.380544] nsc-ircc 00:0c: [dma 1]
Oct 28 20:00:58 tbox kernel: [ 8.636407] ath: EEPROM regdomain: 0x61
Oct 28 20:00:58 tbox kernel: [ 8.636412] ath: EEPROM indicates we should expect a direct regpair map
Oct 28 20:00:58 tbox kernel: [ 8.636418] ath: Country alpha2 being used: 00
Oct 28 20:00:58 tbox kernel: [ 8.636420] ath: Regpair used: 0x61
Oct 28 20:00:58 tbox kernel: [ 8.919770] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Oct 28 20:00:58 tbox kernel: [ 8.920748] Registered led device: ath5k-phy0::rx
Oct 28 20:00:58 tbox kernel: [ 8.920777] Registered led device: ath5k-phy0::tx
Oct 28 20:00:58 tbox kernel: [ 9.075397] Registered led device: tpacpi::thinklight
Oct 28 20:00:58 tbox kernel: [ 9.075668] Registered led device: tpacpi::power
Oct 28 20:00:58 tbox kernel: [ 9.075921] Registered led device: tpacpi::standby
Oct 28 20:00:58 tbox kernel: [ 9.641165] Intel ICH 0000:00:1f.5: setting latency timer to 64
Oct 28 20:00:58 tbox kernel: [ 10.569574] Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
Oct 28 20:01:01 tbox kernel: [ 19.620357] wlan0: authenticate with 00:04:0e:e4:00:3d (try 1)
Oct 28 20:01:01 tbox kernel: [ 19.622704] wlan0: authenticated
Oct 28 20:01:01 tbox kernel: [ 19.622743] wlan0: associate with 00:04:0e:e4:00:3d (try 1)
Oct 28 20:01:01 tbox kernel: [ 19.627595] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
Oct 28 20:01:01 tbox kernel: [ 19.627606] wlan0: associated
Oct 28 20:01:12 tbox kernel: [ 30.496030] wlan0: no IPv6 routers present
Oct 28 20:22:40 tbox kernel: [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Oct 28 20:22:40 tbox kernel: [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Oct 28 20:22:40 tbox kernel: [ 0.000000] MTRR default type: uncachable
Oct 28 20:22:40 tbox kernel: [ 0.000000] MTRR fixed ranges enabled:
Oct 28 20:22:40 tbox kernel: [ 0.000000] 00000-9FFFF write-back
Oct 28 20:22:40 tbox kernel: [ 0.000000] A0000-BFFFF uncachable
Oct 28 20:22:40 tbox kernel: [ 0.000000] C0000-CFFFF write-protect
Oct 28 20:22:40 tbox kernel: [ 0.000000] D0000-DBFFF uncachable
Oct 28 20:22:40 tbox kernel: [ 0.000000] DC000-DFFFF write-back
Oct 28 20:22:40 tbox kernel: [ 0.000000] E0000-FFFFF write-protect
Oct 28 20:22:40 tbox kernel: [ 0.000000] MTRR variable ranges enabled:
Oct 28 20:22:40 tbox kernel: [ 0.000000] 0 base 000000000 mask FC0000000 write-back
Oct 28 20:22:40 tbox kernel: [ 0.000000] 1 base 03FF80000 mask FFFF80000 uncachable
Oct 28 20:22:40 tbox kernel: [ 0.000000] 2 disabled
Oct 28 20:22:40 tbox kernel: [ 0.000000] 3 disabled
Oct 28 20:22:40 tbox kernel: [ 0.000000] 4 disabled
Oct 28 20:22:40 tbox kernel: [ 0.000000] 5 disabled
Oct 28 20:22:40 tbox kernel: [ 0.000000] 6 disabled
Oct 28 20:22:40 tbox kernel: [ 0.000000] 7 disabled
Oct 28 20:22:40 tbox kernel: [ 0.000000] initial memory mapped : 0 - 01800000
Oct 28 20:22:40 tbox kernel: [ 0.000000] 0000000000 - 0000400000 page 4k
Oct 28 20:22:40 tbox kernel: [ 0.000000] 0000400000 - 0037400000 page 2M
Oct 28 20:22:40 tbox kernel: [ 0.000000] 0037400000 - 00377fe000 page 4k
Oct 28 20:22:40 tbox kernel: [ 0.000000] kernel direct mapping tables up to 377fe000 @ 17fb000-1800000
Oct 28 20:22:40 tbox kernel: [ 0.000000] On node 0 totalpages: 261871
Oct 28 20:22:40 tbox kernel: [ 0.000000] free_area_init_node: node 0, pgdat c13c1e40, node_mem_map f6ffd200
Oct 28 20:22:40 tbox kernel: [ 0.000000] DMA zone: 32 pages used for memmap
Oct 28 20:22:40 tbox kernel: [ 0.000000] DMA zone: 0 pages reserved
Oct 28 20:22:40 tbox kernel: [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
Oct 28 20:22:40 tbox kernel: [ 0.000000] Normal zone: 1744 pages used for memmap
Oct 28 20:22:40 tbox kernel: [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
Oct 28 20:22:40 tbox kernel: [ 0.000000] HighMem zone: 271 pages used for memmap
Oct 28 20:22:40 tbox kernel: [ 0.000000] HighMem zone: 34387 pages, LIFO batch:7
Oct 28 20:22:40 tbox kernel: [ 0.000000] nr_irqs_gsi: 16
Oct 28 20:22:40 tbox kernel: [ 0.000000] CPU 0 irqstacks, hard=f6800000 soft=f6802000
Oct 28 20:22:40 tbox kernel: [ 0.112664] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
Oct 28 20:22:40 tbox kernel: [ 0.112676] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
Oct 28 20:22:40 tbox kernel: [ 0.112687] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
Oct 28 20:22:40 tbox kernel: [ 0.112699] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
Oct 28 20:22:40 tbox kernel: [ 0.112710] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
Oct 28 20:22:40 tbox kernel: [ 0.112722] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored)
Oct 28 20:22:40 tbox kernel: [ 0.112753] pci 0000:00:00.0: [8086:3340] type 0 class 0x000600
Oct 28 20:22:40 tbox kernel: [ 0.112772] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.112847] pci 0000:00:01.0: [8086:3341] type 1 class 0x000604
Oct 28 20:22:40 tbox kernel: [ 0.112942] pci 0000:00:1d.0: [8086:24c2] type 0 class 0x000c03
Oct 28 20:22:40 tbox kernel: [ 0.113010] pci 0000:00:1d.0: reg 20: [io 0x1800-0x181f]
Oct 28 20:22:40 tbox kernel: [ 0.113067] pci 0000:00:1d.1: [8086:24c4] type 0 class 0x000c03
Oct 28 20:22:40 tbox kernel: [ 0.113133] pci 0000:00:1d.1: reg 20: [io 0x1820-0x183f]
Oct 28 20:22:40 tbox kernel: [ 0.113190] pci 0000:00:1d.2: [8086:24c7] type 0 class 0x000c03
Oct 28 20:22:40 tbox kernel: [ 0.113257] pci 0000:00:1d.2: reg 20: [io 0x1840-0x185f]
Oct 28 20:22:40 tbox kernel: [ 0.113328] pci 0000:00:1d.7: [8086:24cd] type 0 class 0x000c03
Oct 28 20:22:40 tbox kernel: [ 0.113362] pci 0000:00:1d.7: reg 10: [mem 0xc0000000-0xc00003ff]
Oct 28 20:22:40 tbox kernel: [ 0.113470] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Oct 28 20:22:40 tbox kernel: [ 0.113482] pci 0000:00:1d.7: PME# disabled
Oct 28 20:22:40 tbox kernel: [ 0.113518] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
Oct 28 20:22:40 tbox kernel: [ 0.113588] pci 0000:00:1f.0: [8086:24cc] type 0 class 0x000601
Oct 28 20:22:40 tbox kernel: [ 0.113728] pci 0000:00:1f.1: [8086:24ca] type 0 class 0x000101
Oct 28 20:22:40 tbox kernel: [ 0.113754] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
Oct 28 20:22:40 tbox kernel: [ 0.113773] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
Oct 28 20:22:40 tbox kernel: [ 0.113792] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
Oct 28 20:22:40 tbox kernel: [ 0.113812] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
Oct 28 20:22:40 tbox kernel: [ 0.113831] pci 0000:00:1f.1: reg 20: [io 0x1860-0x186f]
Oct 28 20:22:40 tbox kernel: [ 0.113850] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
Oct 28 20:22:40 tbox kernel: [ 0.113900] pci 0000:00:1f.3: [8086:24c3] type 0 class 0x000c05
Oct 28 20:22:40 tbox kernel: [ 0.113967] pci 0000:00:1f.3: reg 20: [io 0x1880-0x189f]
Oct 28 20:22:40 tbox kernel: [ 0.114029] pci 0000:00:1f.5: [8086:24c5] type 0 class 0x000401
Oct 28 20:22:40 tbox kernel: [ 0.114056] pci 0000:00:1f.5: reg 10: [io 0x1c00-0x1cff]
Oct 28 20:22:40 tbox kernel: [ 0.114074] pci 0000:00:1f.5: reg 14: [io 0x18c0-0x18ff]
Oct 28 20:22:40 tbox kernel: [ 0.114092] pci 0000:00:1f.5: reg 18: [mem 0xc0000c00-0xc0000dff]
Oct 28 20:22:40 tbox kernel: [ 0.114111] pci 0000:00:1f.5: reg 1c: [mem 0xc0000800-0xc00008ff]
Oct 28 20:22:40 tbox kernel: [ 0.114169] pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
Oct 28 20:22:40 tbox kernel: [ 0.114180] pci 0000:00:1f.5: PME# disabled
Oct 28 20:22:40 tbox kernel: [ 0.114211] pci 0000:00:1f.6: [8086:24c6] type 0 class 0x000703
Oct 28 20:22:40 tbox kernel: [ 0.114239] pci 0000:00:1f.6: reg 10: [io 0x2400-0x24ff]
Oct 28 20:22:40 tbox kernel: [ 0.114257] pci 0000:00:1f.6: reg 14: [io 0x2000-0x207f]
Oct 28 20:22:40 tbox kernel: [ 0.114333] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Oct 28 20:22:40 tbox kernel: [ 0.114344] pci 0000:00:1f.6: PME# disabled
Oct 28 20:22:40 tbox kernel: [ 0.114391] pci 0000:01:00.0: [1002:4c66] type 0 class 0x000300
Oct 28 20:22:40 tbox kernel: [ 0.114419] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe7ffffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.114436] pci 0000:01:00.0: reg 14: [io 0x3000-0x30ff]
Oct 28 20:22:40 tbox kernel: [ 0.114453] pci 0000:01:00.0: reg 18: [mem 0xc0100000-0xc010ffff]
Oct 28 20:22:40 tbox kernel: [ 0.114493] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.114526] pci 0000:01:00.0: supports D1 D2
Oct 28 20:22:40 tbox kernel: [ 0.114592] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Oct 28 20:22:40 tbox kernel: [ 0.114603] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
Oct 28 20:22:40 tbox kernel: [ 0.114615] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.114661] pci 0000:02:00.0: [104c:ac55] type 2 class 0x000607
Oct 28 20:22:40 tbox kernel: [ 0.114691] pci 0000:02:00.0: reg 10: [mem 0xb0000000-0xb0000fff]
Oct 28 20:22:40 tbox kernel: [ 0.114723] pci 0000:02:00.0: supports D1 D2
Oct 28 20:22:40 tbox kernel: [ 0.114731] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 20:22:40 tbox kernel: [ 0.114743] pci 0000:02:00.0: PME# disabled
Oct 28 20:22:40 tbox kernel: [ 0.114779] pci 0000:02:00.1: [104c:ac55] type 2 class 0x000607
Oct 28 20:22:40 tbox kernel: [ 0.114808] pci 0000:02:00.1: reg 10: [mem 0xb1000000-0xb1000fff]
Oct 28 20:22:40 tbox kernel: [ 0.114840] pci 0000:02:00.1: supports D1 D2
Oct 28 20:22:40 tbox kernel: [ 0.114849] pci 0000:02:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 20:22:40 tbox kernel: [ 0.114860] pci 0000:02:00.1: PME# disabled
Oct 28 20:22:40 tbox kernel: [ 0.114906] pci 0000:02:01.0: [8086:101e] type 0 class 0x000200
Oct 28 20:22:40 tbox kernel: [ 0.114938] pci 0000:02:01.0: reg 10: [mem 0xc0220000-0xc023ffff]
Oct 28 20:22:40 tbox kernel: [ 0.114958] pci 0000:02:01.0: reg 14: [mem 0xc0200000-0xc020ffff]
Oct 28 20:22:40 tbox kernel: [ 0.114977] pci 0000:02:01.0: reg 18: [io 0x8000-0x803f]
Oct 28 20:22:40 tbox kernel: [ 0.115027] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.115067] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
Oct 28 20:22:40 tbox kernel: [ 0.115078] pci 0000:02:01.0: PME# disabled
Oct 28 20:22:40 tbox kernel: [ 0.115114] pci 0000:02:02.0: [168c:1014] type 0 class 0x000200
Oct 28 20:22:40 tbox kernel: [ 0.115143] pci 0000:02:02.0: reg 10: [mem 0xc0210000-0xc021ffff]
Oct 28 20:22:40 tbox kernel: [ 0.115303] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
Oct 28 20:22:40 tbox kernel: [ 0.115315] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
Oct 28 20:22:40 tbox kernel: [ 0.115328] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.115338] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
Oct 28 20:22:40 tbox kernel: [ 0.115348] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
Oct 28 20:22:40 tbox kernel: [ 0.115466] pci_bus 0000:00: on NUMA node 0
Oct 28 20:22:40 tbox kernel: [ 0.115477] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Oct 28 20:22:40 tbox kernel: [ 0.115609] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
Oct 28 20:22:40 tbox kernel: [ 0.115680] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
Oct 28 20:22:40 tbox kernel: [ 0.127192] PCI: pci_cache_line_size set to 64 bytes
Oct 28 20:22:40 tbox kernel: [ 0.127313] reserve RAM buffer: 000000000009f000 - 000000000009ffff
Oct 28 20:22:40 tbox kernel: [ 0.127323] reserve RAM buffer: 000000003ff60000 - 000000003fffffff
Oct 28 20:22:40 tbox kernel: [ 0.128950] pnp 00:00: [mem 0x00000000-0x0009ffff]
Oct 28 20:22:40 tbox kernel: [ 0.128961] pnp 00:00: [mem 0x000c0000-0x000c3fff]
Oct 28 20:22:40 tbox kernel: [ 0.128969] pnp 00:00: [mem 0x000c4000-0x000c7fff]
Oct 28 20:22:40 tbox kernel: [ 0.128978] pnp 00:00: [mem 0x000c8000-0x000cbfff]
Oct 28 20:22:40 tbox kernel: [ 0.128986] pnp 00:00: [mem 0x000cc000-0x000cffff]
Oct 28 20:22:40 tbox kernel: [ 0.128995] pnp 00:00: [mem 0x000d0000-0x000d3fff]
Oct 28 20:22:40 tbox kernel: [ 0.129003] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
Oct 28 20:22:40 tbox kernel: [ 0.129013] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
Oct 28 20:22:40 tbox kernel: [ 0.129022] pnp 00:00: [mem 0x000dc000-0x000dffff]
Oct 28 20:22:40 tbox kernel: [ 0.129030] pnp 00:00: [mem 0x000e0000-0x000e3fff]
Oct 28 20:22:40 tbox kernel: [ 0.129038] pnp 00:00: [mem 0x000e4000-0x000e7fff]
Oct 28 20:22:40 tbox kernel: [ 0.129047] pnp 00:00: [mem 0x000e8000-0x000ebfff]
Oct 28 20:22:40 tbox kernel: [ 0.129055] pnp 00:00: [mem 0x000ec000-0x000effff]
Oct 28 20:22:40 tbox kernel: [ 0.129064] pnp 00:00: [mem 0x000f0000-0x000fffff]
Oct 28 20:22:40 tbox kernel: [ 0.129072] pnp 00:00: [mem 0x00100000-0x3fffffff]
Oct 28 20:22:40 tbox kernel: [ 0.129081] pnp 00:00: [mem 0xfec00000-0xffffffff]
Oct 28 20:22:40 tbox kernel: [ 0.129269] pnp 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 28 20:22:40 tbox kernel: [ 0.129345] pnp 00:01: [bus 00-ff]
Oct 28 20:22:40 tbox kernel: [ 0.129354] pnp 00:01: [io 0x0cf8-0x0cff]
Oct 28 20:22:40 tbox kernel: [ 0.129363] pnp 00:01: [io 0x0000-0x0cf7 window]
Oct 28 20:22:40 tbox kernel: [ 0.129372] pnp 00:01: [io 0x0d00-0xffff window]
Oct 28 20:22:40 tbox kernel: [ 0.129381] pnp 00:01: [mem 0x000a0000-0x000bffff window]
Oct 28 20:22:40 tbox kernel: [ 0.129397] pnp 00:01: [mem 0x000c0000-0x000c3fff window]
Oct 28 20:22:40 tbox kernel: [ 0.129406] pnp 00:01: [mem 0x000c4000-0x000c7fff window]
Oct 28 20:22:40 tbox kernel: [ 0.129415] pnp 00:01: [mem 0x000c8000-0x000cbfff window]
Oct 28 20:22:40 tbox kernel: [ 0.129425] pnp 00:01: [mem 0x000cc000-0x000cffff window]
Oct 28 20:22:40 tbox kernel: [ 0.129434] pnp 00:01: [mem 0x000d0000-0x000d3fff window]
Oct 28 20:22:40 tbox kernel: [ 0.129443] pnp 00:01: [mem 0x000d4000-0x000d7fff window]
Oct 28 20:22:40 tbox kernel: [ 0.129452] pnp 00:01: [mem 0x000d8000-0x000dbfff window]
Oct 28 20:22:40 tbox kernel: [ 0.129461] pnp 00:01: [mem 0x000dc000-0x000dffff window]
Oct 28 20:22:40 tbox kernel: [ 0.129470] pnp 00:01: [mem 0x000e0000-0x000e3fff window]
Oct 28 20:22:40 tbox kernel: [ 0.129480] pnp 00:01: [mem 0x000e4000-0x000e7fff window]
Oct 28 20:22:40 tbox kernel: [ 0.129489] pnp 00:01: [mem 0x000e8000-0x000ebfff window]
Oct 28 20:22:40 tbox kernel: [ 0.129498] pnp 00:01: [mem 0x000ec000-0x000effff window]
Oct 28 20:22:40 tbox kernel: [ 0.129507] pnp 00:01: [mem 0x40000000-0xfebfffff window]
Oct 28 20:22:40 tbox kernel: [ 0.129641] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
Oct 28 20:22:40 tbox kernel: [ 0.129953] pnp 00:02: [io 0x0010-0x001f]
Oct 28 20:22:40 tbox kernel: [ 0.129962] pnp 00:02: [io 0x0090-0x009f]
Oct 28 20:22:40 tbox kernel: [ 0.129970] pnp 00:02: [io 0x0024-0x0025]
Oct 28 20:22:40 tbox kernel: [ 0.129978] pnp 00:02: [io 0x0028-0x0029]
Oct 28 20:22:40 tbox kernel: [ 0.129986] pnp 00:02: [io 0x002c-0x002d]
Oct 28 20:22:40 tbox kernel: [ 0.129994] pnp 00:02: [io 0x0030-0x0031]
Oct 28 20:22:40 tbox kernel: [ 0.130002] pnp 00:02: [io 0x0034-0x0035]
Oct 28 20:22:40 tbox kernel: [ 0.130009] pnp 00:02: [io 0x0038-0x0039]
Oct 28 20:22:40 tbox kernel: [ 0.130017] pnp 00:02: [io 0x003c-0x003d]
Oct 28 20:22:40 tbox kernel: [ 0.130025] pnp 00:02: [io 0x00a4-0x00a5]
Oct 28 20:22:40 tbox kernel: [ 0.130033] pnp 00:02: [io 0x00a8-0x00a9]
Oct 28 20:22:40 tbox kernel: [ 0.130041] pnp 00:02: [io 0x00ac-0x00ad]
Oct 28 20:22:40 tbox kernel: [ 0.130049] pnp 00:02: [io 0x00b0-0x00b5]
Oct 28 20:22:40 tbox kernel: [ 0.130056] pnp 00:02: [io 0x00b8-0x00b9]
Oct 28 20:22:40 tbox kernel: [ 0.130064] pnp 00:02: [io 0x00bc-0x00bd]
Oct 28 20:22:40 tbox kernel: [ 0.130072] pnp 00:02: [io 0x0050-0x0053]
Oct 28 20:22:40 tbox kernel: [ 0.130080] pnp 00:02: [io 0x0072-0x0077]
Oct 28 20:22:40 tbox kernel: [ 0.130088] pnp 00:02: [io 0x002e-0x002f]
Oct 28 20:22:40 tbox kernel: [ 0.130096] pnp 00:02: [io 0x1000-0x107f]
Oct 28 20:22:40 tbox kernel: [ 0.130104] pnp 00:02: [io 0x1180-0x11bf]
Oct 28 20:22:40 tbox kernel: [ 0.130112] pnp 00:02: [io 0x15e0-0x15ef]
Oct 28 20:22:40 tbox kernel: [ 0.130119] pnp 00:02: [io 0x1600-0x162f]
Oct 28 20:22:40 tbox kernel: [ 0.130127] pnp 00:02: [io 0x1632-0x167f]
Oct 28 20:22:40 tbox kernel: [ 0.130135] pnp 00:02: [io 0x004e-0x004f]
Oct 28 20:22:40 tbox kernel: [ 0.130143] pnp 00:02: [io 0x1630-0x1631]
Oct 28 20:22:40 tbox kernel: [ 0.130372] pnp 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 28 20:22:40 tbox kernel: [ 0.130421] pnp 00:03: [io 0x0000-0x000f]
Oct 28 20:22:40 tbox kernel: [ 0.130429] pnp 00:03: [io 0x0080-0x008f]
Oct 28 20:22:40 tbox kernel: [ 0.130437] pnp 00:03: [io 0x00c0-0x00df]
Oct 28 20:22:40 tbox kernel: [ 0.130446] pnp 00:03: [dma 4]
Oct 28 20:22:40 tbox kernel: [ 0.130555] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 28 20:22:40 tbox kernel: [ 0.130587] pnp 00:04: [io 0x0061]
Oct 28 20:22:40 tbox kernel: [ 0.130687] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 28 20:22:40 tbox kernel: [ 0.130719] pnp 00:05: [io 0x00f0]
Oct 28 20:22:40 tbox kernel: [ 0.130728] pnp 00:05: [irq 13]
Oct 28 20:22:40 tbox kernel: [ 0.130829] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 28 20:22:40 tbox kernel: [ 0.130861] pnp 00:06: [io 0x0070-0x0071]
Oct 28 20:22:40 tbox kernel: [ 0.130870] pnp 00:06: [irq 8]
Oct 28 20:22:40 tbox kernel: [ 0.130970] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 28 20:22:40 tbox kernel: [ 0.131002] pnp 00:07: [io 0x0060]
Oct 28 20:22:40 tbox kernel: [ 0.131010] pnp 00:07: [io 0x0064]
Oct 28 20:22:40 tbox kernel: [ 0.131017] pnp 00:07: [irq 1]
Oct 28 20:22:40 tbox kernel: [ 0.131125] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
Oct 28 20:22:40 tbox kernel: [ 0.131157] pnp 00:08: [irq 12]
Oct 28 20:22:40 tbox kernel: [ 0.131261] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
Oct 28 20:22:40 tbox kernel: [ 0.131358] pnp 00:09: [io 0x03f0-0x03f5]
Oct 28 20:22:40 tbox kernel: [ 0.131366] pnp 00:09: [io 0x03f7]
Oct 28 20:22:40 tbox kernel: [ 0.131375] pnp 00:09: [irq 6]
Oct 28 20:22:40 tbox kernel: [ 0.131382] pnp 00:09: [dma 2]
Oct 28 20:22:40 tbox kernel: [ 0.131525] pnp 00:09: Plug and Play ACPI device, IDs PNP0700 (active)
Oct 28 20:22:40 tbox kernel: [ 0.131791] pnp 00:0a: [io 0x03f8-0x03ff]
Oct 28 20:22:40 tbox kernel: [ 0.131800] pnp 00:0a: [irq 4]
Oct 28 20:22:40 tbox kernel: [ 0.132072] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
Oct 28 20:22:40 tbox kernel: [ 0.132448] pnp 00:0b: [io 0x03bc-0x03be]
Oct 28 20:22:40 tbox kernel: [ 0.132457] pnp 00:0b: [irq 7]
Oct 28 20:22:40 tbox kernel: [ 0.132718] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
Oct 28 20:22:40 tbox kernel: [ 0.133159] pnp 00:0c: Plug and Play ACPI device, IDs IBM0071 PNP0511 (disabled)
Oct 28 20:22:40 tbox kernel: [ 0.176479] pci 0000:00:1e.0: setting latency timer to 64
Oct 28 20:22:40 tbox kernel: [ 0.177054] PCI: setting IRQ 11 as level-triggered
Oct 28 20:22:40 tbox kernel: [ 0.177623] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
Oct 28 20:22:40 tbox kernel: [ 0.177633] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
Oct 28 20:22:40 tbox kernel: [ 0.177643] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
Oct 28 20:22:40 tbox kernel: [ 0.177652] pci_bus 0000:01: resource 1 [mem 0xc0100000-0xc01fffff]
Oct 28 20:22:40 tbox kernel: [ 0.177662] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe7ffffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.177672] pci_bus 0000:02: resource 0 [io 0x4000-0x8fff]
Oct 28 20:22:40 tbox kernel: [ 0.177682] pci_bus 0000:02: resource 1 [mem 0xc0200000-0xcfffffff]
Oct 28 20:22:40 tbox kernel: [ 0.177691] pci_bus 0000:02: resource 2 [mem 0xe8000000-0xefffffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.177701] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
Oct 28 20:22:40 tbox kernel: [ 0.177710] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
Oct 28 20:22:40 tbox kernel: [ 0.177720] pci_bus 0000:03: resource 0 [io 0xfc00-0xfcff]
Oct 28 20:22:40 tbox kernel: [ 0.177729] pci_bus 0000:03: resource 1 [io 0xf800-0xf8ff]
Oct 28 20:22:40 tbox kernel: [ 0.177739] pci_bus 0000:03: resource 2 [mem 0xec000000-0xefffffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.177749] pci_bus 0000:03: resource 3 [mem 0xf8000000-0xfbffffff]
Oct 28 20:22:40 tbox kernel: [ 0.177758] pci_bus 0000:07: resource 0 [io 0xf400-0xf4ff]
Oct 28 20:22:40 tbox kernel: [ 0.177767] pci_bus 0000:07: resource 1 [io 0xf000-0xf0ff]
Oct 28 20:22:40 tbox kernel: [ 0.177777] pci_bus 0000:07: resource 2 [mem 0xe8000000-0xebffffff pref]
Oct 28 20:22:40 tbox kernel: [ 0.177787] pci_bus 0000:07: resource 3 [mem 0xf4000000-0xf7ffffff]
Oct 28 20:22:40 tbox kernel: [ 0.182733] pci 0000:01:00.0: Boot video device
Oct 28 20:22:40 tbox kernel: [ 0.182766] PCI: CLS 32 bytes, default 64
Oct 28 20:22:40 tbox kernel: [ 1.751111] PM: Hibernation image not present or could not be loaded.
Oct 28 20:22:40 tbox kernel: [ 3.159761] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Oct 28 20:22:40 tbox kernel: [ 3.163802] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
Oct 28 20:22:40 tbox kernel: [ 3.210592] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Oct 28 20:22:40 tbox kernel: [ 3.213288] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Oct 28 20:22:40 tbox kernel: [ 3.215458] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Oct 28 20:22:40 tbox kernel: [ 3.356924] libata version 3.00 loaded.
Oct 28 20:22:40 tbox kernel: [ 3.375265] ata_piix 0000:00:1f.1: version 2.13
Oct 28 20:22:40 tbox kernel: [ 3.375405] ata_piix 0000:00:1f.1: setting latency timer to 64
Oct 28 20:22:40 tbox kernel: [ 3.536493] ata2.01: NODEV after polling detection
Oct 28 20:22:40 tbox kernel: [ 3.648754] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 28 20:22:40 tbox kernel: [ 3.655135] sr 1:0:0:0: Attached scsi CD-ROM sr0
Oct 28 20:22:40 tbox kernel: [ 5.938241] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260361
Oct 28 20:22:40 tbox kernel: [ 5.938309] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260360
Oct 28 20:22:40 tbox kernel: [ 5.938334] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260343
Oct 28 20:22:40 tbox kernel: [ 5.938358] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260340
Oct 28 20:22:40 tbox kernel: [ 5.938382] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260332
Oct 28 20:22:40 tbox kernel: [ 10.876448] ACPI: acpi_idle registered with cpuidle
Oct 28 20:22:40 tbox kernel: [ 11.334648] nsc-ircc 00:0c: [io 0x02f8-0x02ff]
Oct 28 20:22:40 tbox kernel: [ 11.334749] nsc-ircc 00:0c: [irq 3]
Oct 28 20:22:40 tbox kernel: [ 11.334761] nsc-ircc 00:0c: [dma 1]
Oct 28 20:22:40 tbox kernel: [ 13.090708] ath: EEPROM regdomain: 0x61
Oct 28 20:22:40 tbox kernel: [ 13.090717] ath: EEPROM indicates we should expect a direct regpair map
Oct 28 20:22:40 tbox kernel: [ 13.090730] ath: Country alpha2 being used: 00
Oct 28 20:22:40 tbox kernel: [ 13.090736] ath: Regpair used: 0x61
Oct 28 20:22:40 tbox kernel: [ 13.272128] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Oct 28 20:22:40 tbox kernel: [ 13.275029] Registered led device: ath5k-phy0::rx
Oct 28 20:22:40 tbox kernel: [ 13.275197] Registered led device: ath5k-phy0::tx
Oct 28 20:22:40 tbox kernel: [ 13.484618] Registered led device: tpacpi::thinklight
Oct 28 20:22:40 tbox kernel: [ 13.485383] Registered led device: tpacpi::power
Oct 28 20:22:40 tbox kernel: [ 13.486071] Registered led device: tpacpi::standby
Oct 28 20:22:40 tbox kernel: [ 13.737238] Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
Oct 28 20:22:40 tbox kernel: [ 13.816222] Intel ICH 0000:00:1f.5: setting latency timer to 64
Oct 28 20:22:42 tbox kernel: [ 23.860691] wlan0: authenticate with 00:04:0e:e4:00:3d (try 1)
Oct 28 20:22:42 tbox kernel: [ 23.862811] wlan0: authenticated
Oct 28 20:22:42 tbox kernel: [ 23.862850] wlan0: associate with 00:04:0e:e4:00:3d (try 1)
Oct 28 20:22:42 tbox kernel: [ 23.872047] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
Oct 28 20:22:42 tbox kernel: [ 23.872058] wlan0: associated
Oct 28 20:22:53 tbox kernel: [ 34.656042] wlan0: no IPv6 routers present
Oct 28 21:15:24 tbox kernel: [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Oct 28 21:15:24 tbox kernel: [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Oct 28 21:15:24 tbox kernel: [ 0.000000] MTRR default type: uncachable
Oct 28 21:15:24 tbox kernel: [ 0.000000] MTRR fixed ranges enabled:
Oct 28 21:15:24 tbox kernel: [ 0.000000] 00000-9FFFF write-back
Oct 28 21:15:24 tbox kernel: [ 0.000000] A0000-BFFFF uncachable
Oct 28 21:15:24 tbox kernel: [ 0.000000] C0000-CFFFF write-protect
Oct 28 21:15:24 tbox kernel: [ 0.000000] D0000-DBFFF uncachable
Oct 28 21:15:24 tbox kernel: [ 0.000000] DC000-DFFFF write-back
Oct 28 21:15:24 tbox kernel: [ 0.000000] E0000-FFFFF write-protect
Oct 28 21:15:24 tbox kernel: [ 0.000000] MTRR variable ranges enabled:
Oct 28 21:15:24 tbox kernel: [ 0.000000] 0 base 000000000 mask FC0000000 write-back
Oct 28 21:15:24 tbox kernel: [ 0.000000] 1 base 03FF80000 mask FFFF80000 uncachable
Oct 28 21:15:24 tbox kernel: [ 0.000000] 2 disabled
Oct 28 21:15:24 tbox kernel: [ 0.000000] 3 disabled
Oct 28 21:15:24 tbox kernel: [ 0.000000] 4 disabled
Oct 28 21:15:24 tbox kernel: [ 0.000000] 5 disabled
Oct 28 21:15:24 tbox kernel: [ 0.000000] 6 disabled
Oct 28 21:15:24 tbox kernel: [ 0.000000] 7 disabled
Oct 28 21:15:24 tbox kernel: [ 0.000000] initial memory mapped : 0 - 01800000
Oct 28 21:15:24 tbox kernel: [ 0.000000] 0000000000 - 0000400000 page 4k
Oct 28 21:15:24 tbox kernel: [ 0.000000] 0000400000 - 0037400000 page 2M
Oct 28 21:15:24 tbox kernel: [ 0.000000] 0037400000 - 00377fe000 page 4k
Oct 28 21:15:24 tbox kernel: [ 0.000000] kernel direct mapping tables up to 377fe000 @ 17fb000-1800000
Oct 28 21:15:24 tbox kernel: [ 0.000000] On node 0 totalpages: 261871
Oct 28 21:15:24 tbox kernel: [ 0.000000] free_area_init_node: node 0, pgdat c13c1e40, node_mem_map f6ffd200
Oct 28 21:15:24 tbox kernel: [ 0.000000] DMA zone: 32 pages used for memmap
Oct 28 21:15:24 tbox kernel: [ 0.000000] DMA zone: 0 pages reserved
Oct 28 21:15:24 tbox kernel: [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
Oct 28 21:15:24 tbox kernel: [ 0.000000] Normal zone: 1744 pages used for memmap
Oct 28 21:15:24 tbox kernel: [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
Oct 28 21:15:24 tbox kernel: [ 0.000000] HighMem zone: 271 pages used for memmap
Oct 28 21:15:24 tbox kernel: [ 0.000000] HighMem zone: 34387 pages, LIFO batch:7
Oct 28 21:15:24 tbox kernel: [ 0.000000] nr_irqs_gsi: 16
Oct 28 21:15:24 tbox kernel: [ 0.000000] CPU 0 irqstacks, hard=f6800000 soft=f6802000
Oct 28 21:15:24 tbox kernel: [ 0.056872] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
Oct 28 21:15:24 tbox kernel: [ 0.056876] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
Oct 28 21:15:24 tbox kernel: [ 0.056880] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
Oct 28 21:15:24 tbox kernel: [ 0.056884] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
Oct 28 21:15:24 tbox kernel: [ 0.056888] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
Oct 28 21:15:24 tbox kernel: [ 0.056892] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored)
Oct 28 21:15:24 tbox kernel: [ 0.056907] pci 0000:00:00.0: [8086:3340] type 0 class 0x000600
Oct 28 21:15:24 tbox kernel: [ 0.056916] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.056958] pci 0000:00:01.0: [8086:3341] type 1 class 0x000604
Oct 28 21:15:24 tbox kernel: [ 0.057014] pci 0000:00:1d.0: [8086:24c2] type 0 class 0x000c03
Oct 28 21:15:24 tbox kernel: [ 0.057058] pci 0000:00:1d.0: reg 20: [io 0x1800-0x181f]
Oct 28 21:15:24 tbox kernel: [ 0.057092] pci 0000:00:1d.1: [8086:24c4] type 0 class 0x000c03
Oct 28 21:15:24 tbox kernel: [ 0.057136] pci 0000:00:1d.1: reg 20: [io 0x1820-0x183f]
Oct 28 21:15:24 tbox kernel: [ 0.057170] pci 0000:00:1d.2: [8086:24c7] type 0 class 0x000c03
Oct 28 21:15:24 tbox kernel: [ 0.057214] pci 0000:00:1d.2: reg 20: [io 0x1840-0x185f]
Oct 28 21:15:24 tbox kernel: [ 0.057259] pci 0000:00:1d.7: [8086:24cd] type 0 class 0x000c03
Oct 28 21:15:24 tbox kernel: [ 0.057281] pci 0000:00:1d.7: reg 10: [mem 0xc0000000-0xc00003ff]
Oct 28 21:15:24 tbox kernel: [ 0.057359] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Oct 28 21:15:24 tbox kernel: [ 0.057365] pci 0000:00:1d.7: PME# disabled
Oct 28 21:15:24 tbox kernel: [ 0.057385] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
Oct 28 21:15:24 tbox kernel: [ 0.057428] pci 0000:00:1f.0: [8086:24cc] type 0 class 0x000601
Oct 28 21:15:24 tbox kernel: [ 0.057513] pci 0000:00:1f.1: [8086:24ca] type 0 class 0x000101
Oct 28 21:15:24 tbox kernel: [ 0.057528] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
Oct 28 21:15:24 tbox kernel: [ 0.057539] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
Oct 28 21:15:24 tbox kernel: [ 0.057549] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
Oct 28 21:15:24 tbox kernel: [ 0.057560] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
Oct 28 21:15:24 tbox kernel: [ 0.057570] pci 0000:00:1f.1: reg 20: [io 0x1860-0x186f]
Oct 28 21:15:24 tbox kernel: [ 0.057581] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
Oct 28 21:15:24 tbox kernel: [ 0.057609] pci 0000:00:1f.3: [8086:24c3] type 0 class 0x000c05
Oct 28 21:15:24 tbox kernel: [ 0.057654] pci 0000:00:1f.3: reg 20: [io 0x1880-0x189f]
Oct 28 21:15:24 tbox kernel: [ 0.057690] pci 0000:00:1f.5: [8086:24c5] type 0 class 0x000401
Oct 28 21:15:24 tbox kernel: [ 0.057706] pci 0000:00:1f.5: reg 10: [io 0x1c00-0x1cff]
Oct 28 21:15:24 tbox kernel: [ 0.057716] pci 0000:00:1f.5: reg 14: [io 0x18c0-0x18ff]
Oct 28 21:15:24 tbox kernel: [ 0.057726] pci 0000:00:1f.5: reg 18: [mem 0xc0000c00-0xc0000dff]
Oct 28 21:15:24 tbox kernel: [ 0.057736] pci 0000:00:1f.5: reg 1c: [mem 0xc0000800-0xc00008ff]
Oct 28 21:15:24 tbox kernel: [ 0.057774] pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
Oct 28 21:15:24 tbox kernel: [ 0.057779] pci 0000:00:1f.5: PME# disabled
Oct 28 21:15:24 tbox kernel: [ 0.057795] pci 0000:00:1f.6: [8086:24c6] type 0 class 0x000703
Oct 28 21:15:24 tbox kernel: [ 0.057811] pci 0000:00:1f.6: reg 10: [io 0x2400-0x24ff]
Oct 28 21:15:24 tbox kernel: [ 0.057821] pci 0000:00:1f.6: reg 14: [io 0x2000-0x207f]
Oct 28 21:15:24 tbox kernel: [ 0.057872] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Oct 28 21:15:24 tbox kernel: [ 0.057877] pci 0000:00:1f.6: PME# disabled
Oct 28 21:15:24 tbox kernel: [ 0.057902] pci 0000:01:00.0: [1002:4c66] type 0 class 0x000300
Oct 28 21:15:24 tbox kernel: [ 0.057917] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.057925] pci 0000:01:00.0: reg 14: [io 0x3000-0x30ff]
Oct 28 21:15:24 tbox kernel: [ 0.057934] pci 0000:01:00.0: reg 18: [mem 0xc0100000-0xc010ffff]
Oct 28 21:15:24 tbox kernel: [ 0.057957] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.057977] pci 0000:01:00.0: supports D1 D2
Oct 28 21:15:24 tbox kernel: [ 0.058015] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Oct 28 21:15:24 tbox kernel: [ 0.058019] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
Oct 28 21:15:24 tbox kernel: [ 0.058023] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.058048] pci 0000:02:00.0: [104c:ac55] type 2 class 0x000607
Oct 28 21:15:24 tbox kernel: [ 0.058066] pci 0000:02:00.0: reg 10: [mem 0xb0000000-0xb0000fff]
Oct 28 21:15:24 tbox kernel: [ 0.058085] pci 0000:02:00.0: supports D1 D2
Oct 28 21:15:24 tbox kernel: [ 0.058088] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 21:15:24 tbox kernel: [ 0.058093] pci 0000:02:00.0: PME# disabled
Oct 28 21:15:24 tbox kernel: [ 0.060016] pci 0000:02:00.1: [104c:ac55] type 2 class 0x000607
Oct 28 21:15:24 tbox kernel: [ 0.060033] pci 0000:02:00.1: reg 10: [mem 0xb1000000-0xb1000fff]
Oct 28 21:15:24 tbox kernel: [ 0.060053] pci 0000:02:00.1: supports D1 D2
Oct 28 21:15:24 tbox kernel: [ 0.060056] pci 0000:02:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 21:15:24 tbox kernel: [ 0.060061] pci 0000:02:00.1: PME# disabled
Oct 28 21:15:24 tbox kernel: [ 0.060088] pci 0000:02:01.0: [8086:101e] type 0 class 0x000200
Oct 28 21:15:24 tbox kernel: [ 0.060107] pci 0000:02:01.0: reg 10: [mem 0xc0220000-0xc023ffff]
Oct 28 21:15:24 tbox kernel: [ 0.060117] pci 0000:02:01.0: reg 14: [mem 0xc0200000-0xc020ffff]
Oct 28 21:15:24 tbox kernel: [ 0.060128] pci 0000:02:01.0: reg 18: [io 0x8000-0x803f]
Oct 28 21:15:24 tbox kernel: [ 0.060159] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.060183] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
Oct 28 21:15:24 tbox kernel: [ 0.060188] pci 0000:02:01.0: PME# disabled
Oct 28 21:15:24 tbox kernel: [ 0.060208] pci 0000:02:02.0: [168c:1014] type 0 class 0x000200
Oct 28 21:15:24 tbox kernel: [ 0.060226] pci 0000:02:02.0: reg 10: [mem 0xc0210000-0xc021ffff]
Oct 28 21:15:24 tbox kernel: [ 0.060329] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
Oct 28 21:15:24 tbox kernel: [ 0.060334] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
Oct 28 21:15:24 tbox kernel: [ 0.060340] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.060344] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
Oct 28 21:15:24 tbox kernel: [ 0.060347] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
Oct 28 21:15:24 tbox kernel: [ 0.060422] pci_bus 0000:00: on NUMA node 0
Oct 28 21:15:24 tbox kernel: [ 0.060426] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Oct 28 21:15:24 tbox kernel: [ 0.060477] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
Oct 28 21:15:24 tbox kernel: [ 0.060502] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
Oct 28 21:15:24 tbox kernel: [ 0.064951] PCI: pci_cache_line_size set to 64 bytes
Oct 28 21:15:24 tbox kernel: [ 0.065013] reserve RAM buffer: 000000000009f000 - 000000000009ffff
Oct 28 21:15:24 tbox kernel: [ 0.065017] reserve RAM buffer: 000000003ff60000 - 000000003fffffff
Oct 28 21:15:24 tbox kernel: [ 0.067368] pnp 00:00: [mem 0x00000000-0x0009ffff]
Oct 28 21:15:24 tbox kernel: [ 0.067372] pnp 00:00: [mem 0x000c0000-0x000c3fff]
Oct 28 21:15:24 tbox kernel: [ 0.067375] pnp 00:00: [mem 0x000c4000-0x000c7fff]
Oct 28 21:15:24 tbox kernel: [ 0.067378] pnp 00:00: [mem 0x000c8000-0x000cbfff]
Oct 28 21:15:24 tbox kernel: [ 0.067381] pnp 00:00: [mem 0x000cc000-0x000cffff]
Oct 28 21:15:24 tbox kernel: [ 0.067384] pnp 00:00: [mem 0x000d0000-0x000d3fff]
Oct 28 21:15:24 tbox kernel: [ 0.067387] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
Oct 28 21:15:24 tbox kernel: [ 0.067391] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
Oct 28 21:15:24 tbox kernel: [ 0.067394] pnp 00:00: [mem 0x000dc000-0x000dffff]
Oct 28 21:15:24 tbox kernel: [ 0.067397] pnp 00:00: [mem 0x000e0000-0x000e3fff]
Oct 28 21:15:24 tbox kernel: [ 0.067400] pnp 00:00: [mem 0x000e4000-0x000e7fff]
Oct 28 21:15:24 tbox kernel: [ 0.067403] pnp 00:00: [mem 0x000e8000-0x000ebfff]
Oct 28 21:15:24 tbox kernel: [ 0.067406] pnp 00:00: [mem 0x000ec000-0x000effff]
Oct 28 21:15:24 tbox kernel: [ 0.067409] pnp 00:00: [mem 0x000f0000-0x000fffff]
Oct 28 21:15:24 tbox kernel: [ 0.067412] pnp 00:00: [mem 0x00100000-0x3fffffff]
Oct 28 21:15:24 tbox kernel: [ 0.067415] pnp 00:00: [mem 0xfec00000-0xffffffff]
Oct 28 21:15:24 tbox kernel: [ 0.067491] pnp 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067519] pnp 00:01: [bus 00-ff]
Oct 28 21:15:24 tbox kernel: [ 0.067523] pnp 00:01: [io 0x0cf8-0x0cff]
Oct 28 21:15:24 tbox kernel: [ 0.067526] pnp 00:01: [io 0x0000-0x0cf7 window]
Oct 28 21:15:24 tbox kernel: [ 0.067529] pnp 00:01: [io 0x0d00-0xffff window]
Oct 28 21:15:24 tbox kernel: [ 0.067532] pnp 00:01: [mem 0x000a0000-0x000bffff window]
Oct 28 21:15:24 tbox kernel: [ 0.067540] pnp 00:01: [mem 0x000c0000-0x000c3fff window]
Oct 28 21:15:24 tbox kernel: [ 0.067543] pnp 00:01: [mem 0x000c4000-0x000c7fff window]
Oct 28 21:15:24 tbox kernel: [ 0.067547] pnp 00:01: [mem 0x000c8000-0x000cbfff window]
Oct 28 21:15:24 tbox kernel: [ 0.067550] pnp 00:01: [mem 0x000cc000-0x000cffff window]
Oct 28 21:15:24 tbox kernel: [ 0.067553] pnp 00:01: [mem 0x000d0000-0x000d3fff window]
Oct 28 21:15:24 tbox kernel: [ 0.067556] pnp 00:01: [mem 0x000d4000-0x000d7fff window]
Oct 28 21:15:24 tbox kernel: [ 0.067559] pnp 00:01: [mem 0x000d8000-0x000dbfff window]
Oct 28 21:15:24 tbox kernel: [ 0.067563] pnp 00:01: [mem 0x000dc000-0x000dffff window]
Oct 28 21:15:24 tbox kernel: [ 0.067566] pnp 00:01: [mem 0x000e0000-0x000e3fff window]
Oct 28 21:15:24 tbox kernel: [ 0.067569] pnp 00:01: [mem 0x000e4000-0x000e7fff window]
Oct 28 21:15:24 tbox kernel: [ 0.067572] pnp 00:01: [mem 0x000e8000-0x000ebfff window]
Oct 28 21:15:24 tbox kernel: [ 0.067575] pnp 00:01: [mem 0x000ec000-0x000effff window]
Oct 28 21:15:24 tbox kernel: [ 0.067579] pnp 00:01: [mem 0x40000000-0xfebfffff window]
Oct 28 21:15:24 tbox kernel: [ 0.067633] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067773] pnp 00:02: [io 0x0010-0x001f]
Oct 28 21:15:24 tbox kernel: [ 0.067776] pnp 00:02: [io 0x0090-0x009f]
Oct 28 21:15:24 tbox kernel: [ 0.067779] pnp 00:02: [io 0x0024-0x0025]
Oct 28 21:15:24 tbox kernel: [ 0.067782] pnp 00:02: [io 0x0028-0x0029]
Oct 28 21:15:24 tbox kernel: [ 0.067784] pnp 00:02: [io 0x002c-0x002d]
Oct 28 21:15:24 tbox kernel: [ 0.067787] pnp 00:02: [io 0x0030-0x0031]
Oct 28 21:15:24 tbox kernel: [ 0.067790] pnp 00:02: [io 0x0034-0x0035]
Oct 28 21:15:24 tbox kernel: [ 0.067792] pnp 00:02: [io 0x0038-0x0039]
Oct 28 21:15:24 tbox kernel: [ 0.067795] pnp 00:02: [io 0x003c-0x003d]
Oct 28 21:15:24 tbox kernel: [ 0.067798] pnp 00:02: [io 0x00a4-0x00a5]
Oct 28 21:15:24 tbox kernel: [ 0.067801] pnp 00:02: [io 0x00a8-0x00a9]
Oct 28 21:15:24 tbox kernel: [ 0.067803] pnp 00:02: [io 0x00ac-0x00ad]
Oct 28 21:15:24 tbox kernel: [ 0.067806] pnp 00:02: [io 0x00b0-0x00b5]
Oct 28 21:15:24 tbox kernel: [ 0.067809] pnp 00:02: [io 0x00b8-0x00b9]
Oct 28 21:15:24 tbox kernel: [ 0.067812] pnp 00:02: [io 0x00bc-0x00bd]
Oct 28 21:15:24 tbox kernel: [ 0.067814] pnp 00:02: [io 0x0050-0x0053]
Oct 28 21:15:24 tbox kernel: [ 0.067817] pnp 00:02: [io 0x0072-0x0077]
Oct 28 21:15:24 tbox kernel: [ 0.067820] pnp 00:02: [io 0x002e-0x002f]
Oct 28 21:15:24 tbox kernel: [ 0.067823] pnp 00:02: [io 0x1000-0x107f]
Oct 28 21:15:24 tbox kernel: [ 0.067825] pnp 00:02: [io 0x1180-0x11bf]
Oct 28 21:15:24 tbox kernel: [ 0.067828] pnp 00:02: [io 0x15e0-0x15ef]
Oct 28 21:15:24 tbox kernel: [ 0.067831] pnp 00:02: [io 0x1600-0x162f]
Oct 28 21:15:24 tbox kernel: [ 0.067834] pnp 00:02: [io 0x1632-0x167f]
Oct 28 21:15:24 tbox kernel: [ 0.067836] pnp 00:02: [io 0x004e-0x004f]
Oct 28 21:15:24 tbox kernel: [ 0.067839] pnp 00:02: [io 0x1630-0x1631]
Oct 28 21:15:24 tbox kernel: [ 0.067921] pnp 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067938] pnp 00:03: [io 0x0000-0x000f]
Oct 28 21:15:24 tbox kernel: [ 0.067941] pnp 00:03: [io 0x0080-0x008f]
Oct 28 21:15:24 tbox kernel: [ 0.067944] pnp 00:03: [io 0x00c0-0x00df]
Oct 28 21:15:24 tbox kernel: [ 0.067947] pnp 00:03: [dma 4]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:04: [io 0x0061]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:05: [io 0x00f0]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:05: [irq 13]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:06: [io 0x0070-0x0071]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:06: [irq 8]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:07: [io 0x0060]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:07: [io 0x0064]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:07: [irq 1]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:08: [irq 12]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:09: [io 0x03f0-0x03f5]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:09: [io 0x03f7]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:09: [irq 6]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:09: [dma 2]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:09: Plug and Play ACPI device, IDs PNP0700 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:0a: [io 0x03f8-0x03ff]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:0a: [irq 4]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:0b: [io 0x03bc-0x03be]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:0b: [irq 7]
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
Oct 28 21:15:24 tbox kernel: [ 0.067989] pnp 00:0c: Plug and Play ACPI device, IDs IBM0071 PNP0511 (disabled)
Oct 28 21:15:24 tbox kernel: [ 0.105840] pci 0000:00:1e.0: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 0.106107] PCI: setting IRQ 11 as level-triggered
Oct 28 21:15:24 tbox kernel: [ 0.106349] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
Oct 28 21:15:24 tbox kernel: [ 0.106352] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
Oct 28 21:15:24 tbox kernel: [ 0.106356] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
Oct 28 21:15:24 tbox kernel: [ 0.106359] pci_bus 0000:01: resource 1 [mem 0xc0100000-0xc01fffff]
Oct 28 21:15:24 tbox kernel: [ 0.106363] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.106366] pci_bus 0000:02: resource 0 [io 0x4000-0x8fff]
Oct 28 21:15:24 tbox kernel: [ 0.106370] pci_bus 0000:02: resource 1 [mem 0xc0200000-0xcfffffff]
Oct 28 21:15:24 tbox kernel: [ 0.106373] pci_bus 0000:02: resource 2 [mem 0xe8000000-0xefffffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.106377] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
Oct 28 21:15:24 tbox kernel: [ 0.106380] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
Oct 28 21:15:24 tbox kernel: [ 0.106383] pci_bus 0000:03: resource 0 [io 0xfc00-0xfcff]
Oct 28 21:15:24 tbox kernel: [ 0.106387] pci_bus 0000:03: resource 1 [io 0xf800-0xf8ff]
Oct 28 21:15:24 tbox kernel: [ 0.106390] pci_bus 0000:03: resource 2 [mem 0xec000000-0xefffffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.106394] pci_bus 0000:03: resource 3 [mem 0xf8000000-0xfbffffff]
Oct 28 21:15:24 tbox kernel: [ 0.106397] pci_bus 0000:07: resource 0 [io 0xf400-0xf4ff]
Oct 28 21:15:24 tbox kernel: [ 0.106400] pci_bus 0000:07: resource 1 [io 0xf000-0xf0ff]
Oct 28 21:15:24 tbox kernel: [ 0.106404] pci_bus 0000:07: resource 2 [mem 0xe8000000-0xebffffff pref]
Oct 28 21:15:24 tbox kernel: [ 0.106407] pci_bus 0000:07: resource 3 [mem 0xf4000000-0xf7ffffff]
Oct 28 21:15:24 tbox kernel: [ 0.110378] pci 0000:01:00.0: Boot video device
Oct 28 21:15:24 tbox kernel: [ 0.110395] PCI: CLS 32 bytes, default 64
Oct 28 21:15:24 tbox kernel: [ 0.936297] PM: Hibernation image not present or could not be loaded.
Oct 28 21:15:24 tbox kernel: [ 1.604735] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 1.608703] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
Oct 28 21:15:24 tbox kernel: [ 1.630124] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 1.659354] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 1.660068] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 1.667758] libata version 3.00 loaded.
Oct 28 21:15:24 tbox kernel: [ 1.674486] ata_piix 0000:00:1f.1: version 2.13
Oct 28 21:15:24 tbox kernel: [ 1.674568] ata_piix 0000:00:1f.1: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 1.832434] ata2.01: NODEV after polling detection
Oct 28 21:15:24 tbox kernel: [ 1.892037] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 28 21:15:24 tbox kernel: [ 1.896580] sr 1:0:0:0: Attached scsi CD-ROM sr0
Oct 28 21:15:24 tbox kernel: [ 4.073673] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260361
Oct 28 21:15:24 tbox kernel: [ 4.073714] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260360
Oct 28 21:15:24 tbox kernel: [ 4.073723] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260343
Oct 28 21:15:24 tbox kernel: [ 4.073732] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260340
Oct 28 21:15:24 tbox kernel: [ 4.073740] EXT4-fs (sda5): ext4_orphan_cleanup: deleting unreferenced inode 260332
Oct 28 21:15:24 tbox kernel: [ 8.424152] ACPI: acpi_idle registered with cpuidle
Oct 28 21:15:24 tbox kernel: [ 13.210337] sd 2:0:0:0: [sdb] Mode Sense: 34 00 00 00
Oct 28 21:15:24 tbox kernel: [ 13.635057] nsc-ircc 00:0c: [io 0x02f8-0x02ff]
Oct 28 21:15:24 tbox kernel: [ 13.635119] nsc-ircc 00:0c: [irq 3]
Oct 28 21:15:24 tbox kernel: [ 13.635124] nsc-ircc 00:0c: [dma 1]
Oct 28 21:15:24 tbox kernel: [ 14.571039] Registered led device: tpacpi::thinklight
Oct 28 21:15:24 tbox kernel: [ 14.571406] Registered led device: tpacpi::power
Oct 28 21:15:24 tbox kernel: [ 14.571663] Registered led device: tpacpi::standby
Oct 28 21:15:24 tbox kernel: [ 14.637047] Intel ICH 0000:00:1f.5: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 14.699544] ath: EEPROM regdomain: 0x61
Oct 28 21:15:24 tbox kernel: [ 14.699548] ath: EEPROM indicates we should expect a direct regpair map
Oct 28 21:15:24 tbox kernel: [ 14.699554] ath: Country alpha2 being used: 00
Oct 28 21:15:24 tbox kernel: [ 14.699556] ath: Regpair used: 0x61
Oct 28 21:15:24 tbox kernel: [ 14.764750] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Oct 28 21:15:24 tbox kernel: [ 14.765700] Registered led device: ath5k-phy0::rx
Oct 28 21:15:24 tbox kernel: [ 14.765729] Registered led device: ath5k-phy0::tx
Oct 28 21:15:24 tbox kernel: [ 15.561581] Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
Oct 28 21:15:27 tbox kernel: [ 24.372207] wlan0: authenticate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:15:27 tbox kernel: [ 24.374792] wlan0: authenticated
Oct 28 21:15:27 tbox kernel: [ 24.374831] wlan0: associate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:15:27 tbox kernel: [ 24.380317] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
Oct 28 21:15:27 tbox kernel: [ 24.380327] wlan0: associated
Oct 28 21:15:38 tbox kernel: [ 34.832041] wlan0: no IPv6 routers present
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMI: 2374SG6/2374SG6, BIOS 1RETDRWW (3.23 ) 06/18/2007
Oct 28 21:42:41 tbox kernel: [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Oct 28 21:42:41 tbox kernel: [ 0.000000] MTRR default type: uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] MTRR fixed ranges enabled:
Oct 28 21:42:41 tbox kernel: [ 0.000000] 00000-9FFFF write-back
Oct 28 21:42:41 tbox kernel: [ 0.000000] A0000-BFFFF uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] C0000-CFFFF write-protect
Oct 28 21:42:41 tbox kernel: [ 0.000000] D0000-DBFFF uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] DC000-DFFFF write-back
Oct 28 21:42:41 tbox kernel: [ 0.000000] E0000-FFFFF write-protect
Oct 28 21:42:41 tbox kernel: [ 0.000000] MTRR variable ranges enabled:
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0 base 000000000 mask FC0000000 write-back
Oct 28 21:42:41 tbox kernel: [ 0.000000] 1 base 03FF80000 mask FFFF80000 uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] 2 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 3 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 4 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 5 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 6 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 7 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] initial memory mapped : 0 - 01800000
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0000000000 - 0000400000 page 4k
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0000400000 - 0037400000 page 2M
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0037400000 - 00377fe000 page 4k
Oct 28 21:42:41 tbox kernel: [ 0.000000] kernel direct mapping tables up to 377fe000 @ 17fb000-1800000
Oct 28 21:42:41 tbox kernel: [ 0.000000] On node 0 totalpages: 261871
Oct 28 21:42:41 tbox kernel: [ 0.000000] free_area_init_node: node 0, pgdat c13bff80, node_mem_map f6ffd200
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA zone: 32 pages used for memmap
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA zone: 0 pages reserved
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
Oct 28 21:42:41 tbox kernel: [ 0.000000] Normal zone: 1744 pages used for memmap
Oct 28 21:42:41 tbox kernel: [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
Oct 28 21:42:41 tbox kernel: [ 0.000000] HighMem zone: 271 pages used for memmap
Oct 28 21:42:41 tbox kernel: [ 0.000000] HighMem zone: 34387 pages, LIFO batch:7
Oct 28 21:42:41 tbox kernel: [ 0.000000] nr_irqs_gsi: 16
Oct 28 21:42:41 tbox kernel: [ 0.000000] CPU 0 irqstacks, hard=f6408000 soft=f640a000
Oct 28 21:42:41 tbox kernel: [ 0.060844] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060848] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060852] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060856] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060860] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060864] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060884] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.061017] pci 0000:00:1d.0: reg 20: [io 0x1800-0x181f]
Oct 28 21:42:41 tbox kernel: [ 0.061091] pci 0000:00:1d.1: reg 20: [io 0x1820-0x183f]
Oct 28 21:42:41 tbox kernel: [ 0.061164] pci 0000:00:1d.2: reg 20: [io 0x1840-0x185f]
Oct 28 21:42:41 tbox kernel: [ 0.061227] pci 0000:00:1d.7: reg 10: [mem 0xc0000000-0xc00003ff]
Oct 28 21:42:41 tbox kernel: [ 0.061305] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.061311] pci 0000:00:1d.7: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.061462] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
Oct 28 21:42:41 tbox kernel: [ 0.061473] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
Oct 28 21:42:41 tbox kernel: [ 0.061483] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
Oct 28 21:42:41 tbox kernel: [ 0.061494] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
Oct 28 21:42:41 tbox kernel: [ 0.061504] pci 0000:00:1f.1: reg 20: [io 0x1860-0x186f]
Oct 28 21:42:41 tbox kernel: [ 0.061515] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
Oct 28 21:42:41 tbox kernel: [ 0.061584] pci 0000:00:1f.3: reg 20: [io 0x1880-0x189f]
Oct 28 21:42:41 tbox kernel: [ 0.061633] pci 0000:00:1f.5: reg 10: [io 0x1c00-0x1cff]
Oct 28 21:42:41 tbox kernel: [ 0.061642] pci 0000:00:1f.5: reg 14: [io 0x18c0-0x18ff]
Oct 28 21:42:41 tbox kernel: [ 0.061652] pci 0000:00:1f.5: reg 18: [mem 0xc0000c00-0xc0000dff]
Oct 28 21:42:41 tbox kernel: [ 0.061662] pci 0000:00:1f.5: reg 1c: [mem 0xc0000800-0xc00008ff]
Oct 28 21:42:41 tbox kernel: [ 0.061700] pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.061705] pci 0000:00:1f.5: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.061734] pci 0000:00:1f.6: reg 10: [io 0x2400-0x24ff]
Oct 28 21:42:41 tbox kernel: [ 0.061744] pci 0000:00:1f.6: reg 14: [io 0x2000-0x207f]
Oct 28 21:42:41 tbox kernel: [ 0.061794] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.061799] pci 0000:00:1f.6: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064031] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064040] pci 0000:01:00.0: reg 14: [io 0x3000-0x30ff]
Oct 28 21:42:41 tbox kernel: [ 0.064048] pci 0000:01:00.0: reg 18: [mem 0xc0100000-0xc010ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064072] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064091] pci 0000:01:00.0: supports D1 D2
Oct 28 21:42:41 tbox kernel: [ 0.064129] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Oct 28 21:42:41 tbox kernel: [ 0.064133] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
Oct 28 21:42:41 tbox kernel: [ 0.064137] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064176] pci 0000:02:00.0: reg 10: [mem 0xb0000000-0xb0000fff]
Oct 28 21:42:41 tbox kernel: [ 0.064195] pci 0000:02:00.0: supports D1 D2
Oct 28 21:42:41 tbox kernel: [ 0.064198] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.064203] pci 0000:02:00.0: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064237] pci 0000:02:00.1: reg 10: [mem 0xb1000000-0xb1000fff]
Oct 28 21:42:41 tbox kernel: [ 0.064256] pci 0000:02:00.1: supports D1 D2
Oct 28 21:42:41 tbox kernel: [ 0.064259] pci 0000:02:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.064264] pci 0000:02:00.1: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064306] pci 0000:02:01.0: reg 10: [mem 0xc0220000-0xc023ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064317] pci 0000:02:01.0: reg 14: [mem 0xc0200000-0xc020ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064327] pci 0000:02:01.0: reg 18: [io 0x8000-0x803f]
Oct 28 21:42:41 tbox kernel: [ 0.064359] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064382] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.064387] pci 0000:02:01.0: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064421] pci 0000:02:02.0: reg 10: [mem 0xc0210000-0xc021ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064524] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 0.064530] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 0.064535] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064539] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
Oct 28 21:42:41 tbox kernel: [ 0.064543] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
Oct 28 21:42:41 tbox kernel: [ 0.064617] pci_bus 0000:00: on NUMA node 0
Oct 28 21:42:41 tbox kernel: [ 0.064621] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Oct 28 21:42:41 tbox kernel: [ 0.064670] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
Oct 28 21:42:41 tbox kernel: [ 0.064695] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
Oct 28 21:42:41 tbox kernel: [ 0.069056] PCI: pci_cache_line_size set to 64 bytes
Oct 28 21:42:41 tbox kernel: [ 0.069119] reserve RAM buffer: 000000000009f000 - 000000000009ffff
Oct 28 21:42:41 tbox kernel: [ 0.069122] reserve RAM buffer: 000000003ff60000 - 000000003fffffff
Oct 28 21:42:41 tbox kernel: [ 0.071502] pnp 00:00: [mem 0x00000000-0x0009ffff]
Oct 28 21:42:41 tbox kernel: [ 0.071505] pnp 00:00: [mem 0x000c0000-0x000c3fff]
Oct 28 21:42:41 tbox kernel: [ 0.071509] pnp 00:00: [mem 0x000c4000-0x000c7fff]
Oct 28 21:42:41 tbox kernel: [ 0.071512] pnp 00:00: [mem 0x000c8000-0x000cbfff]
Oct 28 21:42:41 tbox kernel: [ 0.071515] pnp 00:00: [mem 0x000cc000-0x000cffff]
Oct 28 21:42:41 tbox kernel: [ 0.071518] pnp 00:00: [mem 0x000d0000-0x000d3fff]
Oct 28 21:42:41 tbox kernel: [ 0.071521] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
Oct 28 21:42:41 tbox kernel: [ 0.071524] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
Oct 28 21:42:41 tbox kernel: [ 0.071527] pnp 00:00: [mem 0x000dc000-0x000dffff]
Oct 28 21:42:41 tbox kernel: [ 0.071530] pnp 00:00: [mem 0x000e0000-0x000e3fff]
Oct 28 21:42:41 tbox kernel: [ 0.071533] pnp 00:00: [mem 0x000e4000-0x000e7fff]
Oct 28 21:42:41 tbox kernel: [ 0.071536] pnp 00:00: [mem 0x000e8000-0x000ebfff]
Oct 28 21:42:41 tbox kernel: [ 0.071539] pnp 00:00: [mem 0x000ec000-0x000effff]
Oct 28 21:42:41 tbox kernel: [ 0.071542] pnp 00:00: [mem 0x000f0000-0x000fffff]
Oct 28 21:42:41 tbox kernel: [ 0.071545] pnp 00:00: [mem 0x00100000-0x3fffffff]
Oct 28 21:42:41 tbox kernel: [ 0.071548] pnp 00:00: [mem 0xfec00000-0xffffffff]
Oct 28 21:42:41 tbox kernel: [ 0.071622] pnp 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071651] pnp 00:01: [bus 00-ff]
Oct 28 21:42:41 tbox kernel: [ 0.071654] pnp 00:01: [io 0x0cf8-0x0cff]
Oct 28 21:42:41 tbox kernel: [ 0.071657] pnp 00:01: [io 0x0000-0x0cf7 window]
Oct 28 21:42:41 tbox kernel: [ 0.071660] pnp 00:01: [io 0x0d00-0xffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071670] pnp 00:01: [mem 0x000a0000-0x000bffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071673] pnp 00:01: [mem 0x000c0000-0x000c3fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071676] pnp 00:01: [mem 0x000c4000-0x000c7fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071679] pnp 00:01: [mem 0x000c8000-0x000cbfff window]
Oct 28 21:42:41 tbox kernel: [ 0.071683] pnp 00:01: [mem 0x000cc000-0x000cffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071686] pnp 00:01: [mem 0x000d0000-0x000d3fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071689] pnp 00:01: [mem 0x000d4000-0x000d7fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071692] pnp 00:01: [mem 0x000d8000-0x000dbfff window]
Oct 28 21:42:41 tbox kernel: [ 0.071696] pnp 00:01: [mem 0x000dc000-0x000dffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071699] pnp 00:01: [mem 0x000e0000-0x000e3fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071702] pnp 00:01: [mem 0x000e4000-0x000e7fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071705] pnp 00:01: [mem 0x000e8000-0x000ebfff window]
Oct 28 21:42:41 tbox kernel: [ 0.071708] pnp 00:01: [mem 0x000ec000-0x000effff window]
Oct 28 21:42:41 tbox kernel: [ 0.071712] pnp 00:01: [mem 0x40000000-0xfebfffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071771] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071911] pnp 00:02: [io 0x0010-0x001f]
Oct 28 21:42:41 tbox kernel: [ 0.071914] pnp 00:02: [io 0x0090-0x009f]
Oct 28 21:42:41 tbox kernel: [ 0.071917] pnp 00:02: [io 0x0024-0x0025]
Oct 28 21:42:41 tbox kernel: [ 0.071920] pnp 00:02: [io 0x0028-0x0029]
Oct 28 21:42:41 tbox kernel: [ 0.071922] pnp 00:02: [io 0x002c-0x002d]
Oct 28 21:42:41 tbox kernel: [ 0.071925] pnp 00:02: [io 0x0030-0x0031]
Oct 28 21:42:41 tbox kernel: [ 0.071928] pnp 00:02: [io 0x0034-0x0035]
Oct 28 21:42:41 tbox kernel: [ 0.071931] pnp 00:02: [io 0x0038-0x0039]
Oct 28 21:42:41 tbox kernel: [ 0.071933] pnp 00:02: [io 0x003c-0x003d]
Oct 28 21:42:41 tbox kernel: [ 0.071936] pnp 00:02: [io 0x00a4-0x00a5]
Oct 28 21:42:41 tbox kernel: [ 0.071939] pnp 00:02: [io 0x00a8-0x00a9]
Oct 28 21:42:41 tbox kernel: [ 0.071942] pnp 00:02: [io 0x00ac-0x00ad]
Oct 28 21:42:41 tbox kernel: [ 0.071944] pnp 00:02: [io 0x00b0-0x00b5]
Oct 28 21:42:41 tbox kernel: [ 0.071947] pnp 00:02: [io 0x00b8-0x00b9]
Oct 28 21:42:41 tbox kernel: [ 0.071950] pnp 00:02: [io 0x00bc-0x00bd]
Oct 28 21:42:41 tbox kernel: [ 0.071952] pnp 00:02: [io 0x0050-0x0053]
Oct 28 21:42:41 tbox kernel: [ 0.071955] pnp 00:02: [io 0x0072-0x0077]
Oct 28 21:42:41 tbox kernel: [ 0.071958] pnp 00:02: [io 0x002e-0x002f]
Oct 28 21:42:41 tbox kernel: [ 0.071961] pnp 00:02: [io 0x1000-0x107f]
Oct 28 21:42:41 tbox kernel: [ 0.071963] pnp 00:02: [io 0x1180-0x11bf]
Oct 28 21:42:41 tbox kernel: [ 0.071966] pnp 00:02: [io 0x15e0-0x15ef]
Oct 28 21:42:41 tbox kernel: [ 0.071969] pnp 00:02: [io 0x1600-0x162f]
Oct 28 21:42:41 tbox kernel: [ 0.071972] pnp 00:02: [io 0x1632-0x167f]
Oct 28 21:42:41 tbox kernel: [ 0.071974] pnp 00:02: [io 0x004e-0x004f]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:02: [io 0x1630-0x1631]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [io 0x0000-0x000f]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [io 0x0080-0x008f]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [io 0x00c0-0x00df]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [dma 4]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:04: [io 0x0061]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:05: [io 0x00f0]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:05: [irq 13]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:06: [io 0x0070-0x0071]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:06: [irq 8]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: [io 0x0060]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: [io 0x0064]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: [irq 1]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:08: [irq 12]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [io 0x03f0-0x03f5]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [io 0x03f7]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [irq 6]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [dma 2]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: Plug and Play ACPI device, IDs PNP0700 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0a: [io 0x03f8-0x03ff]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0a: [irq 4]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0b: [io 0x03bc-0x03be]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0b: [irq 7]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0c: Plug and Play ACPI device, IDs IBM0071 PNP0511 (disabled)
Oct 28 21:42:41 tbox kernel: [ 0.109872] pci 0000:00:1e.0: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 0.110134] PCI: setting IRQ 11 as level-triggered
Oct 28 21:42:41 tbox kernel: [ 0.110375] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
Oct 28 21:42:41 tbox kernel: [ 0.110379] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110382] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
Oct 28 21:42:41 tbox kernel: [ 0.110386] pci_bus 0000:01: resource 1 [mem 0xc0100000-0xc01fffff]
Oct 28 21:42:41 tbox kernel: [ 0.110389] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110393] pci_bus 0000:02: resource 0 [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 0.110396] pci_bus 0000:02: resource 1 [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110400] pci_bus 0000:02: resource 2 [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110403] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
Oct 28 21:42:41 tbox kernel: [ 0.110406] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110410] pci_bus 0000:03: resource 0 [io 0x4000-0x40ff]
Oct 28 21:42:41 tbox kernel: [ 0.110413] pci_bus 0000:03: resource 1 [io 0x4400-0x44ff]
Oct 28 21:42:41 tbox kernel: [ 0.110417] pci_bus 0000:03: resource 2 [mem 0xe8000000-0xebffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110420] pci_bus 0000:03: resource 3 [mem 0xc4000000-0xc7ffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110423] pci_bus 0000:07: resource 0 [io 0x4800-0x48ff]
Oct 28 21:42:41 tbox kernel: [ 0.110427] pci_bus 0000:07: resource 1 [io 0x4c00-0x4cff]
Oct 28 21:42:41 tbox kernel: [ 0.110430] pci_bus 0000:07: resource 2 [mem 0xec000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110434] pci_bus 0000:07: resource 3 [mem 0xc8000000-0xcbffffff]
Oct 28 21:42:41 tbox kernel: [ 0.114390] pci 0000:01:00.0: Boot video device
Oct 28 21:42:41 tbox kernel: [ 0.114408] PCI: CLS 32 bytes, default 64
Oct 28 21:42:41 tbox kernel: [ 0.952204] PM: Hibernation image not present or could not be loaded.
Oct 28 21:42:41 tbox kernel: [ 1.614439] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.618421] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
Oct 28 21:42:41 tbox kernel: [ 1.641631] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.642762] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.643402] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.684752] libata version 3.00 loaded.
Oct 28 21:42:41 tbox kernel: [ 1.691330] ata_piix 0000:00:1f.1: version 2.13
Oct 28 21:42:41 tbox kernel: [ 1.691411] ata_piix 0000:00:1f.1: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.848422] ata2.01: NODEV after polling detection
Oct 28 21:42:41 tbox kernel: [ 1.907829] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 28 21:42:41 tbox kernel: [ 1.912425] sr 1:0:0:0: Attached scsi CD-ROM sr0
Oct 28 21:42:41 tbox kernel: [ 3.200190] sd 2:0:0:0: [sdb] Mode Sense: 34 00 00 00
Oct 28 21:42:41 tbox kernel: [ 6.684608] ACPI: acpi_idle registered with cpuidle
Oct 28 21:42:41 tbox kernel: [ 7.730989] nsc-ircc 00:0c: [io 0x02f8-0x02ff]
Oct 28 21:42:41 tbox kernel: [ 7.731051] nsc-ircc 00:0c: [irq 3]
Oct 28 21:42:41 tbox kernel: [ 7.731056] nsc-ircc 00:0c: [dma 1]
Oct 28 21:42:41 tbox kernel: [ 8.170763] Registered led device: tpacpi::thinklight
Oct 28 21:42:41 tbox kernel: [ 8.171652] Registered led device: tpacpi::power
Oct 28 21:42:41 tbox kernel: [ 8.171990] Registered led device: tpacpi::standby
Oct 28 21:42:41 tbox kernel: [ 8.578476] ath: EEPROM regdomain: 0x61
Oct 28 21:42:41 tbox kernel: [ 8.578479] ath: EEPROM indicates we should expect a direct regpair map
Oct 28 21:42:41 tbox kernel: [ 8.578485] ath: Country alpha2 being used: 00
Oct 28 21:42:41 tbox kernel: [ 8.578487] ath: Regpair used: 0x61
Oct 28 21:42:41 tbox kernel: [ 8.693726] Intel ICH 0000:00:1f.5: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 8.721299] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Oct 28 21:42:41 tbox kernel: [ 8.722206] Registered led device: ath5k-phy0::rx
Oct 28 21:42:41 tbox kernel: [ 8.722234] Registered led device: ath5k-phy0::tx
Oct 28 21:42:41 tbox kernel: [ 9.617540] Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
Oct 28 21:42:43 tbox kernel: [ 18.660168] wlan0: authenticate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:42:43 tbox kernel: [ 18.661618] wlan0: authenticated
Oct 28 21:42:43 tbox kernel: [ 18.661655] wlan0: associate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:42:43 tbox kernel: [ 18.665511] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
Oct 28 21:42:43 tbox kernel: [ 18.665522] wlan0: associated
Oct 28 21:42:53 tbox kernel: [ 29.384046] wlan0: no IPv6 routers present
[-- Attachment #4: kern.log --]
[-- Type: application/octet-stream, Size: 93108 bytes --]
Oct 28 21:15:24 tbox kernel: [ 14.632285] clean.
Oct 28 21:15:24 tbox kernel: [ 14.632352] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
Oct 28 21:15:24 tbox kernel: [ 14.632414] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.632475] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.632540] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.636944] Intel ICH 0000:00:1f.5: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 14.637047] Intel ICH 0000:00:1f.5: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 14.652213] [drm] radeon kernel modesetting enabled.
Oct 28 21:15:24 tbox kernel: [ 14.652460] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 14.652474] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 14.652486] radeon 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 14.657394] [drm] initializing kernel modesetting (RV250 0x1002:0x4C66).
Oct 28 21:15:24 tbox kernel: [ 14.657588] [drm] register mmio base: 0xC0100000
Oct 28 21:15:24 tbox kernel: [ 14.657591] [drm] register mmio size: 65536
Oct 28 21:15:24 tbox kernel: [ 14.657969] agpgart-intel 0000:00:00.0: AGP 2.0 bridge
Oct 28 21:15:24 tbox kernel: [ 14.657990] agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x mode
Oct 28 21:15:24 tbox kernel: [ 14.658029] radeon 0000:01:00.0: putting AGP V2 device into 4x mode
Oct 28 21:15:24 tbox kernel: [ 14.658059] radeon 0000:01:00.0: GTT: 256M 0xD0000000 - 0xDFFFFFFF
Oct 28 21:15:24 tbox kernel: [ 14.658069] radeon 0000:01:00.0: VRAM: 128M 0xE0000000 - 0xE7FFFFFF (64M used)
Oct 28 21:15:24 tbox kernel: [ 14.658079] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
Oct 28 21:15:24 tbox kernel: [ 14.658082] [drm] Driver supports precise vblank timestamp query.
Oct 28 21:15:24 tbox kernel: [ 14.658105] [drm] radeon: irq initialized.
Oct 28 21:15:24 tbox kernel: [ 14.659168] [drm] Detected VRAM RAM=128M, BAR=128M
Oct 28 21:15:24 tbox kernel: [ 14.659172] [drm] RAM width 128bits DDR
Oct 28 21:15:24 tbox kernel: [ 14.659246] [TTM] Zone kernel: Available graphics memory: 447570 kiB.
Oct 28 21:15:24 tbox kernel: [ 14.659249] [TTM] Zone highmem: Available graphics memory: 516886 kiB.
Oct 28 21:15:24 tbox kernel: [ 14.659252] [TTM] Initializing pool allocator.
Oct 28 21:15:24 tbox kernel: [ 14.659281] [drm] radeon: 64M of VRAM memory ready
Oct 28 21:15:24 tbox kernel: [ 14.659284] [drm] radeon: 256M of GTT memory ready.
Oct 28 21:15:24 tbox kernel: [ 14.660766] radeon 0000:01:00.0: WB enabled
Oct 28 21:15:24 tbox kernel: [ 14.661409] [drm] Loading R200 Microcode
Oct 28 21:15:24 tbox kernel: [ 14.699544] ath: EEPROM regdomain: 0x61
Oct 28 21:15:24 tbox kernel: [ 14.699548] ath: EEPROM indicates we should expect a direct regpair map
Oct 28 21:15:24 tbox kernel: [ 14.699554] ath: Country alpha2 being used: 00
Oct 28 21:15:24 tbox kernel: [ 14.699556] ath: Regpair used: 0x61
Oct 28 21:15:24 tbox kernel: [ 14.748421] [drm] radeon: ring at 0x00000000D0001000
Oct 28 21:15:24 tbox kernel: [ 14.748445] [drm] ring test succeeded in 1 usecs
Oct 28 21:15:24 tbox kernel: [ 14.748704] [drm] radeon: ib pool ready.
Oct 28 21:15:24 tbox kernel: [ 14.748802] [drm] ib test succeeded in 0 usecs
Oct 28 21:15:24 tbox kernel: [ 14.749096] [drm] Panel ID String: SXGA+ Single (85MHz)
Oct 28 21:15:24 tbox kernel: [ 14.749099] [drm] Panel Size 1400x1050
Oct 28 21:15:24 tbox kernel: [ 14.760092] [drm] radeon legacy LVDS backlight initialized
Oct 28 21:15:24 tbox kernel: [ 14.764750] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Oct 28 21:15:24 tbox kernel: [ 14.765700] Registered led device: ath5k-phy0::rx
Oct 28 21:15:24 tbox kernel: [ 14.765729] Registered led device: ath5k-phy0::tx
Oct 28 21:15:24 tbox kernel: [ 14.765741] ath5k phy0: Atheros AR5212 chip found (MAC: 0x56, PHY: 0x41)
Oct 28 21:15:24 tbox kernel: [ 14.765744] ath5k phy0: RF5111 5GHz radio found (0x17)
Oct 28 21:15:24 tbox kernel: [ 14.765747] ath5k phy0: RF2111 2GHz radio found (0x23)
Oct 28 21:15:24 tbox kernel: [ 14.768671] [drm] No TV DAC info found in BIOS
Oct 28 21:15:24 tbox kernel: [ 14.768779] [drm] Radeon Display Connectors
Oct 28 21:15:24 tbox kernel: [ 14.768781] [drm] Connector 0:
Oct 28 21:15:24 tbox kernel: [ 14.768783] [drm] VGA
Oct 28 21:15:24 tbox kernel: [ 14.768787] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
Oct 28 21:15:24 tbox kernel: [ 14.768790] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768792] [drm] CRT1: INTERNAL_DAC1
Oct 28 21:15:24 tbox kernel: [ 14.768794] [drm] Connector 1:
Oct 28 21:15:24 tbox kernel: [ 14.768796] [drm] DVI-D
Oct 28 21:15:24 tbox kernel: [ 14.768798] [drm] HPD1
Oct 28 21:15:24 tbox kernel: [ 14.768801] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
Oct 28 21:15:24 tbox kernel: [ 14.768804] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768806] [drm] DFP1: INTERNAL_TMDS1
Oct 28 21:15:24 tbox kernel: [ 14.768808] [drm] Connector 2:
Oct 28 21:15:24 tbox kernel: [ 14.768810] [drm] LVDS
Oct 28 21:15:24 tbox kernel: [ 14.768811] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768813] [drm] LCD1: INTERNAL_LVDS
Oct 28 21:15:24 tbox kernel: [ 14.768815] [drm] Connector 3:
Oct 28 21:15:24 tbox kernel: [ 14.768817] [drm] S-video
Oct 28 21:15:24 tbox kernel: [ 14.768819] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768821] [drm] TV1: INTERNAL_DAC2
Oct 28 21:15:24 tbox kernel: [ 14.787425] [drm] radeon: power management initialized
Oct 28 21:15:24 tbox kernel: [ 14.876153] [drm] fb mappable at 0xE0040000
Oct 28 21:15:24 tbox kernel: [ 14.876158] [drm] vram apper at 0xE0000000
Oct 28 21:15:24 tbox kernel: [ 14.876160] [drm] size 5914624
Oct 28 21:15:24 tbox kernel: [ 14.876162] [drm] fb depth is 24
Oct 28 21:15:24 tbox kernel: [ 14.876164] [drm] pitch is 5632
Oct 28 21:15:24 tbox kernel: [ 14.945647] Console: switching to colour frame buffer device 175x65
Oct 28 21:15:24 tbox kernel: [ 14.980430] fb0: radeondrmfb frame buffer device
Oct 28 21:15:24 tbox kernel: [ 14.980432] drm: registered panic notifier
Oct 28 21:15:24 tbox kernel: [ 14.980666] [drm] Initialized radeon 2.7.0 20080528 for 0000:01:00.0 on minor 0
Oct 28 21:15:24 tbox kernel: [ 15.560039] intel8x0_measure_ac97_clock: measured 55394 usecs (2669 samples)
Oct 28 21:15:24 tbox kernel: [ 15.560045] intel8x0: clocking to 48000
Oct 28 21:15:24 tbox kernel: [ 15.561553] Intel ICH Modem 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 15.561581] Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 16.233693] Adding 1052244k swap on /dev/sda2. Priority:-1 extents:1 across:1052244k
Oct 28 21:15:24 tbox kernel: [ 16.240295] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:15:24 tbox kernel: [ 16.869841] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:15:24 tbox kernel: [ 18.095532] init[1]: tmpwatch.service: main process exited, code=exited, status=203
Oct 28 21:15:24 tbox kernel: [ 18.095668] init[1]: Unit tmpwatch.service entered failed state.
Oct 28 21:15:24 tbox kernel: [ 18.988405] ADDRCONF(NETDEV_UP): wlan0: link is not ready
Oct 28 21:15:24 tbox kernel: [ 20.048511] IBM TrackPoint firmware: 0x0e, buttons: 3/3
Oct 28 21:15:24 tbox kernel: [ 20.251736] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input9
Oct 28 21:15:25 tbox kernel: [ 22.323731] lp0: using parport0 (interrupt-driven).
Oct 28 21:15:25 tbox kernel: [ 22.368740] ppdev: user-space parallel port driver
Oct 28 21:15:26 tbox kernel: [ 22.657333] sshd (1367): /proc/1367/oom_adj is deprecated, please use /proc/1367/oom_score_adj instead.
Oct 28 21:15:27 tbox kernel: [ 23.800827] P-state transition latency capped at 20 uS
Oct 28 21:15:27 tbox kernel: [ 24.327910] Bluetooth: Core ver 2.15
Oct 28 21:15:27 tbox kernel: [ 24.327943] NET: Registered protocol family 31
Oct 28 21:15:27 tbox kernel: [ 24.327945] Bluetooth: HCI device and connection manager initialized
Oct 28 21:15:27 tbox kernel: [ 24.327950] Bluetooth: HCI socket layer initialized
Oct 28 21:15:27 tbox kernel: [ 24.372207] wlan0: authenticate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:15:27 tbox kernel: [ 24.374792] wlan0: authenticated
Oct 28 21:15:27 tbox kernel: [ 24.374831] wlan0: associate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:15:27 tbox kernel: [ 24.380317] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
Oct 28 21:15:27 tbox kernel: [ 24.380327] wlan0: associated
Oct 28 21:15:27 tbox kernel: [ 24.382373] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Oct 28 21:15:28 tbox kernel: [ 24.446975] Bluetooth: L2CAP ver 2.15
Oct 28 21:15:28 tbox kernel: [ 24.446980] Bluetooth: L2CAP socket layer initialized
Oct 28 21:15:28 tbox kernel: [ 24.597871] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 28 21:15:28 tbox kernel: [ 24.597875] Bluetooth: BNEP filters: protocol multicast
Oct 28 21:15:28 tbox kernel: [ 24.603912] Bluetooth: RFCOMM TTY layer initialized
Oct 28 21:15:28 tbox kernel: [ 24.603919] Bluetooth: RFCOMM socket layer initialized
Oct 28 21:15:28 tbox kernel: [ 24.603922] Bluetooth: RFCOMM ver 1.11
Oct 28 21:15:28 tbox kernel: [ 25.243227] Bluetooth: SCO (Voice Link) ver 0.6
Oct 28 21:15:28 tbox kernel: [ 25.243232] Bluetooth: SCO socket layer initialized
Oct 28 21:15:29 tbox kernel: [ 25.476743] padlock: VIA PadLock not detected.
Oct 28 21:15:38 tbox kernel: [ 34.832041] wlan0: no IPv6 routers present
Oct 28 21:29:44 tbox kernel: [ 880.824137] EXT3-fs: barriers not enabled
Oct 28 21:29:44 tbox kernel: [ 880.846819] kjournald starting. Commit interval 5 seconds
Oct 28 21:29:44 tbox kernel: [ 880.847089] EXT3-fs (sdb5): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:29:44 tbox kernel: [ 880.847853] EXT3-fs (sdb5): using internal journal
Oct 28 21:29:44 tbox kernel: [ 880.847866] EXT3-fs (sdb5): mounted filesystem with ordered data mode
Oct 28 21:42:00 tbox kernel: Kernel logging (proc) stopped.
Oct 28 21:42:41 tbox kernel: imklog 4.6.4, log source = /proc/kmsg started.
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing cgroup subsys cpuset
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing cgroup subsys cpu
Oct 28 21:42:41 tbox kernel: [ 0.000000] Linux version 2.6.36-git11.sd.1-686 (Debian 2.6.36-9~git11.sd.1~dileks.1) (sedat.dilek@gmail.com) (gcc version 4.4.5 (Debian 4.4.5-5) ) #1 SMP Thu Oct 28 18:58:11 CEST 2010
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-provided physical RAM map:
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 000000003ff60000 (usable)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000003ff60000 - 000000003ff77000 (ACPI data)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000003ff77000 - 000000003ff79000 (ACPI NVS)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000003ff80000 - 0000000040000000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Notice: NX (Execute Disable) protection missing in CPU or disabled in BIOS!
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMI present.
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMI: 2374SG6/2374SG6, BIOS 1RETDRWW (3.23 ) 06/18/2007
Oct 28 21:42:41 tbox kernel: [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Oct 28 21:42:41 tbox kernel: [ 0.000000] last_pfn = 0x3ff60 max_arch_pfn = 0x100000
Oct 28 21:42:41 tbox kernel: [ 0.000000] MTRR default type: uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] MTRR fixed ranges enabled:
Oct 28 21:42:41 tbox kernel: [ 0.000000] 00000-9FFFF write-back
Oct 28 21:42:41 tbox kernel: [ 0.000000] A0000-BFFFF uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] C0000-CFFFF write-protect
Oct 28 21:42:41 tbox kernel: [ 0.000000] D0000-DBFFF uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] DC000-DFFFF write-back
Oct 28 21:42:41 tbox kernel: [ 0.000000] E0000-FFFFF write-protect
Oct 28 21:42:41 tbox kernel: [ 0.000000] MTRR variable ranges enabled:
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0 base 000000000 mask FC0000000 write-back
Oct 28 21:42:41 tbox kernel: [ 0.000000] 1 base 03FF80000 mask FFFF80000 uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] 2 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 3 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 4 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 5 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 6 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 7 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] PAT not supported by CPU.
Oct 28 21:42:41 tbox kernel: [ 0.000000] initial memory mapped : 0 - 01800000
Oct 28 21:42:41 tbox kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0000000000 - 0000400000 page 4k
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0000400000 - 0037400000 page 2M
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0037400000 - 00377fe000 page 4k
Oct 28 21:42:41 tbox kernel: [ 0.000000] kernel direct mapping tables up to 377fe000 @ 17fb000-1800000
Oct 28 21:42:41 tbox kernel: [ 0.000000] RAMDISK: 2f5cd000 - 2ffc8000
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: RSDP 000f6d70 00024 (v02 IBM )
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: XSDT 3ff6a672 0004C (v01 IBM TP-1R 00003230 LTP 00000000)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: FACP 3ff6a700 000F4 (v03 IBM TP-1R 00003230 IBM 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20101013/tbfadt-526)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20101013/tbfadt-557)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: DSDT 3ff6a8e7 0C530 (v01 IBM TP-1R 00003230 MSFT 0100000E)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: FACS 3ff78000 00040
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: SSDT 3ff6a8b4 00033 (v01 IBM TP-1R 00003230 MSFT 0100000E)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: ECDT 3ff76e17 00052 (v01 IBM TP-1R 00003230 IBM 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: TCPA 3ff76e69 00032 (v01 IBM TP-1R 00003230 PTL 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: BOOT 3ff76fd8 00028 (v01 IBM TP-1R 00003230 LTP 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] 135MB HIGHMEM available.
Oct 28 21:42:41 tbox kernel: [ 0.000000] 887MB LOWMEM available.
Oct 28 21:42:41 tbox kernel: [ 0.000000] mapped low ram: 0 - 377fe000
Oct 28 21:42:41 tbox kernel: [ 0.000000] low ram: 0 - 377fe000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Zone PFN ranges:
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Normal 0x00001000 -> 0x000377fe
Oct 28 21:42:41 tbox kernel: [ 0.000000] HighMem 0x000377fe -> 0x0003ff60
Oct 28 21:42:41 tbox kernel: [ 0.000000] Movable zone start PFN for each node
Oct 28 21:42:41 tbox kernel: [ 0.000000] early_node_map[2] active PFN ranges
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009f
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0: 0x00000100 -> 0x0003ff60
Oct 28 21:42:41 tbox kernel: [ 0.000000] On node 0 totalpages: 261871
Oct 28 21:42:41 tbox kernel: [ 0.000000] free_area_init_node: node 0, pgdat c13bff80, node_mem_map f6ffd200
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA zone: 32 pages used for memmap
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA zone: 0 pages reserved
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
Oct 28 21:42:41 tbox kernel: [ 0.000000] Normal zone: 1744 pages used for memmap
Oct 28 21:42:41 tbox kernel: [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
Oct 28 21:42:41 tbox kernel: [ 0.000000] HighMem zone: 271 pages used for memmap
Oct 28 21:42:41 tbox kernel: [ 0.000000] HighMem zone: 34387 pages, LIFO batch:7
Oct 28 21:42:41 tbox kernel: [ 0.000000] Using APIC driver default
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
Oct 28 21:42:41 tbox kernel: [ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
Oct 28 21:42:41 tbox kernel: [ 0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
Oct 28 21:42:41 tbox kernel: [ 0.000000] APIC: disable apic facility
Oct 28 21:42:41 tbox kernel: [ 0.000000] APIC: switched to apic NOOP
Oct 28 21:42:41 tbox kernel: [ 0.000000] nr_irqs_gsi: 16
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bf800000)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
Oct 28 21:42:41 tbox kernel: [ 0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:1 nr_node_ids:1
Oct 28 21:42:41 tbox kernel: [ 0.000000] PERCPU: Embedded 12 pages/cpu @f6800000 s26880 r0 d22272 u4194304
Oct 28 21:42:41 tbox kernel: [ 0.000000] pcpu-alloc: s26880 r0 d22272 u4194304 alloc=1*4194304
Oct 28 21:42:41 tbox kernel: [ 0.000000] pcpu-alloc: [0] 0
Oct 28 21:42:41 tbox kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259824
Oct 28 21:42:41 tbox kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.36-git11.sd.1-686 root=UUID=1ceb69a7-ecf4-47e9-a231-b74e0f0a9b62 ro radeon.modeset=1 3 quiet
Oct 28 21:42:41 tbox kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing CPU#0
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing HighMem for node 0 (000377fe:0003ff60)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Memory: 1023172k/1047936k available (2594k kernel code, 24312k reserved, 1282k data, 388k init, 138632k highmem)
Oct 28 21:42:41 tbox kernel: [ 0.000000] virtual kernel memory layout:
Oct 28 21:42:41 tbox kernel: [ 0.000000] fixmap : 0xffd36000 - 0xfffff000 (2852 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] .init : 0xc13ca000 - 0xc142b000 ( 388 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] .data : 0xc1288bb4 - 0xc13c9538 (1282 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] .text : 0xc1000000 - 0xc1288bb4 (2594 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
Oct 28 21:42:41 tbox kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Oct 28 21:42:41 tbox kernel: [ 0.000000] Hierarchical RCU implementation.
Oct 28 21:42:41 tbox kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
Oct 28 21:42:41 tbox kernel: [ 0.000000] RCU-based detection of stalled CPUs is disabled.
Oct 28 21:42:41 tbox kernel: [ 0.000000] NR_IRQS:1280
Oct 28 21:42:41 tbox kernel: [ 0.000000] CPU 0 irqstacks, hard=f6408000 soft=f640a000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Extended CMOS year: 2000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Console: colour VGA+ 80x25
Oct 28 21:42:41 tbox kernel: [ 0.000000] console [tty0] enabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] Fast TSC calibration using PIT
Oct 28 21:42:41 tbox kernel: [ 0.000000] Detected 1694.278 MHz processor.
Oct 28 21:42:41 tbox kernel: [ 0.008008] Calibrating delay loop (skipped), value calculated using timer frequency.. 3388.55 BogoMIPS (lpj=6777112)
Oct 28 21:42:41 tbox kernel: [ 0.008014] pid_max: default: 32768 minimum: 301
Oct 28 21:42:41 tbox kernel: [ 0.008049] Security Framework initialized
Oct 28 21:42:41 tbox kernel: [ 0.008059] SELinux: Disabled at boot.
Oct 28 21:42:41 tbox kernel: [ 0.008081] Mount-cache hash table entries: 512
Oct 28 21:42:41 tbox kernel: [ 0.008291] Initializing cgroup subsys ns
Oct 28 21:42:41 tbox kernel: [ 0.008298] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
Oct 28 21:42:41 tbox kernel: [ 0.008302] Initializing cgroup subsys cpuacct
Oct 28 21:42:41 tbox kernel: [ 0.008308] Initializing cgroup subsys devices
Oct 28 21:42:41 tbox kernel: [ 0.008311] Initializing cgroup subsys freezer
Oct 28 21:42:41 tbox kernel: [ 0.008314] Initializing cgroup subsys net_cls
Oct 28 21:42:41 tbox kernel: [ 0.008318] Initializing cgroup subsys blkio
Oct 28 21:42:41 tbox kernel: [ 0.008372] mce: CPU supports 5 MCE banks
Oct 28 21:42:41 tbox kernel: [ 0.008397] Performance Events:
Oct 28 21:42:41 tbox kernel: [ 0.008400] no APIC, boot with the "lapic" boot parameter to force-enable it.
Oct 28 21:42:41 tbox kernel: [ 0.008403] no hardware sampling interrupt available.
Oct 28 21:42:41 tbox kernel: [ 0.008405] p6 PMU driver.
Oct 28 21:42:41 tbox kernel: [ 0.008411] ... version: 0
Oct 28 21:42:41 tbox kernel: [ 0.008413] ... bit width: 32
Oct 28 21:42:41 tbox kernel: [ 0.008415] ... generic registers: 2
Oct 28 21:42:41 tbox kernel: [ 0.008418] ... value mask: 00000000ffffffff
Oct 28 21:42:41 tbox kernel: [ 0.008420] ... max period: 000000007fffffff
Oct 28 21:42:41 tbox kernel: [ 0.008422] ... fixed-purpose events: 0
Oct 28 21:42:41 tbox kernel: [ 0.008425] ... event mask: 0000000000000003
Oct 28 21:42:41 tbox kernel: [ 0.008947] SMP alternatives: switching to UP code
Oct 28 21:42:41 tbox kernel: [ 0.013686] Freeing SMP alternatives: 16k freed
Oct 28 21:42:41 tbox kernel: [ 0.013694] ACPI: Core revision 20101013
Oct 28 21:42:41 tbox kernel: [ 0.029767] ACPI: setting ELCR to 0200 (from 0800)
Oct 28 21:42:41 tbox kernel: [ 0.032080] weird, boot CPU (#0) not listed by the BIOS.
Oct 28 21:42:41 tbox kernel: [ 0.032083] SMP motherboard not detected.
Oct 28 21:42:41 tbox kernel: [ 0.032086] Local APIC not detected. Using dummy APIC emulation.
Oct 28 21:42:41 tbox kernel: [ 0.032088] SMP disabled
Oct 28 21:42:41 tbox kernel: [ 0.032440] Brought up 1 CPUs
Oct 28 21:42:41 tbox kernel: [ 0.032443] Total of 1 processors activated (3388.55 BogoMIPS).
Oct 28 21:42:41 tbox kernel: [ 0.036162] devtmpfs: initialized
Oct 28 21:42:41 tbox kernel: [ 0.036579] regulator: core version 0.5
Oct 28 21:42:41 tbox kernel: [ 0.036632] NET: Registered protocol family 16
Oct 28 21:42:41 tbox kernel: [ 0.036756] ACPI: bus type pci registered
Oct 28 21:42:41 tbox kernel: [ 0.037076] PCI: PCI BIOS revision 2.10 entry at 0xfd8d6, last bus=8
Oct 28 21:42:41 tbox kernel: [ 0.037079] PCI: Using configuration type 1 for base access
Oct 28 21:42:41 tbox kernel: [ 0.037566] bio: create slab <bio-0> at 0
Oct 28 21:42:41 tbox kernel: [ 0.039245] ACPI: EC: EC description table is found, configuring boot EC
Oct 28 21:42:41 tbox kernel: [ 0.054262] ACPI: Interpreter enabled
Oct 28 21:42:41 tbox kernel: [ 0.054267] ACPI: (supports S0 S3 S4 S5)
Oct 28 21:42:41 tbox kernel: [ 0.054291] ACPI: Using PIC for interrupt routing
Oct 28 21:42:41 tbox kernel: [ 0.060784] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
Oct 28 21:42:41 tbox kernel: [ 0.060826] ACPI: Power Resource [PUBS] (on)
Oct 28 21:42:41 tbox kernel: [ 0.060826] ACPI: ACPI Dock Station Driver: 3 docks/bays found
Oct 28 21:42:41 tbox kernel: [ 0.060826] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
Oct 28 21:42:41 tbox kernel: [ 0.060826] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Oct 28 21:42:41 tbox kernel: [ 0.060844] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060848] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060852] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060856] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060860] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060864] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060884] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.061017] pci 0000:00:1d.0: reg 20: [io 0x1800-0x181f]
Oct 28 21:42:41 tbox kernel: [ 0.061091] pci 0000:00:1d.1: reg 20: [io 0x1820-0x183f]
Oct 28 21:42:41 tbox kernel: [ 0.061164] pci 0000:00:1d.2: reg 20: [io 0x1840-0x185f]
Oct 28 21:42:41 tbox kernel: [ 0.061227] pci 0000:00:1d.7: reg 10: [mem 0xc0000000-0xc00003ff]
Oct 28 21:42:41 tbox kernel: [ 0.061305] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.061311] pci 0000:00:1d.7: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.061430] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH4 ACPI/GPIO/TCO
Oct 28 21:42:41 tbox kernel: [ 0.061435] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH4 GPIO
Oct 28 21:42:41 tbox kernel: [ 0.061462] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
Oct 28 21:42:41 tbox kernel: [ 0.061473] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
Oct 28 21:42:41 tbox kernel: [ 0.061483] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
Oct 28 21:42:41 tbox kernel: [ 0.061494] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
Oct 28 21:42:41 tbox kernel: [ 0.061504] pci 0000:00:1f.1: reg 20: [io 0x1860-0x186f]
Oct 28 21:42:41 tbox kernel: [ 0.061515] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
Oct 28 21:42:41 tbox kernel: [ 0.061584] pci 0000:00:1f.3: reg 20: [io 0x1880-0x189f]
Oct 28 21:42:41 tbox kernel: [ 0.061633] pci 0000:00:1f.5: reg 10: [io 0x1c00-0x1cff]
Oct 28 21:42:41 tbox kernel: [ 0.061642] pci 0000:00:1f.5: reg 14: [io 0x18c0-0x18ff]
Oct 28 21:42:41 tbox kernel: [ 0.061652] pci 0000:00:1f.5: reg 18: [mem 0xc0000c00-0xc0000dff]
Oct 28 21:42:41 tbox kernel: [ 0.061662] pci 0000:00:1f.5: reg 1c: [mem 0xc0000800-0xc00008ff]
Oct 28 21:42:41 tbox kernel: [ 0.061700] pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.061705] pci 0000:00:1f.5: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.061734] pci 0000:00:1f.6: reg 10: [io 0x2400-0x24ff]
Oct 28 21:42:41 tbox kernel: [ 0.061744] pci 0000:00:1f.6: reg 14: [io 0x2000-0x207f]
Oct 28 21:42:41 tbox kernel: [ 0.061794] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.061799] pci 0000:00:1f.6: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064031] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064040] pci 0000:01:00.0: reg 14: [io 0x3000-0x30ff]
Oct 28 21:42:41 tbox kernel: [ 0.064048] pci 0000:01:00.0: reg 18: [mem 0xc0100000-0xc010ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064072] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064091] pci 0000:01:00.0: supports D1 D2
Oct 28 21:42:41 tbox kernel: [ 0.064125] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 28 21:42:41 tbox kernel: [ 0.064129] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Oct 28 21:42:41 tbox kernel: [ 0.064133] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
Oct 28 21:42:41 tbox kernel: [ 0.064137] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064176] pci 0000:02:00.0: reg 10: [mem 0xb0000000-0xb0000fff]
Oct 28 21:42:41 tbox kernel: [ 0.064195] pci 0000:02:00.0: supports D1 D2
Oct 28 21:42:41 tbox kernel: [ 0.064198] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.064203] pci 0000:02:00.0: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064237] pci 0000:02:00.1: reg 10: [mem 0xb1000000-0xb1000fff]
Oct 28 21:42:41 tbox kernel: [ 0.064256] pci 0000:02:00.1: supports D1 D2
Oct 28 21:42:41 tbox kernel: [ 0.064259] pci 0000:02:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.064264] pci 0000:02:00.1: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064306] pci 0000:02:01.0: reg 10: [mem 0xc0220000-0xc023ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064317] pci 0000:02:01.0: reg 14: [mem 0xc0200000-0xc020ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064327] pci 0000:02:01.0: reg 18: [io 0x8000-0x803f]
Oct 28 21:42:41 tbox kernel: [ 0.064359] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064382] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.064387] pci 0000:02:01.0: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064421] pci 0000:02:02.0: reg 10: [mem 0xc0210000-0xc021ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064518] pci 0000:00:1e.0: PCI bridge to [bus 02-08] (subtractive decode)
Oct 28 21:42:41 tbox kernel: [ 0.064524] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 0.064530] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 0.064535] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064539] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
Oct 28 21:42:41 tbox kernel: [ 0.064543] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
Oct 28 21:42:41 tbox kernel: [ 0.064617] pci_bus 0000:00: on NUMA node 0
Oct 28 21:42:41 tbox kernel: [ 0.064621] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Oct 28 21:42:41 tbox kernel: [ 0.064670] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
Oct 28 21:42:41 tbox kernel: [ 0.064695] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
Oct 28 21:42:41 tbox kernel: [ 0.067895] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068034] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068161] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068286] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068389] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 28 21:42:41 tbox kernel: [ 0.068493] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 28 21:42:41 tbox kernel: [ 0.068598] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 28 21:42:41 tbox kernel: [ 0.068724] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068774] HEST: Table is not found!
Oct 28 21:42:41 tbox kernel: [ 0.068852] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Oct 28 21:42:41 tbox kernel: [ 0.068856] vgaarb: loaded
Oct 28 21:42:41 tbox kernel: [ 0.068921] PCI: Using ACPI for IRQ routing
Oct 28 21:42:41 tbox kernel: [ 0.069056] PCI: pci_cache_line_size set to 64 bytes
Oct 28 21:42:41 tbox kernel: [ 0.069119] reserve RAM buffer: 000000000009f000 - 000000000009ffff
Oct 28 21:42:41 tbox kernel: [ 0.069122] reserve RAM buffer: 000000003ff60000 - 000000003fffffff
Oct 28 21:42:41 tbox kernel: [ 0.069270] Switching to clocksource tsc
Oct 28 21:42:41 tbox kernel: [ 0.070692] pnp: PnP ACPI init
Oct 28 21:42:41 tbox kernel: [ 0.070716] ACPI: bus type pnp registered
Oct 28 21:42:41 tbox kernel: [ 0.071502] pnp 00:00: [mem 0x00000000-0x0009ffff]
Oct 28 21:42:41 tbox kernel: [ 0.071505] pnp 00:00: [mem 0x000c0000-0x000c3fff]
Oct 28 21:42:41 tbox kernel: [ 0.071509] pnp 00:00: [mem 0x000c4000-0x000c7fff]
Oct 28 21:42:41 tbox kernel: [ 0.071512] pnp 00:00: [mem 0x000c8000-0x000cbfff]
Oct 28 21:42:41 tbox kernel: [ 0.071515] pnp 00:00: [mem 0x000cc000-0x000cffff]
Oct 28 21:42:41 tbox kernel: [ 0.071518] pnp 00:00: [mem 0x000d0000-0x000d3fff]
Oct 28 21:42:41 tbox kernel: [ 0.071521] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
Oct 28 21:42:41 tbox kernel: [ 0.071524] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
Oct 28 21:42:41 tbox kernel: [ 0.071527] pnp 00:00: [mem 0x000dc000-0x000dffff]
Oct 28 21:42:41 tbox kernel: [ 0.071530] pnp 00:00: [mem 0x000e0000-0x000e3fff]
Oct 28 21:42:41 tbox kernel: [ 0.071533] pnp 00:00: [mem 0x000e4000-0x000e7fff]
Oct 28 21:42:41 tbox kernel: [ 0.071536] pnp 00:00: [mem 0x000e8000-0x000ebfff]
Oct 28 21:42:41 tbox kernel: [ 0.071539] pnp 00:00: [mem 0x000ec000-0x000effff]
Oct 28 21:42:41 tbox kernel: [ 0.071542] pnp 00:00: [mem 0x000f0000-0x000fffff]
Oct 28 21:42:41 tbox kernel: [ 0.071545] pnp 00:00: [mem 0x00100000-0x3fffffff]
Oct 28 21:42:41 tbox kernel: [ 0.071548] pnp 00:00: [mem 0xfec00000-0xffffffff]
Oct 28 21:42:41 tbox kernel: [ 0.071622] pnp 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071651] pnp 00:01: [bus 00-ff]
Oct 28 21:42:41 tbox kernel: [ 0.071654] pnp 00:01: [io 0x0cf8-0x0cff]
Oct 28 21:42:41 tbox kernel: [ 0.071657] pnp 00:01: [io 0x0000-0x0cf7 window]
Oct 28 21:42:41 tbox kernel: [ 0.071660] pnp 00:01: [io 0x0d00-0xffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071670] pnp 00:01: [mem 0x000a0000-0x000bffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071673] pnp 00:01: [mem 0x000c0000-0x000c3fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071676] pnp 00:01: [mem 0x000c4000-0x000c7fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071679] pnp 00:01: [mem 0x000c8000-0x000cbfff window]
Oct 28 21:42:41 tbox kernel: [ 0.071683] pnp 00:01: [mem 0x000cc000-0x000cffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071686] pnp 00:01: [mem 0x000d0000-0x000d3fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071689] pnp 00:01: [mem 0x000d4000-0x000d7fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071692] pnp 00:01: [mem 0x000d8000-0x000dbfff window]
Oct 28 21:42:41 tbox kernel: [ 0.071696] pnp 00:01: [mem 0x000dc000-0x000dffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071699] pnp 00:01: [mem 0x000e0000-0x000e3fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071702] pnp 00:01: [mem 0x000e4000-0x000e7fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071705] pnp 00:01: [mem 0x000e8000-0x000ebfff window]
Oct 28 21:42:41 tbox kernel: [ 0.071708] pnp 00:01: [mem 0x000ec000-0x000effff window]
Oct 28 21:42:41 tbox kernel: [ 0.071712] pnp 00:01: [mem 0x40000000-0xfebfffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071771] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071911] pnp 00:02: [io 0x0010-0x001f]
Oct 28 21:42:41 tbox kernel: [ 0.071914] pnp 00:02: [io 0x0090-0x009f]
Oct 28 21:42:41 tbox kernel: [ 0.071917] pnp 00:02: [io 0x0024-0x0025]
Oct 28 21:42:41 tbox kernel: [ 0.071920] pnp 00:02: [io 0x0028-0x0029]
Oct 28 21:42:41 tbox kernel: [ 0.071922] pnp 00:02: [io 0x002c-0x002d]
Oct 28 21:42:41 tbox kernel: [ 0.071925] pnp 00:02: [io 0x0030-0x0031]
Oct 28 21:42:41 tbox kernel: [ 0.071928] pnp 00:02: [io 0x0034-0x0035]
Oct 28 21:42:41 tbox kernel: [ 0.071931] pnp 00:02: [io 0x0038-0x0039]
Oct 28 21:42:41 tbox kernel: [ 0.071933] pnp 00:02: [io 0x003c-0x003d]
Oct 28 21:42:41 tbox kernel: [ 0.071936] pnp 00:02: [io 0x00a4-0x00a5]
Oct 28 21:42:41 tbox kernel: [ 0.071939] pnp 00:02: [io 0x00a8-0x00a9]
Oct 28 21:42:41 tbox kernel: [ 0.071942] pnp 00:02: [io 0x00ac-0x00ad]
Oct 28 21:42:41 tbox kernel: [ 0.071944] pnp 00:02: [io 0x00b0-0x00b5]
Oct 28 21:42:41 tbox kernel: [ 0.071947] pnp 00:02: [io 0x00b8-0x00b9]
Oct 28 21:42:41 tbox kernel: [ 0.071950] pnp 00:02: [io 0x00bc-0x00bd]
Oct 28 21:42:41 tbox kernel: [ 0.071952] pnp 00:02: [io 0x0050-0x0053]
Oct 28 21:42:41 tbox kernel: [ 0.071955] pnp 00:02: [io 0x0072-0x0077]
Oct 28 21:42:41 tbox kernel: [ 0.071958] pnp 00:02: [io 0x002e-0x002f]
Oct 28 21:42:41 tbox kernel: [ 0.071961] pnp 00:02: [io 0x1000-0x107f]
Oct 28 21:42:41 tbox kernel: [ 0.071963] pnp 00:02: [io 0x1180-0x11bf]
Oct 28 21:42:41 tbox kernel: [ 0.071966] pnp 00:02: [io 0x15e0-0x15ef]
Oct 28 21:42:41 tbox kernel: [ 0.071969] pnp 00:02: [io 0x1600-0x162f]
Oct 28 21:42:41 tbox kernel: [ 0.071972] pnp 00:02: [io 0x1632-0x167f]
Oct 28 21:42:41 tbox kernel: [ 0.071974] pnp 00:02: [io 0x004e-0x004f]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:02: [io 0x1630-0x1631]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [io 0x0000-0x000f]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [io 0x0080-0x008f]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [io 0x00c0-0x00df]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [dma 4]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:04: [io 0x0061]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:05: [io 0x00f0]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:05: [irq 13]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:06: [io 0x0070-0x0071]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:06: [irq 8]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: [io 0x0060]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: [io 0x0064]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: [irq 1]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:08: [irq 12]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [io 0x03f0-0x03f5]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [io 0x03f7]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [irq 6]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [dma 2]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: Plug and Play ACPI device, IDs PNP0700 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0a: [io 0x03f8-0x03ff]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0a: [irq 4]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0b: [io 0x03bc-0x03be]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0b: [irq 7]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0c: Plug and Play ACPI device, IDs IBM0071 PNP0511 (disabled)
Oct 28 21:42:41 tbox kernel: [ 0.072512] pnp: PnP ACPI: found 13 devices
Oct 28 21:42:41 tbox kernel: [ 0.072515] ACPI: ACPI bus type pnp unregistered
Oct 28 21:42:41 tbox kernel: [ 0.072519] PnPBIOS: Disabled by ACPI PNP
Oct 28 21:42:41 tbox kernel: [ 0.072534] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072539] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072543] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072547] system 00:00: [mem 0x000c8000-0x000cbfff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072551] system 00:00: [mem 0x000cc000-0x000cffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072555] system 00:00: [mem 0x000d0000-0x000d3fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072559] system 00:00: [mem 0x000dc000-0x000dffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072563] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072567] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072571] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072575] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072579] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072584] system 00:00: [mem 0x00100000-0x3fffffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072588] system 00:00: [mem 0xfec00000-0xffffffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072597] system 00:02: [io 0x1000-0x107f] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072600] system 00:02: [io 0x1180-0x11bf] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072604] system 00:02: [io 0x15e0-0x15ef] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072608] system 00:02: [io 0x1600-0x162f] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072612] system 00:02: [io 0x1632-0x167f] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072615] system 00:02: [io 0x1630-0x1631] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.109713] pci 0000:00:1f.1: BAR 5: assigned [mem 0x40000000-0x400003ff]
Oct 28 21:42:41 tbox kernel: [ 0.109721] pci 0000:00:1f.1: BAR 5: set to [mem 0x40000000-0x400003ff] (PCI address [0x40000000-0x400003ff]
Oct 28 21:42:41 tbox kernel: [ 0.109727] pci 0000:01:00.0: BAR 6: assigned [mem 0xc0120000-0xc013ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109731] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 28 21:42:41 tbox kernel: [ 0.109735] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Oct 28 21:42:41 tbox kernel: [ 0.109740] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
Oct 28 21:42:41 tbox kernel: [ 0.109744] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109752] pci 0000:02:00.0: BAR 15: assigned [mem 0xe8000000-0xebffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109756] pci 0000:02:00.0: BAR 16: assigned [mem 0xc4000000-0xc7ffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109760] pci 0000:02:00.1: BAR 15: assigned [mem 0xec000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109764] pci 0000:02:00.1: BAR 16: assigned [mem 0xc8000000-0xcbffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109768] pci 0000:02:01.0: BAR 6: assigned [mem 0xc0240000-0xc024ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109772] pci 0000:02:00.0: BAR 13: assigned [io 0x4000-0x40ff]
Oct 28 21:42:41 tbox kernel: [ 0.109776] pci 0000:02:00.0: BAR 14: assigned [io 0x4400-0x44ff]
Oct 28 21:42:41 tbox kernel: [ 0.109779] pci 0000:02:00.1: BAR 13: assigned [io 0x4800-0x48ff]
Oct 28 21:42:41 tbox kernel: [ 0.109783] pci 0000:02:00.1: BAR 14: assigned [io 0x4c00-0x4cff]
Oct 28 21:42:41 tbox kernel: [ 0.109786] pci 0000:02:00.0: CardBus bridge to [bus 03-06]
Oct 28 21:42:41 tbox kernel: [ 0.109789] pci 0000:02:00.0: bridge window [io 0x4000-0x40ff]
Oct 28 21:42:41 tbox kernel: [ 0.109794] pci 0000:02:00.0: bridge window [io 0x4400-0x44ff]
Oct 28 21:42:41 tbox kernel: [ 0.109800] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xebffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109805] pci 0000:02:00.0: bridge window [mem 0xc4000000-0xc7ffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109811] pci 0000:02:00.1: CardBus bridge to [bus 07-07]
Oct 28 21:42:41 tbox kernel: [ 0.109814] pci 0000:02:00.1: bridge window [io 0x4800-0x48ff]
Oct 28 21:42:41 tbox kernel: [ 0.109819] pci 0000:02:00.1: bridge window [io 0x4c00-0x4cff]
Oct 28 21:42:41 tbox kernel: [ 0.109825] pci 0000:02:00.1: bridge window [mem 0xec000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109830] pci 0000:02:00.1: bridge window [mem 0xc8000000-0xcbffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109836] pci 0000:00:1e.0: PCI bridge to [bus 02-08]
Oct 28 21:42:41 tbox kernel: [ 0.109840] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 0.109846] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109852] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109872] pci 0000:00:1e.0: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 0.110131] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110134] PCI: setting IRQ 11 as level-triggered
Oct 28 21:42:41 tbox kernel: [ 0.110141] pci 0000:02:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110363] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110368] pci 0000:02:00.1: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110375] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
Oct 28 21:42:41 tbox kernel: [ 0.110379] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110382] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
Oct 28 21:42:41 tbox kernel: [ 0.110386] pci_bus 0000:01: resource 1 [mem 0xc0100000-0xc01fffff]
Oct 28 21:42:41 tbox kernel: [ 0.110389] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110393] pci_bus 0000:02: resource 0 [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 0.110396] pci_bus 0000:02: resource 1 [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110400] pci_bus 0000:02: resource 2 [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110403] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
Oct 28 21:42:41 tbox kernel: [ 0.110406] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110410] pci_bus 0000:03: resource 0 [io 0x4000-0x40ff]
Oct 28 21:42:41 tbox kernel: [ 0.110413] pci_bus 0000:03: resource 1 [io 0x4400-0x44ff]
Oct 28 21:42:41 tbox kernel: [ 0.110417] pci_bus 0000:03: resource 2 [mem 0xe8000000-0xebffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110420] pci_bus 0000:03: resource 3 [mem 0xc4000000-0xc7ffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110423] pci_bus 0000:07: resource 0 [io 0x4800-0x48ff]
Oct 28 21:42:41 tbox kernel: [ 0.110427] pci_bus 0000:07: resource 1 [io 0x4c00-0x4cff]
Oct 28 21:42:41 tbox kernel: [ 0.110430] pci_bus 0000:07: resource 2 [mem 0xec000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110434] pci_bus 0000:07: resource 3 [mem 0xc8000000-0xcbffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110483] NET: Registered protocol family 2
Oct 28 21:42:41 tbox kernel: [ 0.110563] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.110952] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.112838] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.114006] TCP: Hash tables configured (established 131072 bind 65536)
Oct 28 21:42:41 tbox kernel: [ 0.114011] TCP reno registered
Oct 28 21:42:41 tbox kernel: [ 0.114018] UDP hash table entries: 512 (order: 2, 16384 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.114058] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.114254] NET: Registered protocol family 1
Oct 28 21:42:41 tbox kernel: [ 0.114390] pci 0000:01:00.0: Boot video device
Oct 28 21:42:41 tbox kernel: [ 0.114408] PCI: CLS 32 bytes, default 64
Oct 28 21:42:41 tbox kernel: [ 0.114492] Unpacking initramfs...
Oct 28 21:42:41 tbox kernel: [ 0.543409] Freeing initrd memory: 10220k freed
Oct 28 21:42:41 tbox kernel: [ 0.559855] Simple Boot Flag at 0x35 set to 0x1
Oct 28 21:42:41 tbox kernel: [ 0.560260] audit: initializing netlink socket (disabled)
Oct 28 21:42:41 tbox kernel: [ 0.560283] type=2000 audit(1288302144.556:1): initialized
Oct 28 21:42:41 tbox kernel: [ 0.573418] highmem bounce pool size: 64 pages
Oct 28 21:42:41 tbox kernel: [ 0.573425] HugeTLB registered 4 MB page size, pre-allocated 0 pages
Oct 28 21:42:41 tbox kernel: [ 0.575996] VFS: Disk quotas dquot_6.5.2
Oct 28 21:42:41 tbox kernel: [ 0.576080] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.576216] msgmni has been set to 1747
Oct 28 21:42:41 tbox kernel: [ 0.576487] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Oct 28 21:42:41 tbox kernel: [ 0.576492] io scheduler noop registered
Oct 28 21:42:41 tbox kernel: [ 0.576494] io scheduler deadline registered
Oct 28 21:42:41 tbox kernel: [ 0.576515] io scheduler cfq registered (default)
Oct 28 21:42:41 tbox kernel: [ 0.576801] ERST: Table is not found!
Oct 28 21:42:41 tbox kernel: [ 0.576821] isapnp: Scanning for PnP cards...
Oct 28 21:42:41 tbox kernel: [ 0.930063] isapnp: No Plug & Play device found
Oct 28 21:42:41 tbox kernel: [ 0.930315] Linux agpgart interface v0.103
Oct 28 21:42:41 tbox kernel: [ 0.930454] agpgart-intel 0000:00:00.0: Intel 855PM Chipset
Oct 28 21:42:41 tbox kernel: [ 0.943982] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
Oct 28 21:42:41 tbox kernel: [ 0.944075] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Oct 28 21:42:41 tbox kernel: [ 0.944179] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
Oct 28 21:42:41 tbox kernel: [ 0.944627] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
Oct 28 21:42:41 tbox kernel: [ 0.944744] serial 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.944752] serial 0000:00:1f.6: PCI INT B disabled
Oct 28 21:42:41 tbox kernel: [ 0.944885] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Oct 28 21:42:41 tbox kernel: [ 0.950374] serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 28 21:42:41 tbox kernel: [ 0.950385] serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 28 21:42:41 tbox kernel: [ 0.950552] mice: PS/2 mouse device common for all mice
Oct 28 21:42:41 tbox kernel: [ 0.950606] rtc_cmos 00:06: RTC can wake from S4
Oct 28 21:42:41 tbox kernel: [ 0.950662] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
Oct 28 21:42:41 tbox kernel: [ 0.950680] rtc0: alarms up to one month, y3k, 114 bytes nvram
Oct 28 21:42:41 tbox kernel: [ 0.950697] cpuidle: using governor ladder
Oct 28 21:42:41 tbox kernel: [ 0.950700] cpuidle: using governor menu
Oct 28 21:42:41 tbox kernel: [ 0.951066] TCP cubic registered
Oct 28 21:42:41 tbox kernel: [ 0.951253] NET: Registered protocol family 10
Oct 28 21:42:41 tbox kernel: [ 0.951772] lo: Disabled Privacy Extensions
Oct 28 21:42:41 tbox kernel: [ 0.952057] Mobile IPv6
Oct 28 21:42:41 tbox kernel: [ 0.952061] NET: Registered protocol family 17
Oct 28 21:42:41 tbox kernel: [ 0.952072] Registering the dns_resolver key type
Oct 28 21:42:41 tbox kernel: [ 0.952099] Using IPI No-Shortcut mode
Oct 28 21:42:41 tbox kernel: [ 0.952204] PM: Hibernation image not present or could not be loaded.
Oct 28 21:42:41 tbox kernel: [ 0.952223] registered taskstats version 1
Oct 28 21:42:41 tbox kernel: [ 0.952456] rtc_cmos 00:06: setting system clock to 2010-10-28 21:42:25 UTC (1288302145)
Oct 28 21:42:41 tbox kernel: [ 0.952492] Initalizing network drop monitor service
Oct 28 21:42:41 tbox kernel: [ 0.952544] Freeing unused kernel memory: 388k freed
Oct 28 21:42:41 tbox kernel: [ 0.952813] Write protecting the kernel text: 2596k
Oct 28 21:42:41 tbox kernel: [ 0.952838] Write protecting the kernel read-only data: 924k
Oct 28 21:42:41 tbox kernel: [ 0.955109] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Oct 28 21:42:41 tbox kernel: [ 1.027042] udev[47]: starting version 164
Oct 28 21:42:41 tbox kernel: [ 1.236368] Floppy drive(s): fd0 is 1.44M
Oct 28 21:42:41 tbox kernel: [ 1.248821] thermal LNXTHERM:00: registered as thermal_zone0
Oct 28 21:42:41 tbox kernel: [ 1.248825] ACPI: Thermal Zone [THM0] (50 C)
Oct 28 21:42:41 tbox kernel: [ 1.272134] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k6-NAPI
Oct 28 21:42:41 tbox kernel: [ 1.272140] e1000: Copyright (c) 1999-2006 Intel Corporation.
Oct 28 21:42:41 tbox kernel: [ 1.272212] e1000 0000:02:01.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.277094] FDC 0 is a National Semiconductor PC87306
Oct 28 21:42:41 tbox kernel: [ 1.592760] usbcore: registered new interface driver usbfs
Oct 28 21:42:41 tbox kernel: [ 1.592924] usbcore: registered new interface driver hub
Oct 28 21:42:41 tbox kernel: [ 1.596108] usbcore: registered new device driver usb
Oct 28 21:42:41 tbox kernel: [ 1.610031] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 28 21:42:41 tbox kernel: [ 1.613923] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.614153] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.614406] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.614413] ehci_hcd 0000:00:1d.7: PCI INT D -> Link[LNKH] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.614439] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.614444] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.614483] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
Oct 28 21:42:41 tbox kernel: [ 1.614523] ehci_hcd 0000:00:1d.7: debug port 1
Oct 28 21:42:41 tbox kernel: [ 1.618421] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
Oct 28 21:42:41 tbox kernel: [ 1.621446] SCSI subsystem initialized
Oct 28 21:42:41 tbox kernel: [ 1.628051] ehci_hcd 0000:00:1d.7: irq 11, io mem 0xc0000000
Oct 28 21:42:41 tbox kernel: [ 1.636496] uhci_hcd: USB Universal Host Controller Interface driver
Oct 28 21:42:41 tbox kernel: [ 1.640086] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Oct 28 21:42:41 tbox kernel: [ 1.640147] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Oct 28 21:42:41 tbox kernel: [ 1.640151] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.640154] usb usb1: Product: EHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.640157] usb usb1: Manufacturer: Linux 2.6.36-git11.sd.1-686 ehci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.640160] usb usb1: SerialNumber: 0000:00:1d.7
Oct 28 21:42:41 tbox kernel: [ 1.640363] hub 1-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.640371] hub 1-0:1.0: 6 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.641450] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.641603] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.641617] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.641631] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.641636] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.641651] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Oct 28 21:42:41 tbox kernel: [ 1.641683] uhci_hcd 0000:00:1d.0: irq 11, io base 0x00001800
Oct 28 21:42:41 tbox kernel: [ 1.641731] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:42:41 tbox kernel: [ 1.641734] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.641738] usb usb2: Product: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.641740] usb usb2: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.641744] usb usb2: SerialNumber: 0000:00:1d.0
Oct 28 21:42:41 tbox kernel: [ 1.641899] hub 2-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.641905] hub 2-0:1.0: 2 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.642167] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.642504] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.642748] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.642754] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.642762] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.642767] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.642777] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Oct 28 21:42:41 tbox kernel: [ 1.642802] uhci_hcd 0000:00:1d.1: irq 11, io base 0x00001820
Oct 28 21:42:41 tbox kernel: [ 1.642840] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:42:41 tbox kernel: [ 1.642844] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.642847] usb usb3: Product: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.642850] usb usb3: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.642853] usb usb3: SerialNumber: 0000:00:1d.1
Oct 28 21:42:41 tbox kernel: [ 1.643078] hub 3-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.643084] hub 3-0:1.0: 2 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.643389] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.643394] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.643402] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.643406] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.643415] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Oct 28 21:42:41 tbox kernel: [ 1.643439] uhci_hcd 0000:00:1d.2: irq 11, io base 0x00001840
Oct 28 21:42:41 tbox kernel: [ 1.643477] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:42:41 tbox kernel: [ 1.643480] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.643484] usb usb4: Product: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.643486] usb usb4: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.643489] usb usb4: SerialNumber: 0000:00:1d.2
Oct 28 21:42:41 tbox kernel: [ 1.643705] hub 4-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.643711] hub 4-0:1.0: 2 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.684752] libata version 3.00 loaded.
Oct 28 21:42:41 tbox kernel: [ 1.691330] ata_piix 0000:00:1f.1: version 2.13
Oct 28 21:42:41 tbox kernel: [ 1.691347] ata_piix 0000:00:1f.1: enabling device (0005 -> 0007)
Oct 28 21:42:41 tbox kernel: [ 1.691358] ata_piix 0000:00:1f.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.691411] ata_piix 0000:00:1f.1: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.692125] scsi0 : ata_piix
Oct 28 21:42:41 tbox kernel: [ 1.692329] scsi1 : ata_piix
Oct 28 21:42:41 tbox kernel: [ 1.693192] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1860 irq 14
Oct 28 21:42:41 tbox kernel: [ 1.693196] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1868 irq 15
Oct 28 21:42:41 tbox kernel: [ 1.729558] e1000 0000:02:01.0: eth0: (PCI:33MHz:32-bit) 00:0d:60:b0:62:87
Oct 28 21:42:41 tbox kernel: [ 1.729566] e1000 0000:02:01.0: eth0: Intel(R) PRO/1000 Network Connection
Oct 28 21:42:41 tbox kernel: [ 1.848422] ata2.01: NODEV after polling detection
Oct 28 21:42:41 tbox kernel: [ 1.856972] ata1.00: HPA detected: current 110257519, native 117210240
Oct 28 21:42:41 tbox kernel: [ 1.856979] ata1.00: ATA-6: HTS726060M9AT00, MH4OA6BA, max UDMA/100
Oct 28 21:42:41 tbox kernel: [ 1.856982] ata1.00: 110257519 sectors, multi 16: LBA
Oct 28 21:42:41 tbox kernel: [ 1.857078] ata2.00: ATAPI: UJDA755yDVD/CDRW, 1.70, max UDMA/33
Oct 28 21:42:41 tbox kernel: [ 1.872668] ata2.00: configured for UDMA/33
Oct 28 21:42:41 tbox kernel: [ 1.872723] ata1.00: configured for UDMA/100
Oct 28 21:42:41 tbox kernel: [ 1.872888] scsi 0:0:0:0: Direct-Access ATA HTS726060M9AT00 MH4O PQ: 0 ANSI: 5
Oct 28 21:42:41 tbox kernel: [ 1.876047] scsi 1:0:0:0: CD-ROM MATSHITA UJDA755yDVD/CDRW 1.70 PQ: 0 ANSI: 5
Oct 28 21:42:41 tbox kernel: [ 1.907683] sd 0:0:0:0: [sda] 110257519 512-byte logical blocks: (56.4 GB/52.5 GiB)
Oct 28 21:42:41 tbox kernel: [ 1.907825] sd 0:0:0:0: [sda] Write Protect is off
Oct 28 21:42:41 tbox kernel: [ 1.907829] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 28 21:42:41 tbox kernel: [ 1.907855] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 28 21:42:41 tbox kernel: [ 1.912077] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
Oct 28 21:42:41 tbox kernel: [ 1.912081] cdrom: Uniform CD-ROM driver Revision: 3.20
Oct 28 21:42:41 tbox kernel: [ 1.912425] sr 1:0:0:0: Attached scsi CD-ROM sr0
Oct 28 21:42:41 tbox kernel: [ 1.969792] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
Oct 28 21:42:41 tbox kernel: [ 1.970484] sd 0:0:0:0: [sda] Attached SCSI disk
Oct 28 21:42:41 tbox kernel: [ 1.987326] sd 0:0:0:0: Attached scsi generic sg0 type 0
Oct 28 21:42:41 tbox kernel: [ 1.987796] sr 1:0:0:0: Attached scsi generic sg1 type 5
Oct 28 21:42:41 tbox kernel: [ 2.008041] usb 1-4: new high speed USB device using ehci_hcd and address 3
Oct 28 21:42:41 tbox kernel: [ 2.140978] usb 1-4: New USB device found, idVendor=152d, idProduct=2329
Oct 28 21:42:41 tbox kernel: [ 2.140983] usb 1-4: New USB device strings: Mfr=10, Product=11, SerialNumber=3
Oct 28 21:42:41 tbox kernel: [ 2.140987] usb 1-4: Product: Storagebird 35EV821
Oct 28 21:42:41 tbox kernel: [ 2.140990] usb 1-4: Manufacturer: 0123456
Oct 28 21:42:41 tbox kernel: [ 2.140992] usb 1-4: SerialNumber: 000000000340
Oct 28 21:42:41 tbox kernel: [ 2.158046] Initializing USB Mass Storage driver...
Oct 28 21:42:41 tbox kernel: [ 2.158167] scsi2 : usb-storage 1-4:1.0
Oct 28 21:42:41 tbox kernel: [ 2.158337] usbcore: registered new interface driver usb-storage
Oct 28 21:42:41 tbox kernel: [ 2.158339] USB Mass Storage support registered.
Oct 28 21:42:41 tbox kernel: [ 2.380030] usb 3-1: new low speed USB device using uhci_hcd and address 2
Oct 28 21:42:41 tbox kernel: [ 2.556825] usb 3-1: New USB device found, idVendor=046d, idProduct=c00e
Oct 28 21:42:41 tbox kernel: [ 2.556830] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 28 21:42:41 tbox kernel: [ 2.556833] usb 3-1: Product: USB-PS/2 Optical Mouse
Oct 28 21:42:41 tbox kernel: [ 2.556836] usb 3-1: Manufacturer: Logitech
Oct 28 21:42:41 tbox kernel: [ 2.596309] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input1
Oct 28 21:42:41 tbox kernel: [ 2.596497] generic-usb 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.1-1/input0
Oct 28 21:42:41 tbox kernel: [ 2.596680] usbcore: registered new interface driver usbhid
Oct 28 21:42:41 tbox kernel: [ 2.596682] usbhid: USB HID core driver
Oct 28 21:42:41 tbox kernel: [ 2.668321] device-mapper: uevent: version 1.0.3
Oct 28 21:42:41 tbox kernel: [ 2.668938] device-mapper: ioctl: 4.18.0-ioctl (2010-06-29) initialised: dm-devel@redhat.com
Oct 28 21:42:41 tbox kernel: [ 2.952328] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 3.198345] scsi 2:0:0:0: Direct-Access WDC WD10 EAVS-00D7B0 PQ: 0 ANSI: 2 CCS
Oct 28 21:42:41 tbox kernel: [ 3.198882] sd 2:0:0:0: Attached scsi generic sg2 type 0
Oct 28 21:42:41 tbox kernel: [ 3.199435] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Oct 28 21:42:41 tbox kernel: [ 3.200186] sd 2:0:0:0: [sdb] Write Protect is off
Oct 28 21:42:41 tbox kernel: [ 3.200190] sd 2:0:0:0: [sdb] Mode Sense: 34 00 00 00
Oct 28 21:42:41 tbox kernel: [ 3.200194] sd 2:0:0:0: [sdb] Assuming drive cache: write through
Oct 28 21:42:41 tbox kernel: [ 3.201686] sd 2:0:0:0: [sdb] Assuming drive cache: write through
Oct 28 21:42:41 tbox kernel: [ 3.282062] sdb: sdb1 sdb2 sdb3 sdb4 < sdb5 sdb6 sdb7 sdb8 >
Oct 28 21:42:41 tbox kernel: [ 3.283929] sd 2:0:0:0: [sdb] Assuming drive cache: write through
Oct 28 21:42:41 tbox kernel: [ 3.283962] sd 2:0:0:0: [sdb] Attached SCSI disk
Oct 28 21:42:41 tbox kernel: [ 3.673194] init[1]: systemd 10 running in system mode. (+PAM -LIBWRAP -AUDIT +SELINUX +SYSVINIT; debian)
Oct 28 21:42:41 tbox kernel: [ 3.898630] init[1]: Set hostname to <tbox>.
Oct 28 21:42:41 tbox kernel: [ 5.274608] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 5.535813] fuse init (API version 7.15)
Oct 28 21:42:41 tbox kernel: [ 5.755599] init[1]: screen-cleanup.service: control process exited, code=exited status=1
Oct 28 21:42:41 tbox kernel: [ 5.755696] init[1]: Unit screen-cleanup.service entered failed state.
Oct 28 21:42:41 tbox kernel: [ 5.881168] init[1]: console-setup.service: control process exited, code=exited status=208
Oct 28 21:42:41 tbox kernel: [ 5.881272] init[1]: Unit console-setup.service entered failed state.
Oct 28 21:42:41 tbox kernel: [ 6.281601] udev[366]: starting version 164
Oct 28 21:42:41 tbox kernel: [ 6.576676] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
Oct 28 21:42:41 tbox kernel: [ 6.577737] ACPI: Lid Switch [LID]
Oct 28 21:42:41 tbox kernel: [ 6.577835] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
Oct 28 21:42:41 tbox kernel: [ 6.577842] ACPI: Sleep Button [SLPB]
Oct 28 21:42:41 tbox kernel: [ 6.577944] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
Oct 28 21:42:41 tbox kernel: [ 6.577948] ACPI: Power Button [PWRF]
Oct 28 21:42:41 tbox kernel: [ 6.643396] ACPI: Battery Slot [BAT0] (battery present)
Oct 28 21:42:41 tbox kernel: [ 6.644928] ACPI: AC Adapter [AC] (on-line)
Oct 28 21:42:41 tbox kernel: [ 6.684608] ACPI: acpi_idle registered with cpuidle
Oct 28 21:42:41 tbox kernel: [ 6.685130] Marking TSC unstable due to TSC halts in idle
Oct 28 21:42:41 tbox kernel: [ 6.686980] Switching to clocksource acpi_pm
Oct 28 21:42:41 tbox kernel: [ 6.919407] Non-volatile memory driver v1.3
Oct 28 21:42:41 tbox kernel: [ 7.019561] input: PC Speaker as /devices/platform/pcspkr/input/input5
Oct 28 21:42:41 tbox kernel: [ 7.025333] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:03/LNXVIDEO:00/input/input6
Oct 28 21:42:41 tbox kernel: [ 7.025483] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
Oct 28 21:42:41 tbox kernel: [ 7.116534] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 28 21:42:41 tbox kernel: [ 7.154595] intel_rng: FWH not detected
Oct 28 21:42:41 tbox kernel: [ 7.211083] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 28 21:42:41 tbox kernel: [ 7.223103] parport_pc 00:0b: reported by Plug and Play ACPI
Oct 28 21:42:41 tbox kernel: [ 7.223153] parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
Oct 28 21:42:41 tbox kernel: [ 7.323149] i801_smbus 0000:00:1f.3: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 7.398752] [drm] Initialized drm 1.1.0 20060810
Oct 28 21:42:41 tbox kernel: [ 7.535416] NET: Registered protocol family 23
Oct 28 21:42:41 tbox kernel: [ 7.536425] cfg80211: Calling CRDA to update world regulatory domain
Oct 28 21:42:41 tbox kernel: [ 7.672782] yenta_cardbus 0000:02:00.0: CardBus bridge found [1014:0512]
Oct 28 21:42:41 tbox kernel: [ 7.672802] yenta_cardbus 0000:02:00.0: Using INTVAL to route CSC interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.672806] yenta_cardbus 0000:02:00.0: Routing CardBus interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.672811] yenta_cardbus 0000:02:00.0: TI: mfunc 0x01d21022, devctl 0x64
Oct 28 21:42:41 tbox kernel: [ 7.730989] nsc-ircc 00:0c: [io 0x02f8-0x02ff]
Oct 28 21:42:41 tbox kernel: [ 7.731051] nsc-ircc 00:0c: [irq 3]
Oct 28 21:42:41 tbox kernel: [ 7.731056] nsc-ircc 00:0c: [dma 1]
Oct 28 21:42:41 tbox kernel: [ 7.731624] nsc-ircc 00:0c: activated
Oct 28 21:42:41 tbox kernel: [ 7.731806] nsc-ircc, chip->init
Oct 28 21:42:41 tbox kernel: [ 7.731815] nsc-ircc, Found chip at base=0x02e
Oct 28 21:42:41 tbox kernel: [ 7.731839] nsc-ircc, driver loaded (Dag Brattli)
Oct 28 21:42:41 tbox kernel: [ 7.733623] IrDA: Registered device irda0
Oct 28 21:42:41 tbox kernel: [ 7.733627] nsc-ircc, Using dongle: IBM31T1100 or Temic TFDS6000/TFDS6500
Oct 28 21:42:41 tbox kernel: [ 7.846219] Synaptics Touchpad, model: 1, fw: 5.9, id: 0x2c6ab1, caps: 0x884793/0x0/0x0
Oct 28 21:42:41 tbox kernel: [ 7.846228] serio: Synaptics pass-through port at isa0060/serio1/input0
Oct 28 21:42:41 tbox kernel: [ 7.902715] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
Oct 28 21:42:41 tbox kernel: [ 7.912919] yenta_cardbus 0000:02:00.0: ISA IRQ mask 0x0438, PCI irq 11
Oct 28 21:42:41 tbox kernel: [ 7.912924] yenta_cardbus 0000:02:00.0: Socket status: 30000006
Oct 28 21:42:41 tbox kernel: [ 7.912934] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 7.912940] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
Oct 28 21:42:41 tbox kernel: [ 7.952224] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 7.952231] pcmcia_socket pcmcia_socket0: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xc3a00000-0xcc1fffff 0xcfa00000-0xd01fffff
Oct 28 21:42:41 tbox kernel: [ 7.952260] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 7.952264] pcmcia_socket pcmcia_socket0: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
Oct 28 21:42:41 tbox kernel: [ 7.964835] yenta_cardbus 0000:02:00.1: CardBus bridge found [1014:0512]
Oct 28 21:42:41 tbox kernel: [ 7.964856] yenta_cardbus 0000:02:00.1: Using INTVAL to route CSC interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.964860] yenta_cardbus 0000:02:00.1: Routing CardBus interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.964866] yenta_cardbus 0000:02:00.1: TI: mfunc 0x01d21022, devctl 0x64
Oct 28 21:42:41 tbox kernel: [ 8.159881] thinkpad_acpi: ThinkPad ACPI Extras v0.24
Oct 28 21:42:41 tbox kernel: [ 8.159885] thinkpad_acpi: http://ibm-acpi.sf.net/
Oct 28 21:42:41 tbox kernel: [ 8.159887] thinkpad_acpi: ThinkPad BIOS 1RETDRWW (3.23 ), EC 1RHT71WW-3.04
Oct 28 21:42:41 tbox kernel: [ 8.159890] thinkpad_acpi: IBM ThinkPad T40p, model 2374SG6
Oct 28 21:42:41 tbox kernel: [ 8.161537] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
Oct 28 21:42:41 tbox kernel: [ 8.169947] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
Oct 28 21:42:41 tbox kernel: [ 8.170763] Registered led device: tpacpi::thinklight
Oct 28 21:42:41 tbox kernel: [ 8.171652] Registered led device: tpacpi::power
Oct 28 21:42:41 tbox kernel: [ 8.171990] Registered led device: tpacpi::standby
Oct 28 21:42:41 tbox kernel: [ 8.177470] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
Oct 28 21:42:41 tbox kernel: [ 8.180805] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input8
Oct 28 21:42:41 tbox kernel: [ 8.197000] yenta_cardbus 0000:02:00.1: ISA IRQ mask 0x0438, PCI irq 11
Oct 28 21:42:41 tbox kernel: [ 8.197005] yenta_cardbus 0000:02:00.1: Socket status: 30000006
Oct 28 21:42:41 tbox kernel: [ 8.197017] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 8.197023] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
Oct 28 21:42:41 tbox kernel: [ 8.223711] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 8.223717] pcmcia_socket pcmcia_socket1: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xc3a00000-0xcc1fffff 0xcfa00000-0xd01fffff
Oct 28 21:42:41 tbox kernel: [ 8.223745] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 8.223749] pcmcia_socket pcmcia_socket1: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
Oct 28 21:42:41 tbox kernel: [ 8.232379] ath5k 0000:02:02.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 8.232509] ath5k 0000:02:02.0: registered as 'phy0'
Oct 28 21:42:41 tbox kernel: [ 8.520058] [drm] radeon kernel modesetting enabled.
Oct 28 21:42:41 tbox kernel: [ 8.520169] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 8.520182] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 8.520194] radeon 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 8.534476] [drm] initializing kernel modesetting (RV250 0x1002:0x4C66).
Oct 28 21:42:41 tbox kernel: [ 8.534630] [drm] register mmio base: 0xC0100000
Oct 28 21:42:41 tbox kernel: [ 8.534632] [drm] register mmio size: 65536
Oct 28 21:42:41 tbox kernel: [ 8.535018] agpgart-intel 0000:00:00.0: AGP 2.0 bridge
Oct 28 21:42:41 tbox kernel: [ 8.535382] agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x mode
Oct 28 21:42:41 tbox kernel: [ 8.535420] radeon 0000:01:00.0: putting AGP V2 device into 4x mode
Oct 28 21:42:41 tbox kernel: [ 8.535449] radeon 0000:01:00.0: GTT: 256M 0xD0000000 - 0xDFFFFFFF
Oct 28 21:42:41 tbox kernel: [ 8.535458] radeon 0000:01:00.0: VRAM: 128M 0xE0000000 - 0xE7FFFFFF (64M used)
Oct 28 21:42:41 tbox kernel: [ 8.535469] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
Oct 28 21:42:41 tbox kernel: [ 8.535472] [drm] Driver supports precise vblank timestamp query.
Oct 28 21:42:41 tbox kernel: [ 8.535493] [drm] radeon: irq initialized.
Oct 28 21:42:41 tbox kernel: [ 8.536074] [drm] Detected VRAM RAM=128M, BAR=128M
Oct 28 21:42:41 tbox kernel: [ 8.536078] [drm] RAM width 128bits DDR
Oct 28 21:42:41 tbox kernel: [ 8.536172] [TTM] Zone kernel: Available graphics memory: 447582 kiB.
Oct 28 21:42:41 tbox kernel: [ 8.536175] [TTM] Zone highmem: Available graphics memory: 516898 kiB.
Oct 28 21:42:41 tbox kernel: [ 8.536178] [TTM] Initializing pool allocator.
Oct 28 21:42:41 tbox kernel: [ 8.536211] [drm] radeon: 64M of VRAM memory ready
Oct 28 21:42:41 tbox kernel: [ 8.536214] [drm] radeon: 256M of GTT memory ready.
Oct 28 21:42:41 tbox kernel: [ 8.537696] radeon 0000:01:00.0: WB enabled
Oct 28 21:42:41 tbox kernel: [ 8.538304] [drm] Loading R200 Microcode
Oct 28 21:42:41 tbox kernel: [ 8.578476] ath: EEPROM regdomain: 0x61
Oct 28 21:42:41 tbox kernel: [ 8.578479] ath: EEPROM indicates we should expect a direct regpair map
Oct 28 21:42:41 tbox kernel: [ 8.578485] ath: Country alpha2 being used: 00
Oct 28 21:42:41 tbox kernel: [ 8.578487] ath: Regpair used: 0x61
Oct 28 21:42:41 tbox kernel: [ 8.663709] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
Oct 28 21:42:41 tbox kernel: [ 8.664764] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
Oct 28 21:42:41 tbox kernel: [ 8.665217] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x820-0x8ff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.665603] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xc00-0xcf7: clean.
Oct 28 21:42:41 tbox kernel: [ 8.666022] pcmcia_socket pcmcia_socket1: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
Oct 28 21:42:41 tbox kernel: [ 8.666085] pcmcia_socket pcmcia_socket1: cs: memory probe 0xa0000000-0xa0ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.666147] pcmcia_socket pcmcia_socket1: cs: memory probe 0x60000000-0x60ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.666215] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xa00-0xaff:
Oct 28 21:42:41 tbox kernel: [ 8.666367] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
Oct 28 21:42:41 tbox kernel: [ 8.667392] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
Oct 28 21:42:41 tbox kernel: [ 8.667844] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.668429] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7: clean.
Oct 28 21:42:41 tbox kernel: [ 8.668848] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
Oct 28 21:42:41 tbox kernel: [ 8.668909] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.668971] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.669039] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.669837] clean.
Oct 28 21:42:41 tbox kernel: [ 8.693688] Intel ICH 0000:00:1f.5: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 8.693726] Intel ICH 0000:00:1f.5: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 8.721299] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Oct 28 21:42:41 tbox kernel: [ 8.722206] Registered led device: ath5k-phy0::rx
Oct 28 21:42:41 tbox kernel: [ 8.722234] Registered led device: ath5k-phy0::tx
Oct 28 21:42:41 tbox kernel: [ 8.722246] ath5k phy0: Atheros AR5212 chip found (MAC: 0x56, PHY: 0x41)
Oct 28 21:42:41 tbox kernel: [ 8.722250] ath5k phy0: RF5111 5GHz radio found (0x17)
Oct 28 21:42:41 tbox kernel: [ 8.722253] ath5k phy0: RF2111 2GHz radio found (0x23)
Oct 28 21:42:41 tbox kernel: [ 8.728269] [drm] radeon: ring at 0x00000000D0001000
Oct 28 21:42:41 tbox kernel: [ 8.728291] [drm] ring test succeeded in 1 usecs
Oct 28 21:42:41 tbox kernel: [ 8.728547] [drm] radeon: ib pool ready.
Oct 28 21:42:41 tbox kernel: [ 8.728648] [drm] ib test succeeded in 0 usecs
Oct 28 21:42:41 tbox kernel: [ 8.728924] [drm] Panel ID String: SXGA+ Single (85MHz)
Oct 28 21:42:41 tbox kernel: [ 8.728927] [drm] Panel Size 1400x1050
Oct 28 21:42:41 tbox kernel: [ 8.739921] [drm] radeon legacy LVDS backlight initialized
Oct 28 21:42:41 tbox kernel: [ 8.758506] [drm] No TV DAC info found in BIOS
Oct 28 21:42:41 tbox kernel: [ 8.758637] [drm] Radeon Display Connectors
Oct 28 21:42:41 tbox kernel: [ 8.758640] [drm] Connector 0:
Oct 28 21:42:41 tbox kernel: [ 8.758643] [drm] VGA
Oct 28 21:42:41 tbox kernel: [ 8.758646] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
Oct 28 21:42:41 tbox kernel: [ 8.758648] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758650] [drm] CRT1: INTERNAL_DAC1
Oct 28 21:42:41 tbox kernel: [ 8.758653] [drm] Connector 1:
Oct 28 21:42:41 tbox kernel: [ 8.758655] [drm] DVI-D
Oct 28 21:42:41 tbox kernel: [ 8.758656] [drm] HPD1
Oct 28 21:42:41 tbox kernel: [ 8.758659] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
Oct 28 21:42:41 tbox kernel: [ 8.758661] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758663] [drm] DFP1: INTERNAL_TMDS1
Oct 28 21:42:41 tbox kernel: [ 8.758666] [drm] Connector 2:
Oct 28 21:42:41 tbox kernel: [ 8.758667] [drm] LVDS
Oct 28 21:42:41 tbox kernel: [ 8.758669] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758671] [drm] LCD1: INTERNAL_LVDS
Oct 28 21:42:41 tbox kernel: [ 8.758673] [drm] Connector 3:
Oct 28 21:42:41 tbox kernel: [ 8.758674] [drm] S-video
Oct 28 21:42:41 tbox kernel: [ 8.758676] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758678] [drm] TV1: INTERNAL_DAC2
Oct 28 21:42:41 tbox kernel: [ 8.764668] [drm] radeon: power management initialized
Oct 28 21:42:41 tbox kernel: [ 8.846521] [drm] fb mappable at 0xE0040000
Oct 28 21:42:41 tbox kernel: [ 8.846525] [drm] vram apper at 0xE0000000
Oct 28 21:42:41 tbox kernel: [ 8.846527] [drm] size 5914624
Oct 28 21:42:41 tbox kernel: [ 8.846529] [drm] fb depth is 24
Oct 28 21:42:41 tbox kernel: [ 8.846531] [drm] pitch is 5632
Oct 28 21:42:41 tbox kernel: [ 8.916696] Console: switching to colour frame buffer device 175x65
Oct 28 21:42:41 tbox kernel: [ 8.977288] fb0: radeondrmfb frame buffer device
Oct 28 21:42:41 tbox kernel: [ 8.977291] drm: registered panic notifier
Oct 28 21:42:41 tbox kernel: [ 8.978852] [drm] Initialized radeon 2.7.0 20080528 for 0000:01:00.0 on minor 0
Oct 28 21:42:41 tbox kernel: [ 9.510016] EXT4-fs (sda3): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:42:41 tbox kernel: [ 9.510357] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 9.616039] intel8x0_measure_ac97_clock: measured 55402 usecs (2669 samples)
Oct 28 21:42:41 tbox kernel: [ 9.616044] intel8x0: clocking to 48000
Oct 28 21:42:41 tbox kernel: [ 9.617512] Intel ICH Modem 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 9.617540] Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 10.687303] Adding 1052244k swap on /dev/sda2. Priority:-1 extents:1 across:1052244k
Oct 28 21:42:41 tbox kernel: [ 10.693961] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 11.290047] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 12.431524] init[1]: tmpwatch.service: main process exited, code=exited, status=203
Oct 28 21:42:41 tbox kernel: [ 12.431677] init[1]: Unit tmpwatch.service entered failed state.
Oct 28 21:42:41 tbox kernel: [ 13.267487] ADDRCONF(NETDEV_UP): wlan0: link is not ready
Oct 28 21:42:41 tbox kernel: [ 14.134990] IBM TrackPoint firmware: 0x0e, buttons: 3/3
Oct 28 21:42:41 tbox kernel: [ 14.355796] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input9
Oct 28 21:42:41 tbox kernel: [ 15.686258] lp0: using parport0 (interrupt-driven).
Oct 28 21:42:41 tbox kernel: [ 15.957198] ppdev: user-space parallel port driver
Oct 28 21:42:41 tbox kernel: [ 16.187060] sshd (1337): /proc/1337/oom_adj is deprecated, please use /proc/1337/oom_score_adj instead.
Oct 28 21:42:41 tbox kernel: [ 17.346972] P-state transition latency capped at 20 uS
Oct 28 21:42:42 tbox kernel: [ 18.253916] Bluetooth: Core ver 2.15
Oct 28 21:42:42 tbox kernel: [ 18.253950] NET: Registered protocol family 31
Oct 28 21:42:42 tbox kernel: [ 18.253952] Bluetooth: HCI device and connection manager initialized
Oct 28 21:42:42 tbox kernel: [ 18.253955] Bluetooth: HCI socket layer initialized
Oct 28 21:42:43 tbox kernel: [ 18.660168] wlan0: authenticate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:42:43 tbox kernel: [ 18.661618] wlan0: authenticated
Oct 28 21:42:43 tbox kernel: [ 18.661655] wlan0: associate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:42:43 tbox kernel: [ 18.665511] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
Oct 28 21:42:43 tbox kernel: [ 18.665522] wlan0: associated
Oct 28 21:42:43 tbox kernel: [ 18.667469] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Oct 28 21:42:43 tbox kernel: [ 19.187205] Bluetooth: L2CAP ver 2.15
Oct 28 21:42:43 tbox kernel: [ 19.187209] Bluetooth: L2CAP socket layer initialized
Oct 28 21:42:43 tbox kernel: [ 19.331748] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 28 21:42:43 tbox kernel: [ 19.331758] Bluetooth: BNEP filters: protocol multicast
Oct 28 21:42:43 tbox kernel: [ 19.335659] Bluetooth: RFCOMM TTY layer initialized
Oct 28 21:42:43 tbox kernel: [ 19.335664] Bluetooth: RFCOMM socket layer initialized
Oct 28 21:42:43 tbox kernel: [ 19.335667] Bluetooth: RFCOMM ver 1.11
Oct 28 21:42:44 tbox kernel: [ 19.596575] Bluetooth: SCO (Voice Link) ver 0.6
Oct 28 21:42:44 tbox kernel: [ 19.596579] Bluetooth: SCO socket layer initialized
Oct 28 21:42:44 tbox kernel: [ 19.997363] padlock: VIA PadLock not detected.
Oct 28 21:42:53 tbox kernel: [ 29.384046] wlan0: no IPv6 routers present
Oct 28 21:44:05 tbox kernel: [ 100.884524] ------------[ cut here ]------------
Oct 28 21:44:05 tbox kernel: [ 100.884718] kernel BUG at /home/sd/src/linux-2.6/linux-2.6.36/debian/build/source_i386_none/fs/ext4/inode.c:2721!
Oct 28 21:44:05 tbox kernel: [ 100.885100] invalid opcode: 0000 [#1] SMP
Oct 28 21:44:05 tbox kernel: [ 100.885277] last sysfs file: /sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:01/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/energy_full
Oct 28 21:44:05 tbox kernel: [ 100.885731] Modules linked in: aes_i586 aes_generic sco rfcomm bnep l2cap bluetooth acpi_cpufreq mperf cpufreq_powersave cpufreq_userspace cpufreq_stats cpufreq_conservative ppdev lp dm_crypt binfmt_misc snd_intel8x0m arc4 snd_intel8x0 snd_pcm_oss ecb snd_mixer_oss snd_ac97_codec radeon ac97_bus thinkpad_acpi snd_pcm pcmcia ath5k joydev snd_seq_midi ath ttm mac80211 snd_rawmidi snd_seq_midi_event nsc_ircc snd_seq yenta_socket drm_kms_helper snd_timer cfg80211 irda pcmcia_rsrc snd_seq_device rfkill drm i2c_i801 i2c_algo_bit pcmcia_core i2c_core snd parport_pc snd_page_alloc shpchp tpm_tis rng_core soundcore pci_hotplug parport tpm crc_ccitt tpm_bios psmouse video pcspkr led_class nvram serio_raw output processor evdev ac battery power_supply button fuse autofs4 ext4 mbcache jbd2 crc16 dm_mod usbhid hid usb_storage sg sd_mod sr_mod crc_t10dif cdrom ata_generic ata_piix libata uhci_hcd ehci_hcd scsi_mod usbcore e1000 thermal thermal_sys floppy nls_base [last unloaded: scsi_wait_sca
Oct 28 21:44:05 tbox kernel: n]
Oct 28 21:44:05 tbox kernel: [ 100.888026]
Oct 28 21:44:05 tbox kernel: [ 100.888026] Pid: 234, comm: jbd2/sda5-8 Not tainted 2.6.36-git11.sd.1-686 #1 2374SG6/2374SG6
Oct 28 21:44:05 tbox kernel: [ 100.888026] EIP: 0060:[<f85de3af>] EFLAGS: 00010246 CPU: 0
Oct 28 21:44:05 tbox kernel: [ 100.888026] EIP is at ext4_writepage+0x8d/0x1f1 [ext4]
Oct 28 21:44:05 tbox kernel: [ 100.888026] EAX: 40020029 EBX: f7691180 ECX: 05050030 EDX: 00000000
Oct 28 21:44:05 tbox kernel: [ 100.888026] ESI: 00005050 EDI: 00001000 EBP: f5f07848 ESP: efa21dbc
Oct 28 21:44:05 tbox kernel: [ 100.888026] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
Oct 28 21:44:05 tbox kernel: [ 100.888026] Process jbd2/sda5-8 (pid: 234, ti=efa20000 task=ef96d040 task.ti=efa20000)
Oct 28 21:44:05 tbox kernel: [ 100.888026] Stack:
Oct 28 21:44:05 tbox kernel: [ 100.888026] 0000000c 00000000 efa21e98 00000000 f5f07900 efa21e98 00000000 00005050
Oct 28 21:44:05 tbox kernel: [ 100.888026] c1090efa f7691180 c1091f30 00000001 f5f07900 00000005 00000002 00000000
Oct 28 21:44:05 tbox kernel: [ 100.888026] 0000000d 0000000e ef8de180 c1090ef2 f030877f 0000000e 00000000 f7690ee0
Oct 28 21:44:05 tbox kernel: [ 100.888026] Call Trace:
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1090efa>] ? __writepage+0x8/0x1f
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1091f30>] ? write_cache_pages+0x1cc/0x281
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1090ef2>] ? __writepage+0x0/0x1f
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1091ffb>] ? generic_writepages+0x16/0x1d
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8561925>] ? journal_submit_data_buffers+0xf5/0x150 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8561d6a>] ? jbd2_journal_commit_transaction+0x2d1/0xda3 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1025d55>] ? dequeue_task_fair+0x1b/0x57
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c103944d>] ? lock_timer_base+0x19/0x34
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c10394c4>] ? try_to_del_timer_sync+0x5c/0x63
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8566018>] ? kjournald2+0x9e/0x1c7 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c104422a>] ? autoremove_wake_function+0x0/0x29
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8565f7a>] ? kjournald2+0x0/0x1c7 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1043ed6>] ? kthread+0x63/0x68
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1043e73>] ? kthread+0x0/0x68
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c100353e>] ? kernel_thread_helper+0x6/0x10
Oct 28 21:44:05 tbox kernel: [ 100.888026] Code: 0c 89 34 24 89 ce 0f ac d6 0c 39 7c 24 04 75 05 39 34 24 74 07 bf 00 10 00 00 eb 08 89 cf 81 e7 ff 0f 00 00 8b 03 f6 c4 08 75 04 <0f> 0b eb fe c7 04 24 00 00 00 00 83 7b 0c 00 75 37 68 69 0c 5e
Oct 28 21:44:05 tbox kernel: [ 100.888026] EIP: [<f85de3af>] ext4_writepage+0x8d/0x1f1 [ext4] SS:ESP 0068:efa21dbc
Oct 28 21:44:05 tbox kernel: [ 100.968847] ---[ end trace 6fe8d288bc8bea39 ]---
Oct 28 21:44:59 tbox kernel: [ 154.455567] EXT3-fs: barriers not enabled
Oct 28 21:44:59 tbox kernel: [ 154.467107] kjournald starting. Commit interval 5 seconds
Oct 28 21:44:59 tbox kernel: [ 154.467574] EXT3-fs (sdb5): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:44:59 tbox kernel: [ 154.468926] EXT3-fs (sdb5): using internal journal
Oct 28 21:44:59 tbox kernel: [ 154.469150] EXT3-fs (sdb5): mounted filesystem with ordered data mode
[-- Attachment #5: messages --]
[-- Type: application/octet-stream, Size: 96144 bytes --]
Oct 28 21:15:24 tbox kernel: [ 0.106341] pci 0000:02:00.1: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 0.106458] NET: Registered protocol family 2
Oct 28 21:15:24 tbox kernel: [ 0.106540] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
Oct 28 21:15:24 tbox kernel: [ 0.106928] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 28 21:15:24 tbox kernel: [ 0.108817] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
Oct 28 21:15:24 tbox kernel: [ 0.109986] TCP: Hash tables configured (established 131072 bind 65536)
Oct 28 21:15:24 tbox kernel: [ 0.109991] TCP reno registered
Oct 28 21:15:24 tbox kernel: [ 0.109999] UDP hash table entries: 512 (order: 2, 16384 bytes)
Oct 28 21:15:24 tbox kernel: [ 0.110039] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Oct 28 21:15:24 tbox kernel: [ 0.110250] NET: Registered protocol family 1
Oct 28 21:15:24 tbox kernel: [ 0.110483] Unpacking initramfs...
Oct 28 21:15:24 tbox kernel: [ 0.528469] Freeing initrd memory: 9944k freed
Oct 28 21:15:24 tbox kernel: [ 0.544478] Simple Boot Flag at 0x35 set to 0x1
Oct 28 21:15:24 tbox kernel: [ 0.544882] audit: initializing netlink socket (disabled)
Oct 28 21:15:24 tbox kernel: [ 0.544904] type=2000 audit(1288300503.540:1): initialized
Oct 28 21:15:24 tbox kernel: [ 0.558006] highmem bounce pool size: 64 pages
Oct 28 21:15:24 tbox kernel: [ 0.558013] HugeTLB registered 4 MB page size, pre-allocated 0 pages
Oct 28 21:15:24 tbox kernel: [ 0.560579] VFS: Disk quotas dquot_6.5.2
Oct 28 21:15:24 tbox kernel: [ 0.560671] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Oct 28 21:15:24 tbox kernel: [ 0.560792] msgmni has been set to 1747
Oct 28 21:15:24 tbox kernel: [ 0.561071] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Oct 28 21:15:24 tbox kernel: [ 0.561077] io scheduler noop registered
Oct 28 21:15:24 tbox kernel: [ 0.561079] io scheduler deadline registered
Oct 28 21:15:24 tbox kernel: [ 0.561101] io scheduler cfq registered (default)
Oct 28 21:15:24 tbox kernel: [ 0.561394] ERST: Table is not found!
Oct 28 21:15:24 tbox kernel: [ 0.561414] isapnp: Scanning for PnP cards...
Oct 28 21:15:24 tbox kernel: [ 0.914731] isapnp: No Plug & Play device found
Oct 28 21:15:24 tbox kernel: [ 0.914976] Linux agpgart interface v0.103
Oct 28 21:15:24 tbox kernel: [ 0.915131] agpgart-intel 0000:00:00.0: Intel 855PM Chipset
Oct 28 21:15:24 tbox kernel: [ 0.928653] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
Oct 28 21:15:24 tbox kernel: [ 0.928742] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Oct 28 21:15:24 tbox kernel: [ 0.928845] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
Oct 28 21:15:24 tbox kernel: [ 0.929301] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
Oct 28 21:15:24 tbox kernel: [ 0.929415] serial 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 0.929422] serial 0000:00:1f.6: PCI INT B disabled
Oct 28 21:15:24 tbox kernel: [ 0.929550] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Oct 28 21:15:24 tbox kernel: [ 0.934483] serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 28 21:15:24 tbox kernel: [ 0.934494] serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 28 21:15:24 tbox kernel: [ 0.934652] mice: PS/2 mouse device common for all mice
Oct 28 21:15:24 tbox kernel: [ 0.934709] rtc_cmos 00:06: RTC can wake from S4
Oct 28 21:15:24 tbox kernel: [ 0.934765] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
Oct 28 21:15:24 tbox kernel: [ 0.934784] rtc0: alarms up to one month, y3k, 114 bytes nvram
Oct 28 21:15:24 tbox kernel: [ 0.934798] cpuidle: using governor ladder
Oct 28 21:15:24 tbox kernel: [ 0.934800] cpuidle: using governor menu
Oct 28 21:15:24 tbox kernel: [ 0.935158] TCP cubic registered
Oct 28 21:15:24 tbox kernel: [ 0.935352] NET: Registered protocol family 10
Oct 28 21:15:24 tbox kernel: [ 0.935881] lo: Disabled Privacy Extensions
Oct 28 21:15:24 tbox kernel: [ 0.936159] Mobile IPv6
Oct 28 21:15:24 tbox kernel: [ 0.936162] NET: Registered protocol family 17
Oct 28 21:15:24 tbox kernel: [ 0.936182] Using IPI No-Shortcut mode
Oct 28 21:15:24 tbox kernel: [ 0.936311] registered taskstats version 1
Oct 28 21:15:24 tbox kernel: [ 0.936562] rtc_cmos 00:06: setting system clock to 2010-10-28 21:15:04 UTC (1288300504)
Oct 28 21:15:24 tbox kernel: [ 0.936592] Initalizing network drop monitor service
Oct 28 21:15:24 tbox kernel: [ 0.936650] Freeing unused kernel memory: 404k freed
Oct 28 21:15:24 tbox kernel: [ 0.936951] Write protecting the kernel text: 2600k
Oct 28 21:15:24 tbox kernel: [ 0.936976] Write protecting the kernel read-only data: 924k
Oct 28 21:15:24 tbox kernel: [ 0.938678] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Oct 28 21:15:24 tbox kernel: [ 1.011217] udev[47]: starting version 164
Oct 28 21:15:24 tbox kernel: [ 1.198207] Floppy drive(s): fd0 is 1.44M
Oct 28 21:15:24 tbox kernel: [ 1.226346] FDC 0 is a National Semiconductor PC87306
Oct 28 21:15:24 tbox kernel: [ 1.226374] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k6-NAPI
Oct 28 21:15:24 tbox kernel: [ 1.226377] e1000: Copyright (c) 1999-2006 Intel Corporation.
Oct 28 21:15:24 tbox kernel: [ 1.226438] e1000 0000:02:01.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 1.481908] thermal LNXTHERM:00: registered as thermal_zone0
Oct 28 21:15:24 tbox kernel: [ 1.481913] ACPI: Thermal Zone [THM0] (46 C)
Oct 28 21:15:24 tbox kernel: [ 1.584776] usbcore: registered new interface driver usbfs
Oct 28 21:15:24 tbox kernel: [ 1.584942] usbcore: registered new interface driver hub
Oct 28 21:15:24 tbox kernel: [ 1.585860] usbcore: registered new device driver usb
Oct 28 21:15:24 tbox kernel: [ 1.596041] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 28 21:15:24 tbox kernel: [ 1.601063] SCSI subsystem initialized
Oct 28 21:15:24 tbox kernel: [ 1.604176] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 1.604442] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 1.604701] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
Oct 28 21:15:24 tbox kernel: [ 1.604707] ehci_hcd 0000:00:1d.7: PCI INT D -> Link[LNKH] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 1.604740] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Oct 28 21:15:24 tbox kernel: [ 1.604788] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
Oct 28 21:15:24 tbox kernel: [ 1.604830] ehci_hcd 0000:00:1d.7: debug port 1
Oct 28 21:15:24 tbox kernel: [ 1.616077] ehci_hcd 0000:00:1d.7: irq 11, io mem 0xc0000000
Oct 28 21:15:24 tbox kernel: [ 1.624072] uhci_hcd: USB Universal Host Controller Interface driver
Oct 28 21:15:24 tbox kernel: [ 1.628647] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Oct 28 21:15:24 tbox kernel: [ 1.628705] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Oct 28 21:15:24 tbox kernel: [ 1.628708] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:15:24 tbox kernel: [ 1.628712] usb usb1: Product: EHCI Host Controller
Oct 28 21:15:24 tbox kernel: [ 1.628715] usb usb1: Manufacturer: Linux 2.6.36-next-20101027.2-686 ehci_hcd
Oct 28 21:15:24 tbox kernel: [ 1.628718] usb usb1: SerialNumber: 0000:00:1d.7
Oct 28 21:15:24 tbox kernel: [ 1.628918] hub 1-0:1.0: USB hub found
Oct 28 21:15:24 tbox kernel: [ 1.628926] hub 1-0:1.0: 6 ports detected
Oct 28 21:15:24 tbox kernel: [ 1.629724] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 1.630098] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 1.630111] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 1.630129] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Oct 28 21:15:24 tbox kernel: [ 1.630143] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Oct 28 21:15:24 tbox kernel: [ 1.630174] uhci_hcd 0000:00:1d.0: irq 11, io base 0x00001800
Oct 28 21:15:24 tbox kernel: [ 1.630221] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:15:24 tbox kernel: [ 1.630225] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:15:24 tbox kernel: [ 1.630228] usb usb2: Product: UHCI Host Controller
Oct 28 21:15:24 tbox kernel: [ 1.630231] usb usb2: Manufacturer: Linux 2.6.36-next-20101027.2-686 uhci_hcd
Oct 28 21:15:24 tbox kernel: [ 1.630234] usb usb2: SerialNumber: 0000:00:1d.0
Oct 28 21:15:24 tbox kernel: [ 1.630397] hub 2-0:1.0: USB hub found
Oct 28 21:15:24 tbox kernel: [ 1.630402] hub 2-0:1.0: 2 ports detected
Oct 28 21:15:24 tbox kernel: [ 1.630877] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 1.659094] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 1.659340] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
Oct 28 21:15:24 tbox kernel: [ 1.659345] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 1.659359] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Oct 28 21:15:24 tbox kernel: [ 1.659374] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Oct 28 21:15:24 tbox kernel: [ 1.659400] uhci_hcd 0000:00:1d.1: irq 11, io base 0x00001820
Oct 28 21:15:24 tbox kernel: [ 1.659444] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:15:24 tbox kernel: [ 1.659448] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:15:24 tbox kernel: [ 1.659451] usb usb3: Product: UHCI Host Controller
Oct 28 21:15:24 tbox kernel: [ 1.659454] usb usb3: Manufacturer: Linux 2.6.36-next-20101027.2-686 uhci_hcd
Oct 28 21:15:24 tbox kernel: [ 1.659457] usb usb3: SerialNumber: 0000:00:1d.1
Oct 28 21:15:24 tbox kernel: [ 1.659697] hub 3-0:1.0: USB hub found
Oct 28 21:15:24 tbox kernel: [ 1.659702] hub 3-0:1.0: 2 ports detected
Oct 28 21:15:24 tbox kernel: [ 1.660055] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
Oct 28 21:15:24 tbox kernel: [ 1.660060] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 1.660072] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Oct 28 21:15:24 tbox kernel: [ 1.660082] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Oct 28 21:15:24 tbox kernel: [ 1.660105] uhci_hcd 0000:00:1d.2: irq 11, io base 0x00001840
Oct 28 21:15:24 tbox kernel: [ 1.660148] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:15:24 tbox kernel: [ 1.660152] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:15:24 tbox kernel: [ 1.660155] usb usb4: Product: UHCI Host Controller
Oct 28 21:15:24 tbox kernel: [ 1.660158] usb usb4: Manufacturer: Linux 2.6.36-next-20101027.2-686 uhci_hcd
Oct 28 21:15:24 tbox kernel: [ 1.660161] usb usb4: SerialNumber: 0000:00:1d.2
Oct 28 21:15:24 tbox kernel: [ 1.660382] hub 4-0:1.0: USB hub found
Oct 28 21:15:24 tbox kernel: [ 1.660388] hub 4-0:1.0: 2 ports detected
Oct 28 21:15:24 tbox kernel: [ 1.674503] ata_piix 0000:00:1f.1: enabling device (0005 -> 0007)
Oct 28 21:15:24 tbox kernel: [ 1.674514] ata_piix 0000:00:1f.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 1.675262] scsi0 : ata_piix
Oct 28 21:15:24 tbox kernel: [ 1.675473] scsi1 : ata_piix
Oct 28 21:15:24 tbox kernel: [ 1.676368] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1860 irq 14
Oct 28 21:15:24 tbox kernel: [ 1.676372] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1868 irq 15
Oct 28 21:15:24 tbox kernel: [ 1.713614] e1000 0000:02:01.0: eth0: (PCI:33MHz:32-bit) 00:0d:60:b0:62:87
Oct 28 21:15:24 tbox kernel: [ 1.713624] e1000 0000:02:01.0: eth0: Intel(R) PRO/1000 Network Connection
Oct 28 21:15:24 tbox kernel: [ 1.840961] ata1.00: HPA detected: current 110257519, native 117210240
Oct 28 21:15:24 tbox kernel: [ 1.840967] ata1.00: ATA-6: HTS726060M9AT00, MH4OA6BA, max UDMA/100
Oct 28 21:15:24 tbox kernel: [ 1.840971] ata1.00: 110257519 sectors, multi 16: LBA
Oct 28 21:15:24 tbox kernel: [ 1.841066] ata2.00: ATAPI: UJDA755yDVD/CDRW, 1.70, max UDMA/33
Oct 28 21:15:24 tbox kernel: [ 1.856672] ata2.00: configured for UDMA/33
Oct 28 21:15:24 tbox kernel: [ 1.856727] ata1.00: configured for UDMA/100
Oct 28 21:15:24 tbox kernel: [ 1.856889] scsi 0:0:0:0: Direct-Access ATA HTS726060M9AT00 MH4O PQ: 0 ANSI: 5
Oct 28 21:15:24 tbox kernel: [ 1.860006] scsi 1:0:0:0: CD-ROM MATSHITA UJDA755yDVD/CDRW 1.70 PQ: 0 ANSI: 5
Oct 28 21:15:24 tbox kernel: [ 1.891949] sd 0:0:0:0: [sda] 110257519 512-byte logical blocks: (56.4 GB/52.5 GiB)
Oct 28 21:15:24 tbox kernel: [ 1.892033] sd 0:0:0:0: [sda] Write Protect is off
Oct 28 21:15:24 tbox kernel: [ 1.892064] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 28 21:15:24 tbox kernel: [ 1.896230] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
Oct 28 21:15:24 tbox kernel: [ 1.896234] cdrom: Uniform CD-ROM driver Revision: 3.20
Oct 28 21:15:24 tbox kernel: [ 1.954012] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
Oct 28 21:15:24 tbox kernel: [ 1.954716] sd 0:0:0:0: [sda] Attached SCSI disk
Oct 28 21:15:24 tbox kernel: [ 1.971825] sd 0:0:0:0: Attached scsi generic sg0 type 0
Oct 28 21:15:24 tbox kernel: [ 1.973303] sr 1:0:0:0: Attached scsi generic sg1 type 5
Oct 28 21:15:24 tbox kernel: [ 1.996050] usb 1-4: new high speed USB device using ehci_hcd and address 3
Oct 28 21:15:24 tbox kernel: [ 2.129014] usb 1-4: New USB device found, idVendor=152d, idProduct=2329
Oct 28 21:15:24 tbox kernel: [ 2.129020] usb 1-4: New USB device strings: Mfr=10, Product=11, SerialNumber=3
Oct 28 21:15:24 tbox kernel: [ 2.129024] usb 1-4: Product: Storagebird 35EV821
Oct 28 21:15:24 tbox kernel: [ 2.129026] usb 1-4: Manufacturer: 0123456
Oct 28 21:15:24 tbox kernel: [ 2.129029] usb 1-4: SerialNumber: 000000000340
Oct 28 21:15:24 tbox kernel: [ 2.146376] Initializing USB Mass Storage driver...
Oct 28 21:15:24 tbox kernel: [ 2.146499] scsi2 : usb-storage 1-4:1.0
Oct 28 21:15:24 tbox kernel: [ 2.146665] usbcore: registered new interface driver usb-storage
Oct 28 21:15:24 tbox kernel: [ 2.146668] USB Mass Storage support registered.
Oct 28 21:15:24 tbox kernel: [ 2.368039] usb 3-1: new low speed USB device using uhci_hcd and address 2
Oct 28 21:15:24 tbox kernel: [ 2.544450] usb 3-1: New USB device found, idVendor=046d, idProduct=c00e
Oct 28 21:15:24 tbox kernel: [ 2.544456] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 28 21:15:24 tbox kernel: [ 2.544459] usb 3-1: Product: USB-PS/2 Optical Mouse
Oct 28 21:15:24 tbox kernel: [ 2.544462] usb 3-1: Manufacturer: Logitech
Oct 28 21:15:24 tbox kernel: [ 2.583945] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input1
Oct 28 21:15:24 tbox kernel: [ 2.584162] generic-usb 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.1-1/input0
Oct 28 21:15:24 tbox kernel: [ 2.584341] usbcore: registered new interface driver usbhid
Oct 28 21:15:24 tbox kernel: [ 2.584344] usbhid: USB HID core driver
Oct 28 21:15:24 tbox kernel: [ 2.664101] device-mapper: uevent: version 1.0.3
Oct 28 21:15:24 tbox kernel: [ 2.664749] device-mapper: ioctl: 4.18.0-ioctl (2010-06-29) initialised: dm-devel@redhat.com
Oct 28 21:15:24 tbox kernel: [ 2.916979] EXT4-fs (sda5): INFO: recovery required on readonly filesystem
Oct 28 21:15:24 tbox kernel: [ 2.916985] EXT4-fs (sda5): write access will be enabled during recovery
Oct 28 21:15:24 tbox kernel: [ 4.073662] EXT4-fs (sda5): orphan cleanup on readonly fs
Oct 28 21:15:24 tbox kernel: [ 4.073747] EXT4-fs (sda5): 5 orphan inodes deleted
Oct 28 21:15:24 tbox kernel: [ 4.073751] EXT4-fs (sda5): recovery complete
Oct 28 21:15:24 tbox kernel: [ 4.278682] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Oct 28 21:15:24 tbox kernel: [ 4.946295] init[1]: systemd 10 running in system mode. (+PAM -LIBWRAP -AUDIT +SELINUX +SYSVINIT; debian)
Oct 28 21:15:24 tbox kernel: [ 5.181293] scsi 2:0:0:0: Direct-Access WDC WD10 EAVS-00D7B0 PQ: 0 ANSI: 2 CCS
Oct 28 21:15:24 tbox kernel: [ 5.181800] sd 2:0:0:0: Attached scsi generic sg2 type 0
Oct 28 21:15:24 tbox kernel: [ 5.186510] init[1]: Set hostname to <tbox>.
Oct 28 21:15:24 tbox kernel: [ 6.228380] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:15:24 tbox kernel: [ 6.756126] fuse init (API version 7.15)
Oct 28 21:15:24 tbox kernel: [ 7.270838] init[1]: console-setup.service: control process exited, code=exited status=208
Oct 28 21:15:24 tbox kernel: [ 7.270944] init[1]: Unit console-setup.service entered failed state.
Oct 28 21:15:24 tbox kernel: [ 7.637979] udev[372]: starting version 164
Oct 28 21:15:24 tbox kernel: [ 8.076856] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 28 21:15:24 tbox kernel: [ 8.170352] ACPI: AC Adapter [AC] (on-line)
Oct 28 21:15:24 tbox kernel: [ 8.181565] Non-volatile memory driver v1.3
Oct 28 21:15:24 tbox kernel: [ 8.191446] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
Oct 28 21:15:24 tbox kernel: [ 8.191665] ACPI: Lid Switch [LID]
Oct 28 21:15:24 tbox kernel: [ 8.192231] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
Oct 28 21:15:24 tbox kernel: [ 8.192240] ACPI: Sleep Button [SLPB]
Oct 28 21:15:24 tbox kernel: [ 8.192399] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
Oct 28 21:15:24 tbox kernel: [ 8.192404] ACPI: Power Button [PWRF]
Oct 28 21:15:24 tbox kernel: [ 8.202169] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 28 21:15:24 tbox kernel: [ 8.354599] input: PC Speaker as /devices/platform/pcspkr/input/input5
Oct 28 21:15:24 tbox kernel: [ 8.424682] Marking TSC unstable due to TSC halts in idle
Oct 28 21:15:24 tbox kernel: [ 8.426374] Switching to clocksource acpi_pm
Oct 28 21:15:24 tbox kernel: [ 8.465577] parport_pc 00:0b: reported by Plug and Play ACPI
Oct 28 21:15:24 tbox kernel: [ 8.465623] parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
Oct 28 21:15:24 tbox kernel: [ 8.467326] NET: Registered protocol family 23
Oct 28 21:15:24 tbox kernel: [ 9.411608] EXT4-fs (sda3): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:15:24 tbox kernel: [ 9.411959] EXT4-fs (sda3): recovery complete
Oct 28 21:15:24 tbox kernel: [ 9.411965] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
Oct 28 21:15:24 tbox kernel: [ 13.209593] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Oct 28 21:15:24 tbox kernel: [ 13.210333] sd 2:0:0:0: [sdb] Write Protect is off
Oct 28 21:15:24 tbox kernel: [ 13.309944] sdb: sdb1 sdb2 sdb3 sdb4 < sdb5 sdb6 sdb7 sdb8 >
Oct 28 21:15:24 tbox kernel: [ 13.312721] sd 2:0:0:0: [sdb] Attached SCSI disk
Oct 28 21:15:24 tbox kernel: [ 13.361715] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:03/LNXVIDEO:00/input/input6
Oct 28 21:15:24 tbox kernel: [ 13.362306] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
Oct 28 21:15:24 tbox kernel: [ 13.436832] ACPI: Battery Slot [BAT0] (battery present)
Oct 28 21:15:24 tbox kernel: [ 13.500567] intel_rng: FWH not detected
Oct 28 21:15:24 tbox kernel: [ 13.612223] i801_smbus 0000:00:1f.3: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 13.635705] nsc-ircc 00:0c: activated
Oct 28 21:15:24 tbox kernel: [ 13.635874] nsc-ircc, chip->init
Oct 28 21:15:24 tbox kernel: [ 13.635883] nsc-ircc, Found chip at base=0x02e
Oct 28 21:15:24 tbox kernel: [ 13.635908] nsc-ircc, driver loaded (Dag Brattli)
Oct 28 21:15:24 tbox kernel: [ 13.640910] IrDA: Registered device irda0
Oct 28 21:15:24 tbox kernel: [ 13.640915] nsc-ircc, Using dongle: IBM31T1100 or Temic TFDS6000/TFDS6500
Oct 28 21:15:24 tbox kernel: [ 13.692169] yenta_cardbus 0000:02:00.0: CardBus bridge found [1014:0512]
Oct 28 21:15:24 tbox kernel: [ 13.692190] yenta_cardbus 0000:02:00.0: Using INTVAL to route CSC interrupts to PCI
Oct 28 21:15:24 tbox kernel: [ 13.692193] yenta_cardbus 0000:02:00.0: Routing CardBus interrupts to PCI
Oct 28 21:15:24 tbox kernel: [ 13.692199] yenta_cardbus 0000:02:00.0: TI: mfunc 0x01d21022, devctl 0x64
Oct 28 21:15:24 tbox kernel: [ 13.790179] cfg80211: Calling CRDA to update world regulatory domain
Oct 28 21:15:24 tbox kernel: [ 13.794183] [drm] Initialized drm 1.1.0 20060810
Oct 28 21:15:24 tbox kernel: [ 13.924912] yenta_cardbus 0000:02:00.0: ISA IRQ mask 0x0438, PCI irq 11
Oct 28 21:15:24 tbox kernel: [ 13.924918] yenta_cardbus 0000:02:00.0: Socket status: 30000006
Oct 28 21:15:24 tbox kernel: [ 13.924930] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
Oct 28 21:15:24 tbox kernel: [ 13.924935] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x4000-0x8fff: excluding 0x8000-0x803f
Oct 28 21:15:24 tbox kernel: [ 13.975683] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
Oct 28 21:15:24 tbox kernel: [ 13.975690] pcmcia_socket pcmcia_socket0: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xcfa00000-0xd01fffff
Oct 28 21:15:24 tbox kernel: [ 13.975717] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
Oct 28 21:15:24 tbox kernel: [ 13.975721] pcmcia_socket pcmcia_socket0: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
Oct 28 21:15:24 tbox kernel: [ 13.976264] yenta_cardbus 0000:02:00.1: CardBus bridge found [1014:0512]
Oct 28 21:15:24 tbox kernel: [ 13.976283] yenta_cardbus 0000:02:00.1: Using INTVAL to route CSC interrupts to PCI
Oct 28 21:15:24 tbox kernel: [ 13.976286] yenta_cardbus 0000:02:00.1: Routing CardBus interrupts to PCI
Oct 28 21:15:24 tbox kernel: [ 13.976292] yenta_cardbus 0000:02:00.1: TI: mfunc 0x01d21022, devctl 0x64
Oct 28 21:15:24 tbox kernel: [ 14.212927] yenta_cardbus 0000:02:00.1: ISA IRQ mask 0x0438, PCI irq 11
Oct 28 21:15:24 tbox kernel: [ 14.212933] yenta_cardbus 0000:02:00.1: Socket status: 30000006
Oct 28 21:15:24 tbox kernel: [ 14.212945] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
Oct 28 21:15:24 tbox kernel: [ 14.212950] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x4000-0x8fff: excluding 0x8000-0x803f
Oct 28 21:15:24 tbox kernel: [ 14.230049] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
Oct 28 21:15:24 tbox kernel: [ 14.230055] pcmcia_socket pcmcia_socket1: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xcfa00000-0xd01fffff
Oct 28 21:15:24 tbox kernel: [ 14.230082] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
Oct 28 21:15:24 tbox kernel: [ 14.230087] pcmcia_socket pcmcia_socket1: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
Oct 28 21:15:24 tbox kernel: [ 14.230959] ath5k 0000:02:02.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 14.231074] ath5k 0000:02:02.0: registered as 'phy0'
Oct 28 21:15:24 tbox kernel: [ 14.510455] Synaptics Touchpad, model: 1, fw: 5.9, id: 0x2c6ab1, caps: 0x884793/0x0/0x0
Oct 28 21:15:24 tbox kernel: [ 14.510466] serio: Synaptics pass-through port at isa0060/serio1/input0
Oct 28 21:15:24 tbox kernel: [ 14.539554] thinkpad_acpi: ThinkPad ACPI Extras v0.24
Oct 28 21:15:24 tbox kernel: [ 14.539558] thinkpad_acpi: http://ibm-acpi.sf.net/
Oct 28 21:15:24 tbox kernel: [ 14.539561] thinkpad_acpi: ThinkPad BIOS 1RETDRWW (3.23 ), EC 1RHT71WW-3.04
Oct 28 21:15:24 tbox kernel: [ 14.539564] thinkpad_acpi: IBM ThinkPad T40p, model 2374SG6
Oct 28 21:15:24 tbox kernel: [ 14.541203] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
Oct 28 21:15:24 tbox kernel: [ 14.559680] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
Oct 28 21:15:24 tbox kernel: [ 14.568436] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
Oct 28 21:15:24 tbox kernel: [ 14.583244] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
Oct 28 21:15:24 tbox kernel: [ 14.591079] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input8
Oct 28 21:15:24 tbox kernel: [ 14.625825] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
Oct 28 21:15:24 tbox kernel: [ 14.626994] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
Oct 28 21:15:24 tbox kernel: [ 14.627492] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.627918] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7:
Oct 28 21:15:24 tbox kernel: [ 14.628198] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
Oct 28 21:15:24 tbox kernel: [ 14.629346] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
Oct 28 21:15:24 tbox kernel: [ 14.629846] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x820-0x8ff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.630272] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xc00-0xcf7: clean.
Oct 28 21:15:24 tbox kernel: [ 14.630735] pcmcia_socket pcmcia_socket1: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
Oct 28 21:15:24 tbox kernel: [ 14.630798] pcmcia_socket pcmcia_socket1: cs: memory probe 0xa0000000-0xa0ffffff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.630859] pcmcia_socket pcmcia_socket1: cs: memory probe 0x60000000-0x60ffffff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.630924] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xa00-0xaff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.632285] clean.
Oct 28 21:15:24 tbox kernel: [ 14.632352] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
Oct 28 21:15:24 tbox kernel: [ 14.632414] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.632475] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.632540] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
Oct 28 21:15:24 tbox kernel: [ 14.636944] Intel ICH 0000:00:1f.5: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 14.652213] [drm] radeon kernel modesetting enabled.
Oct 28 21:15:24 tbox kernel: [ 14.652460] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 14.652474] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:15:24 tbox kernel: [ 14.652486] radeon 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 14.657394] [drm] initializing kernel modesetting (RV250 0x1002:0x4C66).
Oct 28 21:15:24 tbox kernel: [ 14.657588] [drm] register mmio base: 0xC0100000
Oct 28 21:15:24 tbox kernel: [ 14.657591] [drm] register mmio size: 65536
Oct 28 21:15:24 tbox kernel: [ 14.657969] agpgart-intel 0000:00:00.0: AGP 2.0 bridge
Oct 28 21:15:24 tbox kernel: [ 14.657990] agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x mode
Oct 28 21:15:24 tbox kernel: [ 14.658029] radeon 0000:01:00.0: putting AGP V2 device into 4x mode
Oct 28 21:15:24 tbox kernel: [ 14.658059] radeon 0000:01:00.0: GTT: 256M 0xD0000000 - 0xDFFFFFFF
Oct 28 21:15:24 tbox kernel: [ 14.658069] radeon 0000:01:00.0: VRAM: 128M 0xE0000000 - 0xE7FFFFFF (64M used)
Oct 28 21:15:24 tbox kernel: [ 14.658079] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
Oct 28 21:15:24 tbox kernel: [ 14.658082] [drm] Driver supports precise vblank timestamp query.
Oct 28 21:15:24 tbox kernel: [ 14.658105] [drm] radeon: irq initialized.
Oct 28 21:15:24 tbox kernel: [ 14.659168] [drm] Detected VRAM RAM=128M, BAR=128M
Oct 28 21:15:24 tbox kernel: [ 14.659172] [drm] RAM width 128bits DDR
Oct 28 21:15:24 tbox kernel: [ 14.659246] [TTM] Zone kernel: Available graphics memory: 447570 kiB.
Oct 28 21:15:24 tbox kernel: [ 14.659249] [TTM] Zone highmem: Available graphics memory: 516886 kiB.
Oct 28 21:15:24 tbox kernel: [ 14.659252] [TTM] Initializing pool allocator.
Oct 28 21:15:24 tbox kernel: [ 14.659281] [drm] radeon: 64M of VRAM memory ready
Oct 28 21:15:24 tbox kernel: [ 14.659284] [drm] radeon: 256M of GTT memory ready.
Oct 28 21:15:24 tbox kernel: [ 14.660766] radeon 0000:01:00.0: WB enabled
Oct 28 21:15:24 tbox kernel: [ 14.661409] [drm] Loading R200 Microcode
Oct 28 21:15:24 tbox kernel: [ 14.748421] [drm] radeon: ring at 0x00000000D0001000
Oct 28 21:15:24 tbox kernel: [ 14.748445] [drm] ring test succeeded in 1 usecs
Oct 28 21:15:24 tbox kernel: [ 14.748704] [drm] radeon: ib pool ready.
Oct 28 21:15:24 tbox kernel: [ 14.748802] [drm] ib test succeeded in 0 usecs
Oct 28 21:15:24 tbox kernel: [ 14.749096] [drm] Panel ID String: SXGA+ Single (85MHz)
Oct 28 21:15:24 tbox kernel: [ 14.749099] [drm] Panel Size 1400x1050
Oct 28 21:15:24 tbox kernel: [ 14.760092] [drm] radeon legacy LVDS backlight initialized
Oct 28 21:15:24 tbox kernel: [ 14.765741] ath5k phy0: Atheros AR5212 chip found (MAC: 0x56, PHY: 0x41)
Oct 28 21:15:24 tbox kernel: [ 14.765744] ath5k phy0: RF5111 5GHz radio found (0x17)
Oct 28 21:15:24 tbox kernel: [ 14.765747] ath5k phy0: RF2111 2GHz radio found (0x23)
Oct 28 21:15:24 tbox kernel: [ 14.768671] [drm] No TV DAC info found in BIOS
Oct 28 21:15:24 tbox kernel: [ 14.768779] [drm] Radeon Display Connectors
Oct 28 21:15:24 tbox kernel: [ 14.768781] [drm] Connector 0:
Oct 28 21:15:24 tbox kernel: [ 14.768783] [drm] VGA
Oct 28 21:15:24 tbox kernel: [ 14.768787] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
Oct 28 21:15:24 tbox kernel: [ 14.768790] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768792] [drm] CRT1: INTERNAL_DAC1
Oct 28 21:15:24 tbox kernel: [ 14.768794] [drm] Connector 1:
Oct 28 21:15:24 tbox kernel: [ 14.768796] [drm] DVI-D
Oct 28 21:15:24 tbox kernel: [ 14.768798] [drm] HPD1
Oct 28 21:15:24 tbox kernel: [ 14.768801] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
Oct 28 21:15:24 tbox kernel: [ 14.768804] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768806] [drm] DFP1: INTERNAL_TMDS1
Oct 28 21:15:24 tbox kernel: [ 14.768808] [drm] Connector 2:
Oct 28 21:15:24 tbox kernel: [ 14.768810] [drm] LVDS
Oct 28 21:15:24 tbox kernel: [ 14.768811] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768813] [drm] LCD1: INTERNAL_LVDS
Oct 28 21:15:24 tbox kernel: [ 14.768815] [drm] Connector 3:
Oct 28 21:15:24 tbox kernel: [ 14.768817] [drm] S-video
Oct 28 21:15:24 tbox kernel: [ 14.768819] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768821] [drm] TV1: INTERNAL_DAC2
Oct 28 21:15:24 tbox kernel: [ 14.787425] [drm] radeon: power management initialized
Oct 28 21:15:24 tbox kernel: [ 14.876153] [drm] fb mappable at 0xE0040000
Oct 28 21:15:24 tbox kernel: [ 14.876158] [drm] vram apper at 0xE0000000
Oct 28 21:15:24 tbox kernel: [ 14.876160] [drm] size 5914624
Oct 28 21:15:24 tbox kernel: [ 14.876162] [drm] fb depth is 24
Oct 28 21:15:24 tbox kernel: [ 14.876164] [drm] pitch is 5632
Oct 28 21:15:24 tbox kernel: [ 14.945647] Console: switching to colour frame buffer device 175x65
Oct 28 21:15:24 tbox kernel: [ 14.980430] fb0: radeondrmfb frame buffer device
Oct 28 21:15:24 tbox kernel: [ 14.980432] drm: registered panic notifier
Oct 28 21:15:24 tbox kernel: [ 14.980666] [drm] Initialized radeon 2.7.0 20080528 for 0000:01:00.0 on minor 0
Oct 28 21:15:24 tbox kernel: [ 15.560039] intel8x0_measure_ac97_clock: measured 55394 usecs (2669 samples)
Oct 28 21:15:24 tbox kernel: [ 15.560045] intel8x0: clocking to 48000
Oct 28 21:15:24 tbox kernel: [ 15.561553] Intel ICH Modem 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 16.233693] Adding 1052244k swap on /dev/sda2. Priority:-1 extents:1 across:1052244k
Oct 28 21:15:24 tbox kernel: [ 16.240295] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:15:24 tbox kernel: [ 16.869841] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:15:24 tbox kernel: [ 18.095532] init[1]: tmpwatch.service: main process exited, code=exited, status=203
Oct 28 21:15:24 tbox kernel: [ 18.095668] init[1]: Unit tmpwatch.service entered failed state.
Oct 28 21:15:24 tbox kernel: [ 18.988405] ADDRCONF(NETDEV_UP): wlan0: link is not ready
Oct 28 21:15:24 tbox kernel: [ 20.048511] IBM TrackPoint firmware: 0x0e, buttons: 3/3
Oct 28 21:15:24 tbox kernel: [ 20.251736] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input9
Oct 28 21:15:24 tbox /usr/sbin/gpm[1326]: *** info [daemon/startup.c(131)]:
Oct 28 21:15:24 tbox /usr/sbin/gpm[1326]: Started gpm successfully. Entered daemon mode.
Oct 28 21:15:25 tbox kernel: [ 22.323731] lp0: using parport0 (interrupt-driven).
Oct 28 21:15:25 tbox kernel: [ 22.368740] ppdev: user-space parallel port driver
Oct 28 21:15:26 tbox kernel: [ 22.657333] sshd (1367): /proc/1367/oom_adj is deprecated, please use /proc/1367/oom_score_adj instead.
Oct 28 21:15:27 tbox kernel: [ 23.800827] P-state transition latency capped at 20 uS
Oct 28 21:15:27 tbox kernel: [ 24.327910] Bluetooth: Core ver 2.15
Oct 28 21:15:27 tbox kernel: [ 24.327943] NET: Registered protocol family 31
Oct 28 21:15:27 tbox kernel: [ 24.327945] Bluetooth: HCI device and connection manager initialized
Oct 28 21:15:27 tbox kernel: [ 24.327950] Bluetooth: HCI socket layer initialized
Oct 28 21:15:27 tbox kernel: [ 24.382373] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Oct 28 21:15:28 tbox kernel: [ 24.446975] Bluetooth: L2CAP ver 2.15
Oct 28 21:15:28 tbox kernel: [ 24.446980] Bluetooth: L2CAP socket layer initialized
Oct 28 21:15:28 tbox kernel: [ 24.597871] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 28 21:15:28 tbox kernel: [ 24.597875] Bluetooth: BNEP filters: protocol multicast
Oct 28 21:15:28 tbox kernel: [ 24.603912] Bluetooth: RFCOMM TTY layer initialized
Oct 28 21:15:28 tbox kernel: [ 24.603919] Bluetooth: RFCOMM socket layer initialized
Oct 28 21:15:28 tbox kernel: [ 24.603922] Bluetooth: RFCOMM ver 1.11
Oct 28 21:15:28 tbox kernel: [ 25.243227] Bluetooth: SCO (Voice Link) ver 0.6
Oct 28 21:15:28 tbox kernel: [ 25.243232] Bluetooth: SCO socket layer initialized
Oct 28 21:15:29 tbox kernel: [ 25.476743] padlock: VIA PadLock not detected.
Oct 28 21:15:30 tbox init[1]: Startup finished in 5s 187ms 42us (kernel) + 21s 882ms 481us (userspace) = 27s 69ms 523us.
Oct 28 21:29:44 tbox kernel: [ 880.824137] EXT3-fs: barriers not enabled
Oct 28 21:29:44 tbox kernel: [ 880.846819] kjournald starting. Commit interval 5 seconds
Oct 28 21:29:44 tbox kernel: [ 880.847089] EXT3-fs (sdb5): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:29:44 tbox kernel: [ 880.847853] EXT3-fs (sdb5): using internal journal
Oct 28 21:29:44 tbox kernel: [ 880.847866] EXT3-fs (sdb5): mounted filesystem with ordered data mode
Oct 28 21:42:00 tbox kernel: Kernel logging (proc) stopped.
Oct 28 21:42:00 tbox rsyslogd: [origin software="rsyslogd" swVersion="4.6.4" x-pid="1278" x-info="http://www.rsyslog.com"] exiting on signal 15.
Oct 28 21:42:41 tbox kernel: imklog 4.6.4, log source = /proc/kmsg started.
Oct 28 21:42:41 tbox rsyslogd: [origin software="rsyslogd" swVersion="4.6.4" x-pid="1309" x-info="http://www.rsyslog.com"] (re)start
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing cgroup subsys cpuset
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing cgroup subsys cpu
Oct 28 21:42:41 tbox kernel: [ 0.000000] Linux version 2.6.36-git11.sd.1-686 (Debian 2.6.36-9~git11.sd.1~dileks.1) (sedat.dilek@gmail.com) (gcc version 4.4.5 (Debian 4.4.5-5) ) #1 SMP Thu Oct 28 18:58:11 CEST 2010
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-provided physical RAM map:
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 000000003ff60000 (usable)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000003ff60000 - 000000003ff77000 (ACPI data)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000003ff77000 - 000000003ff79000 (ACPI NVS)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000003ff80000 - 0000000040000000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Notice: NX (Execute Disable) protection missing in CPU or disabled in BIOS!
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMI present.
Oct 28 21:42:41 tbox kernel: [ 0.000000] last_pfn = 0x3ff60 max_arch_pfn = 0x100000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PAT not supported by CPU.
Oct 28 21:42:41 tbox kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
Oct 28 21:42:41 tbox kernel: [ 0.000000] RAMDISK: 2f5cd000 - 2ffc8000
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: RSDP 000f6d70 00024 (v02 IBM )
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: XSDT 3ff6a672 0004C (v01 IBM TP-1R 00003230 LTP 00000000)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: FACP 3ff6a700 000F4 (v03 IBM TP-1R 00003230 IBM 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20101013/tbfadt-526)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20101013/tbfadt-557)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: DSDT 3ff6a8e7 0C530 (v01 IBM TP-1R 00003230 MSFT 0100000E)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: FACS 3ff78000 00040
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: SSDT 3ff6a8b4 00033 (v01 IBM TP-1R 00003230 MSFT 0100000E)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: ECDT 3ff76e17 00052 (v01 IBM TP-1R 00003230 IBM 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: TCPA 3ff76e69 00032 (v01 IBM TP-1R 00003230 PTL 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: BOOT 3ff76fd8 00028 (v01 IBM TP-1R 00003230 LTP 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] 135MB HIGHMEM available.
Oct 28 21:42:41 tbox kernel: [ 0.000000] 887MB LOWMEM available.
Oct 28 21:42:41 tbox kernel: [ 0.000000] mapped low ram: 0 - 377fe000
Oct 28 21:42:41 tbox kernel: [ 0.000000] low ram: 0 - 377fe000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Zone PFN ranges:
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Normal 0x00001000 -> 0x000377fe
Oct 28 21:42:41 tbox kernel: [ 0.000000] HighMem 0x000377fe -> 0x0003ff60
Oct 28 21:42:41 tbox kernel: [ 0.000000] Movable zone start PFN for each node
Oct 28 21:42:41 tbox kernel: [ 0.000000] early_node_map[2] active PFN ranges
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009f
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0: 0x00000100 -> 0x0003ff60
Oct 28 21:42:41 tbox kernel: [ 0.000000] Using APIC driver default
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
Oct 28 21:42:41 tbox kernel: [ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
Oct 28 21:42:41 tbox kernel: [ 0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
Oct 28 21:42:41 tbox kernel: [ 0.000000] APIC: disable apic facility
Oct 28 21:42:41 tbox kernel: [ 0.000000] APIC: switched to apic NOOP
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bf800000)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
Oct 28 21:42:41 tbox kernel: [ 0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:1 nr_node_ids:1
Oct 28 21:42:41 tbox kernel: [ 0.000000] PERCPU: Embedded 12 pages/cpu @f6800000 s26880 r0 d22272 u4194304
Oct 28 21:42:41 tbox kernel: [ 0.000000] pcpu-alloc: s26880 r0 d22272 u4194304 alloc=1*4194304
Oct 28 21:42:41 tbox kernel: [ 0.000000] pcpu-alloc: [0] 0
Oct 28 21:42:41 tbox kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259824
Oct 28 21:42:41 tbox kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.36-git11.sd.1-686 root=UUID=1ceb69a7-ecf4-47e9-a231-b74e0f0a9b62 ro radeon.modeset=1 3 quiet
Oct 28 21:42:41 tbox kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing CPU#0
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing HighMem for node 0 (000377fe:0003ff60)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Memory: 1023172k/1047936k available (2594k kernel code, 24312k reserved, 1282k data, 388k init, 138632k highmem)
Oct 28 21:42:41 tbox kernel: [ 0.000000] virtual kernel memory layout:
Oct 28 21:42:41 tbox kernel: [ 0.000000] fixmap : 0xffd36000 - 0xfffff000 (2852 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] .init : 0xc13ca000 - 0xc142b000 ( 388 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] .data : 0xc1288bb4 - 0xc13c9538 (1282 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] .text : 0xc1000000 - 0xc1288bb4 (2594 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
Oct 28 21:42:41 tbox kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Oct 28 21:42:41 tbox kernel: [ 0.000000] Hierarchical RCU implementation.
Oct 28 21:42:41 tbox kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
Oct 28 21:42:41 tbox kernel: [ 0.000000] RCU-based detection of stalled CPUs is disabled.
Oct 28 21:42:41 tbox kernel: [ 0.000000] NR_IRQS:1280
Oct 28 21:42:41 tbox kernel: [ 0.000000] Extended CMOS year: 2000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Console: colour VGA+ 80x25
Oct 28 21:42:41 tbox kernel: [ 0.000000] console [tty0] enabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] Fast TSC calibration using PIT
Oct 28 21:42:41 tbox kernel: [ 0.000000] Detected 1694.278 MHz processor.
Oct 28 21:42:41 tbox kernel: [ 0.008008] Calibrating delay loop (skipped), value calculated using timer frequency.. 3388.55 BogoMIPS (lpj=6777112)
Oct 28 21:42:41 tbox kernel: [ 0.008014] pid_max: default: 32768 minimum: 301
Oct 28 21:42:41 tbox kernel: [ 0.008049] Security Framework initialized
Oct 28 21:42:41 tbox kernel: [ 0.008059] SELinux: Disabled at boot.
Oct 28 21:42:41 tbox kernel: [ 0.008081] Mount-cache hash table entries: 512
Oct 28 21:42:41 tbox kernel: [ 0.008291] Initializing cgroup subsys ns
Oct 28 21:42:41 tbox kernel: [ 0.008298] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
Oct 28 21:42:41 tbox kernel: [ 0.008302] Initializing cgroup subsys cpuacct
Oct 28 21:42:41 tbox kernel: [ 0.008308] Initializing cgroup subsys devices
Oct 28 21:42:41 tbox kernel: [ 0.008311] Initializing cgroup subsys freezer
Oct 28 21:42:41 tbox kernel: [ 0.008314] Initializing cgroup subsys net_cls
Oct 28 21:42:41 tbox kernel: [ 0.008318] Initializing cgroup subsys blkio
Oct 28 21:42:41 tbox kernel: [ 0.008372] mce: CPU supports 5 MCE banks
Oct 28 21:42:41 tbox kernel: [ 0.008397] Performance Events:
Oct 28 21:42:41 tbox kernel: [ 0.008400] no APIC, boot with the "lapic" boot parameter to force-enable it.
Oct 28 21:42:41 tbox kernel: [ 0.008403] no hardware sampling interrupt available.
Oct 28 21:42:41 tbox kernel: [ 0.008405] p6 PMU driver.
Oct 28 21:42:41 tbox kernel: [ 0.008411] ... version: 0
Oct 28 21:42:41 tbox kernel: [ 0.008413] ... bit width: 32
Oct 28 21:42:41 tbox kernel: [ 0.008415] ... generic registers: 2
Oct 28 21:42:41 tbox kernel: [ 0.008418] ... value mask: 00000000ffffffff
Oct 28 21:42:41 tbox kernel: [ 0.008420] ... max period: 000000007fffffff
Oct 28 21:42:41 tbox kernel: [ 0.008422] ... fixed-purpose events: 0
Oct 28 21:42:41 tbox kernel: [ 0.008425] ... event mask: 0000000000000003
Oct 28 21:42:41 tbox kernel: [ 0.008947] SMP alternatives: switching to UP code
Oct 28 21:42:41 tbox kernel: [ 0.013686] Freeing SMP alternatives: 16k freed
Oct 28 21:42:41 tbox kernel: [ 0.013694] ACPI: Core revision 20101013
Oct 28 21:42:41 tbox kernel: [ 0.029767] ACPI: setting ELCR to 0200 (from 0800)
Oct 28 21:42:41 tbox kernel: [ 0.032080] weird, boot CPU (#0) not listed by the BIOS.
Oct 28 21:42:41 tbox kernel: [ 0.032083] SMP motherboard not detected.
Oct 28 21:42:41 tbox kernel: [ 0.032086] Local APIC not detected. Using dummy APIC emulation.
Oct 28 21:42:41 tbox kernel: [ 0.032088] SMP disabled
Oct 28 21:42:41 tbox kernel: [ 0.032440] Brought up 1 CPUs
Oct 28 21:42:41 tbox kernel: [ 0.032443] Total of 1 processors activated (3388.55 BogoMIPS).
Oct 28 21:42:41 tbox kernel: [ 0.036162] devtmpfs: initialized
Oct 28 21:42:41 tbox kernel: [ 0.036579] regulator: core version 0.5
Oct 28 21:42:41 tbox kernel: [ 0.036632] NET: Registered protocol family 16
Oct 28 21:42:41 tbox kernel: [ 0.036756] ACPI: bus type pci registered
Oct 28 21:42:41 tbox kernel: [ 0.037076] PCI: PCI BIOS revision 2.10 entry at 0xfd8d6, last bus=8
Oct 28 21:42:41 tbox kernel: [ 0.037079] PCI: Using configuration type 1 for base access
Oct 28 21:42:41 tbox kernel: [ 0.037566] bio: create slab <bio-0> at 0
Oct 28 21:42:41 tbox kernel: [ 0.039245] ACPI: EC: EC description table is found, configuring boot EC
Oct 28 21:42:41 tbox kernel: [ 0.054262] ACPI: Interpreter enabled
Oct 28 21:42:41 tbox kernel: [ 0.054267] ACPI: (supports S0 S3 S4 S5)
Oct 28 21:42:41 tbox kernel: [ 0.054291] ACPI: Using PIC for interrupt routing
Oct 28 21:42:41 tbox kernel: [ 0.060784] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
Oct 28 21:42:41 tbox kernel: [ 0.060826] ACPI: Power Resource [PUBS] (on)
Oct 28 21:42:41 tbox kernel: [ 0.060826] ACPI: ACPI Dock Station Driver: 3 docks/bays found
Oct 28 21:42:41 tbox kernel: [ 0.060826] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
Oct 28 21:42:41 tbox kernel: [ 0.060826] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Oct 28 21:42:41 tbox kernel: [ 0.061430] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH4 ACPI/GPIO/TCO
Oct 28 21:42:41 tbox kernel: [ 0.061435] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH4 GPIO
Oct 28 21:42:41 tbox kernel: [ 0.064125] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 28 21:42:41 tbox kernel: [ 0.064518] pci 0000:00:1e.0: PCI bridge to [bus 02-08] (subtractive decode)
Oct 28 21:42:41 tbox kernel: [ 0.067895] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068034] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068161] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068286] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068389] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 28 21:42:41 tbox kernel: [ 0.068493] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 28 21:42:41 tbox kernel: [ 0.068598] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 28 21:42:41 tbox kernel: [ 0.068724] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068774] HEST: Table is not found!
Oct 28 21:42:41 tbox kernel: [ 0.068852] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Oct 28 21:42:41 tbox kernel: [ 0.068856] vgaarb: loaded
Oct 28 21:42:41 tbox kernel: [ 0.068921] PCI: Using ACPI for IRQ routing
Oct 28 21:42:41 tbox kernel: [ 0.069270] Switching to clocksource tsc
Oct 28 21:42:41 tbox kernel: [ 0.070692] pnp: PnP ACPI init
Oct 28 21:42:41 tbox kernel: [ 0.070716] ACPI: bus type pnp registered
Oct 28 21:42:41 tbox kernel: [ 0.072512] pnp: PnP ACPI: found 13 devices
Oct 28 21:42:41 tbox kernel: [ 0.072515] ACPI: ACPI bus type pnp unregistered
Oct 28 21:42:41 tbox kernel: [ 0.072519] PnPBIOS: Disabled by ACPI PNP
Oct 28 21:42:41 tbox kernel: [ 0.072534] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072539] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072543] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072547] system 00:00: [mem 0x000c8000-0x000cbfff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072551] system 00:00: [mem 0x000cc000-0x000cffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072555] system 00:00: [mem 0x000d0000-0x000d3fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072559] system 00:00: [mem 0x000dc000-0x000dffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072563] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072567] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072571] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072575] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072579] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072584] system 00:00: [mem 0x00100000-0x3fffffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072588] system 00:00: [mem 0xfec00000-0xffffffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072597] system 00:02: [io 0x1000-0x107f] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072600] system 00:02: [io 0x1180-0x11bf] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072604] system 00:02: [io 0x15e0-0x15ef] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072608] system 00:02: [io 0x1600-0x162f] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072612] system 00:02: [io 0x1632-0x167f] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072615] system 00:02: [io 0x1630-0x1631] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.109713] pci 0000:00:1f.1: BAR 5: assigned [mem 0x40000000-0x400003ff]
Oct 28 21:42:41 tbox kernel: [ 0.109721] pci 0000:00:1f.1: BAR 5: set to [mem 0x40000000-0x400003ff] (PCI address [0x40000000-0x400003ff]
Oct 28 21:42:41 tbox kernel: [ 0.109727] pci 0000:01:00.0: BAR 6: assigned [mem 0xc0120000-0xc013ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109731] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 28 21:42:41 tbox kernel: [ 0.109735] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Oct 28 21:42:41 tbox kernel: [ 0.109740] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
Oct 28 21:42:41 tbox kernel: [ 0.109744] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109752] pci 0000:02:00.0: BAR 15: assigned [mem 0xe8000000-0xebffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109756] pci 0000:02:00.0: BAR 16: assigned [mem 0xc4000000-0xc7ffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109760] pci 0000:02:00.1: BAR 15: assigned [mem 0xec000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109764] pci 0000:02:00.1: BAR 16: assigned [mem 0xc8000000-0xcbffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109768] pci 0000:02:01.0: BAR 6: assigned [mem 0xc0240000-0xc024ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109772] pci 0000:02:00.0: BAR 13: assigned [io 0x4000-0x40ff]
Oct 28 21:42:41 tbox kernel: [ 0.109776] pci 0000:02:00.0: BAR 14: assigned [io 0x4400-0x44ff]
Oct 28 21:42:41 tbox kernel: [ 0.109779] pci 0000:02:00.1: BAR 13: assigned [io 0x4800-0x48ff]
Oct 28 21:42:41 tbox kernel: [ 0.109783] pci 0000:02:00.1: BAR 14: assigned [io 0x4c00-0x4cff]
Oct 28 21:42:41 tbox kernel: [ 0.109786] pci 0000:02:00.0: CardBus bridge to [bus 03-06]
Oct 28 21:42:41 tbox kernel: [ 0.109789] pci 0000:02:00.0: bridge window [io 0x4000-0x40ff]
Oct 28 21:42:41 tbox kernel: [ 0.109794] pci 0000:02:00.0: bridge window [io 0x4400-0x44ff]
Oct 28 21:42:41 tbox kernel: [ 0.109800] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xebffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109805] pci 0000:02:00.0: bridge window [mem 0xc4000000-0xc7ffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109811] pci 0000:02:00.1: CardBus bridge to [bus 07-07]
Oct 28 21:42:41 tbox kernel: [ 0.109814] pci 0000:02:00.1: bridge window [io 0x4800-0x48ff]
Oct 28 21:42:41 tbox kernel: [ 0.109819] pci 0000:02:00.1: bridge window [io 0x4c00-0x4cff]
Oct 28 21:42:41 tbox kernel: [ 0.109825] pci 0000:02:00.1: bridge window [mem 0xec000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109830] pci 0000:02:00.1: bridge window [mem 0xc8000000-0xcbffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109836] pci 0000:00:1e.0: PCI bridge to [bus 02-08]
Oct 28 21:42:41 tbox kernel: [ 0.109840] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 0.109846] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109852] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110131] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110141] pci 0000:02:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110363] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110368] pci 0000:02:00.1: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110483] NET: Registered protocol family 2
Oct 28 21:42:41 tbox kernel: [ 0.110563] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.110952] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.112838] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.114006] TCP: Hash tables configured (established 131072 bind 65536)
Oct 28 21:42:41 tbox kernel: [ 0.114011] TCP reno registered
Oct 28 21:42:41 tbox kernel: [ 0.114018] UDP hash table entries: 512 (order: 2, 16384 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.114058] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.114254] NET: Registered protocol family 1
Oct 28 21:42:41 tbox kernel: [ 0.114492] Unpacking initramfs...
Oct 28 21:42:41 tbox kernel: [ 0.543409] Freeing initrd memory: 10220k freed
Oct 28 21:42:41 tbox kernel: [ 0.559855] Simple Boot Flag at 0x35 set to 0x1
Oct 28 21:42:41 tbox kernel: [ 0.560260] audit: initializing netlink socket (disabled)
Oct 28 21:42:41 tbox kernel: [ 0.560283] type=2000 audit(1288302144.556:1): initialized
Oct 28 21:42:41 tbox kernel: [ 0.573418] highmem bounce pool size: 64 pages
Oct 28 21:42:41 tbox kernel: [ 0.573425] HugeTLB registered 4 MB page size, pre-allocated 0 pages
Oct 28 21:42:41 tbox kernel: [ 0.575996] VFS: Disk quotas dquot_6.5.2
Oct 28 21:42:41 tbox kernel: [ 0.576080] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.576216] msgmni has been set to 1747
Oct 28 21:42:41 tbox kernel: [ 0.576487] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Oct 28 21:42:41 tbox kernel: [ 0.576492] io scheduler noop registered
Oct 28 21:42:41 tbox kernel: [ 0.576494] io scheduler deadline registered
Oct 28 21:42:41 tbox kernel: [ 0.576515] io scheduler cfq registered (default)
Oct 28 21:42:41 tbox kernel: [ 0.576801] ERST: Table is not found!
Oct 28 21:42:41 tbox kernel: [ 0.576821] isapnp: Scanning for PnP cards...
Oct 28 21:42:41 tbox kernel: [ 0.930063] isapnp: No Plug & Play device found
Oct 28 21:42:41 tbox kernel: [ 0.930315] Linux agpgart interface v0.103
Oct 28 21:42:41 tbox kernel: [ 0.930454] agpgart-intel 0000:00:00.0: Intel 855PM Chipset
Oct 28 21:42:41 tbox kernel: [ 0.943982] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
Oct 28 21:42:41 tbox kernel: [ 0.944075] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Oct 28 21:42:41 tbox kernel: [ 0.944179] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
Oct 28 21:42:41 tbox kernel: [ 0.944627] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
Oct 28 21:42:41 tbox kernel: [ 0.944744] serial 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.944752] serial 0000:00:1f.6: PCI INT B disabled
Oct 28 21:42:41 tbox kernel: [ 0.944885] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Oct 28 21:42:41 tbox kernel: [ 0.950374] serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 28 21:42:41 tbox kernel: [ 0.950385] serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 28 21:42:41 tbox kernel: [ 0.950552] mice: PS/2 mouse device common for all mice
Oct 28 21:42:41 tbox kernel: [ 0.950606] rtc_cmos 00:06: RTC can wake from S4
Oct 28 21:42:41 tbox kernel: [ 0.950662] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
Oct 28 21:42:41 tbox kernel: [ 0.950680] rtc0: alarms up to one month, y3k, 114 bytes nvram
Oct 28 21:42:41 tbox kernel: [ 0.950697] cpuidle: using governor ladder
Oct 28 21:42:41 tbox kernel: [ 0.950700] cpuidle: using governor menu
Oct 28 21:42:41 tbox kernel: [ 0.951066] TCP cubic registered
Oct 28 21:42:41 tbox kernel: [ 0.951253] NET: Registered protocol family 10
Oct 28 21:42:41 tbox kernel: [ 0.951772] lo: Disabled Privacy Extensions
Oct 28 21:42:41 tbox kernel: [ 0.952057] Mobile IPv6
Oct 28 21:42:41 tbox kernel: [ 0.952061] NET: Registered protocol family 17
Oct 28 21:42:41 tbox kernel: [ 0.952072] Registering the dns_resolver key type
Oct 28 21:42:41 tbox kernel: [ 0.952099] Using IPI No-Shortcut mode
Oct 28 21:42:41 tbox kernel: [ 0.952223] registered taskstats version 1
Oct 28 21:42:41 tbox kernel: [ 0.952456] rtc_cmos 00:06: setting system clock to 2010-10-28 21:42:25 UTC (1288302145)
Oct 28 21:42:41 tbox kernel: [ 0.952492] Initalizing network drop monitor service
Oct 28 21:42:41 tbox kernel: [ 0.952544] Freeing unused kernel memory: 388k freed
Oct 28 21:42:41 tbox kernel: [ 0.952813] Write protecting the kernel text: 2596k
Oct 28 21:42:41 tbox kernel: [ 0.952838] Write protecting the kernel read-only data: 924k
Oct 28 21:42:41 tbox kernel: [ 0.955109] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Oct 28 21:42:41 tbox kernel: [ 1.027042] udev[47]: starting version 164
Oct 28 21:42:41 tbox kernel: [ 1.236368] Floppy drive(s): fd0 is 1.44M
Oct 28 21:42:41 tbox kernel: [ 1.248821] thermal LNXTHERM:00: registered as thermal_zone0
Oct 28 21:42:41 tbox kernel: [ 1.248825] ACPI: Thermal Zone [THM0] (50 C)
Oct 28 21:42:41 tbox kernel: [ 1.272134] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k6-NAPI
Oct 28 21:42:41 tbox kernel: [ 1.272140] e1000: Copyright (c) 1999-2006 Intel Corporation.
Oct 28 21:42:41 tbox kernel: [ 1.272212] e1000 0000:02:01.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.277094] FDC 0 is a National Semiconductor PC87306
Oct 28 21:42:41 tbox kernel: [ 1.592760] usbcore: registered new interface driver usbfs
Oct 28 21:42:41 tbox kernel: [ 1.592924] usbcore: registered new interface driver hub
Oct 28 21:42:41 tbox kernel: [ 1.596108] usbcore: registered new device driver usb
Oct 28 21:42:41 tbox kernel: [ 1.610031] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 28 21:42:41 tbox kernel: [ 1.613923] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.614153] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.614406] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.614413] ehci_hcd 0000:00:1d.7: PCI INT D -> Link[LNKH] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.614444] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.614483] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
Oct 28 21:42:41 tbox kernel: [ 1.614523] ehci_hcd 0000:00:1d.7: debug port 1
Oct 28 21:42:41 tbox kernel: [ 1.621446] SCSI subsystem initialized
Oct 28 21:42:41 tbox kernel: [ 1.628051] ehci_hcd 0000:00:1d.7: irq 11, io mem 0xc0000000
Oct 28 21:42:41 tbox kernel: [ 1.636496] uhci_hcd: USB Universal Host Controller Interface driver
Oct 28 21:42:41 tbox kernel: [ 1.640086] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Oct 28 21:42:41 tbox kernel: [ 1.640147] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Oct 28 21:42:41 tbox kernel: [ 1.640151] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.640154] usb usb1: Product: EHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.640157] usb usb1: Manufacturer: Linux 2.6.36-git11.sd.1-686 ehci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.640160] usb usb1: SerialNumber: 0000:00:1d.7
Oct 28 21:42:41 tbox kernel: [ 1.640363] hub 1-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.640371] hub 1-0:1.0: 6 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.641450] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.641603] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.641617] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.641636] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.641651] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Oct 28 21:42:41 tbox kernel: [ 1.641683] uhci_hcd 0000:00:1d.0: irq 11, io base 0x00001800
Oct 28 21:42:41 tbox kernel: [ 1.641731] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:42:41 tbox kernel: [ 1.641734] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.641738] usb usb2: Product: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.641740] usb usb2: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.641744] usb usb2: SerialNumber: 0000:00:1d.0
Oct 28 21:42:41 tbox kernel: [ 1.641899] hub 2-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.641905] hub 2-0:1.0: 2 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.642167] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.642504] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.642748] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.642754] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.642767] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.642777] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Oct 28 21:42:41 tbox kernel: [ 1.642802] uhci_hcd 0000:00:1d.1: irq 11, io base 0x00001820
Oct 28 21:42:41 tbox kernel: [ 1.642840] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:42:41 tbox kernel: [ 1.642844] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.642847] usb usb3: Product: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.642850] usb usb3: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.642853] usb usb3: SerialNumber: 0000:00:1d.1
Oct 28 21:42:41 tbox kernel: [ 1.643078] hub 3-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.643084] hub 3-0:1.0: 2 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.643389] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.643394] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.643406] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.643415] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Oct 28 21:42:41 tbox kernel: [ 1.643439] uhci_hcd 0000:00:1d.2: irq 11, io base 0x00001840
Oct 28 21:42:41 tbox kernel: [ 1.643477] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:42:41 tbox kernel: [ 1.643480] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.643484] usb usb4: Product: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.643486] usb usb4: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.643489] usb usb4: SerialNumber: 0000:00:1d.2
Oct 28 21:42:41 tbox kernel: [ 1.643705] hub 4-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.643711] hub 4-0:1.0: 2 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.691347] ata_piix 0000:00:1f.1: enabling device (0005 -> 0007)
Oct 28 21:42:41 tbox kernel: [ 1.691358] ata_piix 0000:00:1f.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.692125] scsi0 : ata_piix
Oct 28 21:42:41 tbox kernel: [ 1.692329] scsi1 : ata_piix
Oct 28 21:42:41 tbox kernel: [ 1.693192] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1860 irq 14
Oct 28 21:42:41 tbox kernel: [ 1.693196] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1868 irq 15
Oct 28 21:42:41 tbox kernel: [ 1.729558] e1000 0000:02:01.0: eth0: (PCI:33MHz:32-bit) 00:0d:60:b0:62:87
Oct 28 21:42:41 tbox kernel: [ 1.729566] e1000 0000:02:01.0: eth0: Intel(R) PRO/1000 Network Connection
Oct 28 21:42:41 tbox kernel: [ 1.856972] ata1.00: HPA detected: current 110257519, native 117210240
Oct 28 21:42:41 tbox kernel: [ 1.856979] ata1.00: ATA-6: HTS726060M9AT00, MH4OA6BA, max UDMA/100
Oct 28 21:42:41 tbox kernel: [ 1.856982] ata1.00: 110257519 sectors, multi 16: LBA
Oct 28 21:42:41 tbox kernel: [ 1.857078] ata2.00: ATAPI: UJDA755yDVD/CDRW, 1.70, max UDMA/33
Oct 28 21:42:41 tbox kernel: [ 1.872668] ata2.00: configured for UDMA/33
Oct 28 21:42:41 tbox kernel: [ 1.872723] ata1.00: configured for UDMA/100
Oct 28 21:42:41 tbox kernel: [ 1.872888] scsi 0:0:0:0: Direct-Access ATA HTS726060M9AT00 MH4O PQ: 0 ANSI: 5
Oct 28 21:42:41 tbox kernel: [ 1.876047] scsi 1:0:0:0: CD-ROM MATSHITA UJDA755yDVD/CDRW 1.70 PQ: 0 ANSI: 5
Oct 28 21:42:41 tbox kernel: [ 1.907683] sd 0:0:0:0: [sda] 110257519 512-byte logical blocks: (56.4 GB/52.5 GiB)
Oct 28 21:42:41 tbox kernel: [ 1.907825] sd 0:0:0:0: [sda] Write Protect is off
Oct 28 21:42:41 tbox kernel: [ 1.907855] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 28 21:42:41 tbox kernel: [ 1.912077] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
Oct 28 21:42:41 tbox kernel: [ 1.912081] cdrom: Uniform CD-ROM driver Revision: 3.20
Oct 28 21:42:41 tbox kernel: [ 1.969792] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
Oct 28 21:42:41 tbox kernel: [ 1.970484] sd 0:0:0:0: [sda] Attached SCSI disk
Oct 28 21:42:41 tbox kernel: [ 1.987326] sd 0:0:0:0: Attached scsi generic sg0 type 0
Oct 28 21:42:41 tbox kernel: [ 1.987796] sr 1:0:0:0: Attached scsi generic sg1 type 5
Oct 28 21:42:41 tbox kernel: [ 2.008041] usb 1-4: new high speed USB device using ehci_hcd and address 3
Oct 28 21:42:41 tbox kernel: [ 2.140978] usb 1-4: New USB device found, idVendor=152d, idProduct=2329
Oct 28 21:42:41 tbox kernel: [ 2.140983] usb 1-4: New USB device strings: Mfr=10, Product=11, SerialNumber=3
Oct 28 21:42:41 tbox kernel: [ 2.140987] usb 1-4: Product: Storagebird 35EV821
Oct 28 21:42:41 tbox kernel: [ 2.140990] usb 1-4: Manufacturer: 0123456
Oct 28 21:42:41 tbox kernel: [ 2.140992] usb 1-4: SerialNumber: 000000000340
Oct 28 21:42:41 tbox kernel: [ 2.158046] Initializing USB Mass Storage driver...
Oct 28 21:42:41 tbox kernel: [ 2.158167] scsi2 : usb-storage 1-4:1.0
Oct 28 21:42:41 tbox kernel: [ 2.158337] usbcore: registered new interface driver usb-storage
Oct 28 21:42:41 tbox kernel: [ 2.158339] USB Mass Storage support registered.
Oct 28 21:42:41 tbox kernel: [ 2.380030] usb 3-1: new low speed USB device using uhci_hcd and address 2
Oct 28 21:42:41 tbox kernel: [ 2.556825] usb 3-1: New USB device found, idVendor=046d, idProduct=c00e
Oct 28 21:42:41 tbox kernel: [ 2.556830] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 28 21:42:41 tbox kernel: [ 2.556833] usb 3-1: Product: USB-PS/2 Optical Mouse
Oct 28 21:42:41 tbox kernel: [ 2.556836] usb 3-1: Manufacturer: Logitech
Oct 28 21:42:41 tbox kernel: [ 2.596309] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input1
Oct 28 21:42:41 tbox kernel: [ 2.596497] generic-usb 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.1-1/input0
Oct 28 21:42:41 tbox kernel: [ 2.596680] usbcore: registered new interface driver usbhid
Oct 28 21:42:41 tbox kernel: [ 2.596682] usbhid: USB HID core driver
Oct 28 21:42:41 tbox kernel: [ 2.668321] device-mapper: uevent: version 1.0.3
Oct 28 21:42:41 tbox kernel: [ 2.668938] device-mapper: ioctl: 4.18.0-ioctl (2010-06-29) initialised: dm-devel@redhat.com
Oct 28 21:42:41 tbox kernel: [ 2.952328] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 3.198345] scsi 2:0:0:0: Direct-Access WDC WD10 EAVS-00D7B0 PQ: 0 ANSI: 2 CCS
Oct 28 21:42:41 tbox kernel: [ 3.198882] sd 2:0:0:0: Attached scsi generic sg2 type 0
Oct 28 21:42:41 tbox kernel: [ 3.199435] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Oct 28 21:42:41 tbox kernel: [ 3.200186] sd 2:0:0:0: [sdb] Write Protect is off
Oct 28 21:42:41 tbox kernel: [ 3.282062] sdb: sdb1 sdb2 sdb3 sdb4 < sdb5 sdb6 sdb7 sdb8 >
Oct 28 21:42:41 tbox kernel: [ 3.283962] sd 2:0:0:0: [sdb] Attached SCSI disk
Oct 28 21:42:41 tbox kernel: [ 3.673194] init[1]: systemd 10 running in system mode. (+PAM -LIBWRAP -AUDIT +SELINUX +SYSVINIT; debian)
Oct 28 21:42:41 tbox kernel: [ 3.898630] init[1]: Set hostname to <tbox>.
Oct 28 21:42:41 tbox kernel: [ 5.274608] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 5.535813] fuse init (API version 7.15)
Oct 28 21:42:41 tbox kernel: [ 5.755599] init[1]: screen-cleanup.service: control process exited, code=exited status=1
Oct 28 21:42:41 tbox kernel: [ 5.755696] init[1]: Unit screen-cleanup.service entered failed state.
Oct 28 21:42:41 tbox kernel: [ 5.881168] init[1]: console-setup.service: control process exited, code=exited status=208
Oct 28 21:42:41 tbox kernel: [ 5.881272] init[1]: Unit console-setup.service entered failed state.
Oct 28 21:42:41 tbox kernel: [ 6.281601] udev[366]: starting version 164
Oct 28 21:42:41 tbox kernel: [ 6.576676] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
Oct 28 21:42:41 tbox kernel: [ 6.577737] ACPI: Lid Switch [LID]
Oct 28 21:42:41 tbox kernel: [ 6.577835] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
Oct 28 21:42:41 tbox kernel: [ 6.577842] ACPI: Sleep Button [SLPB]
Oct 28 21:42:41 tbox kernel: [ 6.577944] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
Oct 28 21:42:41 tbox kernel: [ 6.577948] ACPI: Power Button [PWRF]
Oct 28 21:42:41 tbox kernel: [ 6.643396] ACPI: Battery Slot [BAT0] (battery present)
Oct 28 21:42:41 tbox kernel: [ 6.644928] ACPI: AC Adapter [AC] (on-line)
Oct 28 21:42:41 tbox kernel: [ 6.685130] Marking TSC unstable due to TSC halts in idle
Oct 28 21:42:41 tbox kernel: [ 6.686980] Switching to clocksource acpi_pm
Oct 28 21:42:41 tbox kernel: [ 6.919407] Non-volatile memory driver v1.3
Oct 28 21:42:41 tbox kernel: [ 7.019561] input: PC Speaker as /devices/platform/pcspkr/input/input5
Oct 28 21:42:41 tbox kernel: [ 7.025333] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:03/LNXVIDEO:00/input/input6
Oct 28 21:42:41 tbox kernel: [ 7.025483] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
Oct 28 21:42:41 tbox kernel: [ 7.116534] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 28 21:42:41 tbox kernel: [ 7.154595] intel_rng: FWH not detected
Oct 28 21:42:41 tbox kernel: [ 7.211083] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 28 21:42:41 tbox kernel: [ 7.223103] parport_pc 00:0b: reported by Plug and Play ACPI
Oct 28 21:42:41 tbox kernel: [ 7.223153] parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
Oct 28 21:42:41 tbox kernel: [ 7.323149] i801_smbus 0000:00:1f.3: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 7.398752] [drm] Initialized drm 1.1.0 20060810
Oct 28 21:42:41 tbox kernel: [ 7.535416] NET: Registered protocol family 23
Oct 28 21:42:41 tbox kernel: [ 7.536425] cfg80211: Calling CRDA to update world regulatory domain
Oct 28 21:42:41 tbox kernel: [ 7.672782] yenta_cardbus 0000:02:00.0: CardBus bridge found [1014:0512]
Oct 28 21:42:41 tbox kernel: [ 7.672802] yenta_cardbus 0000:02:00.0: Using INTVAL to route CSC interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.672806] yenta_cardbus 0000:02:00.0: Routing CardBus interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.672811] yenta_cardbus 0000:02:00.0: TI: mfunc 0x01d21022, devctl 0x64
Oct 28 21:42:41 tbox kernel: [ 7.731624] nsc-ircc 00:0c: activated
Oct 28 21:42:41 tbox kernel: [ 7.731806] nsc-ircc, chip->init
Oct 28 21:42:41 tbox kernel: [ 7.731815] nsc-ircc, Found chip at base=0x02e
Oct 28 21:42:41 tbox kernel: [ 7.731839] nsc-ircc, driver loaded (Dag Brattli)
Oct 28 21:42:41 tbox kernel: [ 7.733623] IrDA: Registered device irda0
Oct 28 21:42:41 tbox kernel: [ 7.733627] nsc-ircc, Using dongle: IBM31T1100 or Temic TFDS6000/TFDS6500
Oct 28 21:42:41 tbox kernel: [ 7.846219] Synaptics Touchpad, model: 1, fw: 5.9, id: 0x2c6ab1, caps: 0x884793/0x0/0x0
Oct 28 21:42:41 tbox kernel: [ 7.846228] serio: Synaptics pass-through port at isa0060/serio1/input0
Oct 28 21:42:41 tbox kernel: [ 7.902715] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
Oct 28 21:42:41 tbox kernel: [ 7.912919] yenta_cardbus 0000:02:00.0: ISA IRQ mask 0x0438, PCI irq 11
Oct 28 21:42:41 tbox kernel: [ 7.912924] yenta_cardbus 0000:02:00.0: Socket status: 30000006
Oct 28 21:42:41 tbox kernel: [ 7.912934] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 7.912940] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
Oct 28 21:42:41 tbox kernel: [ 7.952224] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 7.952231] pcmcia_socket pcmcia_socket0: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xc3a00000-0xcc1fffff 0xcfa00000-0xd01fffff
Oct 28 21:42:41 tbox kernel: [ 7.952260] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 7.952264] pcmcia_socket pcmcia_socket0: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
Oct 28 21:42:41 tbox kernel: [ 7.964835] yenta_cardbus 0000:02:00.1: CardBus bridge found [1014:0512]
Oct 28 21:42:41 tbox kernel: [ 7.964856] yenta_cardbus 0000:02:00.1: Using INTVAL to route CSC interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.964860] yenta_cardbus 0000:02:00.1: Routing CardBus interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.964866] yenta_cardbus 0000:02:00.1: TI: mfunc 0x01d21022, devctl 0x64
Oct 28 21:42:41 tbox kernel: [ 8.159881] thinkpad_acpi: ThinkPad ACPI Extras v0.24
Oct 28 21:42:41 tbox kernel: [ 8.159885] thinkpad_acpi: http://ibm-acpi.sf.net/
Oct 28 21:42:41 tbox kernel: [ 8.159887] thinkpad_acpi: ThinkPad BIOS 1RETDRWW (3.23 ), EC 1RHT71WW-3.04
Oct 28 21:42:41 tbox kernel: [ 8.159890] thinkpad_acpi: IBM ThinkPad T40p, model 2374SG6
Oct 28 21:42:41 tbox kernel: [ 8.161537] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
Oct 28 21:42:41 tbox kernel: [ 8.169947] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
Oct 28 21:42:41 tbox kernel: [ 8.177470] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
Oct 28 21:42:41 tbox kernel: [ 8.180805] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input8
Oct 28 21:42:41 tbox kernel: [ 8.197000] yenta_cardbus 0000:02:00.1: ISA IRQ mask 0x0438, PCI irq 11
Oct 28 21:42:41 tbox kernel: [ 8.197005] yenta_cardbus 0000:02:00.1: Socket status: 30000006
Oct 28 21:42:41 tbox kernel: [ 8.197017] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 8.197023] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
Oct 28 21:42:41 tbox kernel: [ 8.223711] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 8.223717] pcmcia_socket pcmcia_socket1: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xc3a00000-0xcc1fffff 0xcfa00000-0xd01fffff
Oct 28 21:42:41 tbox kernel: [ 8.223745] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 8.223749] pcmcia_socket pcmcia_socket1: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
Oct 28 21:42:41 tbox kernel: [ 8.232379] ath5k 0000:02:02.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 8.232509] ath5k 0000:02:02.0: registered as 'phy0'
Oct 28 21:42:41 tbox kernel: [ 8.520058] [drm] radeon kernel modesetting enabled.
Oct 28 21:42:41 tbox kernel: [ 8.520169] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 8.520182] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 8.520194] radeon 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 8.534476] [drm] initializing kernel modesetting (RV250 0x1002:0x4C66).
Oct 28 21:42:41 tbox kernel: [ 8.534630] [drm] register mmio base: 0xC0100000
Oct 28 21:42:41 tbox kernel: [ 8.534632] [drm] register mmio size: 65536
Oct 28 21:42:41 tbox kernel: [ 8.535018] agpgart-intel 0000:00:00.0: AGP 2.0 bridge
Oct 28 21:42:41 tbox kernel: [ 8.535382] agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x mode
Oct 28 21:42:41 tbox kernel: [ 8.535420] radeon 0000:01:00.0: putting AGP V2 device into 4x mode
Oct 28 21:42:41 tbox kernel: [ 8.535449] radeon 0000:01:00.0: GTT: 256M 0xD0000000 - 0xDFFFFFFF
Oct 28 21:42:41 tbox kernel: [ 8.535458] radeon 0000:01:00.0: VRAM: 128M 0xE0000000 - 0xE7FFFFFF (64M used)
Oct 28 21:42:41 tbox kernel: [ 8.535469] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
Oct 28 21:42:41 tbox kernel: [ 8.535472] [drm] Driver supports precise vblank timestamp query.
Oct 28 21:42:41 tbox kernel: [ 8.535493] [drm] radeon: irq initialized.
Oct 28 21:42:41 tbox kernel: [ 8.536074] [drm] Detected VRAM RAM=128M, BAR=128M
Oct 28 21:42:41 tbox kernel: [ 8.536078] [drm] RAM width 128bits DDR
Oct 28 21:42:41 tbox kernel: [ 8.536172] [TTM] Zone kernel: Available graphics memory: 447582 kiB.
Oct 28 21:42:41 tbox kernel: [ 8.536175] [TTM] Zone highmem: Available graphics memory: 516898 kiB.
Oct 28 21:42:41 tbox kernel: [ 8.536178] [TTM] Initializing pool allocator.
Oct 28 21:42:41 tbox kernel: [ 8.536211] [drm] radeon: 64M of VRAM memory ready
Oct 28 21:42:41 tbox kernel: [ 8.536214] [drm] radeon: 256M of GTT memory ready.
Oct 28 21:42:41 tbox kernel: [ 8.537696] radeon 0000:01:00.0: WB enabled
Oct 28 21:42:41 tbox kernel: [ 8.538304] [drm] Loading R200 Microcode
Oct 28 21:42:41 tbox kernel: [ 8.663709] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
Oct 28 21:42:41 tbox kernel: [ 8.664764] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
Oct 28 21:42:41 tbox kernel: [ 8.665217] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x820-0x8ff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.665603] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xc00-0xcf7: clean.
Oct 28 21:42:41 tbox kernel: [ 8.666022] pcmcia_socket pcmcia_socket1: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
Oct 28 21:42:41 tbox kernel: [ 8.666085] pcmcia_socket pcmcia_socket1: cs: memory probe 0xa0000000-0xa0ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.666147] pcmcia_socket pcmcia_socket1: cs: memory probe 0x60000000-0x60ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.666215] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xa00-0xaff:
Oct 28 21:42:41 tbox kernel: [ 8.666367] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
Oct 28 21:42:41 tbox kernel: [ 8.667392] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
Oct 28 21:42:41 tbox kernel: [ 8.667844] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.668429] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7: clean.
Oct 28 21:42:41 tbox kernel: [ 8.668848] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
Oct 28 21:42:41 tbox kernel: [ 8.668909] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.668971] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.669039] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.669837] clean.
Oct 28 21:42:41 tbox kernel: [ 8.693688] Intel ICH 0000:00:1f.5: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 8.722246] ath5k phy0: Atheros AR5212 chip found (MAC: 0x56, PHY: 0x41)
Oct 28 21:42:41 tbox kernel: [ 8.722250] ath5k phy0: RF5111 5GHz radio found (0x17)
Oct 28 21:42:41 tbox kernel: [ 8.722253] ath5k phy0: RF2111 2GHz radio found (0x23)
Oct 28 21:42:41 tbox kernel: [ 8.728269] [drm] radeon: ring at 0x00000000D0001000
Oct 28 21:42:41 tbox kernel: [ 8.728291] [drm] ring test succeeded in 1 usecs
Oct 28 21:42:41 tbox kernel: [ 8.728547] [drm] radeon: ib pool ready.
Oct 28 21:42:41 tbox kernel: [ 8.728648] [drm] ib test succeeded in 0 usecs
Oct 28 21:42:41 tbox kernel: [ 8.728924] [drm] Panel ID String: SXGA+ Single (85MHz)
Oct 28 21:42:41 tbox kernel: [ 8.728927] [drm] Panel Size 1400x1050
Oct 28 21:42:41 tbox kernel: [ 8.739921] [drm] radeon legacy LVDS backlight initialized
Oct 28 21:42:41 tbox kernel: [ 8.758506] [drm] No TV DAC info found in BIOS
Oct 28 21:42:41 tbox kernel: [ 8.758637] [drm] Radeon Display Connectors
Oct 28 21:42:41 tbox kernel: [ 8.758640] [drm] Connector 0:
Oct 28 21:42:41 tbox kernel: [ 8.758643] [drm] VGA
Oct 28 21:42:41 tbox kernel: [ 8.758646] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
Oct 28 21:42:41 tbox kernel: [ 8.758648] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758650] [drm] CRT1: INTERNAL_DAC1
Oct 28 21:42:41 tbox kernel: [ 8.758653] [drm] Connector 1:
Oct 28 21:42:41 tbox kernel: [ 8.758655] [drm] DVI-D
Oct 28 21:42:41 tbox kernel: [ 8.758656] [drm] HPD1
Oct 28 21:42:41 tbox kernel: [ 8.758659] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
Oct 28 21:42:41 tbox kernel: [ 8.758661] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758663] [drm] DFP1: INTERNAL_TMDS1
Oct 28 21:42:41 tbox kernel: [ 8.758666] [drm] Connector 2:
Oct 28 21:42:41 tbox kernel: [ 8.758667] [drm] LVDS
Oct 28 21:42:41 tbox kernel: [ 8.758669] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758671] [drm] LCD1: INTERNAL_LVDS
Oct 28 21:42:41 tbox kernel: [ 8.758673] [drm] Connector 3:
Oct 28 21:42:41 tbox kernel: [ 8.758674] [drm] S-video
Oct 28 21:42:41 tbox kernel: [ 8.758676] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758678] [drm] TV1: INTERNAL_DAC2
Oct 28 21:42:41 tbox kernel: [ 8.764668] [drm] radeon: power management initialized
Oct 28 21:42:41 tbox kernel: [ 8.846521] [drm] fb mappable at 0xE0040000
Oct 28 21:42:41 tbox kernel: [ 8.846525] [drm] vram apper at 0xE0000000
Oct 28 21:42:41 tbox kernel: [ 8.846527] [drm] size 5914624
Oct 28 21:42:41 tbox kernel: [ 8.846529] [drm] fb depth is 24
Oct 28 21:42:41 tbox kernel: [ 8.846531] [drm] pitch is 5632
Oct 28 21:42:41 tbox kernel: [ 8.916696] Console: switching to colour frame buffer device 175x65
Oct 28 21:42:41 tbox kernel: [ 8.977288] fb0: radeondrmfb frame buffer device
Oct 28 21:42:41 tbox kernel: [ 8.977291] drm: registered panic notifier
Oct 28 21:42:41 tbox kernel: [ 8.978852] [drm] Initialized radeon 2.7.0 20080528 for 0000:01:00.0 on minor 0
Oct 28 21:42:41 tbox kernel: [ 9.510016] EXT4-fs (sda3): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:42:41 tbox kernel: [ 9.510357] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 9.616039] intel8x0_measure_ac97_clock: measured 55402 usecs (2669 samples)
Oct 28 21:42:41 tbox kernel: [ 9.616044] intel8x0: clocking to 48000
Oct 28 21:42:41 tbox kernel: [ 9.617512] Intel ICH Modem 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 10.687303] Adding 1052244k swap on /dev/sda2. Priority:-1 extents:1 across:1052244k
Oct 28 21:42:41 tbox kernel: [ 10.693961] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 11.290047] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 12.431524] init[1]: tmpwatch.service: main process exited, code=exited, status=203
Oct 28 21:42:41 tbox kernel: [ 12.431677] init[1]: Unit tmpwatch.service entered failed state.
Oct 28 21:42:41 tbox kernel: [ 13.267487] ADDRCONF(NETDEV_UP): wlan0: link is not ready
Oct 28 21:42:41 tbox kernel: [ 14.134990] IBM TrackPoint firmware: 0x0e, buttons: 3/3
Oct 28 21:42:41 tbox kernel: [ 14.355796] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input9
Oct 28 21:42:41 tbox kernel: [ 15.686258] lp0: using parport0 (interrupt-driven).
Oct 28 21:42:41 tbox kernel: [ 15.957198] ppdev: user-space parallel port driver
Oct 28 21:42:41 tbox kernel: [ 16.187060] sshd (1337): /proc/1337/oom_adj is deprecated, please use /proc/1337/oom_score_adj instead.
Oct 28 21:42:41 tbox kernel: [ 17.346972] P-state transition latency capped at 20 uS
Oct 28 21:42:42 tbox kernel: [ 18.253916] Bluetooth: Core ver 2.15
Oct 28 21:42:42 tbox kernel: [ 18.253950] NET: Registered protocol family 31
Oct 28 21:42:42 tbox kernel: [ 18.253952] Bluetooth: HCI device and connection manager initialized
Oct 28 21:42:42 tbox kernel: [ 18.253955] Bluetooth: HCI socket layer initialized
Oct 28 21:42:43 tbox kernel: [ 18.667469] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Oct 28 21:42:43 tbox kernel: [ 19.187205] Bluetooth: L2CAP ver 2.15
Oct 28 21:42:43 tbox kernel: [ 19.187209] Bluetooth: L2CAP socket layer initialized
Oct 28 21:42:43 tbox kernel: [ 19.331748] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 28 21:42:43 tbox kernel: [ 19.331758] Bluetooth: BNEP filters: protocol multicast
Oct 28 21:42:43 tbox kernel: [ 19.335659] Bluetooth: RFCOMM TTY layer initialized
Oct 28 21:42:43 tbox kernel: [ 19.335664] Bluetooth: RFCOMM socket layer initialized
Oct 28 21:42:43 tbox kernel: [ 19.335667] Bluetooth: RFCOMM ver 1.11
Oct 28 21:42:44 tbox kernel: [ 19.596575] Bluetooth: SCO (Voice Link) ver 0.6
Oct 28 21:42:44 tbox kernel: [ 19.596579] Bluetooth: SCO socket layer initialized
Oct 28 21:42:44 tbox kernel: [ 19.997363] padlock: VIA PadLock not detected.
Oct 28 21:42:45 tbox init[1]: Startup finished in 3s 899ms 149us (kernel) + 17s 289ms 543us (userspace) = 21s 188ms 692us.
Oct 28 21:44:05 tbox kernel: [ 100.885731] Modules linked in: aes_i586 aes_generic sco rfcomm bnep l2cap bluetooth acpi_cpufreq mperf cpufreq_powersave cpufreq_userspace cpufreq_stats cpufreq_conservative ppdev lp dm_crypt binfmt_misc snd_intel8x0m arc4 snd_intel8x0 snd_pcm_oss ecb snd_mixer_oss snd_ac97_codec radeon ac97_bus thinkpad_acpi snd_pcm pcmcia ath5k joydev snd_seq_midi ath ttm mac80211 snd_rawmidi snd_seq_midi_event nsc_ircc snd_seq yenta_socket drm_kms_helper snd_timer cfg80211 irda pcmcia_rsrc snd_seq_device rfkill drm i2c_i801 i2c_algo_bit pcmcia_core i2c_core snd parport_pc snd_page_alloc shpchp tpm_tis rng_core soundcore pci_hotplug parport tpm crc_ccitt tpm_bios psmouse video pcspkr led_class nvram serio_raw output processor evdev ac battery power_supply button fuse autofs4 ext4 mbcache jbd2 crc16 dm_mod usbhid hid usb_storage sg sd_mod sr_mod crc_t10dif cdrom ata_generic ata_piix libata uhci_hcd ehci_hcd scsi_mod usbcore e1000 thermal thermal_sys floppy nls_base [last unloaded: scsi_wait_sca
Oct 28 21:44:05 tbox kernel: n]
Oct 28 21:44:05 tbox kernel: [ 100.888026]
Oct 28 21:44:05 tbox kernel: [ 100.888026] Pid: 234, comm: jbd2/sda5-8 Not tainted 2.6.36-git11.sd.1-686 #1 2374SG6/2374SG6
Oct 28 21:44:05 tbox kernel: [ 100.888026] EIP: 0060:[<f85de3af>] EFLAGS: 00010246 CPU: 0
Oct 28 21:44:05 tbox kernel: [ 100.888026] EIP is at ext4_writepage+0x8d/0x1f1 [ext4]
Oct 28 21:44:05 tbox kernel: [ 100.888026] EAX: 40020029 EBX: f7691180 ECX: 05050030 EDX: 00000000
Oct 28 21:44:05 tbox kernel: [ 100.888026] ESI: 00005050 EDI: 00001000 EBP: f5f07848 ESP: efa21dbc
Oct 28 21:44:05 tbox kernel: [ 100.888026] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
Oct 28 21:44:05 tbox kernel: [ 100.888026] 0000000c 00000000 efa21e98 00000000 f5f07900 efa21e98 00000000 00005050
Oct 28 21:44:05 tbox kernel: [ 100.888026] c1090efa f7691180 c1091f30 00000001 f5f07900 00000005 00000002 00000000
Oct 28 21:44:05 tbox kernel: [ 100.888026] 0000000d 0000000e ef8de180 c1090ef2 f030877f 0000000e 00000000 f7690ee0
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1090efa>] ? __writepage+0x8/0x1f
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1091f30>] ? write_cache_pages+0x1cc/0x281
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1090ef2>] ? __writepage+0x0/0x1f
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1091ffb>] ? generic_writepages+0x16/0x1d
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8561925>] ? journal_submit_data_buffers+0xf5/0x150 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8561d6a>] ? jbd2_journal_commit_transaction+0x2d1/0xda3 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1025d55>] ? dequeue_task_fair+0x1b/0x57
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c103944d>] ? lock_timer_base+0x19/0x34
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c10394c4>] ? try_to_del_timer_sync+0x5c/0x63
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8566018>] ? kjournald2+0x9e/0x1c7 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c104422a>] ? autoremove_wake_function+0x0/0x29
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8565f7a>] ? kjournald2+0x0/0x1c7 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1043ed6>] ? kthread+0x63/0x68
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1043e73>] ? kthread+0x0/0x68
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c100353e>] ? kernel_thread_helper+0x6/0x10
Oct 28 21:44:05 tbox kernel: [ 100.968847] ---[ end trace 6fe8d288bc8bea39 ]---
Oct 28 21:44:59 tbox kernel: [ 154.455567] EXT3-fs: barriers not enabled
Oct 28 21:44:59 tbox kernel: [ 154.467107] kjournald starting. Commit interval 5 seconds
Oct 28 21:44:59 tbox kernel: [ 154.467574] EXT3-fs (sdb5): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:44:59 tbox kernel: [ 154.468926] EXT3-fs (sdb5): using internal journal
Oct 28 21:44:59 tbox kernel: [ 154.469150] EXT3-fs (sdb5): mounted filesystem with ordered data mode
[-- Attachment #6: syslog --]
[-- Type: application/octet-stream, Size: 92724 bytes --]
Oct 28 21:15:24 tbox kernel: [ 14.765729] Registered led device: ath5k-phy0::tx
Oct 28 21:15:24 tbox kernel: [ 14.765741] ath5k phy0: Atheros AR5212 chip found (MAC: 0x56, PHY: 0x41)
Oct 28 21:15:24 tbox kernel: [ 14.765744] ath5k phy0: RF5111 5GHz radio found (0x17)
Oct 28 21:15:24 tbox kernel: [ 14.765747] ath5k phy0: RF2111 2GHz radio found (0x23)
Oct 28 21:15:24 tbox kernel: [ 14.768671] [drm] No TV DAC info found in BIOS
Oct 28 21:15:24 tbox kernel: [ 14.768779] [drm] Radeon Display Connectors
Oct 28 21:15:24 tbox kernel: [ 14.768781] [drm] Connector 0:
Oct 28 21:15:24 tbox kernel: [ 14.768783] [drm] VGA
Oct 28 21:15:24 tbox kernel: [ 14.768787] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
Oct 28 21:15:24 tbox kernel: [ 14.768790] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768792] [drm] CRT1: INTERNAL_DAC1
Oct 28 21:15:24 tbox kernel: [ 14.768794] [drm] Connector 1:
Oct 28 21:15:24 tbox kernel: [ 14.768796] [drm] DVI-D
Oct 28 21:15:24 tbox kernel: [ 14.768798] [drm] HPD1
Oct 28 21:15:24 tbox kernel: [ 14.768801] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
Oct 28 21:15:24 tbox kernel: [ 14.768804] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768806] [drm] DFP1: INTERNAL_TMDS1
Oct 28 21:15:24 tbox kernel: [ 14.768808] [drm] Connector 2:
Oct 28 21:15:24 tbox kernel: [ 14.768810] [drm] LVDS
Oct 28 21:15:24 tbox kernel: [ 14.768811] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768813] [drm] LCD1: INTERNAL_LVDS
Oct 28 21:15:24 tbox kernel: [ 14.768815] [drm] Connector 3:
Oct 28 21:15:24 tbox kernel: [ 14.768817] [drm] S-video
Oct 28 21:15:24 tbox kernel: [ 14.768819] [drm] Encoders:
Oct 28 21:15:24 tbox kernel: [ 14.768821] [drm] TV1: INTERNAL_DAC2
Oct 28 21:15:24 tbox kernel: [ 14.787425] [drm] radeon: power management initialized
Oct 28 21:15:24 tbox kernel: [ 14.876153] [drm] fb mappable at 0xE0040000
Oct 28 21:15:24 tbox kernel: [ 14.876158] [drm] vram apper at 0xE0000000
Oct 28 21:15:24 tbox kernel: [ 14.876160] [drm] size 5914624
Oct 28 21:15:24 tbox kernel: [ 14.876162] [drm] fb depth is 24
Oct 28 21:15:24 tbox kernel: [ 14.876164] [drm] pitch is 5632
Oct 28 21:15:24 tbox kernel: [ 14.945647] Console: switching to colour frame buffer device 175x65
Oct 28 21:15:24 tbox kernel: [ 14.980430] fb0: radeondrmfb frame buffer device
Oct 28 21:15:24 tbox kernel: [ 14.980432] drm: registered panic notifier
Oct 28 21:15:24 tbox kernel: [ 14.980666] [drm] Initialized radeon 2.7.0 20080528 for 0000:01:00.0 on minor 0
Oct 28 21:15:24 tbox kernel: [ 15.560039] intel8x0_measure_ac97_clock: measured 55394 usecs (2669 samples)
Oct 28 21:15:24 tbox kernel: [ 15.560045] intel8x0: clocking to 48000
Oct 28 21:15:24 tbox kernel: [ 15.561553] Intel ICH Modem 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:15:24 tbox kernel: [ 15.561581] Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
Oct 28 21:15:24 tbox kernel: [ 16.233693] Adding 1052244k swap on /dev/sda2. Priority:-1 extents:1 across:1052244k
Oct 28 21:15:24 tbox kernel: [ 16.240295] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:15:24 tbox kernel: [ 16.869841] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:15:24 tbox kernel: [ 18.095532] init[1]: tmpwatch.service: main process exited, code=exited, status=203
Oct 28 21:15:24 tbox kernel: [ 18.095668] init[1]: Unit tmpwatch.service entered failed state.
Oct 28 21:15:24 tbox kernel: [ 18.988405] ADDRCONF(NETDEV_UP): wlan0: link is not ready
Oct 28 21:15:24 tbox kernel: [ 20.048511] IBM TrackPoint firmware: 0x0e, buttons: 3/3
Oct 28 21:15:24 tbox kernel: [ 20.251736] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input9
Oct 28 21:15:24 tbox /usr/sbin/gpm[1326]: *** info [daemon/startup.c(131)]:
Oct 28 21:15:24 tbox /usr/sbin/gpm[1326]: Started gpm successfully. Entered daemon mode.
Oct 28 21:15:25 tbox /usr/sbin/cron[1327]: (CRON) INFO (pidfile fd = 3)
Oct 28 21:15:25 tbox /usr/sbin/cron[1338]: (CRON) STARTUP (fork ok)
Oct 28 21:15:25 tbox /usr/sbin/cron[1338]: (CRON) INFO (Running @reboot jobs)
Oct 28 21:15:25 tbox kernel: [ 22.323731] lp0: using parport0 (interrupt-driven).
Oct 28 21:15:25 tbox kernel: [ 22.368740] ppdev: user-space parallel port driver
Oct 28 21:15:26 tbox kernel: [ 22.657333] sshd (1367): /proc/1367/oom_adj is deprecated, please use /proc/1367/oom_score_adj instead.
Oct 28 21:15:27 tbox bluetoothd[1393]: Bluetooth deamon 4.70
Oct 28 21:15:27 tbox kernel: [ 23.800827] P-state transition latency capped at 20 uS
Oct 28 21:15:27 tbox bluetoothd[1393]: Starting SDP server
Oct 28 21:15:27 tbox kernel: [ 24.327910] Bluetooth: Core ver 2.15
Oct 28 21:15:27 tbox kernel: [ 24.327943] NET: Registered protocol family 31
Oct 28 21:15:27 tbox kernel: [ 24.327945] Bluetooth: HCI device and connection manager initialized
Oct 28 21:15:27 tbox kernel: [ 24.327950] Bluetooth: HCI socket layer initialized
Oct 28 21:15:27 tbox wpa_supplicant[1153]: Trying to associate with 00:04:0e:e4:00:3d (SSID='myCastle-WLAN WPA (Wireless LAN)' freq=2442 MHz)
Oct 28 21:15:27 tbox kernel: [ 24.372207] wlan0: authenticate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:15:27 tbox kernel: [ 24.374792] wlan0: authenticated
Oct 28 21:15:27 tbox kernel: [ 24.374831] wlan0: associate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:15:27 tbox wpa_supplicant[1153]: Associated with 00:04:0e:e4:00:3d
Oct 28 21:15:27 tbox kernel: [ 24.380317] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
Oct 28 21:15:27 tbox kernel: [ 24.380327] wlan0: associated
Oct 28 21:15:27 tbox kernel: [ 24.382373] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Oct 28 21:15:28 tbox kernel: [ 24.446975] Bluetooth: L2CAP ver 2.15
Oct 28 21:15:28 tbox kernel: [ 24.446980] Bluetooth: L2CAP socket layer initialized
Oct 28 21:15:28 tbox bluetoothd[1393]: Starting experimental netlink support
Oct 28 21:15:28 tbox bluetoothd[1393]: Failed to find Bluetooth netlink family
Oct 28 21:15:28 tbox bluetoothd[1393]: Failed to init netlink plugin
Oct 28 21:15:28 tbox kernel: [ 24.597871] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 28 21:15:28 tbox kernel: [ 24.597875] Bluetooth: BNEP filters: protocol multicast
Oct 28 21:15:28 tbox kernel: [ 24.603912] Bluetooth: RFCOMM TTY layer initialized
Oct 28 21:15:28 tbox kernel: [ 24.603919] Bluetooth: RFCOMM socket layer initialized
Oct 28 21:15:28 tbox kernel: [ 24.603922] Bluetooth: RFCOMM ver 1.11
Oct 28 21:15:28 tbox kernel: [ 25.243227] Bluetooth: SCO (Voice Link) ver 0.6
Oct 28 21:15:28 tbox kernel: [ 25.243232] Bluetooth: SCO socket layer initialized
Oct 28 21:15:29 tbox kernel: [ 25.476743] padlock: VIA PadLock not detected.
Oct 28 21:15:29 tbox wpa_supplicant[1153]: WPA: Key negotiation completed with 00:04:0e:e4:00:3d [PTK=CCMP GTK=CCMP]
Oct 28 21:15:29 tbox wpa_supplicant[1153]: CTRL-EVENT-CONNECTED - Connection to 00:04:0e:e4:00:3d completed (auth) [id=0 id_str=]
Oct 28 21:15:30 tbox acpid: client connected from 1503[105:112]
Oct 28 21:15:30 tbox acpid: 1 client rule loaded
Oct 28 21:15:30 tbox init[1]: Startup finished in 5s 187ms 42us (kernel) + 21s 882ms 481us (userspace) = 27s 69ms 523us.
Oct 28 21:15:38 tbox kernel: [ 34.832041] wlan0: no IPv6 routers present
Oct 28 21:15:40 tbox ntpdate[1270]: step time server 85.10.240.253 offset 0.205911 sec
Oct 28 21:17:01 tbox /USR/SBIN/CRON[1510]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Oct 28 21:17:51 tbox acpid: client connected from 1549[0:0]
Oct 28 21:17:51 tbox acpid: 1 client rule loaded
Oct 28 21:18:49 tbox ntfs-3g[571]: Unmounting /dev/sda1 (IBM_PRELOAD)
Oct 28 21:29:44 tbox kernel: [ 880.824137] EXT3-fs: barriers not enabled
Oct 28 21:29:44 tbox kernel: [ 880.846819] kjournald starting. Commit interval 5 seconds
Oct 28 21:29:44 tbox kernel: [ 880.847089] EXT3-fs (sdb5): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:29:44 tbox kernel: [ 880.847853] EXT3-fs (sdb5): using internal journal
Oct 28 21:29:44 tbox kernel: [ 880.847866] EXT3-fs (sdb5): mounted filesystem with ordered data mode
Oct 28 21:42:00 tbox kernel: Kernel logging (proc) stopped.
Oct 28 21:42:00 tbox rsyslogd: [origin software="rsyslogd" swVersion="4.6.4" x-pid="1278" x-info="http://www.rsyslog.com"] exiting on signal 15.
Oct 28 21:42:41 tbox kernel: imklog 4.6.4, log source = /proc/kmsg started.
Oct 28 21:42:41 tbox rsyslogd: [origin software="rsyslogd" swVersion="4.6.4" x-pid="1309" x-info="http://www.rsyslog.com"] (re)start
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing cgroup subsys cpuset
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing cgroup subsys cpu
Oct 28 21:42:41 tbox kernel: [ 0.000000] Linux version 2.6.36-git11.sd.1-686 (Debian 2.6.36-9~git11.sd.1~dileks.1) (sedat.dilek@gmail.com) (gcc version 4.4.5 (Debian 4.4.5-5) ) #1 SMP Thu Oct 28 18:58:11 CEST 2010
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-provided physical RAM map:
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 0000000000000000 - 000000000009f000 (usable)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000000009f000 - 00000000000a0000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 00000000000d2000 - 00000000000d4000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 0000000000100000 - 000000003ff60000 (usable)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000003ff60000 - 000000003ff77000 (ACPI data)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000003ff77000 - 000000003ff79000 (ACPI NVS)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 000000003ff80000 - 0000000040000000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] BIOS-e820: 00000000ff800000 - 0000000100000000 (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Notice: NX (Execute Disable) protection missing in CPU or disabled in BIOS!
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMI present.
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMI: 2374SG6/2374SG6, BIOS 1RETDRWW (3.23 ) 06/18/2007
Oct 28 21:42:41 tbox kernel: [ 0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Oct 28 21:42:41 tbox kernel: [ 0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Oct 28 21:42:41 tbox kernel: [ 0.000000] last_pfn = 0x3ff60 max_arch_pfn = 0x100000
Oct 28 21:42:41 tbox kernel: [ 0.000000] MTRR default type: uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] MTRR fixed ranges enabled:
Oct 28 21:42:41 tbox kernel: [ 0.000000] 00000-9FFFF write-back
Oct 28 21:42:41 tbox kernel: [ 0.000000] A0000-BFFFF uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] C0000-CFFFF write-protect
Oct 28 21:42:41 tbox kernel: [ 0.000000] D0000-DBFFF uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] DC000-DFFFF write-back
Oct 28 21:42:41 tbox kernel: [ 0.000000] E0000-FFFFF write-protect
Oct 28 21:42:41 tbox kernel: [ 0.000000] MTRR variable ranges enabled:
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0 base 000000000 mask FC0000000 write-back
Oct 28 21:42:41 tbox kernel: [ 0.000000] 1 base 03FF80000 mask FFFF80000 uncachable
Oct 28 21:42:41 tbox kernel: [ 0.000000] 2 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 3 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 4 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 5 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 6 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] 7 disabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] PAT not supported by CPU.
Oct 28 21:42:41 tbox kernel: [ 0.000000] initial memory mapped : 0 - 01800000
Oct 28 21:42:41 tbox kernel: [ 0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0000000000 - 0000400000 page 4k
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0000400000 - 0037400000 page 2M
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0037400000 - 00377fe000 page 4k
Oct 28 21:42:41 tbox kernel: [ 0.000000] kernel direct mapping tables up to 377fe000 @ 17fb000-1800000
Oct 28 21:42:41 tbox kernel: [ 0.000000] RAMDISK: 2f5cd000 - 2ffc8000
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: RSDP 000f6d70 00024 (v02 IBM )
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: XSDT 3ff6a672 0004C (v01 IBM TP-1R 00003230 LTP 00000000)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: FACP 3ff6a700 000F4 (v03 IBM TP-1R 00003230 IBM 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI Warning: 32/64X length mismatch in Gpe1Block: 0/32 (20101013/tbfadt-526)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI Warning: Optional field Gpe1Block has zero address or length: 0x000000000000102C/0x0 (20101013/tbfadt-557)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: DSDT 3ff6a8e7 0C530 (v01 IBM TP-1R 00003230 MSFT 0100000E)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: FACS 3ff78000 00040
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: SSDT 3ff6a8b4 00033 (v01 IBM TP-1R 00003230 MSFT 0100000E)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: ECDT 3ff76e17 00052 (v01 IBM TP-1R 00003230 IBM 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: TCPA 3ff76e69 00032 (v01 IBM TP-1R 00003230 PTL 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: BOOT 3ff76fd8 00028 (v01 IBM TP-1R 00003230 LTP 00000001)
Oct 28 21:42:41 tbox kernel: [ 0.000000] 135MB HIGHMEM available.
Oct 28 21:42:41 tbox kernel: [ 0.000000] 887MB LOWMEM available.
Oct 28 21:42:41 tbox kernel: [ 0.000000] mapped low ram: 0 - 377fe000
Oct 28 21:42:41 tbox kernel: [ 0.000000] low ram: 0 - 377fe000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Zone PFN ranges:
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA 0x00000010 -> 0x00001000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Normal 0x00001000 -> 0x000377fe
Oct 28 21:42:41 tbox kernel: [ 0.000000] HighMem 0x000377fe -> 0x0003ff60
Oct 28 21:42:41 tbox kernel: [ 0.000000] Movable zone start PFN for each node
Oct 28 21:42:41 tbox kernel: [ 0.000000] early_node_map[2] active PFN ranges
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0: 0x00000010 -> 0x0000009f
Oct 28 21:42:41 tbox kernel: [ 0.000000] 0: 0x00000100 -> 0x0003ff60
Oct 28 21:42:41 tbox kernel: [ 0.000000] On node 0 totalpages: 261871
Oct 28 21:42:41 tbox kernel: [ 0.000000] free_area_init_node: node 0, pgdat c13bff80, node_mem_map f6ffd200
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA zone: 32 pages used for memmap
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA zone: 0 pages reserved
Oct 28 21:42:41 tbox kernel: [ 0.000000] DMA zone: 3951 pages, LIFO batch:0
Oct 28 21:42:41 tbox kernel: [ 0.000000] Normal zone: 1744 pages used for memmap
Oct 28 21:42:41 tbox kernel: [ 0.000000] Normal zone: 221486 pages, LIFO batch:31
Oct 28 21:42:41 tbox kernel: [ 0.000000] HighMem zone: 271 pages used for memmap
Oct 28 21:42:41 tbox kernel: [ 0.000000] HighMem zone: 34387 pages, LIFO batch:7
Oct 28 21:42:41 tbox kernel: [ 0.000000] Using APIC driver default
Oct 28 21:42:41 tbox kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
Oct 28 21:42:41 tbox kernel: [ 0.000000] SMP: Allowing 1 CPUs, 0 hotplug CPUs
Oct 28 21:42:41 tbox kernel: [ 0.000000] Local APIC disabled by BIOS -- you can enable it with "lapic"
Oct 28 21:42:41 tbox kernel: [ 0.000000] APIC: disable apic facility
Oct 28 21:42:41 tbox kernel: [ 0.000000] APIC: switched to apic NOOP
Oct 28 21:42:41 tbox kernel: [ 0.000000] nr_irqs_gsi: 16
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d2000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000d2000 - 00000000000d4000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000dc000
Oct 28 21:42:41 tbox kernel: [ 0.000000] PM: Registered nosave memory: 00000000000dc000 - 0000000000100000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Allocating PCI resources starting at 40000000 (gap: 40000000:bf800000)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
Oct 28 21:42:41 tbox kernel: [ 0.000000] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:1 nr_node_ids:1
Oct 28 21:42:41 tbox kernel: [ 0.000000] PERCPU: Embedded 12 pages/cpu @f6800000 s26880 r0 d22272 u4194304
Oct 28 21:42:41 tbox kernel: [ 0.000000] pcpu-alloc: s26880 r0 d22272 u4194304 alloc=1*4194304
Oct 28 21:42:41 tbox kernel: [ 0.000000] pcpu-alloc: [0] 0
Oct 28 21:42:41 tbox kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 259824
Oct 28 21:42:41 tbox kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.36-git11.sd.1-686 root=UUID=1ceb69a7-ecf4-47e9-a231-b74e0f0a9b62 ro radeon.modeset=1 3 quiet
Oct 28 21:42:41 tbox kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing CPU#0
Oct 28 21:42:41 tbox kernel: [ 0.000000] Initializing HighMem for node 0 (000377fe:0003ff60)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Memory: 1023172k/1047936k available (2594k kernel code, 24312k reserved, 1282k data, 388k init, 138632k highmem)
Oct 28 21:42:41 tbox kernel: [ 0.000000] virtual kernel memory layout:
Oct 28 21:42:41 tbox kernel: [ 0.000000] fixmap : 0xffd36000 - 0xfffff000 (2852 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] pkmap : 0xff800000 - 0xffc00000 (4096 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] .init : 0xc13ca000 - 0xc142b000 ( 388 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] .data : 0xc1288bb4 - 0xc13c9538 (1282 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] .text : 0xc1000000 - 0xc1288bb4 (2594 kB)
Oct 28 21:42:41 tbox kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
Oct 28 21:42:41 tbox kernel: [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Oct 28 21:42:41 tbox kernel: [ 0.000000] Hierarchical RCU implementation.
Oct 28 21:42:41 tbox kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
Oct 28 21:42:41 tbox kernel: [ 0.000000] RCU-based detection of stalled CPUs is disabled.
Oct 28 21:42:41 tbox kernel: [ 0.000000] NR_IRQS:1280
Oct 28 21:42:41 tbox kernel: [ 0.000000] CPU 0 irqstacks, hard=f6408000 soft=f640a000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Extended CMOS year: 2000
Oct 28 21:42:41 tbox kernel: [ 0.000000] Console: colour VGA+ 80x25
Oct 28 21:42:41 tbox kernel: [ 0.000000] console [tty0] enabled
Oct 28 21:42:41 tbox kernel: [ 0.000000] Fast TSC calibration using PIT
Oct 28 21:42:41 tbox kernel: [ 0.000000] Detected 1694.278 MHz processor.
Oct 28 21:42:41 tbox kernel: [ 0.008008] Calibrating delay loop (skipped), value calculated using timer frequency.. 3388.55 BogoMIPS (lpj=6777112)
Oct 28 21:42:41 tbox kernel: [ 0.008014] pid_max: default: 32768 minimum: 301
Oct 28 21:42:41 tbox kernel: [ 0.008049] Security Framework initialized
Oct 28 21:42:41 tbox kernel: [ 0.008059] SELinux: Disabled at boot.
Oct 28 21:42:41 tbox kernel: [ 0.008081] Mount-cache hash table entries: 512
Oct 28 21:42:41 tbox kernel: [ 0.008291] Initializing cgroup subsys ns
Oct 28 21:42:41 tbox kernel: [ 0.008298] ns_cgroup deprecated: consider using the 'clone_children' flag without the ns_cgroup.
Oct 28 21:42:41 tbox kernel: [ 0.008302] Initializing cgroup subsys cpuacct
Oct 28 21:42:41 tbox kernel: [ 0.008308] Initializing cgroup subsys devices
Oct 28 21:42:41 tbox kernel: [ 0.008311] Initializing cgroup subsys freezer
Oct 28 21:42:41 tbox kernel: [ 0.008314] Initializing cgroup subsys net_cls
Oct 28 21:42:41 tbox kernel: [ 0.008318] Initializing cgroup subsys blkio
Oct 28 21:42:41 tbox kernel: [ 0.008372] mce: CPU supports 5 MCE banks
Oct 28 21:42:41 tbox kernel: [ 0.008397] Performance Events:
Oct 28 21:42:41 tbox kernel: [ 0.008400] no APIC, boot with the "lapic" boot parameter to force-enable it.
Oct 28 21:42:41 tbox kernel: [ 0.008403] no hardware sampling interrupt available.
Oct 28 21:42:41 tbox kernel: [ 0.008405] p6 PMU driver.
Oct 28 21:42:41 tbox kernel: [ 0.008411] ... version: 0
Oct 28 21:42:41 tbox kernel: [ 0.008413] ... bit width: 32
Oct 28 21:42:41 tbox kernel: [ 0.008415] ... generic registers: 2
Oct 28 21:42:41 tbox kernel: [ 0.008418] ... value mask: 00000000ffffffff
Oct 28 21:42:41 tbox kernel: [ 0.008420] ... max period: 000000007fffffff
Oct 28 21:42:41 tbox kernel: [ 0.008422] ... fixed-purpose events: 0
Oct 28 21:42:41 tbox kernel: [ 0.008425] ... event mask: 0000000000000003
Oct 28 21:42:41 tbox kernel: [ 0.008947] SMP alternatives: switching to UP code
Oct 28 21:42:41 tbox kernel: [ 0.013686] Freeing SMP alternatives: 16k freed
Oct 28 21:42:41 tbox kernel: [ 0.013694] ACPI: Core revision 20101013
Oct 28 21:42:41 tbox kernel: [ 0.029767] ACPI: setting ELCR to 0200 (from 0800)
Oct 28 21:42:41 tbox kernel: [ 0.032080] weird, boot CPU (#0) not listed by the BIOS.
Oct 28 21:42:41 tbox kernel: [ 0.032083] SMP motherboard not detected.
Oct 28 21:42:41 tbox kernel: [ 0.032086] Local APIC not detected. Using dummy APIC emulation.
Oct 28 21:42:41 tbox kernel: [ 0.032088] SMP disabled
Oct 28 21:42:41 tbox kernel: [ 0.032440] Brought up 1 CPUs
Oct 28 21:42:41 tbox kernel: [ 0.032443] Total of 1 processors activated (3388.55 BogoMIPS).
Oct 28 21:42:41 tbox kernel: [ 0.036162] devtmpfs: initialized
Oct 28 21:42:41 tbox kernel: [ 0.036579] regulator: core version 0.5
Oct 28 21:42:41 tbox kernel: [ 0.036632] NET: Registered protocol family 16
Oct 28 21:42:41 tbox kernel: [ 0.036756] ACPI: bus type pci registered
Oct 28 21:42:41 tbox kernel: [ 0.037076] PCI: PCI BIOS revision 2.10 entry at 0xfd8d6, last bus=8
Oct 28 21:42:41 tbox kernel: [ 0.037079] PCI: Using configuration type 1 for base access
Oct 28 21:42:41 tbox kernel: [ 0.037566] bio: create slab <bio-0> at 0
Oct 28 21:42:41 tbox kernel: [ 0.039245] ACPI: EC: EC description table is found, configuring boot EC
Oct 28 21:42:41 tbox kernel: [ 0.054262] ACPI: Interpreter enabled
Oct 28 21:42:41 tbox kernel: [ 0.054267] ACPI: (supports S0 S3 S4 S5)
Oct 28 21:42:41 tbox kernel: [ 0.054291] ACPI: Using PIC for interrupt routing
Oct 28 21:42:41 tbox kernel: [ 0.060784] ACPI: EC: GPE = 0x1c, I/O: command/status = 0x66, data = 0x62
Oct 28 21:42:41 tbox kernel: [ 0.060826] ACPI: Power Resource [PUBS] (on)
Oct 28 21:42:41 tbox kernel: [ 0.060826] ACPI: ACPI Dock Station Driver: 3 docks/bays found
Oct 28 21:42:41 tbox kernel: [ 0.060826] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
Oct 28 21:42:41 tbox kernel: [ 0.060826] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Oct 28 21:42:41 tbox kernel: [ 0.060844] pci_root PNP0A03:00: host bridge window [io 0x0000-0x0cf7] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060848] pci_root PNP0A03:00: host bridge window [io 0x0d00-0xffff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060852] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060856] pci_root PNP0A03:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060860] pci_root PNP0A03:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060864] pci_root PNP0A03:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored)
Oct 28 21:42:41 tbox kernel: [ 0.060884] pci 0000:00:00.0: reg 10: [mem 0xd0000000-0xdfffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.061017] pci 0000:00:1d.0: reg 20: [io 0x1800-0x181f]
Oct 28 21:42:41 tbox kernel: [ 0.061091] pci 0000:00:1d.1: reg 20: [io 0x1820-0x183f]
Oct 28 21:42:41 tbox kernel: [ 0.061164] pci 0000:00:1d.2: reg 20: [io 0x1840-0x185f]
Oct 28 21:42:41 tbox kernel: [ 0.061227] pci 0000:00:1d.7: reg 10: [mem 0xc0000000-0xc00003ff]
Oct 28 21:42:41 tbox kernel: [ 0.061305] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.061311] pci 0000:00:1d.7: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.061430] pci 0000:00:1f.0: quirk: [io 0x1000-0x107f] claimed by ICH4 ACPI/GPIO/TCO
Oct 28 21:42:41 tbox kernel: [ 0.061435] pci 0000:00:1f.0: quirk: [io 0x1180-0x11bf] claimed by ICH4 GPIO
Oct 28 21:42:41 tbox kernel: [ 0.061462] pci 0000:00:1f.1: reg 10: [io 0x0000-0x0007]
Oct 28 21:42:41 tbox kernel: [ 0.061473] pci 0000:00:1f.1: reg 14: [io 0x0000-0x0003]
Oct 28 21:42:41 tbox kernel: [ 0.061483] pci 0000:00:1f.1: reg 18: [io 0x0000-0x0007]
Oct 28 21:42:41 tbox kernel: [ 0.061494] pci 0000:00:1f.1: reg 1c: [io 0x0000-0x0003]
Oct 28 21:42:41 tbox kernel: [ 0.061504] pci 0000:00:1f.1: reg 20: [io 0x1860-0x186f]
Oct 28 21:42:41 tbox kernel: [ 0.061515] pci 0000:00:1f.1: reg 24: [mem 0x00000000-0x000003ff]
Oct 28 21:42:41 tbox kernel: [ 0.061584] pci 0000:00:1f.3: reg 20: [io 0x1880-0x189f]
Oct 28 21:42:41 tbox kernel: [ 0.061633] pci 0000:00:1f.5: reg 10: [io 0x1c00-0x1cff]
Oct 28 21:42:41 tbox kernel: [ 0.061642] pci 0000:00:1f.5: reg 14: [io 0x18c0-0x18ff]
Oct 28 21:42:41 tbox kernel: [ 0.061652] pci 0000:00:1f.5: reg 18: [mem 0xc0000c00-0xc0000dff]
Oct 28 21:42:41 tbox kernel: [ 0.061662] pci 0000:00:1f.5: reg 1c: [mem 0xc0000800-0xc00008ff]
Oct 28 21:42:41 tbox kernel: [ 0.061700] pci 0000:00:1f.5: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.061705] pci 0000:00:1f.5: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.061734] pci 0000:00:1f.6: reg 10: [io 0x2400-0x24ff]
Oct 28 21:42:41 tbox kernel: [ 0.061744] pci 0000:00:1f.6: reg 14: [io 0x2000-0x207f]
Oct 28 21:42:41 tbox kernel: [ 0.061794] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.061799] pci 0000:00:1f.6: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064031] pci 0000:01:00.0: reg 10: [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064040] pci 0000:01:00.0: reg 14: [io 0x3000-0x30ff]
Oct 28 21:42:41 tbox kernel: [ 0.064048] pci 0000:01:00.0: reg 18: [mem 0xc0100000-0xc010ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064072] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0001ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064091] pci 0000:01:00.0: supports D1 D2
Oct 28 21:42:41 tbox kernel: [ 0.064125] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 28 21:42:41 tbox kernel: [ 0.064129] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Oct 28 21:42:41 tbox kernel: [ 0.064133] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
Oct 28 21:42:41 tbox kernel: [ 0.064137] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064176] pci 0000:02:00.0: reg 10: [mem 0xb0000000-0xb0000fff]
Oct 28 21:42:41 tbox kernel: [ 0.064195] pci 0000:02:00.0: supports D1 D2
Oct 28 21:42:41 tbox kernel: [ 0.064198] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.064203] pci 0000:02:00.0: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064237] pci 0000:02:00.1: reg 10: [mem 0xb1000000-0xb1000fff]
Oct 28 21:42:41 tbox kernel: [ 0.064256] pci 0000:02:00.1: supports D1 D2
Oct 28 21:42:41 tbox kernel: [ 0.064259] pci 0000:02:00.1: PME# supported from D0 D1 D2 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.064264] pci 0000:02:00.1: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064306] pci 0000:02:01.0: reg 10: [mem 0xc0220000-0xc023ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064317] pci 0000:02:01.0: reg 14: [mem 0xc0200000-0xc020ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064327] pci 0000:02:01.0: reg 18: [io 0x8000-0x803f]
Oct 28 21:42:41 tbox kernel: [ 0.064359] pci 0000:02:01.0: reg 30: [mem 0x00000000-0x0000ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064382] pci 0000:02:01.0: PME# supported from D0 D3hot D3cold
Oct 28 21:42:41 tbox kernel: [ 0.064387] pci 0000:02:01.0: PME# disabled
Oct 28 21:42:41 tbox kernel: [ 0.064421] pci 0000:02:02.0: reg 10: [mem 0xc0210000-0xc021ffff]
Oct 28 21:42:41 tbox kernel: [ 0.064518] pci 0000:00:1e.0: PCI bridge to [bus 02-08] (subtractive decode)
Oct 28 21:42:41 tbox kernel: [ 0.064524] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 0.064530] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 0.064535] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.064539] pci 0000:00:1e.0: bridge window [io 0x0000-0xffff] (subtractive decode)
Oct 28 21:42:41 tbox kernel: [ 0.064543] pci 0000:00:1e.0: bridge window [mem 0x00000000-0xffffffff] (subtractive decode)
Oct 28 21:42:41 tbox kernel: [ 0.064617] pci_bus 0000:00: on NUMA node 0
Oct 28 21:42:41 tbox kernel: [ 0.064621] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Oct 28 21:42:41 tbox kernel: [ 0.064670] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.AGP_._PRT]
Oct 28 21:42:41 tbox kernel: [ 0.064695] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCI1._PRT]
Oct 28 21:42:41 tbox kernel: [ 0.067895] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068034] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068161] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068286] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068389] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 28 21:42:41 tbox kernel: [ 0.068493] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 28 21:42:41 tbox kernel: [ 0.068598] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 28 21:42:41 tbox kernel: [ 0.068724] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
Oct 28 21:42:41 tbox kernel: [ 0.068774] HEST: Table is not found!
Oct 28 21:42:41 tbox kernel: [ 0.068852] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Oct 28 21:42:41 tbox kernel: [ 0.068856] vgaarb: loaded
Oct 28 21:42:41 tbox kernel: [ 0.068921] PCI: Using ACPI for IRQ routing
Oct 28 21:42:41 tbox kernel: [ 0.069056] PCI: pci_cache_line_size set to 64 bytes
Oct 28 21:42:41 tbox kernel: [ 0.069119] reserve RAM buffer: 000000000009f000 - 000000000009ffff
Oct 28 21:42:41 tbox kernel: [ 0.069122] reserve RAM buffer: 000000003ff60000 - 000000003fffffff
Oct 28 21:42:41 tbox kernel: [ 0.069270] Switching to clocksource tsc
Oct 28 21:42:41 tbox kernel: [ 0.070692] pnp: PnP ACPI init
Oct 28 21:42:41 tbox kernel: [ 0.070716] ACPI: bus type pnp registered
Oct 28 21:42:41 tbox kernel: [ 0.071502] pnp 00:00: [mem 0x00000000-0x0009ffff]
Oct 28 21:42:41 tbox kernel: [ 0.071505] pnp 00:00: [mem 0x000c0000-0x000c3fff]
Oct 28 21:42:41 tbox kernel: [ 0.071509] pnp 00:00: [mem 0x000c4000-0x000c7fff]
Oct 28 21:42:41 tbox kernel: [ 0.071512] pnp 00:00: [mem 0x000c8000-0x000cbfff]
Oct 28 21:42:41 tbox kernel: [ 0.071515] pnp 00:00: [mem 0x000cc000-0x000cffff]
Oct 28 21:42:41 tbox kernel: [ 0.071518] pnp 00:00: [mem 0x000d0000-0x000d3fff]
Oct 28 21:42:41 tbox kernel: [ 0.071521] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
Oct 28 21:42:41 tbox kernel: [ 0.071524] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
Oct 28 21:42:41 tbox kernel: [ 0.071527] pnp 00:00: [mem 0x000dc000-0x000dffff]
Oct 28 21:42:41 tbox kernel: [ 0.071530] pnp 00:00: [mem 0x000e0000-0x000e3fff]
Oct 28 21:42:41 tbox kernel: [ 0.071533] pnp 00:00: [mem 0x000e4000-0x000e7fff]
Oct 28 21:42:41 tbox kernel: [ 0.071536] pnp 00:00: [mem 0x000e8000-0x000ebfff]
Oct 28 21:42:41 tbox kernel: [ 0.071539] pnp 00:00: [mem 0x000ec000-0x000effff]
Oct 28 21:42:41 tbox kernel: [ 0.071542] pnp 00:00: [mem 0x000f0000-0x000fffff]
Oct 28 21:42:41 tbox kernel: [ 0.071545] pnp 00:00: [mem 0x00100000-0x3fffffff]
Oct 28 21:42:41 tbox kernel: [ 0.071548] pnp 00:00: [mem 0xfec00000-0xffffffff]
Oct 28 21:42:41 tbox kernel: [ 0.071622] pnp 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071651] pnp 00:01: [bus 00-ff]
Oct 28 21:42:41 tbox kernel: [ 0.071654] pnp 00:01: [io 0x0cf8-0x0cff]
Oct 28 21:42:41 tbox kernel: [ 0.071657] pnp 00:01: [io 0x0000-0x0cf7 window]
Oct 28 21:42:41 tbox kernel: [ 0.071660] pnp 00:01: [io 0x0d00-0xffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071670] pnp 00:01: [mem 0x000a0000-0x000bffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071673] pnp 00:01: [mem 0x000c0000-0x000c3fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071676] pnp 00:01: [mem 0x000c4000-0x000c7fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071679] pnp 00:01: [mem 0x000c8000-0x000cbfff window]
Oct 28 21:42:41 tbox kernel: [ 0.071683] pnp 00:01: [mem 0x000cc000-0x000cffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071686] pnp 00:01: [mem 0x000d0000-0x000d3fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071689] pnp 00:01: [mem 0x000d4000-0x000d7fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071692] pnp 00:01: [mem 0x000d8000-0x000dbfff window]
Oct 28 21:42:41 tbox kernel: [ 0.071696] pnp 00:01: [mem 0x000dc000-0x000dffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071699] pnp 00:01: [mem 0x000e0000-0x000e3fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071702] pnp 00:01: [mem 0x000e4000-0x000e7fff window]
Oct 28 21:42:41 tbox kernel: [ 0.071705] pnp 00:01: [mem 0x000e8000-0x000ebfff window]
Oct 28 21:42:41 tbox kernel: [ 0.071708] pnp 00:01: [mem 0x000ec000-0x000effff window]
Oct 28 21:42:41 tbox kernel: [ 0.071712] pnp 00:01: [mem 0x40000000-0xfebfffff window]
Oct 28 21:42:41 tbox kernel: [ 0.071771] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071911] pnp 00:02: [io 0x0010-0x001f]
Oct 28 21:42:41 tbox kernel: [ 0.071914] pnp 00:02: [io 0x0090-0x009f]
Oct 28 21:42:41 tbox kernel: [ 0.071917] pnp 00:02: [io 0x0024-0x0025]
Oct 28 21:42:41 tbox kernel: [ 0.071920] pnp 00:02: [io 0x0028-0x0029]
Oct 28 21:42:41 tbox kernel: [ 0.071922] pnp 00:02: [io 0x002c-0x002d]
Oct 28 21:42:41 tbox kernel: [ 0.071925] pnp 00:02: [io 0x0030-0x0031]
Oct 28 21:42:41 tbox kernel: [ 0.071928] pnp 00:02: [io 0x0034-0x0035]
Oct 28 21:42:41 tbox kernel: [ 0.071931] pnp 00:02: [io 0x0038-0x0039]
Oct 28 21:42:41 tbox kernel: [ 0.071933] pnp 00:02: [io 0x003c-0x003d]
Oct 28 21:42:41 tbox kernel: [ 0.071936] pnp 00:02: [io 0x00a4-0x00a5]
Oct 28 21:42:41 tbox kernel: [ 0.071939] pnp 00:02: [io 0x00a8-0x00a9]
Oct 28 21:42:41 tbox kernel: [ 0.071942] pnp 00:02: [io 0x00ac-0x00ad]
Oct 28 21:42:41 tbox kernel: [ 0.071944] pnp 00:02: [io 0x00b0-0x00b5]
Oct 28 21:42:41 tbox kernel: [ 0.071947] pnp 00:02: [io 0x00b8-0x00b9]
Oct 28 21:42:41 tbox kernel: [ 0.071950] pnp 00:02: [io 0x00bc-0x00bd]
Oct 28 21:42:41 tbox kernel: [ 0.071952] pnp 00:02: [io 0x0050-0x0053]
Oct 28 21:42:41 tbox kernel: [ 0.071955] pnp 00:02: [io 0x0072-0x0077]
Oct 28 21:42:41 tbox kernel: [ 0.071958] pnp 00:02: [io 0x002e-0x002f]
Oct 28 21:42:41 tbox kernel: [ 0.071961] pnp 00:02: [io 0x1000-0x107f]
Oct 28 21:42:41 tbox kernel: [ 0.071963] pnp 00:02: [io 0x1180-0x11bf]
Oct 28 21:42:41 tbox kernel: [ 0.071966] pnp 00:02: [io 0x15e0-0x15ef]
Oct 28 21:42:41 tbox kernel: [ 0.071969] pnp 00:02: [io 0x1600-0x162f]
Oct 28 21:42:41 tbox kernel: [ 0.071972] pnp 00:02: [io 0x1632-0x167f]
Oct 28 21:42:41 tbox kernel: [ 0.071974] pnp 00:02: [io 0x004e-0x004f]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:02: [io 0x1630-0x1631]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [io 0x0000-0x000f]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [io 0x0080-0x008f]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [io 0x00c0-0x00df]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: [dma 4]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:04: [io 0x0061]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:05: [io 0x00f0]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:05: [irq 13]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:06: [io 0x0070-0x0071]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:06: [irq 8]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: [io 0x0060]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: [io 0x0064]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: [irq 1]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:08: [irq 12]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:08: Plug and Play ACPI device, IDs IBM0057 PNP0f13 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [io 0x03f0-0x03f5]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [io 0x03f7]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [irq 6]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: [dma 2]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:09: Plug and Play ACPI device, IDs PNP0700 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0a: [io 0x03f8-0x03ff]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0a: [irq 4]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0b: [io 0x03bc-0x03be]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0b: [irq 7]
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0b: Plug and Play ACPI device, IDs PNP0400 (active)
Oct 28 21:42:41 tbox kernel: [ 0.071977] pnp 00:0c: Plug and Play ACPI device, IDs IBM0071 PNP0511 (disabled)
Oct 28 21:42:41 tbox kernel: [ 0.072512] pnp: PnP ACPI: found 13 devices
Oct 28 21:42:41 tbox kernel: [ 0.072515] ACPI: ACPI bus type pnp unregistered
Oct 28 21:42:41 tbox kernel: [ 0.072519] PnPBIOS: Disabled by ACPI PNP
Oct 28 21:42:41 tbox kernel: [ 0.072534] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072539] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072543] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072547] system 00:00: [mem 0x000c8000-0x000cbfff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072551] system 00:00: [mem 0x000cc000-0x000cffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072555] system 00:00: [mem 0x000d0000-0x000d3fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072559] system 00:00: [mem 0x000dc000-0x000dffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072563] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072567] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072571] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072575] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072579] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072584] system 00:00: [mem 0x00100000-0x3fffffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072588] system 00:00: [mem 0xfec00000-0xffffffff] could not be reserved
Oct 28 21:42:41 tbox kernel: [ 0.072597] system 00:02: [io 0x1000-0x107f] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072600] system 00:02: [io 0x1180-0x11bf] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072604] system 00:02: [io 0x15e0-0x15ef] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072608] system 00:02: [io 0x1600-0x162f] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072612] system 00:02: [io 0x1632-0x167f] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.072615] system 00:02: [io 0x1630-0x1631] has been reserved
Oct 28 21:42:41 tbox kernel: [ 0.109713] pci 0000:00:1f.1: BAR 5: assigned [mem 0x40000000-0x400003ff]
Oct 28 21:42:41 tbox kernel: [ 0.109721] pci 0000:00:1f.1: BAR 5: set to [mem 0x40000000-0x400003ff] (PCI address [0x40000000-0x400003ff]
Oct 28 21:42:41 tbox kernel: [ 0.109727] pci 0000:01:00.0: BAR 6: assigned [mem 0xc0120000-0xc013ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109731] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 28 21:42:41 tbox kernel: [ 0.109735] pci 0000:00:01.0: bridge window [io 0x3000-0x3fff]
Oct 28 21:42:41 tbox kernel: [ 0.109740] pci 0000:00:01.0: bridge window [mem 0xc0100000-0xc01fffff]
Oct 28 21:42:41 tbox kernel: [ 0.109744] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109752] pci 0000:02:00.0: BAR 15: assigned [mem 0xe8000000-0xebffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109756] pci 0000:02:00.0: BAR 16: assigned [mem 0xc4000000-0xc7ffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109760] pci 0000:02:00.1: BAR 15: assigned [mem 0xec000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109764] pci 0000:02:00.1: BAR 16: assigned [mem 0xc8000000-0xcbffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109768] pci 0000:02:01.0: BAR 6: assigned [mem 0xc0240000-0xc024ffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109772] pci 0000:02:00.0: BAR 13: assigned [io 0x4000-0x40ff]
Oct 28 21:42:41 tbox kernel: [ 0.109776] pci 0000:02:00.0: BAR 14: assigned [io 0x4400-0x44ff]
Oct 28 21:42:41 tbox kernel: [ 0.109779] pci 0000:02:00.1: BAR 13: assigned [io 0x4800-0x48ff]
Oct 28 21:42:41 tbox kernel: [ 0.109783] pci 0000:02:00.1: BAR 14: assigned [io 0x4c00-0x4cff]
Oct 28 21:42:41 tbox kernel: [ 0.109786] pci 0000:02:00.0: CardBus bridge to [bus 03-06]
Oct 28 21:42:41 tbox kernel: [ 0.109789] pci 0000:02:00.0: bridge window [io 0x4000-0x40ff]
Oct 28 21:42:41 tbox kernel: [ 0.109794] pci 0000:02:00.0: bridge window [io 0x4400-0x44ff]
Oct 28 21:42:41 tbox kernel: [ 0.109800] pci 0000:02:00.0: bridge window [mem 0xe8000000-0xebffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109805] pci 0000:02:00.0: bridge window [mem 0xc4000000-0xc7ffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109811] pci 0000:02:00.1: CardBus bridge to [bus 07-07]
Oct 28 21:42:41 tbox kernel: [ 0.109814] pci 0000:02:00.1: bridge window [io 0x4800-0x48ff]
Oct 28 21:42:41 tbox kernel: [ 0.109819] pci 0000:02:00.1: bridge window [io 0x4c00-0x4cff]
Oct 28 21:42:41 tbox kernel: [ 0.109825] pci 0000:02:00.1: bridge window [mem 0xec000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109830] pci 0000:02:00.1: bridge window [mem 0xc8000000-0xcbffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109836] pci 0000:00:1e.0: PCI bridge to [bus 02-08]
Oct 28 21:42:41 tbox kernel: [ 0.109840] pci 0000:00:1e.0: bridge window [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 0.109846] pci 0000:00:1e.0: bridge window [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 0.109852] pci 0000:00:1e.0: bridge window [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.109872] pci 0000:00:1e.0: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 0.110131] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110134] PCI: setting IRQ 11 as level-triggered
Oct 28 21:42:41 tbox kernel: [ 0.110141] pci 0000:02:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110363] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110368] pci 0000:02:00.1: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.110375] pci_bus 0000:00: resource 0 [io 0x0000-0xffff]
Oct 28 21:42:41 tbox kernel: [ 0.110379] pci_bus 0000:00: resource 1 [mem 0x00000000-0xffffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110382] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
Oct 28 21:42:41 tbox kernel: [ 0.110386] pci_bus 0000:01: resource 1 [mem 0xc0100000-0xc01fffff]
Oct 28 21:42:41 tbox kernel: [ 0.110389] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe7ffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110393] pci_bus 0000:02: resource 0 [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 0.110396] pci_bus 0000:02: resource 1 [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110400] pci_bus 0000:02: resource 2 [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110403] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
Oct 28 21:42:41 tbox kernel: [ 0.110406] pci_bus 0000:02: resource 5 [mem 0x00000000-0xffffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110410] pci_bus 0000:03: resource 0 [io 0x4000-0x40ff]
Oct 28 21:42:41 tbox kernel: [ 0.110413] pci_bus 0000:03: resource 1 [io 0x4400-0x44ff]
Oct 28 21:42:41 tbox kernel: [ 0.110417] pci_bus 0000:03: resource 2 [mem 0xe8000000-0xebffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110420] pci_bus 0000:03: resource 3 [mem 0xc4000000-0xc7ffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110423] pci_bus 0000:07: resource 0 [io 0x4800-0x48ff]
Oct 28 21:42:41 tbox kernel: [ 0.110427] pci_bus 0000:07: resource 1 [io 0x4c00-0x4cff]
Oct 28 21:42:41 tbox kernel: [ 0.110430] pci_bus 0000:07: resource 2 [mem 0xec000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 0.110434] pci_bus 0000:07: resource 3 [mem 0xc8000000-0xcbffffff]
Oct 28 21:42:41 tbox kernel: [ 0.110483] NET: Registered protocol family 2
Oct 28 21:42:41 tbox kernel: [ 0.110563] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.110952] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.112838] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.114006] TCP: Hash tables configured (established 131072 bind 65536)
Oct 28 21:42:41 tbox kernel: [ 0.114011] TCP reno registered
Oct 28 21:42:41 tbox kernel: [ 0.114018] UDP hash table entries: 512 (order: 2, 16384 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.114058] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.114254] NET: Registered protocol family 1
Oct 28 21:42:41 tbox kernel: [ 0.114390] pci 0000:01:00.0: Boot video device
Oct 28 21:42:41 tbox kernel: [ 0.114408] PCI: CLS 32 bytes, default 64
Oct 28 21:42:41 tbox kernel: [ 0.114492] Unpacking initramfs...
Oct 28 21:42:41 tbox kernel: [ 0.543409] Freeing initrd memory: 10220k freed
Oct 28 21:42:41 tbox kernel: [ 0.559855] Simple Boot Flag at 0x35 set to 0x1
Oct 28 21:42:41 tbox kernel: [ 0.560260] audit: initializing netlink socket (disabled)
Oct 28 21:42:41 tbox kernel: [ 0.560283] type=2000 audit(1288302144.556:1): initialized
Oct 28 21:42:41 tbox kernel: [ 0.573418] highmem bounce pool size: 64 pages
Oct 28 21:42:41 tbox kernel: [ 0.573425] HugeTLB registered 4 MB page size, pre-allocated 0 pages
Oct 28 21:42:41 tbox kernel: [ 0.575996] VFS: Disk quotas dquot_6.5.2
Oct 28 21:42:41 tbox kernel: [ 0.576080] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Oct 28 21:42:41 tbox kernel: [ 0.576216] msgmni has been set to 1747
Oct 28 21:42:41 tbox kernel: [ 0.576487] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Oct 28 21:42:41 tbox kernel: [ 0.576492] io scheduler noop registered
Oct 28 21:42:41 tbox kernel: [ 0.576494] io scheduler deadline registered
Oct 28 21:42:41 tbox kernel: [ 0.576515] io scheduler cfq registered (default)
Oct 28 21:42:41 tbox kernel: [ 0.576801] ERST: Table is not found!
Oct 28 21:42:41 tbox kernel: [ 0.576821] isapnp: Scanning for PnP cards...
Oct 28 21:42:41 tbox kernel: [ 0.930063] isapnp: No Plug & Play device found
Oct 28 21:42:41 tbox kernel: [ 0.930315] Linux agpgart interface v0.103
Oct 28 21:42:41 tbox kernel: [ 0.930454] agpgart-intel 0000:00:00.0: Intel 855PM Chipset
Oct 28 21:42:41 tbox kernel: [ 0.943982] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
Oct 28 21:42:41 tbox kernel: [ 0.944075] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
Oct 28 21:42:41 tbox kernel: [ 0.944179] serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
Oct 28 21:42:41 tbox kernel: [ 0.944627] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4) is a NS16550A
Oct 28 21:42:41 tbox kernel: [ 0.944744] serial 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 0.944752] serial 0000:00:1f.6: PCI INT B disabled
Oct 28 21:42:41 tbox kernel: [ 0.944885] PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Oct 28 21:42:41 tbox kernel: [ 0.950374] serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 28 21:42:41 tbox kernel: [ 0.950385] serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 28 21:42:41 tbox kernel: [ 0.950552] mice: PS/2 mouse device common for all mice
Oct 28 21:42:41 tbox kernel: [ 0.950606] rtc_cmos 00:06: RTC can wake from S4
Oct 28 21:42:41 tbox kernel: [ 0.950662] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
Oct 28 21:42:41 tbox kernel: [ 0.950680] rtc0: alarms up to one month, y3k, 114 bytes nvram
Oct 28 21:42:41 tbox kernel: [ 0.950697] cpuidle: using governor ladder
Oct 28 21:42:41 tbox kernel: [ 0.950700] cpuidle: using governor menu
Oct 28 21:42:41 tbox kernel: [ 0.951066] TCP cubic registered
Oct 28 21:42:41 tbox kernel: [ 0.951253] NET: Registered protocol family 10
Oct 28 21:42:41 tbox kernel: [ 0.951772] lo: Disabled Privacy Extensions
Oct 28 21:42:41 tbox kernel: [ 0.952057] Mobile IPv6
Oct 28 21:42:41 tbox kernel: [ 0.952061] NET: Registered protocol family 17
Oct 28 21:42:41 tbox kernel: [ 0.952072] Registering the dns_resolver key type
Oct 28 21:42:41 tbox kernel: [ 0.952099] Using IPI No-Shortcut mode
Oct 28 21:42:41 tbox kernel: [ 0.952204] PM: Hibernation image not present or could not be loaded.
Oct 28 21:42:41 tbox kernel: [ 0.952223] registered taskstats version 1
Oct 28 21:42:41 tbox kernel: [ 0.952456] rtc_cmos 00:06: setting system clock to 2010-10-28 21:42:25 UTC (1288302145)
Oct 28 21:42:41 tbox kernel: [ 0.952492] Initalizing network drop monitor service
Oct 28 21:42:41 tbox kernel: [ 0.952544] Freeing unused kernel memory: 388k freed
Oct 28 21:42:41 tbox kernel: [ 0.952813] Write protecting the kernel text: 2596k
Oct 28 21:42:41 tbox kernel: [ 0.952838] Write protecting the kernel read-only data: 924k
Oct 28 21:42:41 tbox kernel: [ 0.955109] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
Oct 28 21:42:41 tbox kernel: [ 1.027042] udev[47]: starting version 164
Oct 28 21:42:41 tbox kernel: [ 1.236368] Floppy drive(s): fd0 is 1.44M
Oct 28 21:42:41 tbox kernel: [ 1.248821] thermal LNXTHERM:00: registered as thermal_zone0
Oct 28 21:42:41 tbox kernel: [ 1.248825] ACPI: Thermal Zone [THM0] (50 C)
Oct 28 21:42:41 tbox kernel: [ 1.272134] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k6-NAPI
Oct 28 21:42:41 tbox kernel: [ 1.272140] e1000: Copyright (c) 1999-2006 Intel Corporation.
Oct 28 21:42:41 tbox kernel: [ 1.272212] e1000 0000:02:01.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.277094] FDC 0 is a National Semiconductor PC87306
Oct 28 21:42:41 tbox kernel: [ 1.592760] usbcore: registered new interface driver usbfs
Oct 28 21:42:41 tbox kernel: [ 1.592924] usbcore: registered new interface driver hub
Oct 28 21:42:41 tbox kernel: [ 1.596108] usbcore: registered new device driver usb
Oct 28 21:42:41 tbox kernel: [ 1.610031] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 28 21:42:41 tbox kernel: [ 1.613923] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.614153] ehci_hcd 0000:00:1d.7: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.614406] ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.614413] ehci_hcd 0000:00:1d.7: PCI INT D -> Link[LNKH] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.614439] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.614444] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.614483] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
Oct 28 21:42:41 tbox kernel: [ 1.614523] ehci_hcd 0000:00:1d.7: debug port 1
Oct 28 21:42:41 tbox kernel: [ 1.618421] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
Oct 28 21:42:41 tbox kernel: [ 1.621446] SCSI subsystem initialized
Oct 28 21:42:41 tbox kernel: [ 1.628051] ehci_hcd 0000:00:1d.7: irq 11, io mem 0xc0000000
Oct 28 21:42:41 tbox kernel: [ 1.636496] uhci_hcd: USB Universal Host Controller Interface driver
Oct 28 21:42:41 tbox kernel: [ 1.640086] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Oct 28 21:42:41 tbox kernel: [ 1.640147] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Oct 28 21:42:41 tbox kernel: [ 1.640151] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.640154] usb usb1: Product: EHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.640157] usb usb1: Manufacturer: Linux 2.6.36-git11.sd.1-686 ehci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.640160] usb usb1: SerialNumber: 0000:00:1d.7
Oct 28 21:42:41 tbox kernel: [ 1.640363] hub 1-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.640371] hub 1-0:1.0: 6 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.641450] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.641603] uhci_hcd 0000:00:1d.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.641617] uhci_hcd 0000:00:1d.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.641631] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.641636] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.641651] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Oct 28 21:42:41 tbox kernel: [ 1.641683] uhci_hcd 0000:00:1d.0: irq 11, io base 0x00001800
Oct 28 21:42:41 tbox kernel: [ 1.641731] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:42:41 tbox kernel: [ 1.641734] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.641738] usb usb2: Product: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.641740] usb usb2: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.641744] usb usb2: SerialNumber: 0000:00:1d.0
Oct 28 21:42:41 tbox kernel: [ 1.641899] hub 2-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.641905] hub 2-0:1.0: 2 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.642167] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.642504] uhci_hcd 0000:00:1d.1: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 1.642748] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.642754] uhci_hcd 0000:00:1d.1: PCI INT B -> Link[LNKD] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.642762] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.642767] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.642777] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Oct 28 21:42:41 tbox kernel: [ 1.642802] uhci_hcd 0000:00:1d.1: irq 11, io base 0x00001820
Oct 28 21:42:41 tbox kernel: [ 1.642840] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:42:41 tbox kernel: [ 1.642844] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.642847] usb usb3: Product: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.642850] usb usb3: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.642853] usb usb3: SerialNumber: 0000:00:1d.1
Oct 28 21:42:41 tbox kernel: [ 1.643078] hub 3-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.643084] hub 3-0:1.0: 2 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.643389] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.643394] uhci_hcd 0000:00:1d.2: PCI INT C -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.643402] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.643406] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.643415] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Oct 28 21:42:41 tbox kernel: [ 1.643439] uhci_hcd 0000:00:1d.2: irq 11, io base 0x00001840
Oct 28 21:42:41 tbox kernel: [ 1.643477] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Oct 28 21:42:41 tbox kernel: [ 1.643480] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 28 21:42:41 tbox kernel: [ 1.643484] usb usb4: Product: UHCI Host Controller
Oct 28 21:42:41 tbox kernel: [ 1.643486] usb usb4: Manufacturer: Linux 2.6.36-git11.sd.1-686 uhci_hcd
Oct 28 21:42:41 tbox kernel: [ 1.643489] usb usb4: SerialNumber: 0000:00:1d.2
Oct 28 21:42:41 tbox kernel: [ 1.643705] hub 4-0:1.0: USB hub found
Oct 28 21:42:41 tbox kernel: [ 1.643711] hub 4-0:1.0: 2 ports detected
Oct 28 21:42:41 tbox kernel: [ 1.684752] libata version 3.00 loaded.
Oct 28 21:42:41 tbox kernel: [ 1.691330] ata_piix 0000:00:1f.1: version 2.13
Oct 28 21:42:41 tbox kernel: [ 1.691347] ata_piix 0000:00:1f.1: enabling device (0005 -> 0007)
Oct 28 21:42:41 tbox kernel: [ 1.691358] ata_piix 0000:00:1f.1: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 1.691411] ata_piix 0000:00:1f.1: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 1.692125] scsi0 : ata_piix
Oct 28 21:42:41 tbox kernel: [ 1.692329] scsi1 : ata_piix
Oct 28 21:42:41 tbox kernel: [ 1.693192] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0x1860 irq 14
Oct 28 21:42:41 tbox kernel: [ 1.693196] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0x1868 irq 15
Oct 28 21:42:41 tbox kernel: [ 1.729558] e1000 0000:02:01.0: eth0: (PCI:33MHz:32-bit) 00:0d:60:b0:62:87
Oct 28 21:42:41 tbox kernel: [ 1.729566] e1000 0000:02:01.0: eth0: Intel(R) PRO/1000 Network Connection
Oct 28 21:42:41 tbox kernel: [ 1.848422] ata2.01: NODEV after polling detection
Oct 28 21:42:41 tbox kernel: [ 1.856972] ata1.00: HPA detected: current 110257519, native 117210240
Oct 28 21:42:41 tbox kernel: [ 1.856979] ata1.00: ATA-6: HTS726060M9AT00, MH4OA6BA, max UDMA/100
Oct 28 21:42:41 tbox kernel: [ 1.856982] ata1.00: 110257519 sectors, multi 16: LBA
Oct 28 21:42:41 tbox kernel: [ 1.857078] ata2.00: ATAPI: UJDA755yDVD/CDRW, 1.70, max UDMA/33
Oct 28 21:42:41 tbox kernel: [ 1.872668] ata2.00: configured for UDMA/33
Oct 28 21:42:41 tbox kernel: [ 1.872723] ata1.00: configured for UDMA/100
Oct 28 21:42:41 tbox kernel: [ 1.872888] scsi 0:0:0:0: Direct-Access ATA HTS726060M9AT00 MH4O PQ: 0 ANSI: 5
Oct 28 21:42:41 tbox kernel: [ 1.876047] scsi 1:0:0:0: CD-ROM MATSHITA UJDA755yDVD/CDRW 1.70 PQ: 0 ANSI: 5
Oct 28 21:42:41 tbox kernel: [ 1.907683] sd 0:0:0:0: [sda] 110257519 512-byte logical blocks: (56.4 GB/52.5 GiB)
Oct 28 21:42:41 tbox kernel: [ 1.907825] sd 0:0:0:0: [sda] Write Protect is off
Oct 28 21:42:41 tbox kernel: [ 1.907829] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 28 21:42:41 tbox kernel: [ 1.907855] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 28 21:42:41 tbox kernel: [ 1.912077] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda tray
Oct 28 21:42:41 tbox kernel: [ 1.912081] cdrom: Uniform CD-ROM driver Revision: 3.20
Oct 28 21:42:41 tbox kernel: [ 1.912425] sr 1:0:0:0: Attached scsi CD-ROM sr0
Oct 28 21:42:41 tbox kernel: [ 1.969792] sda: sda1 sda2 sda3 sda4 < sda5 sda6 >
Oct 28 21:42:41 tbox kernel: [ 1.970484] sd 0:0:0:0: [sda] Attached SCSI disk
Oct 28 21:42:41 tbox kernel: [ 1.987326] sd 0:0:0:0: Attached scsi generic sg0 type 0
Oct 28 21:42:41 tbox kernel: [ 1.987796] sr 1:0:0:0: Attached scsi generic sg1 type 5
Oct 28 21:42:41 tbox kernel: [ 2.008041] usb 1-4: new high speed USB device using ehci_hcd and address 3
Oct 28 21:42:41 tbox kernel: [ 2.140978] usb 1-4: New USB device found, idVendor=152d, idProduct=2329
Oct 28 21:42:41 tbox kernel: [ 2.140983] usb 1-4: New USB device strings: Mfr=10, Product=11, SerialNumber=3
Oct 28 21:42:41 tbox kernel: [ 2.140987] usb 1-4: Product: Storagebird 35EV821
Oct 28 21:42:41 tbox kernel: [ 2.140990] usb 1-4: Manufacturer: 0123456
Oct 28 21:42:41 tbox kernel: [ 2.140992] usb 1-4: SerialNumber: 000000000340
Oct 28 21:42:41 tbox kernel: [ 2.158046] Initializing USB Mass Storage driver...
Oct 28 21:42:41 tbox kernel: [ 2.158167] scsi2 : usb-storage 1-4:1.0
Oct 28 21:42:41 tbox kernel: [ 2.158337] usbcore: registered new interface driver usb-storage
Oct 28 21:42:41 tbox kernel: [ 2.158339] USB Mass Storage support registered.
Oct 28 21:42:41 tbox kernel: [ 2.380030] usb 3-1: new low speed USB device using uhci_hcd and address 2
Oct 28 21:42:41 tbox kernel: [ 2.556825] usb 3-1: New USB device found, idVendor=046d, idProduct=c00e
Oct 28 21:42:41 tbox kernel: [ 2.556830] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 28 21:42:41 tbox kernel: [ 2.556833] usb 3-1: Product: USB-PS/2 Optical Mouse
Oct 28 21:42:41 tbox kernel: [ 2.556836] usb 3-1: Manufacturer: Logitech
Oct 28 21:42:41 tbox kernel: [ 2.596309] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.0/input/input1
Oct 28 21:42:41 tbox kernel: [ 2.596497] generic-usb 0003:046D:C00E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1d.1-1/input0
Oct 28 21:42:41 tbox kernel: [ 2.596680] usbcore: registered new interface driver usbhid
Oct 28 21:42:41 tbox kernel: [ 2.596682] usbhid: USB HID core driver
Oct 28 21:42:41 tbox kernel: [ 2.668321] device-mapper: uevent: version 1.0.3
Oct 28 21:42:41 tbox kernel: [ 2.668938] device-mapper: ioctl: 4.18.0-ioctl (2010-06-29) initialised: dm-devel@redhat.com
Oct 28 21:42:41 tbox kernel: [ 2.952328] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 3.198345] scsi 2:0:0:0: Direct-Access WDC WD10 EAVS-00D7B0 PQ: 0 ANSI: 2 CCS
Oct 28 21:42:41 tbox kernel: [ 3.198882] sd 2:0:0:0: Attached scsi generic sg2 type 0
Oct 28 21:42:41 tbox kernel: [ 3.199435] sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Oct 28 21:42:41 tbox kernel: [ 3.200186] sd 2:0:0:0: [sdb] Write Protect is off
Oct 28 21:42:41 tbox kernel: [ 3.200190] sd 2:0:0:0: [sdb] Mode Sense: 34 00 00 00
Oct 28 21:42:41 tbox kernel: [ 3.200194] sd 2:0:0:0: [sdb] Assuming drive cache: write through
Oct 28 21:42:41 tbox kernel: [ 3.201686] sd 2:0:0:0: [sdb] Assuming drive cache: write through
Oct 28 21:42:41 tbox kernel: [ 3.282062] sdb: sdb1 sdb2 sdb3 sdb4 < sdb5 sdb6 sdb7 sdb8 >
Oct 28 21:42:41 tbox kernel: [ 3.283929] sd 2:0:0:0: [sdb] Assuming drive cache: write through
Oct 28 21:42:41 tbox kernel: [ 3.283962] sd 2:0:0:0: [sdb] Attached SCSI disk
Oct 28 21:42:41 tbox kernel: [ 3.673194] init[1]: systemd 10 running in system mode. (+PAM -LIBWRAP -AUDIT +SELINUX +SYSVINIT; debian)
Oct 28 21:42:41 tbox kernel: [ 3.898630] init[1]: Set hostname to <tbox>.
Oct 28 21:42:41 tbox kernel: [ 5.274608] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 5.535813] fuse init (API version 7.15)
Oct 28 21:42:41 tbox kernel: [ 5.755599] init[1]: screen-cleanup.service: control process exited, code=exited status=1
Oct 28 21:42:41 tbox kernel: [ 5.755696] init[1]: Unit screen-cleanup.service entered failed state.
Oct 28 21:42:41 tbox kernel: [ 5.881168] init[1]: console-setup.service: control process exited, code=exited status=208
Oct 28 21:42:41 tbox kernel: [ 5.881272] init[1]: Unit console-setup.service entered failed state.
Oct 28 21:42:41 tbox kernel: [ 6.281601] udev[366]: starting version 164
Oct 28 21:42:41 tbox kernel: [ 6.576676] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
Oct 28 21:42:41 tbox kernel: [ 6.577737] ACPI: Lid Switch [LID]
Oct 28 21:42:41 tbox kernel: [ 6.577835] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
Oct 28 21:42:41 tbox kernel: [ 6.577842] ACPI: Sleep Button [SLPB]
Oct 28 21:42:41 tbox kernel: [ 6.577944] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
Oct 28 21:42:41 tbox kernel: [ 6.577948] ACPI: Power Button [PWRF]
Oct 28 21:42:41 tbox kernel: [ 6.643396] ACPI: Battery Slot [BAT0] (battery present)
Oct 28 21:42:41 tbox kernel: [ 6.644928] ACPI: AC Adapter [AC] (on-line)
Oct 28 21:42:41 tbox kernel: [ 6.684608] ACPI: acpi_idle registered with cpuidle
Oct 28 21:42:41 tbox kernel: [ 6.685130] Marking TSC unstable due to TSC halts in idle
Oct 28 21:42:41 tbox kernel: [ 6.686980] Switching to clocksource acpi_pm
Oct 28 21:42:41 tbox kernel: [ 6.919407] Non-volatile memory driver v1.3
Oct 28 21:42:41 tbox kernel: [ 7.019561] input: PC Speaker as /devices/platform/pcspkr/input/input5
Oct 28 21:42:41 tbox kernel: [ 7.025333] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A03:00/device:03/LNXVIDEO:00/input/input6
Oct 28 21:42:41 tbox kernel: [ 7.025483] ACPI: Video Device [VID] (multi-head: yes rom: no post: no)
Oct 28 21:42:41 tbox kernel: [ 7.116534] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 28 21:42:41 tbox kernel: [ 7.154595] intel_rng: FWH not detected
Oct 28 21:42:41 tbox kernel: [ 7.211083] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 28 21:42:41 tbox kernel: [ 7.223103] parport_pc 00:0b: reported by Plug and Play ACPI
Oct 28 21:42:41 tbox kernel: [ 7.223153] parport0: PC-style at 0x3bc, irq 7 [PCSPP,TRISTATE]
Oct 28 21:42:41 tbox kernel: [ 7.323149] i801_smbus 0000:00:1f.3: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 7.398752] [drm] Initialized drm 1.1.0 20060810
Oct 28 21:42:41 tbox kernel: [ 7.535416] NET: Registered protocol family 23
Oct 28 21:42:41 tbox kernel: [ 7.536425] cfg80211: Calling CRDA to update world regulatory domain
Oct 28 21:42:41 tbox kernel: [ 7.672782] yenta_cardbus 0000:02:00.0: CardBus bridge found [1014:0512]
Oct 28 21:42:41 tbox kernel: [ 7.672802] yenta_cardbus 0000:02:00.0: Using INTVAL to route CSC interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.672806] yenta_cardbus 0000:02:00.0: Routing CardBus interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.672811] yenta_cardbus 0000:02:00.0: TI: mfunc 0x01d21022, devctl 0x64
Oct 28 21:42:41 tbox kernel: [ 7.730989] nsc-ircc 00:0c: [io 0x02f8-0x02ff]
Oct 28 21:42:41 tbox kernel: [ 7.731051] nsc-ircc 00:0c: [irq 3]
Oct 28 21:42:41 tbox kernel: [ 7.731056] nsc-ircc 00:0c: [dma 1]
Oct 28 21:42:41 tbox kernel: [ 7.731624] nsc-ircc 00:0c: activated
Oct 28 21:42:41 tbox kernel: [ 7.731806] nsc-ircc, chip->init
Oct 28 21:42:41 tbox kernel: [ 7.731815] nsc-ircc, Found chip at base=0x02e
Oct 28 21:42:41 tbox kernel: [ 7.731839] nsc-ircc, driver loaded (Dag Brattli)
Oct 28 21:42:41 tbox kernel: [ 7.733623] IrDA: Registered device irda0
Oct 28 21:42:41 tbox kernel: [ 7.733627] nsc-ircc, Using dongle: IBM31T1100 or Temic TFDS6000/TFDS6500
Oct 28 21:42:41 tbox kernel: [ 7.846219] Synaptics Touchpad, model: 1, fw: 5.9, id: 0x2c6ab1, caps: 0x884793/0x0/0x0
Oct 28 21:42:41 tbox kernel: [ 7.846228] serio: Synaptics pass-through port at isa0060/serio1/input0
Oct 28 21:42:41 tbox kernel: [ 7.902715] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
Oct 28 21:42:41 tbox kernel: [ 7.912919] yenta_cardbus 0000:02:00.0: ISA IRQ mask 0x0438, PCI irq 11
Oct 28 21:42:41 tbox kernel: [ 7.912924] yenta_cardbus 0000:02:00.0: Socket status: 30000006
Oct 28 21:42:41 tbox kernel: [ 7.912934] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 7.912940] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
Oct 28 21:42:41 tbox kernel: [ 7.952224] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 7.952231] pcmcia_socket pcmcia_socket0: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xc3a00000-0xcc1fffff 0xcfa00000-0xd01fffff
Oct 28 21:42:41 tbox kernel: [ 7.952260] yenta_cardbus 0000:02:00.0: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 7.952264] pcmcia_socket pcmcia_socket0: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
Oct 28 21:42:41 tbox kernel: [ 7.964835] yenta_cardbus 0000:02:00.1: CardBus bridge found [1014:0512]
Oct 28 21:42:41 tbox kernel: [ 7.964856] yenta_cardbus 0000:02:00.1: Using INTVAL to route CSC interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.964860] yenta_cardbus 0000:02:00.1: Routing CardBus interrupts to PCI
Oct 28 21:42:41 tbox kernel: [ 7.964866] yenta_cardbus 0000:02:00.1: TI: mfunc 0x01d21022, devctl 0x64
Oct 28 21:42:41 tbox kernel: [ 8.159881] thinkpad_acpi: ThinkPad ACPI Extras v0.24
Oct 28 21:42:41 tbox kernel: [ 8.159885] thinkpad_acpi: http://ibm-acpi.sf.net/
Oct 28 21:42:41 tbox kernel: [ 8.159887] thinkpad_acpi: ThinkPad BIOS 1RETDRWW (3.23 ), EC 1RHT71WW-3.04
Oct 28 21:42:41 tbox kernel: [ 8.159890] thinkpad_acpi: IBM ThinkPad T40p, model 2374SG6
Oct 28 21:42:41 tbox kernel: [ 8.161537] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
Oct 28 21:42:41 tbox kernel: [ 8.169947] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is blocked
Oct 28 21:42:41 tbox kernel: [ 8.170763] Registered led device: tpacpi::thinklight
Oct 28 21:42:41 tbox kernel: [ 8.171652] Registered led device: tpacpi::power
Oct 28 21:42:41 tbox kernel: [ 8.171990] Registered led device: tpacpi::standby
Oct 28 21:42:41 tbox kernel: [ 8.177470] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
Oct 28 21:42:41 tbox kernel: [ 8.180805] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input8
Oct 28 21:42:41 tbox kernel: [ 8.197000] yenta_cardbus 0000:02:00.1: ISA IRQ mask 0x0438, PCI irq 11
Oct 28 21:42:41 tbox kernel: [ 8.197005] yenta_cardbus 0000:02:00.1: Socket status: 30000006
Oct 28 21:42:41 tbox kernel: [ 8.197017] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [io 0x4000-0x8fff]
Oct 28 21:42:41 tbox kernel: [ 8.197023] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x4000-0x8fff: excluding 0x4000-0x40ff 0x4400-0x44ff 0x4800-0x48ff 0x4c00-0x4cff 0x8000-0x803f
Oct 28 21:42:41 tbox kernel: [ 8.223711] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xc0200000-0xcfffffff]
Oct 28 21:42:41 tbox kernel: [ 8.223717] pcmcia_socket pcmcia_socket1: cs: memory probe 0xc0200000-0xcfffffff: excluding 0xc0200000-0xc09fffff 0xc3a00000-0xcc1fffff 0xcfa00000-0xd01fffff
Oct 28 21:42:41 tbox kernel: [ 8.223745] yenta_cardbus 0000:02:00.1: pcmcia: parent PCI bridge window: [mem 0xe8000000-0xefffffff pref]
Oct 28 21:42:41 tbox kernel: [ 8.223749] pcmcia_socket pcmcia_socket1: cs: memory probe 0xe8000000-0xefffffff: excluding 0xe8000000-0xefffffff
Oct 28 21:42:41 tbox kernel: [ 8.232379] ath5k 0000:02:02.0: PCI INT A -> Link[LNKC] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 8.232509] ath5k 0000:02:02.0: registered as 'phy0'
Oct 28 21:42:41 tbox kernel: [ 8.520058] [drm] radeon kernel modesetting enabled.
Oct 28 21:42:41 tbox kernel: [ 8.520169] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 8.520182] radeon 0000:01:00.0: power state changed by ACPI to D0
Oct 28 21:42:41 tbox kernel: [ 8.520194] radeon 0000:01:00.0: PCI INT A -> Link[LNKA] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 8.534476] [drm] initializing kernel modesetting (RV250 0x1002:0x4C66).
Oct 28 21:42:41 tbox kernel: [ 8.534630] [drm] register mmio base: 0xC0100000
Oct 28 21:42:41 tbox kernel: [ 8.534632] [drm] register mmio size: 65536
Oct 28 21:42:41 tbox kernel: [ 8.535018] agpgart-intel 0000:00:00.0: AGP 2.0 bridge
Oct 28 21:42:41 tbox kernel: [ 8.535382] agpgart-intel 0000:00:00.0: putting AGP V2 device into 4x mode
Oct 28 21:42:41 tbox kernel: [ 8.535420] radeon 0000:01:00.0: putting AGP V2 device into 4x mode
Oct 28 21:42:41 tbox kernel: [ 8.535449] radeon 0000:01:00.0: GTT: 256M 0xD0000000 - 0xDFFFFFFF
Oct 28 21:42:41 tbox kernel: [ 8.535458] radeon 0000:01:00.0: VRAM: 128M 0xE0000000 - 0xE7FFFFFF (64M used)
Oct 28 21:42:41 tbox kernel: [ 8.535469] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
Oct 28 21:42:41 tbox kernel: [ 8.535472] [drm] Driver supports precise vblank timestamp query.
Oct 28 21:42:41 tbox kernel: [ 8.535493] [drm] radeon: irq initialized.
Oct 28 21:42:41 tbox kernel: [ 8.536074] [drm] Detected VRAM RAM=128M, BAR=128M
Oct 28 21:42:41 tbox kernel: [ 8.536078] [drm] RAM width 128bits DDR
Oct 28 21:42:41 tbox kernel: [ 8.536172] [TTM] Zone kernel: Available graphics memory: 447582 kiB.
Oct 28 21:42:41 tbox kernel: [ 8.536175] [TTM] Zone highmem: Available graphics memory: 516898 kiB.
Oct 28 21:42:41 tbox kernel: [ 8.536178] [TTM] Initializing pool allocator.
Oct 28 21:42:41 tbox kernel: [ 8.536211] [drm] radeon: 64M of VRAM memory ready
Oct 28 21:42:41 tbox kernel: [ 8.536214] [drm] radeon: 256M of GTT memory ready.
Oct 28 21:42:41 tbox kernel: [ 8.537696] radeon 0000:01:00.0: WB enabled
Oct 28 21:42:41 tbox kernel: [ 8.538304] [drm] Loading R200 Microcode
Oct 28 21:42:41 tbox kernel: [ 8.578476] ath: EEPROM regdomain: 0x61
Oct 28 21:42:41 tbox kernel: [ 8.578479] ath: EEPROM indicates we should expect a direct regpair map
Oct 28 21:42:41 tbox kernel: [ 8.578485] ath: Country alpha2 being used: 00
Oct 28 21:42:41 tbox kernel: [ 8.578487] ath: Regpair used: 0x61
Oct 28 21:42:41 tbox kernel: [ 8.663709] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
Oct 28 21:42:41 tbox kernel: [ 8.664764] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
Oct 28 21:42:41 tbox kernel: [ 8.665217] pcmcia_socket pcmcia_socket1: cs: IO port probe 0x820-0x8ff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.665603] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xc00-0xcf7: clean.
Oct 28 21:42:41 tbox kernel: [ 8.666022] pcmcia_socket pcmcia_socket1: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
Oct 28 21:42:41 tbox kernel: [ 8.666085] pcmcia_socket pcmcia_socket1: cs: memory probe 0xa0000000-0xa0ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.666147] pcmcia_socket pcmcia_socket1: cs: memory probe 0x60000000-0x60ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.666215] pcmcia_socket pcmcia_socket1: cs: IO port probe 0xa00-0xaff:
Oct 28 21:42:41 tbox kernel: [ 8.666367] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af: excluding 0x170-0x177 0x1f0-0x1f7 0x2f8-0x2ff 0x370-0x377
Oct 28 21:42:41 tbox kernel: [ 8.667392] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff: excluding 0x3f0-0x3ff 0x4d0-0x4d7
Oct 28 21:42:41 tbox kernel: [ 8.667844] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.668429] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7: clean.
Oct 28 21:42:41 tbox kernel: [ 8.668848] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff: excluding 0xc0000-0xd3fff 0xdc000-0xfffff
Oct 28 21:42:41 tbox kernel: [ 8.668909] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.668971] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.669039] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff: clean.
Oct 28 21:42:41 tbox kernel: [ 8.669837] clean.
Oct 28 21:42:41 tbox kernel: [ 8.693688] Intel ICH 0000:00:1f.5: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 8.693726] Intel ICH 0000:00:1f.5: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 8.721299] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Oct 28 21:42:41 tbox kernel: [ 8.722206] Registered led device: ath5k-phy0::rx
Oct 28 21:42:41 tbox kernel: [ 8.722234] Registered led device: ath5k-phy0::tx
Oct 28 21:42:41 tbox kernel: [ 8.722246] ath5k phy0: Atheros AR5212 chip found (MAC: 0x56, PHY: 0x41)
Oct 28 21:42:41 tbox kernel: [ 8.722250] ath5k phy0: RF5111 5GHz radio found (0x17)
Oct 28 21:42:41 tbox kernel: [ 8.722253] ath5k phy0: RF2111 2GHz radio found (0x23)
Oct 28 21:42:41 tbox kernel: [ 8.728269] [drm] radeon: ring at 0x00000000D0001000
Oct 28 21:42:41 tbox kernel: [ 8.728291] [drm] ring test succeeded in 1 usecs
Oct 28 21:42:41 tbox kernel: [ 8.728547] [drm] radeon: ib pool ready.
Oct 28 21:42:41 tbox kernel: [ 8.728648] [drm] ib test succeeded in 0 usecs
Oct 28 21:42:41 tbox kernel: [ 8.728924] [drm] Panel ID String: SXGA+ Single (85MHz)
Oct 28 21:42:41 tbox kernel: [ 8.728927] [drm] Panel Size 1400x1050
Oct 28 21:42:41 tbox kernel: [ 8.739921] [drm] radeon legacy LVDS backlight initialized
Oct 28 21:42:41 tbox kernel: [ 8.758506] [drm] No TV DAC info found in BIOS
Oct 28 21:42:41 tbox kernel: [ 8.758637] [drm] Radeon Display Connectors
Oct 28 21:42:41 tbox kernel: [ 8.758640] [drm] Connector 0:
Oct 28 21:42:41 tbox kernel: [ 8.758643] [drm] VGA
Oct 28 21:42:41 tbox kernel: [ 8.758646] [drm] DDC: 0x60 0x60 0x60 0x60 0x60 0x60 0x60 0x60
Oct 28 21:42:41 tbox kernel: [ 8.758648] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758650] [drm] CRT1: INTERNAL_DAC1
Oct 28 21:42:41 tbox kernel: [ 8.758653] [drm] Connector 1:
Oct 28 21:42:41 tbox kernel: [ 8.758655] [drm] DVI-D
Oct 28 21:42:41 tbox kernel: [ 8.758656] [drm] HPD1
Oct 28 21:42:41 tbox kernel: [ 8.758659] [drm] DDC: 0x64 0x64 0x64 0x64 0x64 0x64 0x64 0x64
Oct 28 21:42:41 tbox kernel: [ 8.758661] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758663] [drm] DFP1: INTERNAL_TMDS1
Oct 28 21:42:41 tbox kernel: [ 8.758666] [drm] Connector 2:
Oct 28 21:42:41 tbox kernel: [ 8.758667] [drm] LVDS
Oct 28 21:42:41 tbox kernel: [ 8.758669] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758671] [drm] LCD1: INTERNAL_LVDS
Oct 28 21:42:41 tbox kernel: [ 8.758673] [drm] Connector 3:
Oct 28 21:42:41 tbox kernel: [ 8.758674] [drm] S-video
Oct 28 21:42:41 tbox kernel: [ 8.758676] [drm] Encoders:
Oct 28 21:42:41 tbox kernel: [ 8.758678] [drm] TV1: INTERNAL_DAC2
Oct 28 21:42:41 tbox kernel: [ 8.764668] [drm] radeon: power management initialized
Oct 28 21:42:41 tbox kernel: [ 8.846521] [drm] fb mappable at 0xE0040000
Oct 28 21:42:41 tbox kernel: [ 8.846525] [drm] vram apper at 0xE0000000
Oct 28 21:42:41 tbox kernel: [ 8.846527] [drm] size 5914624
Oct 28 21:42:41 tbox kernel: [ 8.846529] [drm] fb depth is 24
Oct 28 21:42:41 tbox kernel: [ 8.846531] [drm] pitch is 5632
Oct 28 21:42:41 tbox kernel: [ 8.916696] Console: switching to colour frame buffer device 175x65
Oct 28 21:42:41 tbox kernel: [ 8.977288] fb0: radeondrmfb frame buffer device
Oct 28 21:42:41 tbox kernel: [ 8.977291] drm: registered panic notifier
Oct 28 21:42:41 tbox kernel: [ 8.978852] [drm] Initialized radeon 2.7.0 20080528 for 0000:01:00.0 on minor 0
Oct 28 21:42:41 tbox kernel: [ 9.510016] EXT4-fs (sda3): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:42:41 tbox kernel: [ 9.510357] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 9.616039] intel8x0_measure_ac97_clock: measured 55402 usecs (2669 samples)
Oct 28 21:42:41 tbox kernel: [ 9.616044] intel8x0: clocking to 48000
Oct 28 21:42:41 tbox kernel: [ 9.617512] Intel ICH Modem 0000:00:1f.6: PCI INT B -> Link[LNKB] -> GSI 11 (level, low) -> IRQ 11
Oct 28 21:42:41 tbox kernel: [ 9.617540] Intel ICH Modem 0000:00:1f.6: setting latency timer to 64
Oct 28 21:42:41 tbox kernel: [ 10.687303] Adding 1052244k swap on /dev/sda2. Priority:-1 extents:1 across:1052244k
Oct 28 21:42:41 tbox kernel: [ 10.693961] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 11.290047] EXT4-fs (sda5): re-mounted. Opts: (null)
Oct 28 21:42:41 tbox kernel: [ 12.431524] init[1]: tmpwatch.service: main process exited, code=exited, status=203
Oct 28 21:42:41 tbox kernel: [ 12.431677] init[1]: Unit tmpwatch.service entered failed state.
Oct 28 21:42:41 tbox kernel: [ 13.267487] ADDRCONF(NETDEV_UP): wlan0: link is not ready
Oct 28 21:42:41 tbox kernel: [ 14.134990] IBM TrackPoint firmware: 0x0e, buttons: 3/3
Oct 28 21:42:41 tbox kernel: [ 14.355796] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input9
Oct 28 21:42:41 tbox kernel: [ 15.686258] lp0: using parport0 (interrupt-driven).
Oct 28 21:42:41 tbox kernel: [ 15.957198] ppdev: user-space parallel port driver
Oct 28 21:42:41 tbox kernel: [ 16.187060] sshd (1337): /proc/1337/oom_adj is deprecated, please use /proc/1337/oom_score_adj instead.
Oct 28 21:42:41 tbox /usr/sbin/cron[1341]: (CRON) INFO (Running @reboot jobs)
Oct 28 21:42:41 tbox kernel: [ 17.346972] P-state transition latency capped at 20 uS
Oct 28 21:42:42 tbox bluetoothd[1400]: Bluetooth deamon 4.70
Oct 28 21:42:42 tbox kernel: [ 18.253916] Bluetooth: Core ver 2.15
Oct 28 21:42:42 tbox kernel: [ 18.253950] NET: Registered protocol family 31
Oct 28 21:42:42 tbox kernel: [ 18.253952] Bluetooth: HCI device and connection manager initialized
Oct 28 21:42:42 tbox kernel: [ 18.253955] Bluetooth: HCI socket layer initialized
Oct 28 21:42:42 tbox bluetoothd[1400]: Starting SDP server
Oct 28 21:42:43 tbox wpa_supplicant[1131]: Trying to associate with 00:04:0e:e4:00:3d (SSID='myCastle-WLAN WPA (Wireless LAN)' freq=2442 MHz)
Oct 28 21:42:43 tbox kernel: [ 18.660168] wlan0: authenticate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:42:43 tbox kernel: [ 18.661618] wlan0: authenticated
Oct 28 21:42:43 tbox kernel: [ 18.661655] wlan0: associate with 00:04:0e:e4:00:3d (try 1)
Oct 28 21:42:43 tbox wpa_supplicant[1131]: Associated with 00:04:0e:e4:00:3d
Oct 28 21:42:43 tbox kernel: [ 18.665511] wlan0: RX AssocResp from 00:04:0e:e4:00:3d (capab=0x411 status=0 aid=1)
Oct 28 21:42:43 tbox kernel: [ 18.665522] wlan0: associated
Oct 28 21:42:43 tbox kernel: [ 18.667469] ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Oct 28 21:42:43 tbox bluetoothd[1400]: opening L2CAP socket: Protocol not supported
Oct 28 21:42:43 tbox bluetoothd[1400]: Server initialization failed
Oct 28 21:42:43 tbox kernel: [ 19.187205] Bluetooth: L2CAP ver 2.15
Oct 28 21:42:43 tbox kernel: [ 19.187209] Bluetooth: L2CAP socket layer initialized
Oct 28 21:42:43 tbox bluetoothd[1400]: Starting experimental netlink support
Oct 28 21:42:43 tbox bluetoothd[1400]: Failed to find Bluetooth netlink family
Oct 28 21:42:43 tbox bluetoothd[1400]: Failed to init netlink plugin
Oct 28 21:42:43 tbox kernel: [ 19.331748] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 28 21:42:43 tbox kernel: [ 19.331758] Bluetooth: BNEP filters: protocol multicast
Oct 28 21:42:43 tbox kernel: [ 19.335659] Bluetooth: RFCOMM TTY layer initialized
Oct 28 21:42:43 tbox kernel: [ 19.335664] Bluetooth: RFCOMM socket layer initialized
Oct 28 21:42:43 tbox kernel: [ 19.335667] Bluetooth: RFCOMM ver 1.11
Oct 28 21:42:44 tbox kernel: [ 19.596575] Bluetooth: SCO (Voice Link) ver 0.6
Oct 28 21:42:44 tbox kernel: [ 19.596579] Bluetooth: SCO socket layer initialized
Oct 28 21:42:44 tbox kernel: [ 19.997363] padlock: VIA PadLock not detected.
Oct 28 21:42:44 tbox wpa_supplicant[1131]: WPA: Key negotiation completed with 00:04:0e:e4:00:3d [PTK=CCMP GTK=CCMP]
Oct 28 21:42:44 tbox wpa_supplicant[1131]: CTRL-EVENT-CONNECTED - Connection to 00:04:0e:e4:00:3d completed (auth) [id=0 id_str=]
Oct 28 21:42:45 tbox acpid: client connected from 1481[105:112]
Oct 28 21:42:45 tbox acpid: 1 client rule loaded
Oct 28 21:42:45 tbox init[1]: Startup finished in 3s 899ms 149us (kernel) + 17s 289ms 543us (userspace) = 21s 188ms 692us.
Oct 28 21:42:50 tbox acpid: client connected from 1526[0:0]
Oct 28 21:42:50 tbox acpid: 1 client rule loaded
Oct 28 21:42:53 tbox kernel: [ 29.384046] wlan0: no IPv6 routers present
Oct 28 21:42:56 tbox ntpdate[1251]: step time server 192.53.103.108 offset 0.106712 sec
Oct 28 21:43:38 tbox ntfs-3g[778]: Unmounting /dev/sda1 (IBM_PRELOAD)
Oct 28 21:44:05 tbox kernel: [ 100.884524] ------------[ cut here ]------------
Oct 28 21:44:05 tbox kernel: [ 100.884718] kernel BUG at /home/sd/src/linux-2.6/linux-2.6.36/debian/build/source_i386_none/fs/ext4/inode.c:2721!
Oct 28 21:44:05 tbox kernel: [ 100.885100] invalid opcode: 0000 [#1] SMP
Oct 28 21:44:05 tbox kernel: [ 100.885277] last sysfs file: /sys/devices/LNXSYSTM:00/device:00/PNP0A03:00/device:01/PNP0C09:00/PNP0C0A:00/power_supply/BAT0/energy_full
Oct 28 21:44:05 tbox kernel: [ 100.885731] Modules linked in: aes_i586 aes_generic sco rfcomm bnep l2cap bluetooth acpi_cpufreq mperf cpufreq_powersave cpufreq_userspace cpufreq_stats cpufreq_conservative ppdev lp dm_crypt binfmt_misc snd_intel8x0m arc4 snd_intel8x0 snd_pcm_oss ecb snd_mixer_oss snd_ac97_codec radeon ac97_bus thinkpad_acpi snd_pcm pcmcia ath5k joydev snd_seq_midi ath ttm mac80211 snd_rawmidi snd_seq_midi_event nsc_ircc snd_seq yenta_socket drm_kms_helper snd_timer cfg80211 irda pcmcia_rsrc snd_seq_device rfkill drm i2c_i801 i2c_algo_bit pcmcia_core i2c_core snd parport_pc snd_page_alloc shpchp tpm_tis rng_core soundcore pci_hotplug parport tpm crc_ccitt tpm_bios psmouse video pcspkr led_class nvram serio_raw output processor evdev ac battery power_supply button fuse autofs4 ext4 mbcache jbd2 crc16 dm_mod usbhid hid usb_storage sg sd_mod sr_mod crc_t10dif cdrom ata_generic ata_piix libata uhci_hcd ehci_hcd scsi_mod usbcore e1000 thermal thermal_sys floppy nls_base [last unloaded: scsi_wait_sca
Oct 28 21:44:05 tbox kernel: n]
Oct 28 21:44:05 tbox kernel: [ 100.888026]
Oct 28 21:44:05 tbox kernel: [ 100.888026] Pid: 234, comm: jbd2/sda5-8 Not tainted 2.6.36-git11.sd.1-686 #1 2374SG6/2374SG6
Oct 28 21:44:05 tbox kernel: [ 100.888026] EIP: 0060:[<f85de3af>] EFLAGS: 00010246 CPU: 0
Oct 28 21:44:05 tbox kernel: [ 100.888026] EIP is at ext4_writepage+0x8d/0x1f1 [ext4]
Oct 28 21:44:05 tbox kernel: [ 100.888026] EAX: 40020029 EBX: f7691180 ECX: 05050030 EDX: 00000000
Oct 28 21:44:05 tbox kernel: [ 100.888026] ESI: 00005050 EDI: 00001000 EBP: f5f07848 ESP: efa21dbc
Oct 28 21:44:05 tbox kernel: [ 100.888026] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
Oct 28 21:44:05 tbox kernel: [ 100.888026] Process jbd2/sda5-8 (pid: 234, ti=efa20000 task=ef96d040 task.ti=efa20000)
Oct 28 21:44:05 tbox kernel: [ 100.888026] Stack:
Oct 28 21:44:05 tbox kernel: [ 100.888026] 0000000c 00000000 efa21e98 00000000 f5f07900 efa21e98 00000000 00005050
Oct 28 21:44:05 tbox kernel: [ 100.888026] c1090efa f7691180 c1091f30 00000001 f5f07900 00000005 00000002 00000000
Oct 28 21:44:05 tbox kernel: [ 100.888026] 0000000d 0000000e ef8de180 c1090ef2 f030877f 0000000e 00000000 f7690ee0
Oct 28 21:44:05 tbox kernel: [ 100.888026] Call Trace:
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1090efa>] ? __writepage+0x8/0x1f
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1091f30>] ? write_cache_pages+0x1cc/0x281
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1090ef2>] ? __writepage+0x0/0x1f
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1091ffb>] ? generic_writepages+0x16/0x1d
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8561925>] ? journal_submit_data_buffers+0xf5/0x150 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8561d6a>] ? jbd2_journal_commit_transaction+0x2d1/0xda3 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1025d55>] ? dequeue_task_fair+0x1b/0x57
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c103944d>] ? lock_timer_base+0x19/0x34
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c10394c4>] ? try_to_del_timer_sync+0x5c/0x63
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8566018>] ? kjournald2+0x9e/0x1c7 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c104422a>] ? autoremove_wake_function+0x0/0x29
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<f8565f7a>] ? kjournald2+0x0/0x1c7 [jbd2]
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1043ed6>] ? kthread+0x63/0x68
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c1043e73>] ? kthread+0x0/0x68
Oct 28 21:44:05 tbox kernel: [ 100.888026] [<c100353e>] ? kernel_thread_helper+0x6/0x10
Oct 28 21:44:05 tbox kernel: [ 100.888026] Code: 0c 89 34 24 89 ce 0f ac d6 0c 39 7c 24 04 75 05 39 34 24 74 07 bf 00 10 00 00 eb 08 89 cf 81 e7 ff 0f 00 00 8b 03 f6 c4 08 75 04 <0f> 0b eb fe c7 04 24 00 00 00 00 83 7b 0c 00 75 37 68 69 0c 5e
Oct 28 21:44:05 tbox kernel: [ 100.888026] EIP: [<f85de3af>] ext4_writepage+0x8d/0x1f1 [ext4] SS:ESP 0068:efa21dbc
Oct 28 21:44:05 tbox kernel: [ 100.968847] ---[ end trace 6fe8d288bc8bea39 ]---
Oct 28 21:44:43 tbox acpid: client 1526[0:0] has disconnected
Oct 28 21:44:59 tbox kernel: [ 154.455567] EXT3-fs: barriers not enabled
Oct 28 21:44:59 tbox kernel: [ 154.467107] kjournald starting. Commit interval 5 seconds
Oct 28 21:44:59 tbox kernel: [ 154.467574] EXT3-fs (sdb5): warning: maximal mount count reached, running e2fsck is recommended
Oct 28 21:44:59 tbox kernel: [ 154.468926] EXT3-fs (sdb5): using internal journal
Oct 28 21:44:59 tbox kernel: [ 154.469150] EXT3-fs (sdb5): mounted filesystem with ordered data mode
^ permalink raw reply [flat|nested] 20+ messages in thread