Jump to content

urandom

Member
  • Posts

    331
  • Joined

  • Last visited

Posts posted by urandom

  1. Why remotely? Just log in to the router control panel and alter the settings, assuming that the router supports scheduled port blocking.

    If done on the PC then some third party firewall would be needed; the Windows firewall is very basic. I suspect that some of the "net nanny" type programmes could be configured to do this.

    the CLI version is slightly more flexible: http://technet.microsoft.com/en-us/library/dd734783(WS.10).aspx

  2. edit: sorry i should have read the thread tongue.png

    what you want is built in right in your operating system...

    open notepad, type this:

    taskkill /F /IM filezilla.exe

    save it as killFTPclient.bat

    be careful about the extension, it should not be .txt but .bat

    what it does:

    taskkill is the vista/7 way to... kill a task (you need a different command with xp)

    F forces to terminate the process

    IM specifies the name of the process

    you can test it now, open filezilla then run killFTPclient.bat (double-click the file), filezilla should be killed.

    now that it works (hopefully), we need to schedule this task:

    control panel > system and maintenance > administrative tools > schedule tasks

    then chose "create basic task"

    follow the wizard:

    name/decription

    trigger -> daily at 7:00 am

    action -> start a program, click browse and chose your script (killFTPclient.bat)

    finish

    that's it.

  3. that's it. teh rt-n16 will spend new year's eve in the closet. the linux box is now up and running, it took me quite some time as I did it for the first time, almost from scratch, with a lot of trial/error...

    this is how my baby looks like:

    CRUX 32bit userland with a custom 64bit git kernel built from:

    net-next kernel http://git.kernel.org/?p=linux/kernel/git/davem/net-next.git;a=summary

    in which I pulled wireless-next bits http://git.kernel.org/?p=linux/kernel/git/linville/wireless-next.git;a=summary

    wireless userspace:

    libnl, hostapd, iw. all git versions.

    dnsmasq handles dhcp and dns

    configuring, monitoring and misc tools: nmap, ethtool, ettercap, tcpdump, openntpd, iproute2

    dynamic dns from afraid.org, afraid-dyndns update client.

    100BASE-TX Nvidia onboard NIC for WAN (pppoE)

    1000BASE-T Intel NIC#1 for LAN - 192.168.1.0/24

    1000BASE-T Intel NIC#2 for DMZ - 192.168.2.0/24

    2.4Ghz 802.11n Atheros NIC for wireless AP - 192.168.3.0/24

    To do, maybe... fail2ban, polipo/squid, snort, tc

    A few links I have used during the setup:

    iptables: http://www.frozentux.net/iptables-tutorial/iptables-tutorial.html

    wireless AP: http://linuxwireless.org/en/users/Documentation/hostapd

    And this book:

    misc: http://shop.oreilly.com/product/9780596102487.do

  4. so i've been testing this setup every evening to be sure everything's fine before the real switch. unfortunately, i have to say that wireless in master mode sucks quite hard. the card locks up after some time, obviously a driver issue. as the aim is to get rid of the rt-n16 at some point (once FreeBSD supports 11n, supposed to be in 9.0-RELEASE, partly at least) there is some real issue here. i'm not planning to invest anymore so another wireless card is not an option. i'll put my beloved CRUX and a debloat kernel [ http://www.bufferbloat.net/ ] on that thing and we'll see how it goes. but first i need to read those ten thousand billion pages iptables books :ermm:

  5. christmas came early in nerdland this year. i took an old pc case, bought the cheapest AMD single core CPU (45W) (THB1,1xx and can be turned into a dual core with BIOS magic), an old 2.5" laptop HDD, some NICs and built a pfsense webcache proxy/IDS/network monitoring/firewall/router box.

    Realtek onboard NIC --> WAN

    dual port intel NIC port #1 --> LAN

    dual port intel NIC port #2 --> OPT1

    PCI wireless b/g/n (Ralink chipset) --> OPT2 (wireless AP)

    all NICs are on a different subnet.

    I kept the RT-N16 (still running tomato) and now use it as another wireless AP. it is bridge to LAN interface and its ethernet ports are used as a switch now (BTW the WAN port can be bridge to LAN, nice if you're missing one ethernet port).

    kids+wife machines are using OPT2 and never will se anything else. the htpc/torrentbox is on OPT1 and I'm on LAN with some routes to OPT1.

    todo: setup snort, squid and traffic shapping.

    pfsense features list: http://www.pfsense.org/index.php?option=com_content&task=view&id=40&Itemid=43

    this is great stuff, i'm still learning how to use it but i love it already, you will too.

  6. FWIW, I changed oldconfig to menuconfig in the Makefile before building the firmware so I could play a bit with the kernel options. I'm now using westwood+ tcp congestion algorithm, works great so far.

    TCP Westwood+ significantly increases throughput over wireless links and fairness compared to TCP Reno/New Reno in wired networks

    it's there:

    │ -> Networking support (NET [=y])

    │ -> Networking options

    │ -> TCP/IP networking (INET [=y])

    │ -> TCP: advanced congestion control (TCP_CONG_ADVANCED [=y])

  7. There's a guy on the thaithinkpad forums who sells any thinkpad related stuff (there are a few guys doing this actually), he is dealing with distributors directly. he's a very nice guy, I bought him an intel wireless card (advanced-n 6200 agn), a crucial ssd (m4) and an english keyboard for my x201. everything working great. you can meet him or he can send you the stuff by ems. anyway, it's here: http://www.thaithinkpad.com/forum/index.php?PHPSESSID=1596d8ee8f194ec53c335bdd8e315384&board=41.0

    he's name is pengtung, you can find his phone number inside the threads, on the items pictures.

  8. it looks like dmesg will report this message anyway, the patch does not modify this behavior, it's what happens after that changed.

    diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c
    index 4ecb640..c8e7585 100644
    --- a/drivers/pci/pci-acpi.c
    +++ b/drivers/pci/pci-acpi.c
    @@ -395,7 +395,6 @@ static int __init acpi_pci_init(void)
    
    	if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) {
    		printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n");
    -		pcie_clear_aspm();
    		pcie_no_aspm();
    	}

    now, *if* I understand correctly, the kernel couldn't get ACPI _OSC control:

    [   	0.606222] ACPI _OSC control for PCIe not granted, disabling ASPM

    so we really shouldn't clear ASPM state - which is the case without the patch - and leave it to defaults.

    i'll try to run this patch a little bit longer than 5 minutes and see how it goes...

  9. just tried, all I can say is the patch applies fine (with a small 2 lines offset) on 3.1.1 (which, FWIW is also patched with latest bfs-415 and greg's current git 3.1 patch queue)

    dmesg spits the same crap with or without the patch:

    [	0.415249] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it

    looks like lenovo BIOS is badly wrecked anyway:

    [	0.499609] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored

    no wonder why...

    [	0.000000] ACPI: DSDT 00000000bb7f0d6b 0DE36 (v01 LENOVO TP-6Q	00001360 MSFT 03000001)
    [	0.000000] ACPI: FACS 00000000bb6e7000 00040
    [	0.000000] ACPI: SSDT 00000000bb7f0bb4 001B7 (v01 LENOVO TP-6Q	00001360 MSFT 03000001)

    with the patch:

    [	0.000000] Linux version 3.1.1-bfs (root@drama) (gcc version 4.5.3 (CRUX) ) #1 SMP PREEMPT Thu Nov 17 15:49:24 UTC 2011
    [	0.000000] Command line: root=/dev/sda4 rootfstype=ext4 ro rootflags=data=writeback,barrier=0 BOOT_IMAGE=/vmlinuz-bfs64 
    [	0.000000] BIOS-provided physical RAM map:
    [	0.000000]  BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
    [	0.000000]  BIOS-e820: 000000000009e800 - 00000000000a0000 (reserved)
    [	0.000000]  BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
    [	0.000000]  BIOS-e820: 0000000000100000 - 00000000bb27c000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb27c000 - 00000000bb282000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb282000 - 00000000bb35f000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb35f000 - 00000000bb371000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb371000 - 00000000bb3f2000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb3f2000 - 00000000bb40f000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb40f000 - 00000000bb46f000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb46f000 - 00000000bb668000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb668000 - 00000000bb6e8000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb6e8000 - 00000000bb70f000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb70f000 - 00000000bb717000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb717000 - 00000000bb71f000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb71f000 - 00000000bb76c000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb76c000 - 00000000bb778000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb778000 - 00000000bb77b000 (ACPI data)
    [	0.000000]  BIOS-e820: 00000000bb77b000 - 00000000bb78b000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb78b000 - 00000000bb78c000 (ACPI data)
    [	0.000000]  BIOS-e820: 00000000bb78c000 - 00000000bb79f000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb79f000 - 00000000bb7ff000 (ACPI data)
    [	0.000000]  BIOS-e820: 00000000bb7ff000 - 00000000bb800000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb800000 - 00000000c0000000 (reserved)
    [	0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    [	0.000000]  BIOS-e820: 00000000feaff000 - 00000000feb00000 (reserved)
    [	0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    [	0.000000]  BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
    [	0.000000]  BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
    [	0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [	0.000000]  BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    [	0.000000]  BIOS-e820: 0000000100000000 - 0000000138000000 (usable)
    [	0.000000] NX (Execute Disable) protection: active
    [	0.000000] DMI present.
    [	0.000000] DMI: LENOVO 3323L7T/3323L7T, BIOS 6QET66WW (1.36 ) 05/31/2011
    [	0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [	0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [	0.000000] No AGP bridge found
    [	0.000000] last_pfn = 0x138000 max_arch_pfn = 0x400000000
    [	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-FFFFF write-protect
    [	0.000000] MTRR variable ranges enabled:
    [	0.000000]   0 disabled
    [	0.000000]   1 base 000000000 mask F80000000 write-back
    [	0.000000]   2 base 080000000 mask FC0000000 write-back
    [	0.000000]   3 base 100000000 mask FC0000000 write-back
    [	0.000000]   4 base 138000000 mask FF8000000 uncachable
    [	0.000000]   5 base 0BC000000 mask FFC000000 uncachable
    [	0.000000]   6 disabled
    [	0.000000]   7 disabled
    [	0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [	0.000000] e820 update range: 00000000bc000000 - 0000000100000000 (usable) ==> (reserved)
    [	0.000000] last_pfn = 0xbb800 max_arch_pfn = 0x400000000
    [	0.000000] initial memory mapped : 0 - 20000000
    [	0.000000] Base memory trampoline at [ffff88000009c000] 9c000 size 8192
    [	0.000000] init_memory_mapping: 0000000000000000-00000000bb800000
    [	0.000000]  0000000000 - 00bb800000 page 2M
    [	0.000000] kernel direct mapping tables up to bb800000 @ 1fffc000-20000000
    [	0.000000] init_memory_mapping: 0000000100000000-0000000138000000
    [	0.000000]  0100000000 - 0138000000 page 2M
    [	0.000000] kernel direct mapping tables up to 138000000 @ bb766000-bb76c000
    [	0.000000] ACPI: RSDP 00000000000f68e0 00024 (v02 LENOVO)
    [	0.000000] ACPI: XSDT 00000000bb7f0860 00094 (v01 LENOVO TP-6Q	00001360  LTP 00000000)
    [	0.000000] ACPI: FACP 00000000bb7f0a00 000F4 (v04 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: DSDT 00000000bb7f0d6b 0DE36 (v01 LENOVO TP-6Q	00001360 MSFT 03000001)
    [	0.000000] ACPI: FACS 00000000bb6e7000 00040
    [	0.000000] ACPI: SSDT 00000000bb7f0bb4 001B7 (v01 LENOVO TP-6Q	00001360 MSFT 03000001)
    [	0.000000] ACPI: ECDT 00000000bb7feba1 00052 (v01 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: APIC 00000000bb7febf3 00084 (v01 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: MCFG 00000000bb7fecaf 0003C (v01 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: HPET 00000000bb7feceb 00038 (v01 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: ASF! 00000000bb7fedbe 000A4 (v16 LENOVO TP-6Q	00001360 PTL  00000001)
    [	0.000000] ACPI: SLIC 00000000bb7fee62 00176 (v01 LENOVO TP-6Q	00001360  LTP 00000000)
    [	0.000000] ACPI: BOOT 00000000bb7fefd8 00028 (v01 LENOVO TP-6Q	00001360  LTP 00000001)
    [	0.000000] ACPI: SSDT 00000000bb6e590a 0085B (v01 LENOVO TP-6Q	00001360 INTL 20050513)
    [	0.000000] ACPI: TCPA 00000000bb78b000 00032 (v02	PTL  CRESTLN 06040000  	00005A52)
    [	0.000000] ACPI: SSDT 00000000bb77a000 009F1 (v01  PmRef	CpuPm 00003000 INTL 20060912)
    [	0.000000] ACPI: SSDT 00000000bb779000 00259 (v01  PmRef  Cpu0Tst 00003000 INTL 20060912)
    [	0.000000] ACPI: SSDT 00000000bb778000 0049F (v01  PmRef	ApTst 00003000 INTL 20060912)
    [	0.000000] ACPI: Local APIC address 0xfee00000
    [	0.000000]  [ffffea0000000000-ffffea0004dfffff] PMD -> [ffff880133800000-ffff8801375fffff] on node 0
    [	0.000000] Zone PFN ranges:
    [	0.000000]   DMA  	0x00000010 -> 0x00001000
    [	0.000000]   DMA32	0x00001000 -> 0x00100000
    [	0.000000]   Normal   0x00100000 -> 0x00138000
    [	0.000000] Movable zone start PFN for each node
    [	0.000000] early_node_map[8] active PFN ranges
    [	0.000000] 	0: 0x00000010 -> 0x0000009e
    [	0.000000] 	0: 0x00000100 -> 0x000bb27c
    [	0.000000] 	0: 0x000bb282 -> 0x000bb35f
    [	0.000000] 	0: 0x000bb40f -> 0x000bb46f
    [	0.000000] 	0: 0x000bb70f -> 0x000bb717
    [	0.000000] 	0: 0x000bb71f -> 0x000bb76c
    [	0.000000] 	0: 0x000bb7ff -> 0x000bb800
    [	0.000000] 	0: 0x00100000 -> 0x00138000
    [	0.000000] On node 0 totalpages: 996253
    [	0.000000]   DMA zone: 64 pages used for memmap
    [	0.000000]   DMA zone: 2 pages reserved
    [	0.000000]   DMA zone: 3916 pages, LIFO batch:0
    [	0.000000]   DMA32 zone: 16320 pages used for memmap
    [	0.000000]   DMA32 zone: 746575 pages, LIFO batch:31
    [	0.000000]   Normal zone: 3584 pages used for memmap
    [	0.000000]   Normal zone: 225792 pages, LIFO batch:31
    [	0.000000] ACPI: PM-Timer IO Port: 0x1008
    [	0.000000] ACPI: Local APIC address 0xfee00000
    [	0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [	0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [	0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
    [	0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] enabled)
    [	0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [	0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [	0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [	0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [	0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [	0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    [	0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [	0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [	0.000000] ACPI: IRQ0 used by override.
    [	0.000000] ACPI: IRQ2 used by override.
    [	0.000000] ACPI: IRQ9 used by override.
    [	0.000000] Using ACPI (MADT) for SMP configuration information
    [	0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [	0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
    [	0.000000] nr_irqs_gsi: 40
    [	0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000)
    [	0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
    [	0.000000] PERCPU: Embedded 24 pages/cpu @ffff880137c00000 s68160 r8192 d21952 u524288
    [	0.000000] pcpu-alloc: s68160 r8192 d21952 u524288 alloc=1*2097152
    [	0.000000] pcpu-alloc: [0] 0 1 2 3 
    [	0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 976283
    [	0.000000] Kernel command line: root=/dev/sda4 rootfstype=ext4 ro rootflags=data=writeback,barrier=0 BOOT_IMAGE=/vmlinuz-bfs64 
    [	0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [	0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [	0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [	0.000000] Checking aperture...
    [	0.000000] No AGP bridge found
    [	0.000000] Memory: 3841032k/5111808k available (4758k kernel code, 1126796k absent, 143980k reserved, 1974k data, 464k init)
    [	0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [	0.000000] Preemptible hierarchical RCU implementation.
    [	0.000000] 	Verbose stalled-CPUs detection is disabled.
    [	0.000000] NR_IRQS:384
    [	0.000000] Extended CMOS year: 2000
    [	0.000000] Console: colour VGA+ 80x25
    [	0.000000] console [tty0] enabled
    [	0.000000] hpet clockevent registered
    [	0.000000] Fast TSC calibration using PIT
    [	0.001000] Detected 2127.953 MHz processor.
    [	0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4255.90 BogoMIPS (lpj=2127953)
    [	0.000182] pid_max: default: 32768 minimum: 301
    [	0.000308] Mount-cache hash table entries: 256
    [	0.000521] CPU: Physical Processor ID: 0
    [	0.000607] CPU: Processor Core ID: 0
    [	0.000696] mce: CPU supports 9 MCE banks
    [	0.000791] CPU0: Thermal monitoring enabled (TM1)
    [	0.000894] using mwait in idle threads.
    [	0.001049] Freeing SMP alternatives: 16k freed
    [	0.001144] ACPI: Core revision 20110623
    [	0.015815] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [	0.025913] CPU0: Intel(R) Core(TM) i3 CPU   	M 330  @ 2.13GHz stepping 02
    [	0.127798] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver.
    [	0.128067] ... version:            	3
    [	0.128159] ... bit width:          	48
    [	0.128254] ... generic registers:  	4
    [	0.128346] ... value mask:     		0000ffffffffffff
    [	0.128443] ... max period:     		000000007fffffff
    [	0.128540] ... fixed-purpose events:   3
    [	0.128632] ... event mask:     		000000070000000f
    [	0.139802] Booting Node   0, Processors  #1
    [	0.139913] smpboot cpu 1: start_ip = 9c000
    [	0.230930]  #2
    [	0.230981] smpboot cpu 2: start_ip = 9c000
    [	0.321859]  #3 Ok.
    [	0.321952] smpboot cpu 3: start_ip = 9c000
    [	0.412755] Brought up 4 CPUs
    [	0.412847] Total of 4 processors activated (17023.22 BogoMIPS).
    [	0.414572] devtmpfs: initialized
    [	0.414850] NET: Registered protocol family 16
    [	0.415249] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [	0.415393] ACPI: bus type pci registered
    [	0.415557] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [	0.415706] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [	0.488465] PCI: Using configuration type 1 for base access
    [	0.493027] bio: create slab <bio-0> at 0
    [	0.493216] ACPI: Added _OSI(Module Device)
    [	0.493311] ACPI: Added _OSI(Processor Device)
    [	0.493405] ACPI: Added _OSI(3.0 _SCP Extensions)
    [	0.493497] ACPI: Added _OSI(Processor Aggregator Device)
    [	0.495175] ACPI: EC: EC description table is found, configuring boot EC
    [	0.499609] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [	0.579491] ACPI: SSDT 00000000bb71a918 0042D (v01  PmRef  Cpu0Ist 00003000 INTL 20060912)
    [	0.580079] ACPI: Dynamic OEM Table Load:
    [	0.580255] ACPI: SSDT   		(null) 0042D (v01  PmRef  Cpu0Ist 00003000 INTL 20060912)
    [	0.580607] ACPI: SSDT 00000000bb718718 006B2 (v01  PmRef  Cpu0Cst 00003001 INTL 20060912)
    [	0.581202] ACPI: Dynamic OEM Table Load:
    [	0.581377] ACPI: SSDT   		(null) 006B2 (v01  PmRef  Cpu0Cst 00003001 INTL 20060912)
    [	0.587845] ACPI: SSDT 00000000bb719a98 00303 (v01  PmRef	ApIst 00003000 INTL 20060912)
    [	0.588469] ACPI: Dynamic OEM Table Load:
    [	0.588649] ACPI: SSDT   		(null) 00303 (v01  PmRef	ApIst 00003000 INTL 20060912)
    [	0.593713] ACPI: SSDT 00000000bb717d98 00119 (v01  PmRef	ApCst 00003000 INTL 20060912)
    [	0.594308] ACPI: Dynamic OEM Table Load:
    [	0.594483] ACPI: SSDT   		(null) 00119 (v01  PmRef	ApCst 00003000 INTL 20060912)
    [	0.601171] ACPI: Interpreter enabled
    [	0.601264] ACPI: (supports S0 S5)
    [	0.601448] ACPI: Using IOAPIC for interrupt routing
    [	0.605661] ACPI: Power Resource [PUBS] (on)
    [	0.609177] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [	0.609313] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [	0.609477] ACPI: PCI Root Bridge [uNCR] (domain 0000 [bus ff])
    [	0.609621] pci 0000:ff:00.0: [8086:2c62] type 0 class 0x000600
    [	0.609644] pci 0000:ff:00.1: [8086:2d01] type 0 class 0x000600
    [	0.609664] pci 0000:ff:02.0: [8086:2d10] type 0 class 0x000600
    [	0.609683] pci 0000:ff:02.1: [8086:2d11] type 0 class 0x000600
    [	0.609700] pci 0000:ff:02.2: [8086:2d12] type 0 class 0x000600
    [	0.609716] pci 0000:ff:02.3: [8086:2d13] type 0 class 0x000600
    [	0.609744] pci_bus 0000:ff: on NUMA node 0
    [	0.609752]  pci0000:ff: Requesting ACPI _OSC control (0x1d)
    [	0.609849]  pci0000:ff: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [	0.609993] ACPI _OSC control for PCIe not granted, disabling ASPM
    [	0.610420] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [	0.610576] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
    [	0.610698] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
    [	0.610801] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [	0.610944] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [	0.611084] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [	0.611222] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [	0.611363] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    [	0.611512] pci 0000:00:00.0: [8086:0044] type 0 class 0x000600
    [	0.611544] pci 0000:00:02.0: [8086:0046] type 0 class 0x000300
    [	0.611555] pci 0000:00:02.0: reg 10: [mem 0xf2000000-0xf23fffff 64bit]
    [	0.611563] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [	0.611570] pci 0000:00:02.0: reg 20: [io  0x1800-0x1807]
    [	0.611636] pci 0000:00:16.0: [8086:3b64] type 0 class 0x000780
    [	0.611668] pci 0000:00:16.0: reg 10: [mem 0xf2727800-0xf272780f 64bit]
    [	0.611747] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [	0.611753] pci 0000:00:16.0: PME# disabled
    [	0.611791] pci 0000:00:19.0: [8086:10ea] type 0 class 0x000200
    [	0.611817] pci 0000:00:19.0: reg 10: [mem 0xf2500000-0xf251ffff]
    [	0.611829] pci 0000:00:19.0: reg 14: [mem 0xf2525000-0xf2525fff]
    [	0.611840] pci 0000:00:19.0: reg 18: [io  0x1820-0x183f]
    [	0.611911] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [	0.611916] pci 0000:00:19.0: PME# disabled
    [	0.611947] pci 0000:00:1a.0: [8086:3b3c] type 0 class 0x000c03
    [	0.611973] pci 0000:00:1a.0: reg 10: [mem 0xf2728000-0xf27283ff]
    [	0.612066] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [	0.612070] pci 0000:00:1a.0: PME# disabled
    [	0.612105] pci 0000:00:1b.0: [8086:3b56] type 0 class 0x000403
    [	0.612126] pci 0000:00:1b.0: reg 10: [mem 0xf2520000-0xf2523fff 64bit]
    [	0.612205] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [	0.612210] pci 0000:00:1b.0: PME# disabled
    [	0.612235] pci 0000:00:1c.0: [8086:3b42] type 1 class 0x000604
    [	0.612315] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [	0.612320] pci 0000:00:1c.0: PME# disabled
    [	0.612350] pci 0000:00:1c.3: [8086:3b48] type 1 class 0x000604
    [	0.612430] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [	0.612435] pci 0000:00:1c.3: PME# disabled
    [	0.612464] pci 0000:00:1c.4: [8086:3b4a] type 1 class 0x000604
    [	0.612543] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [	0.612548] pci 0000:00:1c.4: PME# disabled
    [	0.612587] pci 0000:00:1d.0: [8086:3b34] type 0 class 0x000c03
    [	0.612613] pci 0000:00:1d.0: reg 10: [mem 0xf2728400-0xf27287ff]
    [	0.612716] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [	0.612721] pci 0000:00:1d.0: PME# disabled
    [	0.612746] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
    [	0.612823] pci 0000:00:1f.0: [8086:3b07] type 0 class 0x000601
    [	0.612945] pci 0000:00:1f.2: [8086:3b2f] type 0 class 0x000106
    [	0.612972] pci 0000:00:1f.2: reg 10: [io  0x1860-0x1867]
    [	0.612984] pci 0000:00:1f.2: reg 14: [io  0x1814-0x1817]
    [	0.612995] pci 0000:00:1f.2: reg 18: [io  0x1818-0x181f]
    [	0.613006] pci 0000:00:1f.2: reg 1c: [io  0x1810-0x1813]
    [	0.613017] pci 0000:00:1f.2: reg 20: [io  0x1840-0x185f]
    [	0.613028] pci 0000:00:1f.2: reg 24: [mem 0xf2727000-0xf27277ff]
    [	0.613077] pci 0000:00:1f.2: PME# supported from D3hot
    [	0.613082] pci 0000:00:1f.2: PME# disabled
    [	0.613104] pci 0000:00:1f.3: [8086:3b30] type 0 class 0x000c05
    [	0.613126] pci 0000:00:1f.3: reg 10: [mem 0xf2728800-0xf27288ff 64bit]
    [	0.613157] pci 0000:00:1f.3: reg 20: [io  0x1880-0x189f]
    [	0.613204] pci 0000:00:1f.6: [8086:3b32] type 0 class 0x001180
    [	0.613233] pci 0000:00:1f.6: reg 10: [mem 0xf2526000-0xf2526fff 64bit]
    [	0.613374] pci 0000:00:1c.0: PCI bridge to [bus 0d-0d]
    [	0.613538] pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    [	0.613636] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
    [	0.613641] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf1ffffff]
    [	0.613649] pci 0000:00:1c.3:   bridge window [mem 0xf2800000-0xf28fffff 64bit pref]
    [	0.613789] pci 0000:02:00.0: [8086:4239] type 0 class 0x000280
    [	0.613854] pci 0000:02:00.0: reg 10: [mem 0xf2400000-0xf2401fff 64bit]
    [	0.614062] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [	0.614088] pci 0000:02:00.0: PME# disabled
    [	0.614230] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
    [	0.614333] pci 0000:00:1c.4:   bridge window [mem 0xf2400000-0xf24fffff]
    [	0.614413] pci 0000:00:1e.0: PCI bridge to [bus 0e-0e] (subtractive decode)
    [	0.614528] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
    [	0.614530] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
    [	0.614532] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [	0.614534] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [	0.614537] pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [	0.614539] pci 0000:00:1e.0:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [	0.614541] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    [	0.614568] pci_bus 0000:00: on NUMA node 0
    [	0.614571] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [	0.614660] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    [	0.614694] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT]
    [	0.614719] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP5._PRT]
    [	0.614838]  pci0000:00: Requesting ACPI _OSC control (0x1d)
    [	0.615084]  pci0000:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d
    [	0.615229] ACPI _OSC control for PCIe not granted, disabling ASPM
    [	0.617726] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.618296] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.618867] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [	0.619555] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.620127] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.620696] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [	0.621381] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [	0.622081] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.622732] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [	0.622883] vgaarb: loaded
    [	0.622970] vgaarb: bridge control possible 0000:00:02.0
    [	0.623170] SCSI subsystem initialized
    [	0.623316] libata version 3.00 loaded.
    [	0.623365] usbcore: registered new interface driver usbfs
    [	0.623486] usbcore: registered new interface driver hub
    [	0.623610] usbcore: registered new device driver usb
    [	0.623847] Advanced Linux Sound Architecture Driver Version 1.0.24.
    [	0.623948] PCI: Using ACPI for IRQ routing
    [	0.633984] PCI: pci_cache_line_size set to 64 bytes
    [	0.634109] reserve RAM buffer: 000000000009e800 - 000000000009ffff 
    [	0.634112] reserve RAM buffer: 00000000bb27c000 - 00000000bbffffff 
    [	0.634116] reserve RAM buffer: 00000000bb35f000 - 00000000bbffffff 
    [	0.634120] reserve RAM buffer: 00000000bb46f000 - 00000000bbffffff 
    [	0.634123] reserve RAM buffer: 00000000bb717000 - 00000000bbffffff 
    [	0.634126] reserve RAM buffer: 00000000bb76c000 - 00000000bbffffff 
    [	0.634129] reserve RAM buffer: 00000000bb800000 - 00000000bbffffff 
    [	0.634326] cfg80211: Calling CRDA to update world regulatory domain
    [	0.634560] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [	0.635037] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [	0.637162] Switching to clocksource hpet
    [	0.637320] pnp: PnP ACPI init
    [	0.637418] ACPI: bus type pnp registered
    [	0.637562] Switched to NOHz mode on CPU #0
    [	0.637611] Switched to NOHz mode on CPU #2
    [	0.637645] Switched to NOHz mode on CPU #3
    [	0.637666] Switched to NOHz mode on CPU #1
    [	0.638239] pnp 00:00: [mem 0x00000000-0x0009ffff]
    [	0.638242] pnp 00:00: [mem 0x000c0000-0x000c3fff]
    [	0.638243] pnp 00:00: [mem 0x000c4000-0x000c7fff]
    [	0.638245] pnp 00:00: [mem 0x000c8000-0x000cbfff]
    [	0.638246] pnp 00:00: [mem 0x000cc000-0x000cffff]
    [	0.638248] pnp 00:00: [mem 0x000d0000-0x000cffff disabled]
    [	0.638250] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
    [	0.638252] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
    [	0.638254] pnp 00:00: [mem 0x000dc000-0x000dffff]
    [	0.638255] pnp 00:00: [mem 0x000e0000-0x000e3fff]
    [	0.638257] pnp 00:00: [mem 0x000e4000-0x000e7fff]
    [	0.638258] pnp 00:00: [mem 0x000e8000-0x000ebfff]
    [	0.638260] pnp 00:00: [mem 0x000ec000-0x000effff]
    [	0.638262] pnp 00:00: [mem 0x000f0000-0x000fffff]
    [	0.638263] pnp 00:00: [mem 0x00100000-0xbfffffff]
    [	0.638265] pnp 00:00: [mem 0xfec00000-0xfed3ffff]
    [	0.638267] pnp 00:00: [mem 0xfed4c000-0xffffffff]
    [	0.638353] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [	0.638458] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
    [	0.638561] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
    [	0.638662] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
    [	0.638764] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
    [	0.638865] system 00:00: [mem 0x000dc000-0x000dffff] could not be reserved
    [	0.638969] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
    [	0.639072] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
    [	0.639175] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
    [	0.639278] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
    [	0.639399] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [	0.639503] system 00:00: [mem 0x00100000-0xbfffffff] could not be reserved
    [	0.639607] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [	0.639712] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    [	0.639816] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [	0.639830] pnp 00:01: [bus ff]
    [	0.639886] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
    [	0.639902] pnp 00:02: [bus 00-fe]
    [	0.639904] pnp 00:02: [io  0x0cf8-0x0cff]
    [	0.639906] pnp 00:02: [io  0x0000-0x0cf7 window]
    [	0.639908] pnp 00:02: [io  0x0d00-0xffff window]
    [	0.639910] pnp 00:02: [mem 0x000a0000-0x000bffff window]
    [	0.639912] pnp 00:02: [mem 0x000c0000-0x000c3fff window]
    [	0.639914] pnp 00:02: [mem 0x000c4000-0x000c7fff window]
    [	0.639916] pnp 00:02: [mem 0x000c8000-0x000cbfff window]
    [	0.639918] pnp 00:02: [mem 0x000cc000-0x000cffff window]
    [	0.639920] pnp 00:02: [mem 0x000d0000-0x000d3fff window]
    [	0.639921] pnp 00:02: [mem 0x000d4000-0x000d7fff window]
    [	0.639923] pnp 00:02: [mem 0x000d8000-0x000dbfff window]
    [	0.639925] pnp 00:02: [mem 0x000dc000-0x000dffff window]
    [	0.639927] pnp 00:02: [mem 0x000e0000-0x000e3fff window]
    [	0.639929] pnp 00:02: [mem 0x000e4000-0x000e7fff window]
    [	0.639930] pnp 00:02: [mem 0x000e8000-0x000ebfff window]
    [	0.639932] pnp 00:02: [mem 0x000ec000-0x000effff window]
    [	0.639934] pnp 00:02: [mem 0xc0000000-0xfebfffff window]
    [	0.639936] pnp 00:02: [mem 0xfed40000-0xfed4bfff window]
    [	0.639986] pnp 00:02: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [	0.640266] pnp 00:03: [io  0x0010-0x001f]
    [	0.640268] pnp 00:03: [io  0x0090-0x009f]
    [	0.640270] pnp 00:03: [io  0x0024-0x0025]
    [	0.640271] pnp 00:03: [io  0x0028-0x0029]
    [	0.640273] pnp 00:03: [io  0x002c-0x002d]
    [	0.640274] pnp 00:03: [io  0x0030-0x0031]
    [	0.640276] pnp 00:03: [io  0x0034-0x0035]
    [	0.640277] pnp 00:03: [io  0x0038-0x0039]
    [	0.640279] pnp 00:03: [io  0x003c-0x003d]
    [	0.640280] pnp 00:03: [io  0x00a4-0x00a5]
    [	0.640282] pnp 00:03: [io  0x00a8-0x00a9]
    [	0.640283] pnp 00:03: [io  0x00ac-0x00ad]
    [	0.640285] pnp 00:03: [io  0x00b0-0x00b5]
    [	0.640286] pnp 00:03: [io  0x00b8-0x00b9]
    [	0.640288] pnp 00:03: [io  0x00bc-0x00bd]
    [	0.640289] pnp 00:03: [io  0x0050-0x0053]
    [	0.640291] pnp 00:03: [io  0x0072-0x0077]
    [	0.640292] pnp 00:03: [io  0x164e-0x164f]
    [	0.640294] pnp 00:03: [io  0x002e-0x002f]
    [	0.640295] pnp 00:03: [io  0x1000-0x107f]
    [	0.640297] pnp 00:03: [io  0x1180-0x11ff]
    [	0.640298] pnp 00:03: [io  0x0800-0x080f]
    [	0.640300] pnp 00:03: [io  0x15e0-0x15ef]
    [	0.640301] pnp 00:03: [io  0x1600-0x1641]
    [	0.640303] pnp 00:03: [io  0x1644-0x167f]
    [	0.640306] pnp 00:03: [mem 0xe0000000-0xefffffff]
    [	0.640308] pnp 00:03: [mem 0xfeaff000-0xfeafffff]
    [	0.640309] pnp 00:03: [mem 0xfed1c000-0xfed1ffff]
    [	0.640311] pnp 00:03: [mem 0xfed10000-0xfed13fff]
    [	0.640313] pnp 00:03: [mem 0xfed18000-0xfed18fff]
    [	0.640314] pnp 00:03: [mem 0xfed19000-0xfed19fff]
    [	0.640316] pnp 00:03: [mem 0xfed45000-0xfed4bfff]
    [	0.640415] system 00:03: [io  0x164e-0x164f] has been reserved
    [	0.640516] system 00:03: [io  0x1000-0x107f] has been reserved
    [	0.640615] system 00:03: [io  0x1180-0x11ff] has been reserved
    [	0.640716] system 00:03: [io  0x0800-0x080f] has been reserved
    [	0.640816] system 00:03: [io  0x15e0-0x15ef] has been reserved
    [	0.640915] system 00:03: [io  0x1600-0x1641] has been reserved
    [	0.641012] system 00:03: [io  0x1644-0x167f] could not be reserved
    [	0.641113] system 00:03: [mem 0xe0000000-0xefffffff] has been reserved
    [	0.641216] system 00:03: [mem 0xfeaff000-0xfeafffff] has been reserved
    [	0.641315] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [	0.641436] system 00:03: [mem 0xfed10000-0xfed13fff] has been reserved
    [	0.641538] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
    [	0.641641] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
    [	0.641743] system 00:03: [mem 0xfed45000-0xfed4bfff] has been reserved
    [	0.641846] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [	0.641876] pnp 00:04: [mem 0xfed00000-0xfed003ff]
    [	0.641921] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    [	0.641931] pnp 00:05: [io  0x0000-0x000f]
    [	0.641932] pnp 00:05: [io  0x0080-0x008f]
    [	0.641934] pnp 00:05: [io  0x00c0-0x00df]
    [	0.641936] pnp 00:05: [dma 4]
    [	0.641979] pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
    [	0.641987] pnp 00:06: [io  0x0061]
    [	0.642029] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [	0.642038] pnp 00:07: [io  0x00f0]
    [	0.642046] pnp 00:07: [irq 13]
    [	0.642088] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [	0.642097] pnp 00:08: [io  0x0070-0x0071]
    [	0.642103] pnp 00:08: [irq 8]
    [	0.642145] pnp 00:08: Plug and Play ACPI device, IDs PNP0b00 (active)
    [	0.642155] pnp 00:09: [io  0x0060]
    [	0.642156] pnp 00:09: [io  0x0064]
    [	0.642162] pnp 00:09: [irq 1]
    [	0.642206] pnp 00:09: Plug and Play ACPI device, IDs PNP0303 (active)
    [	0.642219] pnp 00:0a: [irq 12]
    [	0.642262] pnp 00:0a: Plug and Play ACPI device, IDs LEN0018 PNP0f13 (active)
    [	0.642549] pnp 00:0b: [mem 0xfed40000-0xfed44fff]
    [	0.642598] pnp 00:0b: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
    [	0.643043] pnp: PnP ACPI: found 12 devices
    [	0.643140] ACPI: ACPI bus type pnp unregistered
    [	0.650754] PCI: max bus depth: 1 pci_try_num: 2
    [	0.650797] pci 0000:00:1c.0: PCI bridge to [bus 0d-0d]
    [	0.650904] pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    [	0.651003] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
    [	0.651105] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf1ffffff]
    [	0.651209] pci 0000:00:1c.3:   bridge window [mem 0xf2800000-0xf28fffff 64bit pref]
    [	0.651366] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
    [	0.651467] pci 0000:00:1c.4:   bridge window [mem 0xf2400000-0xf24fffff]
    [	0.651577] pci 0000:00:1e.0: PCI bridge to [bus 0e-0e]
    [	0.651696] pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [	0.651803] pci 0000:00:1c.0: setting latency timer to 64
    [	0.651812] pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
    [	0.651917] pci 0000:00:1c.3: setting latency timer to 64
    [	0.651924] pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [	0.652028] pci 0000:00:1c.4: setting latency timer to 64
    [	0.652036] pci 0000:00:1e.0: setting latency timer to 64
    [	0.652040] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
    [	0.652042] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
    [	0.652044] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [	0.652046] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [	0.652048] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [	0.652050] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [	0.652052] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfebfffff]
    [	0.652055] pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
    [	0.652057] pci_bus 0000:05: resource 1 [mem 0xf0000000-0xf1ffffff]
    [	0.652059] pci_bus 0000:05: resource 2 [mem 0xf2800000-0xf28fffff 64bit pref]
    [	0.652061] pci_bus 0000:02: resource 1 [mem 0xf2400000-0xf24fffff]
    [	0.652063] pci_bus 0000:0e: resource 4 [io  0x0000-0x0cf7]
    [	0.652065] pci_bus 0000:0e: resource 5 [io  0x0d00-0xffff]
    [	0.652067] pci_bus 0000:0e: resource 6 [mem 0x000a0000-0x000bffff]
    [	0.652069] pci_bus 0000:0e: resource 7 [mem 0x000d0000-0x000d3fff]
    [	0.652071] pci_bus 0000:0e: resource 8 [mem 0x000d4000-0x000d7fff]
    [	0.652073] pci_bus 0000:0e: resource 9 [mem 0x000d8000-0x000dbfff]
    [	0.652075] pci_bus 0000:0e: resource 10 [mem 0xc0000000-0xfebfffff]
    [	0.652106] NET: Registered protocol family 2
    [	0.652249] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [	0.652671] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    [	0.654273] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [	0.654852] TCP: Hash tables configured (established 262144 bind 65536)
    [	0.654954] TCP reno registered
    [	0.655045] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [	0.655177] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [	0.655401] NET: Registered protocol family 1
    [	0.655517] pci 0000:00:02.0: Boot video device
    [	0.655648] PCI: CLS 64 bytes, default 64
    [	0.655670] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [	0.655771] Placing 64MB software IO TLB between ffff8800b727c000 - ffff8800bb27c000
    [	0.655914] software IO TLB at phys 0xb727c000 - 0xbb27c000
    [	0.656025] Simple Boot Flag at 0x35 set to 0x1
    [	0.666540] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [	0.687362] msgmni has been set to 7502
    [	0.688230] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [	0.688459] io scheduler noop registered
    [	0.688612] io scheduler cfq registered (default)
    [	0.689124] intel_idle: MWAIT substates: 0x1120
    [	0.689127] intel_idle: v0.4 model 0x25
    [	0.689128] intel_idle: lapic_timer_reliable_states 0xffffffff
    [	0.689661] ACPI: AC Adapter [AC] (on-line)
    [	0.689903] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
    [	0.690250] ACPI: Lid Switch [LID]
    [	0.690421] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
    [	0.690569] ACPI: Sleep Button [sLPB]
    [	0.690717] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [	0.690861] ACPI: Power Button [PWRF]
    [	0.691023] ACPI: acpi_idle yielding to intel_idle
    [	0.693826] thermal LNXTHERM:00: registered as thermal_zone0
    [	0.693925] ACPI: Thermal Zone [THM0] (51 C)
    [	0.694164] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [	0.695133] Non-volatile memory driver v1.3
    [	0.695331] Linux agpgart interface v0.103
    [	0.695511] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
    [	0.695879] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [	0.697252] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    [	0.697651] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [	0.697883] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds).
    [	0.698040] Hangcheck: Using getrawmonotonic().
    [	0.698186] [drm] Initialized drm 1.1.0 20060810
    [	0.698382] i915 0000:00:02.0: power state changed by ACPI to D0
    [	0.698514] i915 0000:00:02.0: power state changed by ACPI to D0
    [	0.698675] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [	0.698783] i915 0000:00:02.0: setting latency timer to 64
    [	0.709435] ACPI: Battery Slot [bAT0] (battery present)
    [	0.784698] i915 0000:00:02.0: irq 40 for MSI/MSI-X
    [	0.784703] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [	0.784806] [drm] Driver supports precise vblank timestamp query.
    [	0.784940] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [	1.267356] fbcon: inteldrmfb (fb0) is primary device
    [	1.432248] Console: switching to colour frame buffer device 160x50
    [	1.434872] fb0: inteldrmfb frame buffer device
    [	1.434895] drm: registered panic notifier
    [	1.445258] acpi device:02: registered as cooling_device4
    [	1.445398] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input3
    [	1.445445] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
    [	1.445538] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [	1.446442] loop: module loaded
    [	1.446621] ahci 0000:00:1f.2: version 3.0
    [	1.446634] ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    [	1.446715] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [	1.446749] ahci: SSS flag set, parallel bus scan disabled
    [	1.446819] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x31 impl SATA mode
    [	1.446859] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst 
    [	1.446903] ahci 0000:00:1f.2: setting latency timer to 64
    [	1.450666] scsi0 : ahci
    [	1.450777] scsi1 : ahci
    [	1.450871] scsi2 : ahci
    [	1.450969] scsi3 : ahci
    [	1.451075] scsi4 : ahci
    [	1.451174] scsi5 : ahci
    [	1.451533] ata1: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727100 irq 41
    [	1.451570] ata2: DUMMY
    [	1.451585] ata3: DUMMY
    [	1.451600] ata4: DUMMY
    [	1.451617] ata5: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727300 irq 41
    [	1.451653] ata6: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727380 irq 41
    [	1.451869] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [	1.451914] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
    [	1.453305] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
    [	1.454674] ehci_hcd 0000:00:1a.0: PCI INT D -> GSI 23 (level, low) -> IRQ 23
    [	1.456055] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [	1.456059] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [	1.457463] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [	1.458863] ehci_hcd 0000:00:1a.0: debug port 2
    [	1.464181] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [	1.464197] ehci_hcd 0000:00:1a.0: irq 23, io mem 0xf2728000
    [	1.475001] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [	1.476425] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
    [	1.477790] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [	1.479138] usb usb1: Product: EHCI Host Controller
    [	1.480474] usb usb1: Manufacturer: Linux 3.1.1-bfs ehci_hcd
    [	1.481813] usb usb1: SerialNumber: 0000:00:1a.0
    [	1.483241] hub 1-0:1.0: USB hub found
    [	1.484563] hub 1-0:1.0: 3 ports detected
    [	1.485916] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
    [	1.487252] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
    [	1.488590] ehci_hcd 0000:00:1d.0: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [	1.489943] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [	1.489947] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [	1.491320] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [	1.492678] ehci_hcd 0000:00:1d.0: debug port 2
    [	1.497914] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [	1.497928] ehci_hcd 0000:00:1d.0: irq 19, io mem 0xf2728400
    [	1.508979] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [	1.510356] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
    [	1.511681] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [	1.512994] usb usb2: Product: EHCI Host Controller
    [	1.514289] usb usb2: Manufacturer: Linux 3.1.1-bfs ehci_hcd
    [	1.515593] usb usb2: SerialNumber: 0000:00:1d.0
    [	1.517005] hub 2-0:1.0: USB hub found
    [	1.518283] hub 2-0:1.0: 3 ports detected
    [	1.519600] uhci_hcd: USB Universal Host Controller Interface driver
    [	1.520938] usbcore: registered new interface driver usblp
    [	1.522231] usbcore: registered new interface driver uas
    [	1.523459] Initializing USB Mass Storage driver...
    [	1.524721] usbcore: registered new interface driver usb-storage
    [	1.525953] USB Mass Storage support registered.
    [	1.527207] usbcore: registered new interface driver libusual
    [	1.528488] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [	1.533118] serio: i8042 KBD port at 0x60,0x64 irq 1
    [	1.534388] serio: i8042 AUX port at 0x60,0x64 irq 12
    [	1.535795] mousedev: PS/2 mouse device common for all mice
    [	1.537334] rtc_cmos 00:08: RTC can wake from S4
    [	1.538726] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
    [	1.540022] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [	1.541301] i2c /dev entries driver
    [	1.543237] i801_smbus 0000:00:1f.3: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [	1.544632] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
    [	1.544747] Linux video capture interface: v2.00
    [	1.544815] usbcore: registered new interface driver uvcvideo
    [	1.544816] USB Video Class driver (1.1.1)
    [	1.551525] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [	1.552993] iTCO_wdt: Found a QM57 TCO device (Version=2, TCOBASE=0x1060)
    [	1.554379] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [	1.555703] iTCO_vendor_support: vendor-support=0
    [	1.557389] cpuidle: using governor ladder
    [	1.559495] cpuidle: using governor menu
    [	1.562356] usbcore: registered new interface driver usbhid
    [	1.564189] usbhid: USB HID core driver
    [	1.568010] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [	1.570342] thinkpad_acpi: http://ibm-acpi.sf.net/
    [	1.572610] thinkpad_acpi: ThinkPad BIOS 6QET66WW (1.36 ), EC 6QHT33WW-1.14
    [	1.574881] thinkpad_acpi: Lenovo ThinkPad X201, model 3323L7T
    [	1.577911] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [	1.579476] thinkpad_acpi: radio switch found; radios are enabled
    [	1.581097] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
    [	1.584183] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [	1.587292] Registered led device: tpacpi::thinklight
    [	1.587388] Registered led device: tpacpi::power
    [	1.587466] Registered led device: tpacpi::standby
    [	1.587539] Registered led device: tpacpi::thinkvantage
    [	1.590509] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [	1.593091] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [	1.597105] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
    [	1.599603] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
    [	1.602027] intel ips 0000:00:1f.6: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [	1.604481] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
    [	1.607104] ALSA device list:
    [	1.609560]   #29: ThinkPad Console Audio Control at EC reg 0x30, fw 6QHT33WW-1.14
    [	1.612089] Netfilter messages via NETLINK v0.30.
    [	1.614598] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [	1.617350] ctnetlink v0.93: registering with nfnetlink.
    [	1.619008] ip_tables: (C) 2000-2006 Netfilter Core Team
    [	1.620542] TCP cubic registered
    [	1.621975] NET: Registered protocol family 17
    [	1.655924] Refined TSC clocksource calibration: 2128.000 MHz.
    [	1.657435] Switching to clocksource tsc
    [	1.755942] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [	1.758041] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
    [	1.758049] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
    [	1.759562] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
    [	1.761661] ata1.00: ATA-9: M4-CT128M4SSD2, 0009, max UDMA/100
    [	1.763177] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [	1.765327] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
    [	1.765336] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
    [	1.766823] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
    [	1.768806] ata1.00: configured for UDMA/100
    [	1.770355] scsi 0:0:0:0: Direct-Access 	ATA  	M4-CT128M4SSD2   0009 PQ: 0 ANSI: 5
    [	1.772038] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    [	1.772129] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [	1.775010] sd 0:0:0:0: [sda] Write Protect is off
    [	1.776438] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [	1.776451] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [	1.779644]  sda: sda1 sda2 sda3 sda4 sda5
    [	1.781531] sd 0:0:0:0: [sda] Attached SCSI disk
    [	1.788899] usb 1-1: new high speed USB device number 2 using ehci_hcd
    [	1.904658] usb 1-1: New USB device found, idVendor=8087, idProduct=0020
    [	1.906140] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [	1.907822] hub 1-1:1.0: USB hub found
    [	1.909403] hub 1-1:1.0: 6 ports detected
    [	2.013802] usb 2-1: new high speed USB device number 2 using ehci_hcd
    [	2.076853] ata5: SATA link down (SStatus 0 SControl 300)
    [	2.129250] usb 2-1: New USB device found, idVendor=8087, idProduct=0020
    [	2.130772] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [	2.132481] hub 2-1:1.0: USB hub found
    [	2.134312] hub 2-1:1.0: 8 ports detected
    [	2.210872] usb 1-1.4: new full speed USB device number 3 using ehci_hcd
    [	2.302438] usb 1-1.4: New USB device found, idVendor=0a5c, idProduct=217f
    [	2.304031] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [	2.305508] usb 1-1.4: Product: Broadcom Bluetooth Device
    [	2.307048] usb 1-1.4: Manufacturer: Broadcom Corp
    [	2.308510] usb 1-1.4: SerialNumber: 002713D7A96C
    [	2.382645] ata6: SATA link down (SStatus 0 SControl 300)
    [	2.384288] usb 1-1.6: new high speed USB device number 4 using ehci_hcd
    [	2.442785] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b3/0xb40000/0xa0000
    [	2.444283] serio: Synaptics pass-through port at isa0060/serio1/input0
    [	2.476794] usb 1-1.6: New USB device found, idVendor=17ef, idProduct=4816
    [	2.478295] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    [	2.479781] usb 1-1.6: Product: Integrated Camera
    [	2.481203] usb 1-1.6: Manufacturer: Chicony Electronics Co., Ltd.
    [	2.483622] uvcvideo: Found UVC 1.00 device Integrated Camera (17ef:4816)
    [	2.496623] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
    [	2.503814] EXT4-fs (sda4): barriers disabled
    [	2.505658] EXT4-fs (sda4): mounted filesystem with writeback data mode. Opts: data=writeback,barrier=0
    [	2.507105] VFS: Mounted root (ext4 filesystem) readonly on device 8:4.
    [	2.508699] Freeing unused kernel memory: 464k freed
    [	2.510200] BFS CPU scheduler v0.415 by Con Kolivas.
    [	2.569285] udevd[1041]: starting version 175
    [	2.612153] Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    [	2.615168] e1000e: Intel(R) PRO/1000 Network Driver - 1.4.4-k
    [	2.617340] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    [	2.618536] Copyright(c) 2003-2011 Intel Corporation
    [	2.618633] iwlagn 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [	2.618669] iwlagn 0000:02:00.0: setting latency timer to 64
    [	2.618721] iwlagn 0000:02:00.0: pci_resource_len = 0x00002000
    [	2.618723] iwlagn 0000:02:00.0: pci_resource_base = ffffc9000005c000
    [	2.618726] iwlagn 0000:02:00.0: HW Revision ID = 0x2C
    [	2.618882] iwlagn 0000:02:00.0: irq 42 for MSI/MSI-X
    [	2.618969] iwlagn 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N 6200 AGN, REV=0x74
    [	2.619084] iwlagn 0000:02:00.0: L1 Enabled; Disabling L0S
    [	2.632841] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [	2.634794] e1000e 0000:00:19.0: setting latency timer to 64
    [	2.634980] e1000e 0000:00:19.0: irq 43 for MSI/MSI-X
    [	2.647868] iwlagn 0000:02:00.0: device EEPROM VER=0x434, CALIB=0x6
    [	2.649340] iwlagn 0000:02:00.0: Device SKU: 0X1f0
    [	2.650857] iwlagn 0000:02:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
    [	2.657155] iwlagn 0000:02:00.0: loaded firmware version 9.221.4.1 build 25532
    [	2.658880] Registered led device: phy0-led
    [	2.658944] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [	2.807820] e1000e 0000:00:19.0: eth0: (PCI Express:2.5GT/s:Width x1) f0:de:f1:19:83:60
    [	2.809285] e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
    [	2.810875] e1000e 0000:00:19.0: eth0: MAC: 9, PHY: 10, PBA No: A002FF-0FF
    [	2.812341] snd_hda_intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [	2.814416] snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
    [	2.814454] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
    [	2.832343] HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
    [	2.939867] EXT4-fs (sda4): re-mounted. Opts: discard
    [	2.979840] EXT4-fs (sda4): re-mounted. Opts: discard
    [	2.999322] EXT4-fs (sda4): re-mounted. Opts: discard
    [	3.006028] EXT4-fs (sda1): mounted filesystem without journal. Opts: barrier=0,data=writeback,discard
    [	3.011217] EXT4-fs (sda3): barriers disabled
    [	3.013082] EXT4-fs (sda3): mounted filesystem with writeback data mode. Opts: barrier=0,data=writeback,discard
    [	3.017376] EXT4-fs (sda5): barriers disabled
    [	3.021136] EXT4-fs (sda5): mounted filesystem with writeback data mode. Opts: barrier=0,data=writeback,discard
    [	3.038416] Adding 524284k swap on /dev/sda2.  Priority:-1 extents:1 across:524284k SS

    without the patch:

    [	0.000000] Linux version 3.1.1-bfs (root@drama) (gcc version 4.5.3 (CRUX) ) #1 SMP PREEMPT Thu Nov 17 16:31:59 UTC 2011
    [	0.000000] Command line: root=/dev/sda4 rootfstype=ext4 ro rootflags=data=writeback,barrier=0 BOOT_IMAGE=/vmlinuz-bfs64 
    [	0.000000] BIOS-provided physical RAM map:
    [	0.000000]  BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
    [	0.000000]  BIOS-e820: 000000000009e800 - 00000000000a0000 (reserved)
    [	0.000000]  BIOS-e820: 00000000000dc000 - 0000000000100000 (reserved)
    [	0.000000]  BIOS-e820: 0000000000100000 - 00000000bb27c000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb27c000 - 00000000bb282000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb282000 - 00000000bb35f000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb35f000 - 00000000bb371000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb371000 - 00000000bb3f2000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb3f2000 - 00000000bb40f000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb40f000 - 00000000bb46f000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb46f000 - 00000000bb668000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb668000 - 00000000bb6e8000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb6e8000 - 00000000bb70f000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb70f000 - 00000000bb717000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb717000 - 00000000bb71f000 (reserved)
    [	0.000000]  BIOS-e820: 00000000bb71f000 - 00000000bb76c000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb76c000 - 00000000bb778000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb778000 - 00000000bb77b000 (ACPI data)
    [	0.000000]  BIOS-e820: 00000000bb77b000 - 00000000bb78b000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb78b000 - 00000000bb78c000 (ACPI data)
    [	0.000000]  BIOS-e820: 00000000bb78c000 - 00000000bb79f000 (ACPI NVS)
    [	0.000000]  BIOS-e820: 00000000bb79f000 - 00000000bb7ff000 (ACPI data)
    [	0.000000]  BIOS-e820: 00000000bb7ff000 - 00000000bb800000 (usable)
    [	0.000000]  BIOS-e820: 00000000bb800000 - 00000000c0000000 (reserved)
    [	0.000000]  BIOS-e820: 00000000e0000000 - 00000000f0000000 (reserved)
    [	0.000000]  BIOS-e820: 00000000feaff000 - 00000000feb00000 (reserved)
    [	0.000000]  BIOS-e820: 00000000fec00000 - 00000000fec10000 (reserved)
    [	0.000000]  BIOS-e820: 00000000fed00000 - 00000000fed00400 (reserved)
    [	0.000000]  BIOS-e820: 00000000fed1c000 - 00000000fed90000 (reserved)
    [	0.000000]  BIOS-e820: 00000000fee00000 - 00000000fee01000 (reserved)
    [	0.000000]  BIOS-e820: 00000000ff000000 - 0000000100000000 (reserved)
    [	0.000000]  BIOS-e820: 0000000100000000 - 0000000138000000 (usable)
    [	0.000000] NX (Execute Disable) protection: active
    [	0.000000] DMI present.
    [	0.000000] DMI: LENOVO 3323L7T/3323L7T, BIOS 6QET66WW (1.36 ) 05/31/2011
    [	0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
    [	0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
    [	0.000000] No AGP bridge found
    [	0.000000] last_pfn = 0x138000 max_arch_pfn = 0x400000000
    [	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-FFFFF write-protect
    [	0.000000] MTRR variable ranges enabled:
    [	0.000000]   0 disabled
    [	0.000000]   1 base 000000000 mask F80000000 write-back
    [	0.000000]   2 base 080000000 mask FC0000000 write-back
    [	0.000000]   3 base 100000000 mask FC0000000 write-back
    [	0.000000]   4 base 138000000 mask FF8000000 uncachable
    [	0.000000]   5 base 0BC000000 mask FFC000000 uncachable
    [	0.000000]   6 disabled
    [	0.000000]   7 disabled
    [	0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [	0.000000] e820 update range: 00000000bc000000 - 0000000100000000 (usable) ==> (reserved)
    [	0.000000] last_pfn = 0xbb800 max_arch_pfn = 0x400000000
    [	0.000000] initial memory mapped : 0 - 20000000
    [	0.000000] Base memory trampoline at [ffff88000009c000] 9c000 size 8192
    [	0.000000] init_memory_mapping: 0000000000000000-00000000bb800000
    [	0.000000]  0000000000 - 00bb800000 page 2M
    [	0.000000] kernel direct mapping tables up to bb800000 @ 1fffc000-20000000
    [	0.000000] init_memory_mapping: 0000000100000000-0000000138000000
    [	0.000000]  0100000000 - 0138000000 page 2M
    [	0.000000] kernel direct mapping tables up to 138000000 @ bb766000-bb76c000
    [	0.000000] ACPI: RSDP 00000000000f68e0 00024 (v02 LENOVO)
    [	0.000000] ACPI: XSDT 00000000bb7f0860 00094 (v01 LENOVO TP-6Q	00001360  LTP 00000000)
    [	0.000000] ACPI: FACP 00000000bb7f0a00 000F4 (v04 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: DSDT 00000000bb7f0d6b 0DE36 (v01 LENOVO TP-6Q	00001360 MSFT 03000001)
    [	0.000000] ACPI: FACS 00000000bb6e7000 00040
    [	0.000000] ACPI: SSDT 00000000bb7f0bb4 001B7 (v01 LENOVO TP-6Q	00001360 MSFT 03000001)
    [	0.000000] ACPI: ECDT 00000000bb7feba1 00052 (v01 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: APIC 00000000bb7febf3 00084 (v01 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: MCFG 00000000bb7fecaf 0003C (v01 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: HPET 00000000bb7feceb 00038 (v01 LENOVO TP-6Q	00001360 LNVO 00000001)
    [	0.000000] ACPI: ASF! 00000000bb7fedbe 000A4 (v16 LENOVO TP-6Q	00001360 PTL  00000001)
    [	0.000000] ACPI: SLIC 00000000bb7fee62 00176 (v01 LENOVO TP-6Q	00001360  LTP 00000000)
    [	0.000000] ACPI: BOOT 00000000bb7fefd8 00028 (v01 LENOVO TP-6Q	00001360  LTP 00000001)
    [	0.000000] ACPI: SSDT 00000000bb6e590a 0085B (v01 LENOVO TP-6Q	00001360 INTL 20050513)
    [	0.000000] ACPI: TCPA 00000000bb78b000 00032 (v02	PTL  CRESTLN 06040000  	00005A52)
    [	0.000000] ACPI: SSDT 00000000bb77a000 009F1 (v01  PmRef	CpuPm 00003000 INTL 20060912)
    [	0.000000] ACPI: SSDT 00000000bb779000 00259 (v01  PmRef  Cpu0Tst 00003000 INTL 20060912)
    [	0.000000] ACPI: SSDT 00000000bb778000 0049F (v01  PmRef	ApTst 00003000 INTL 20060912)
    [	0.000000] ACPI: Local APIC address 0xfee00000
    [	0.000000]  [ffffea0000000000-ffffea0004dfffff] PMD -> [ffff880133800000-ffff8801375fffff] on node 0
    [	0.000000] Zone PFN ranges:
    [	0.000000]   DMA  	0x00000010 -> 0x00001000
    [	0.000000]   DMA32	0x00001000 -> 0x00100000
    [	0.000000]   Normal   0x00100000 -> 0x00138000
    [	0.000000] Movable zone start PFN for each node
    [	0.000000] early_node_map[8] active PFN ranges
    [	0.000000] 	0: 0x00000010 -> 0x0000009e
    [	0.000000] 	0: 0x00000100 -> 0x000bb27c
    [	0.000000] 	0: 0x000bb282 -> 0x000bb35f
    [	0.000000] 	0: 0x000bb40f -> 0x000bb46f
    [	0.000000] 	0: 0x000bb70f -> 0x000bb717
    [	0.000000] 	0: 0x000bb71f -> 0x000bb76c
    [	0.000000] 	0: 0x000bb7ff -> 0x000bb800
    [	0.000000] 	0: 0x00100000 -> 0x00138000
    [	0.000000] On node 0 totalpages: 996253
    [	0.000000]   DMA zone: 64 pages used for memmap
    [	0.000000]   DMA zone: 2 pages reserved
    [	0.000000]   DMA zone: 3916 pages, LIFO batch:0
    [	0.000000]   DMA32 zone: 16320 pages used for memmap
    [	0.000000]   DMA32 zone: 746575 pages, LIFO batch:31
    [	0.000000]   Normal zone: 3584 pages used for memmap
    [	0.000000]   Normal zone: 225792 pages, LIFO batch:31
    [	0.000000] ACPI: PM-Timer IO Port: 0x1008
    [	0.000000] ACPI: Local APIC address 0xfee00000
    [	0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
    [	0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
    [	0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x04] enabled)
    [	0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x05] enabled)
    [	0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
    [	0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
    [	0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
    [	0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
    [	0.000000] ACPI: IOAPIC (id[0x01] address[0xfec00000] gsi_base[0])
    [	0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
    [	0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [	0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [	0.000000] ACPI: IRQ0 used by override.
    [	0.000000] ACPI: IRQ2 used by override.
    [	0.000000] ACPI: IRQ9 used by override.
    [	0.000000] Using ACPI (MADT) for SMP configuration information
    [	0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
    [	0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
    [	0.000000] nr_irqs_gsi: 40
    [	0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:20000000)
    [	0.000000] setup_percpu: NR_CPUS:4 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
    [	0.000000] PERCPU: Embedded 24 pages/cpu @ffff880137c00000 s68160 r8192 d21952 u524288
    [	0.000000] pcpu-alloc: s68160 r8192 d21952 u524288 alloc=1*2097152
    [	0.000000] pcpu-alloc: [0] 0 1 2 3 
    [	0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 976283
    [	0.000000] Kernel command line: root=/dev/sda4 rootfstype=ext4 ro rootflags=data=writeback,barrier=0 BOOT_IMAGE=/vmlinuz-bfs64 
    [	0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [	0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [	0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [	0.000000] Checking aperture...
    [	0.000000] No AGP bridge found
    [	0.000000] Memory: 3841032k/5111808k available (4758k kernel code, 1126796k absent, 143980k reserved, 1974k data, 464k init)
    [	0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [	0.000000] Preemptible hierarchical RCU implementation.
    [	0.000000] 	Verbose stalled-CPUs detection is disabled.
    [	0.000000] NR_IRQS:384
    [	0.000000] Extended CMOS year: 2000
    [	0.000000] Console: colour VGA+ 80x25
    [	0.000000] console [tty0] enabled
    [	0.000000] hpet clockevent registered
    [	0.000000] Fast TSC calibration using PIT
    [	0.002000] Detected 2127.805 MHz processor.
    [	0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4255.61 BogoMIPS (lpj=2127805)
    [	0.000182] pid_max: default: 32768 minimum: 301
    [	0.000309] Mount-cache hash table entries: 256
    [	0.000520] CPU: Physical Processor ID: 0
    [	0.000606] CPU: Processor Core ID: 0
    [	0.000694] mce: CPU supports 9 MCE banks
    [	0.000789] CPU0: Thermal monitoring enabled (TM1)
    [	0.000883] using mwait in idle threads.
    [	0.001049] Freeing SMP alternatives: 16k freed
    [	0.001144] ACPI: Core revision 20110623
    [	0.015207] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [	0.025304] CPU0: Intel(R) Core(TM) i3 CPU   	M 330  @ 2.13GHz stepping 02
    [	0.126858] Performance Events: PEBS fmt1+, Westmere events, Intel PMU driver.
    [	0.127127] ... version:            	3
    [	0.127220] ... bit width:          	48
    [	0.127313] ... generic registers:  	4
    [	0.127405] ... value mask:     		0000ffffffffffff
    [	0.127502] ... max period:     		000000007fffffff
    [	0.127599] ... fixed-purpose events:   3
    [	0.127693] ... event mask:     		000000070000000f
    [	0.138862] Booting Node   0, Processors  #1
    [	0.138973] smpboot cpu 1: start_ip = 9c000
    [	0.229980]  #2
    [	0.230031] smpboot cpu 2: start_ip = 9c000
    [	0.320994]  #3 Ok.
    [	0.321084] smpboot cpu 3: start_ip = 9c000
    [	0.411787] Brought up 4 CPUs
    [	0.411884] Total of 4 processors activated (17022.92 BogoMIPS).
    [	0.413595] devtmpfs: initialized
    [	0.413871] NET: Registered protocol family 16
    [	0.414272] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [	0.414415] ACPI: bus type pci registered
    [	0.414578] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
    [	0.414733] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
    [	0.487504] PCI: Using configuration type 1 for base access
    [	0.492054] bio: create slab <bio-0> at 0
    [	0.492238] ACPI: Added _OSI(Module Device)
    [	0.492331] ACPI: Added _OSI(Processor Device)
    [	0.492426] ACPI: Added _OSI(3.0 _SCP Extensions)
    [	0.492521] ACPI: Added _OSI(Processor Aggregator Device)
    [	0.494161] ACPI: EC: EC description table is found, configuring boot EC
    [	0.498536] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [	0.577692] ACPI: SSDT 00000000bb71a918 0042D (v01  PmRef  Cpu0Ist 00003000 INTL 20060912)
    [	0.578311] ACPI: Dynamic OEM Table Load:
    [	0.578490] ACPI: SSDT   		(null) 0042D (v01  PmRef  Cpu0Ist 00003000 INTL 20060912)
    [	0.578841] ACPI: SSDT 00000000bb718718 006B2 (v01  PmRef  Cpu0Cst 00003001 INTL 20060912)
    [	0.579463] ACPI: Dynamic OEM Table Load:
    [	0.579640] ACPI: SSDT   		(null) 006B2 (v01  PmRef  Cpu0Cst 00003001 INTL 20060912)
    [	0.586039] ACPI: SSDT 00000000bb719a98 00303 (v01  PmRef	ApIst 00003000 INTL 20060912)
    [	0.586692] ACPI: Dynamic OEM Table Load:
    [	0.586871] ACPI: SSDT   		(null) 00303 (v01  PmRef	ApIst 00003000 INTL 20060912)
    [	0.590898] ACPI: SSDT 00000000bb717d98 00119 (v01  PmRef	ApCst 00003000 INTL 20060912)
    [	0.591522] ACPI: Dynamic OEM Table Load:
    [	0.591697] ACPI: SSDT   		(null) 00119 (v01  PmRef	ApCst 00003000 INTL 20060912)
    [	0.597353] ACPI: Interpreter enabled
    [	0.597441] ACPI: (supports S0 S5)
    [	0.597622] ACPI: Using IOAPIC for interrupt routing
    [	0.601815] ACPI: Power Resource [PUBS] (on)
    [	0.605392] ACPI: EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62
    [	0.605530] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [	0.605690] ACPI: PCI Root Bridge [uNCR] (domain 0000 [bus ff])
    [	0.605848] pci 0000:ff:00.0: [8086:2c62] type 0 class 0x000600
    [	0.605871] pci 0000:ff:00.1: [8086:2d01] type 0 class 0x000600
    [	0.605891] pci 0000:ff:02.0: [8086:2d10] type 0 class 0x000600
    [	0.605908] pci 0000:ff:02.1: [8086:2d11] type 0 class 0x000600
    [	0.605925] pci 0000:ff:02.2: [8086:2d12] type 0 class 0x000600
    [	0.605942] pci 0000:ff:02.3: [8086:2d13] type 0 class 0x000600
    [	0.605970] pci_bus 0000:ff: on NUMA node 0
    [	0.605978]  pci0000:ff: Requesting ACPI _OSC control (0x1d)
    [	0.606077]  pci0000:ff: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
    [	0.606222] ACPI _OSC control for PCIe not granted, disabling ASPM
    [	0.606661] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
    [	0.606818] pci_root PNP0A08:00: host bridge window [io  0x0000-0x0cf7]
    [	0.606920] pci_root PNP0A08:00: host bridge window [io  0x0d00-0xffff]
    [	0.607022] pci_root PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff]
    [	0.607163] pci_root PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff]
    [	0.607307] pci_root PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff]
    [	0.607450] pci_root PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff]
    [	0.607591] pci_root PNP0A08:00: host bridge window [mem 0xc0000000-0xfebfffff]
    [	0.607740] pci 0000:00:00.0: [8086:0044] type 0 class 0x000600
    [	0.607786] pci 0000:00:02.0: [8086:0046] type 0 class 0x000300
    [	0.607797] pci 0000:00:02.0: reg 10: [mem 0xf2000000-0xf23fffff 64bit]
    [	0.607804] pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff 64bit pref]
    [	0.607809] pci 0000:00:02.0: reg 20: [io  0x1800-0x1807]
    [	0.607872] pci 0000:00:16.0: [8086:3b64] type 0 class 0x000780
    [	0.607902] pci 0000:00:16.0: reg 10: [mem 0xf2727800-0xf272780f 64bit]
    [	0.607981] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
    [	0.607987] pci 0000:00:16.0: PME# disabled
    [	0.608027] pci 0000:00:19.0: [8086:10ea] type 0 class 0x000200
    [	0.608053] pci 0000:00:19.0: reg 10: [mem 0xf2500000-0xf251ffff]
    [	0.608064] pci 0000:00:19.0: reg 14: [mem 0xf2525000-0xf2525fff]
    [	0.608076] pci 0000:00:19.0: reg 18: [io  0x1820-0x183f]
    [	0.608147] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
    [	0.608152] pci 0000:00:19.0: PME# disabled
    [	0.608182] pci 0000:00:1a.0: [8086:3b3c] type 0 class 0x000c03
    [	0.608209] pci 0000:00:1a.0: reg 10: [mem 0xf2728000-0xf27283ff]
    [	0.608302] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
    [	0.608307] pci 0000:00:1a.0: PME# disabled
    [	0.608338] pci 0000:00:1b.0: [8086:3b56] type 0 class 0x000403
    [	0.608359] pci 0000:00:1b.0: reg 10: [mem 0xf2520000-0xf2523fff 64bit]
    [	0.608435] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
    [	0.608440] pci 0000:00:1b.0: PME# disabled
    [	0.608465] pci 0000:00:1c.0: [8086:3b42] type 1 class 0x000604
    [	0.608546] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
    [	0.608551] pci 0000:00:1c.0: PME# disabled
    [	0.608582] pci 0000:00:1c.3: [8086:3b48] type 1 class 0x000604
    [	0.608662] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
    [	0.608666] pci 0000:00:1c.3: PME# disabled
    [	0.608696] pci 0000:00:1c.4: [8086:3b4a] type 1 class 0x000604
    [	0.608778] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
    [	0.608783] pci 0000:00:1c.4: PME# disabled
    [	0.608820] pci 0000:00:1d.0: [8086:3b34] type 0 class 0x000c03
    [	0.608847] pci 0000:00:1d.0: reg 10: [mem 0xf2728400-0xf27287ff]
    [	0.608940] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
    [	0.608945] pci 0000:00:1d.0: PME# disabled
    [	0.608970] pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
    [	0.609047] pci 0000:00:1f.0: [8086:3b07] type 0 class 0x000601
    [	0.609170] pci 0000:00:1f.2: [8086:3b2f] type 0 class 0x000106
    [	0.609198] pci 0000:00:1f.2: reg 10: [io  0x1860-0x1867]
    [	0.609209] pci 0000:00:1f.2: reg 14: [io  0x1814-0x1817]
    [	0.609221] pci 0000:00:1f.2: reg 18: [io  0x1818-0x181f]
    [	0.609232] pci 0000:00:1f.2: reg 1c: [io  0x1810-0x1813]
    [	0.609243] pci 0000:00:1f.2: reg 20: [io  0x1840-0x185f]
    [	0.609255] pci 0000:00:1f.2: reg 24: [mem 0xf2727000-0xf27277ff]
    [	0.609303] pci 0000:00:1f.2: PME# supported from D3hot
    [	0.609308] pci 0000:00:1f.2: PME# disabled
    [	0.609330] pci 0000:00:1f.3: [8086:3b30] type 0 class 0x000c05
    [	0.609351] pci 0000:00:1f.3: reg 10: [mem 0xf2728800-0xf27288ff 64bit]
    [	0.609382] pci 0000:00:1f.3: reg 20: [io  0x1880-0x189f]
    [	0.609430] pci 0000:00:1f.6: [8086:3b32] type 0 class 0x001180
    [	0.609458] pci 0000:00:1f.6: reg 10: [mem 0xf2526000-0xf2526fff 64bit]
    [	0.609598] pci 0000:00:1c.0: PCI bridge to [bus 0d-0d]
    [	0.609769] pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    [	0.609869] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
    [	0.609873] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf1ffffff]
    [	0.609881] pci 0000:00:1c.3:   bridge window [mem 0xf2800000-0xf28fffff 64bit pref]
    [	0.610018] pci 0000:02:00.0: [8086:4239] type 0 class 0x000280
    [	0.610083] pci 0000:02:00.0: reg 10: [mem 0xf2400000-0xf2401fff 64bit]
    [	0.610291] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
    [	0.610317] pci 0000:02:00.0: PME# disabled
    [	0.610428] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
    [	0.610531] pci 0000:00:1c.4:   bridge window [mem 0xf2400000-0xf24fffff]
    [	0.610611] pci 0000:00:1e.0: PCI bridge to [bus 0e-0e] (subtractive decode)
    [	0.610726] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
    [	0.610728] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
    [	0.610730] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
    [	0.610732] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000d3fff] (subtractive decode)
    [	0.610735] pci 0000:00:1e.0:   bridge window [mem 0x000d4000-0x000d7fff] (subtractive decode)
    [	0.610737] pci 0000:00:1e.0:   bridge window [mem 0x000d8000-0x000dbfff] (subtractive decode)
    [	0.610739] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfebfffff] (subtractive decode)
    [	0.610768] pci_bus 0000:00: on NUMA node 0
    [	0.610771] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [	0.610861] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP1._PRT]
    [	0.610888] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP4._PRT]
    [	0.610912] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.EXP5._PRT]
    [	0.611030]  pci0000:00: Requesting ACPI _OSC control (0x1d)
    [	0.611276]  pci0000:00: ACPI _OSC request failed (AE_SUPPORT), returned control mask: 0x0d
    [	0.611421] ACPI _OSC control for PCIe not granted, disabling ASPM
    [	0.613892] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.614463] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.615033] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [	0.615738] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.616307] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.616881] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [	0.617565] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
    [	0.618259] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11)
    [	0.618917] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [	0.619066] vgaarb: loaded
    [	0.619155] vgaarb: bridge control possible 0000:00:02.0
    [	0.619357] SCSI subsystem initialized
    [	0.619505] libata version 3.00 loaded.
    [	0.619553] usbcore: registered new interface driver usbfs
    [	0.619672] usbcore: registered new interface driver hub
    [	0.619799] usbcore: registered new device driver usb
    [	0.620036] Advanced Linux Sound Architecture Driver Version 1.0.24.
    [	0.620137] PCI: Using ACPI for IRQ routing
    [	0.630203] PCI: pci_cache_line_size set to 64 bytes
    [	0.630283] reserve RAM buffer: 000000000009e800 - 000000000009ffff 
    [	0.630286] reserve RAM buffer: 00000000bb27c000 - 00000000bbffffff 
    [	0.630290] reserve RAM buffer: 00000000bb35f000 - 00000000bbffffff 
    [	0.630294] reserve RAM buffer: 00000000bb46f000 - 00000000bbffffff 
    [	0.630297] reserve RAM buffer: 00000000bb717000 - 00000000bbffffff 
    [	0.630300] reserve RAM buffer: 00000000bb76c000 - 00000000bbffffff 
    [	0.630303] reserve RAM buffer: 00000000bb800000 - 00000000bbffffff 
    [	0.630502] cfg80211: Calling CRDA to update world regulatory domain
    [	0.630740] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [	0.631218] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [	0.633334] Switching to clocksource hpet
    [	0.633490] pnp: PnP ACPI init
    [	0.633587] ACPI: bus type pnp registered
    [	0.633623] Switched to NOHz mode on CPU #0
    [	0.633683] Switched to NOHz mode on CPU #3
    [	0.633746] Switched to NOHz mode on CPU #2
    [	0.633975] Switched to NOHz mode on CPU #1
    [	0.634648] pnp 00:00: [mem 0x00000000-0x0009ffff]
    [	0.634651] pnp 00:00: [mem 0x000c0000-0x000c3fff]
    [	0.634652] pnp 00:00: [mem 0x000c4000-0x000c7fff]
    [	0.634654] pnp 00:00: [mem 0x000c8000-0x000cbfff]
    [	0.634656] pnp 00:00: [mem 0x000cc000-0x000cffff]
    [	0.634657] pnp 00:00: [mem 0x000d0000-0x000cffff disabled]
    [	0.634659] pnp 00:00: [mem 0x000d4000-0x000d3fff disabled]
    [	0.634661] pnp 00:00: [mem 0x000d8000-0x000d7fff disabled]
    [	0.634663] pnp 00:00: [mem 0x000dc000-0x000dffff]
    [	0.634665] pnp 00:00: [mem 0x000e0000-0x000e3fff]
    [	0.634666] pnp 00:00: [mem 0x000e4000-0x000e7fff]
    [	0.634668] pnp 00:00: [mem 0x000e8000-0x000ebfff]
    [	0.634669] pnp 00:00: [mem 0x000ec000-0x000effff]
    [	0.634671] pnp 00:00: [mem 0x000f0000-0x000fffff]
    [	0.634673] pnp 00:00: [mem 0x00100000-0xbfffffff]
    [	0.634674] pnp 00:00: [mem 0xfec00000-0xfed3ffff]
    [	0.634676] pnp 00:00: [mem 0xfed4c000-0xffffffff]
    [	0.634748] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
    [	0.634853] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
    [	0.634956] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
    [	0.635060] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved
    [	0.635162] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved
    [	0.635263] system 00:00: [mem 0x000dc000-0x000dffff] could not be reserved
    [	0.635366] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
    [	0.635469] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
    [	0.635583] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
    [	0.635686] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
    [	0.635790] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
    [	0.635893] system 00:00: [mem 0x00100000-0xbfffffff] could not be reserved
    [	0.635997] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
    [	0.636101] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
    [	0.636205] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
    [	0.636219] pnp 00:01: [bus ff]
    [	0.636276] pnp 00:01: Plug and Play ACPI device, IDs PNP0a03 (active)
    [	0.636294] pnp 00:02: [bus 00-fe]
    [	0.636296] pnp 00:02: [io  0x0cf8-0x0cff]
    [	0.636298] pnp 00:02: [io  0x0000-0x0cf7 window]
    [	0.636300] pnp 00:02: [io  0x0d00-0xffff window]
    [	0.636302] pnp 00:02: [mem 0x000a0000-0x000bffff window]
    [	0.636305] pnp 00:02: [mem 0x000c0000-0x000c3fff window]
    [	0.636307] pnp 00:02: [mem 0x000c4000-0x000c7fff window]
    [	0.636309] pnp 00:02: [mem 0x000c8000-0x000cbfff window]
    [	0.636310] pnp 00:02: [mem 0x000cc000-0x000cffff window]
    [	0.636312] pnp 00:02: [mem 0x000d0000-0x000d3fff window]
    [	0.636314] pnp 00:02: [mem 0x000d4000-0x000d7fff window]
    [	0.636316] pnp 00:02: [mem 0x000d8000-0x000dbfff window]
    [	0.636317] pnp 00:02: [mem 0x000dc000-0x000dffff window]
    [	0.636319] pnp 00:02: [mem 0x000e0000-0x000e3fff window]
    [	0.636321] pnp 00:02: [mem 0x000e4000-0x000e7fff window]
    [	0.636323] pnp 00:02: [mem 0x000e8000-0x000ebfff window]
    [	0.636324] pnp 00:02: [mem 0x000ec000-0x000effff window]
    [	0.636326] pnp 00:02: [mem 0xc0000000-0xfebfffff window]
    [	0.636328] pnp 00:02: [mem 0xfed40000-0xfed4bfff window]
    [	0.636383] pnp 00:02: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [	0.636686] pnp 00:03: [io  0x0010-0x001f]
    [	0.636689] pnp 00:03: [io  0x0090-0x009f]
    [	0.636690] pnp 00:03: [io  0x0024-0x0025]
    [	0.636692] pnp 00:03: [io  0x0028-0x0029]
    [	0.636693] pnp 00:03: [io  0x002c-0x002d]
    [	0.636695] pnp 00:03: [io  0x0030-0x0031]
    [	0.636696] pnp 00:03: [io  0x0034-0x0035]
    [	0.636698] pnp 00:03: [io  0x0038-0x0039]
    [	0.636699] pnp 00:03: [io  0x003c-0x003d]
    [	0.636701] pnp 00:03: [io  0x00a4-0x00a5]
    [	0.636702] pnp 00:03: [io  0x00a8-0x00a9]
    [	0.636704] pnp 00:03: [io  0x00ac-0x00ad]
    [	0.636705] pnp 00:03: [io  0x00b0-0x00b5]
    [	0.636707] pnp 00:03: [io  0x00b8-0x00b9]
    [	0.636708] pnp 00:03: [io  0x00bc-0x00bd]
    [	0.636711] pnp 00:03: [io  0x0050-0x0053]
    [	0.636712] pnp 00:03: [io  0x0072-0x0077]
    [	0.636714] pnp 00:03: [io  0x164e-0x164f]
    [	0.636715] pnp 00:03: [io  0x002e-0x002f]
    [	0.636717] pnp 00:03: [io  0x1000-0x107f]
    [	0.636718] pnp 00:03: [io  0x1180-0x11ff]
    [	0.636720] pnp 00:03: [io  0x0800-0x080f]
    [	0.636722] pnp 00:03: [io  0x15e0-0x15ef]
    [	0.636723] pnp 00:03: [io  0x1600-0x1641]
    [	0.636724] pnp 00:03: [io  0x1644-0x167f]
    [	0.636726] pnp 00:03: [mem 0xe0000000-0xefffffff]
    [	0.636728] pnp 00:03: [mem 0xfeaff000-0xfeafffff]
    [	0.636730] pnp 00:03: [mem 0xfed1c000-0xfed1ffff]
    [	0.636731] pnp 00:03: [mem 0xfed10000-0xfed13fff]
    [	0.636733] pnp 00:03: [mem 0xfed18000-0xfed18fff]
    [	0.636734] pnp 00:03: [mem 0xfed19000-0xfed19fff]
    [	0.636736] pnp 00:03: [mem 0xfed45000-0xfed4bfff]
    [	0.636817] system 00:03: [io  0x164e-0x164f] has been reserved
    [	0.636917] system 00:03: [io  0x1000-0x107f] has been reserved
    [	0.637016] system 00:03: [io  0x1180-0x11ff] has been reserved
    [	0.637116] system 00:03: [io  0x0800-0x080f] has been reserved
    [	0.637216] system 00:03: [io  0x15e0-0x15ef] has been reserved
    [	0.637317] system 00:03: [io  0x1600-0x1641] has been reserved
    [	0.637416] system 00:03: [io  0x1644-0x167f] could not be reserved
    [	0.637532] system 00:03: [mem 0xe0000000-0xefffffff] has been reserved
    [	0.637634] system 00:03: [mem 0xfeaff000-0xfeafffff] has been reserved
    [	0.637736] system 00:03: [mem 0xfed1c000-0xfed1ffff] has been reserved
    [	0.637841] system 00:03: [mem 0xfed10000-0xfed13fff] has been reserved
    [	0.637943] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
    [	0.638044] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
    [	0.638145] system 00:03: [mem 0xfed45000-0xfed4bfff] has been reserved
    [	0.638248] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
    [	0.638279] pnp 00:04: [mem 0xfed00000-0xfed003ff]
    [	0.638323] pnp 00:04: Plug and Play ACPI device, IDs PNP0103 (active)
    [	0.638333] pnp 00:05: [io  0x0000-0x000f]
    [	0.638335] pnp 00:05: [io  0x0080-0x008f]
    [	0.638337] pnp 00:05: [io  0x00c0-0x00df]
    [	0.638339] pnp 00:05: [dma 4]
    [	0.638382] pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
    [	0.638391] pnp 00:06: [io  0x0061]
    [	0.638432] pnp 00:06: Plug and Play ACPI device, IDs PNP0800 (active)
    [	0.638441] pnp 00:07: [io  0x00f0]
    [	0.638450] pnp 00:07: [irq 13]
    [	0.638511] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
    [	0.638520] pnp 00:08: [io  0x0070-0x0071]
    [	0.638526] pnp 00:08: [irq 8]
    [	0.638572] pnp 00:08: Plug and Play ACPI device, IDs PNP0b00 (active)
    [	0.638581] pnp 00:09: [io  0x0060]
    [	0.638583] pnp 00:09: [io  0x0064]
    [	0.638588] pnp 00:09: [irq 1]
    [	0.638632] pnp 00:09: Plug and Play ACPI device, IDs PNP0303 (active)
    [	0.638645] pnp 00:0a: [irq 12]
    [	0.638689] pnp 00:0a: Plug and Play ACPI device, IDs LEN0018 PNP0f13 (active)
    [	0.638957] pnp 00:0b: [mem 0xfed40000-0xfed44fff]
    [	0.639006] pnp 00:0b: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
    [	0.639436] pnp: PnP ACPI: found 12 devices
    [	0.639539] ACPI: ACPI bus type pnp unregistered
    [	0.647222] PCI: max bus depth: 1 pci_try_num: 2
    [	0.647266] pci 0000:00:1c.0: PCI bridge to [bus 0d-0d]
    [	0.647375] pci 0000:00:1c.3: PCI bridge to [bus 05-0c]
    [	0.647474] pci 0000:00:1c.3:   bridge window [io  0x2000-0x2fff]
    [	0.647593] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf1ffffff]
    [	0.647696] pci 0000:00:1c.3:   bridge window [mem 0xf2800000-0xf28fffff 64bit pref]
    [	0.647844] pci 0000:00:1c.4: PCI bridge to [bus 02-02]
    [	0.647946] pci 0000:00:1c.4:   bridge window [mem 0xf2400000-0xf24fffff]
    [	0.648055] pci 0000:00:1e.0: PCI bridge to [bus 0e-0e]
    [	0.648176] pci 0000:00:1c.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [	0.648282] pci 0000:00:1c.0: setting latency timer to 64
    [	0.648292] pci 0000:00:1c.3: PCI INT D -> GSI 23 (level, low) -> IRQ 23
    [	0.648397] pci 0000:00:1c.3: setting latency timer to 64
    [	0.648404] pci 0000:00:1c.4: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [	0.648528] pci 0000:00:1c.4: setting latency timer to 64
    [	0.648536] pci 0000:00:1e.0: setting latency timer to 64
    [	0.648540] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
    [	0.648543] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
    [	0.648545] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
    [	0.648547] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff]
    [	0.648549] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff]
    [	0.648551] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff]
    [	0.648553] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfebfffff]
    [	0.648555] pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
    [	0.648557] pci_bus 0000:05: resource 1 [mem 0xf0000000-0xf1ffffff]
    [	0.648559] pci_bus 0000:05: resource 2 [mem 0xf2800000-0xf28fffff 64bit pref]
    [	0.648561] pci_bus 0000:02: resource 1 [mem 0xf2400000-0xf24fffff]
    [	0.648563] pci_bus 0000:0e: resource 4 [io  0x0000-0x0cf7]
    [	0.648565] pci_bus 0000:0e: resource 5 [io  0x0d00-0xffff]
    [	0.648567] pci_bus 0000:0e: resource 6 [mem 0x000a0000-0x000bffff]
    [	0.648569] pci_bus 0000:0e: resource 7 [mem 0x000d0000-0x000d3fff]
    [	0.648571] pci_bus 0000:0e: resource 8 [mem 0x000d4000-0x000d7fff]
    [	0.648573] pci_bus 0000:0e: resource 9 [mem 0x000d8000-0x000dbfff]
    [	0.648575] pci_bus 0000:0e: resource 10 [mem 0xc0000000-0xfebfffff]
    [	0.648608] NET: Registered protocol family 2
    [	0.648750] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [	0.649164] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
    [	0.650787] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [	0.651244] TCP: Hash tables configured (established 262144 bind 65536)
    [	0.651343] TCP reno registered
    [	0.651436] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [	0.651692] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [	0.651895] NET: Registered protocol family 1
    [	0.652012] pci 0000:00:02.0: Boot video device
    [	0.652120] PCI: CLS 64 bytes, default 64
    [	0.652143] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [	0.652246] Placing 64MB software IO TLB between ffff8800b727c000 - ffff8800bb27c000
    [	0.652390] software IO TLB at phys 0xb727c000 - 0xbb27c000
    [	0.652514] Simple Boot Flag at 0x35 set to 0x1
    [	0.663181] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [	0.684226] msgmni has been set to 7502
    [	0.685204] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
    [	0.685349] io scheduler noop registered
    [	0.685526] io scheduler cfq registered (default)
    [	0.686047] intel_idle: MWAIT substates: 0x1120
    [	0.686050] intel_idle: v0.4 model 0x25
    [	0.686051] intel_idle: lapic_timer_reliable_states 0xffffffff
    [	0.686571] ACPI: AC Adapter [AC] (on-line)
    [	0.686839] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
    [	0.687168] ACPI: Lid Switch [LID]
    [	0.687316] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
    [	0.687464] ACPI: Sleep Button [sLPB]
    [	0.687643] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
    [	0.687789] ACPI: Power Button [PWRF]
    [	0.687953] ACPI: acpi_idle yielding to intel_idle
    [	0.690748] thermal LNXTHERM:00: registered as thermal_zone0
    [	0.690848] ACPI: Thermal Zone [THM0] (48 C)
    [	0.691096] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [	0.692006] Non-volatile memory driver v1.3
    [	0.692145] Linux agpgart interface v0.103
    [	0.692334] agpgart-intel 0000:00:00.0: Intel HD Graphics Chipset
    [	0.692723] agpgart-intel 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
    [	0.694138] agpgart-intel 0000:00:00.0: detected 32768K stolen memory
    [	0.694492] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0xd0000000
    [	0.694688] Hangcheck: starting hangcheck timer 0.9.1 (tick is 180 seconds, margin is 60 seconds).
    [	0.694873] Hangcheck: Using getrawmonotonic().
    [	0.695045] [drm] Initialized drm 1.1.0 20060810
    [	0.695179] i915 0000:00:02.0: power state changed by ACPI to D0
    [	0.695281] i915 0000:00:02.0: power state changed by ACPI to D0
    [	0.695437] i915 0000:00:02.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [	0.695598] i915 0000:00:02.0: setting latency timer to 64
    [	0.706991] ACPI: Battery Slot [bAT0] (battery present)
    [	0.781462] i915 0000:00:02.0: irq 40 for MSI/MSI-X
    [	0.781467] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [	0.781573] [drm] Driver supports precise vblank timestamp query.
    [	0.781705] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
    [	1.263526] fbcon: inteldrmfb (fb0) is primary device
    [	1.264570] [drm:ironlake_update_pch_refclk] *ERROR* enabling SSC on PCH
    [	1.428414] Console: switching to colour frame buffer device 160x50
    [	1.431066] fb0: inteldrmfb frame buffer device
    [	1.431090] drm: registered panic notifier
    [	1.441421] acpi device:02: registered as cooling_device4
    [	1.441561] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input3
    [	1.441608] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
    [	1.441705] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [	1.442629] loop: module loaded
    [	1.442810] ahci 0000:00:1f.2: version 3.0
    [	1.442824] ahci 0000:00:1f.2: PCI INT B -> GSI 16 (level, low) -> IRQ 16
    [	1.442902] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
    [	1.442937] ahci: SSS flag set, parallel bus scan disabled
    [	1.443007] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x31 impl SATA mode
    [	1.443046] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst 
    [	1.443091] ahci 0000:00:1f.2: setting latency timer to 64
    [	1.447844] scsi0 : ahci
    [	1.447961] scsi1 : ahci
    [	1.448060] scsi2 : ahci
    [	1.448177] scsi3 : ahci
    [	1.448277] scsi4 : ahci
    [	1.448378] scsi5 : ahci
    [	1.448744] ata1: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727100 irq 41
    [	1.448781] ata2: DUMMY
    [	1.448797] ata3: DUMMY
    [	1.448812] ata4: DUMMY
    [	1.448829] ata5: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727300 irq 41
    [	1.448865] ata6: SATA max UDMA/133 abar m2048@0xf2727000 port 0xf2727380 irq 41
    [	1.449098] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [	1.450526] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
    [	1.451940] ehci_hcd 0000:00:1a.0: power state changed by ACPI to D0
    [	1.453328] ehci_hcd 0000:00:1a.0: PCI INT D -> GSI 23 (level, low) -> IRQ 23
    [	1.454735] ehci_hcd 0000:00:1a.0: setting latency timer to 64
    [	1.454739] ehci_hcd 0000:00:1a.0: EHCI Host Controller
    [	1.456210] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
    [	1.457645] ehci_hcd 0000:00:1a.0: debug port 2
    [	1.462939] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
    [	1.462954] ehci_hcd 0000:00:1a.0: irq 23, io mem 0xf2728000
    [	1.474161] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
    [	1.475601] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
    [	1.476984] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [	1.478359] usb usb1: Product: EHCI Host Controller
    [	1.479718] usb usb1: Manufacturer: Linux 3.1.1-bfs ehci_hcd
    [	1.481067] usb usb1: SerialNumber: 0000:00:1a.0
    [	1.482526] hub 1-0:1.0: USB hub found
    [	1.483890] hub 1-0:1.0: 3 ports detected
    [	1.485276] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
    [	1.486658] ehci_hcd 0000:00:1d.0: power state changed by ACPI to D0
    [	1.488038] ehci_hcd 0000:00:1d.0: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [	1.489414] ehci_hcd 0000:00:1d.0: setting latency timer to 64
    [	1.489417] ehci_hcd 0000:00:1d.0: EHCI Host Controller
    [	1.490809] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
    [	1.492203] ehci_hcd 0000:00:1d.0: debug port 2
    [	1.497438] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
    [	1.497452] ehci_hcd 0000:00:1d.0: irq 19, io mem 0xf2728400
    [	1.508146] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
    [	1.509541] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
    [	1.510887] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
    [	1.512229] usb usb2: Product: EHCI Host Controller
    [	1.513561] usb usb2: Manufacturer: Linux 3.1.1-bfs ehci_hcd
    [	1.514882] usb usb2: SerialNumber: 0000:00:1d.0
    [	1.516314] hub 2-0:1.0: USB hub found
    [	1.517617] hub 2-0:1.0: 3 ports detected
    [	1.518963] uhci_hcd: USB Universal Host Controller Interface driver
    [	1.520343] usbcore: registered new interface driver usblp
    [	1.521653] usbcore: registered new interface driver uas
    [	1.522888] Initializing USB Mass Storage driver...
    [	1.524161] usbcore: registered new interface driver usb-storage
    [	1.525401] USB Mass Storage support registered.
    [	1.526662] usbcore: registered new interface driver libusual
    [	1.527944] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
    [	1.532773] serio: i8042 KBD port at 0x60,0x64 irq 1
    [	1.534038] serio: i8042 AUX port at 0x60,0x64 irq 12
    [	1.535432] mousedev: PS/2 mouse device common for all mice
    [	1.536987] rtc_cmos 00:08: RTC can wake from S4
    [	1.538394] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
    [	1.539704] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
    [	1.540991] i2c /dev entries driver
    [	1.542927] i801_smbus 0000:00:1f.3: PCI INT A -> GSI 23 (level, low) -> IRQ 23
    [	1.543542] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
    [	1.545739] Linux video capture interface: v2.00
    [	1.547136] usbcore: registered new interface driver uvcvideo
    [	1.548457] USB Video Class driver (1.1.1)
    [	1.550548] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.06
    [	1.551990] iTCO_wdt: Found a QM57 TCO device (Version=2, TCOBASE=0x1060)
    [	1.553390] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [	1.554732] iTCO_vendor_support: vendor-support=0
    [	1.556522] cpuidle: using governor ladder
    [	1.558655] cpuidle: using governor menu
    [	1.561717] usbcore: registered new interface driver usbhid
    [	1.563697] usbhid: USB HID core driver
    [	1.567698] thinkpad_acpi: ThinkPad ACPI Extras v0.24
    [	1.569971] thinkpad_acpi: http://ibm-acpi.sf.net/
    [	1.572335] thinkpad_acpi: ThinkPad BIOS 6QET66WW (1.36 ), EC 6QHT33WW-1.14
    [	1.574608] thinkpad_acpi: Lenovo ThinkPad X201, model 3323L7T
    [	1.577979] thinkpad_acpi: detected a 8-level brightness capable ThinkPad
    [	1.579501] thinkpad_acpi: radio switch found; radios are enabled
    [	1.581029] thinkpad_acpi: possible tablet mode switch found; ThinkPad in laptop mode
    [	1.583852] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
    [	1.586460] Registered led device: tpacpi::thinklight
    [	1.586554] Registered led device: tpacpi::power
    [	1.586628] Registered led device: tpacpi::standby
    [	1.586696] Registered led device: tpacpi::thinkvantage
    [	1.589505] thinkpad_acpi: Standard ACPI backlight interface available, not loading native one
    [	1.592309] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
    [	1.596859] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input5
    [	1.598363] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
    [	1.599743] intel ips 0000:00:1f.6: PCI INT D -> GSI 19 (level, low) -> IRQ 19
    [	1.601273] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
    [	1.604134] ALSA device list:
    [	1.605512]   #29: ThinkPad Console Audio Control at EC reg 0x30, fw 6QHT33WW-1.14
    [	1.606927] Netfilter messages via NETLINK v0.30.
    [	1.608416] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
    [	1.610158] ctnetlink v0.93: registering with nfnetlink.
    [	1.611879] ip_tables: (C) 2000-2006 Netfilter Core Team
    [	1.613325] TCP cubic registered
    [	1.614747] NET: Registered protocol family 17
    [	1.654193] Refined TSC clocksource calibration: 2128.003 MHz.
    [	1.655847] Switching to clocksource tsc
    [	1.753163] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [	1.755316] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
    [	1.755324] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
    [	1.756852] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
    [	1.758871] ata1.00: ATA-9: M4-CT128M4SSD2, 0009, max UDMA/100
    [	1.760400] ata1.00: 250069680 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
    [	1.762546] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (unknown) succeeded
    [	1.762551] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (unknown) filtered out
    [	1.764007] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (unknown) filtered out
    [	1.766063] ata1.00: configured for UDMA/100
    [	1.767653] scsi 0:0:0:0: Direct-Access 	ATA  	M4-CT128M4SSD2   0009 PQ: 0 ANSI: 5
    [	1.769261] sd 0:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
    [	1.769347] sd 0:0:0:0: Attached scsi generic sg0 type 0
    [	1.772234] sd 0:0:0:0: [sda] Write Protect is off
    [	1.773672] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
    [	1.773686] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [	1.776917]  sda: sda1 sda2 sda3 sda4 sda5
    [	1.778740] sd 0:0:0:0: [sda] Attached SCSI disk
    [	1.788070] usb 1-1: new high speed USB device number 2 using ehci_hcd
    [	1.903461] usb 1-1: New USB device found, idVendor=8087, idProduct=0020
    [	1.904896] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [	1.906635] hub 1-1:1.0: USB hub found
    [	1.908322] hub 1-1:1.0: 6 ports detected
    [	2.012958] usb 2-1: new high speed USB device number 2 using ehci_hcd
    [	2.075021] ata5: SATA link down (SStatus 0 SControl 300)
    [	2.128619] usb 2-1: New USB device found, idVendor=8087, idProduct=0020
    [	2.130162] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
    [	2.131888] hub 2-1:1.0: USB hub found
    [	2.133494] hub 2-1:1.0: 8 ports detected
    [	2.199065] usb 1-1.4: new full speed USB device number 3 using ehci_hcd
    [	2.279628] usb 1-1.4: New USB device found, idVendor=0a5c, idProduct=217f
    [	2.281377] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
    [	2.282825] usb 1-1.4: Product: Broadcom Bluetooth Device
    [	2.284271] usb 1-1.4: Manufacturer: Broadcom Corp
    [	2.285767] usb 1-1.4: SerialNumber: 002713D7A96C
    [	2.361053] usb 1-1.6: new high speed USB device number 4 using ehci_hcd
    [	2.380816] ata6: SATA link down (SStatus 0 SControl 300)
    [	2.438268] Synaptics Touchpad, model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd047b3/0xb40000/0xa0000
    [	2.439755] serio: Synaptics pass-through port at isa0060/serio1/input0
    [	2.453974] usb 1-1.6: New USB device found, idVendor=17ef, idProduct=4816
    [	2.455439] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
    [	2.456857] usb 1-1.6: Product: Integrated Camera
    [	2.458387] usb 1-1.6: Manufacturer: Chicony Electronics Co., Ltd.
    [	2.460656] uvcvideo: Found UVC 1.00 device Integrated Camera (17ef:4816)
    [	2.495466] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
    [	2.502650] EXT4-fs (sda4): barriers disabled
    [	2.504533] EXT4-fs (sda4): mounted filesystem with writeback data mode. Opts: data=writeback,barrier=0
    [	2.505961] VFS: Mounted root (ext4 filesystem) readonly on device 8:4.
    [	2.507444] Freeing unused kernel memory: 464k freed
    [	2.509034] BFS CPU scheduler v0.415 by Con Kolivas.
    [	2.569013] udevd[1042]: starting version 175
    [	2.610917] e1000e: Intel(R) PRO/1000 Network Driver - 1.4.4-k
    [	2.612942] e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
    [	2.617032] Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:
    [	2.620290] snd_hda_intel 0000:00:1b.0: PCI INT B -> GSI 17 (level, low) -> IRQ 17
    [	2.623783] Copyright(c) 2003-2011 Intel Corporation
    [	2.623808] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X
    [	2.623851] snd_hda_intel 0000:00:1b.0: setting latency timer to 64
    [	2.625793] iwlagn 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
    [	2.627794] iwlagn 0000:02:00.0: setting latency timer to 64
    [	2.627823] iwlagn 0000:02:00.0: pci_resource_len = 0x00002000
    [	2.629836] iwlagn 0000:02:00.0: pci_resource_base = ffffc9000005c000
    [	2.632485] iwlagn 0000:02:00.0: HW Revision ID = 0x2C
    [	2.635054] iwlagn 0000:02:00.0: irq 43 for MSI/MSI-X
    [	2.635101] iwlagn 0000:02:00.0: Detected Intel(R) Centrino(R) Advanced-N 6200 AGN, REV=0x74
    [	2.636894] iwlagn 0000:02:00.0: L1 Disabled; Enabling L0S
    [	2.647120] HDMI status: Codec=3 Pin=5 Presence_Detect=0 ELD_Valid=0
    [	2.651014] e1000e 0000:00:19.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
    [	2.653096] e1000e 0000:00:19.0: setting latency timer to 64
    [	2.653443] e1000e 0000:00:19.0: irq 44 for MSI/MSI-X
    [	2.656803] iwlagn 0000:02:00.0: device EEPROM VER=0x434, CALIB=0x6
    [	2.658835] iwlagn 0000:02:00.0: Device SKU: 0X1f0
    [	2.660507] iwlagn 0000:02:00.0: Tunable channels: 13 802.11bg, 24 802.11a channels
    [	2.675650] iwlagn 0000:02:00.0: loaded firmware version 9.221.4.1 build 25532
    [	2.677378] Registered led device: phy0-led
    [	2.677415] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
    [	2.833159] e1000e 0000:00:19.0: eth0: (PCI Express:2.5GT/s:Width x1) f0:de:f1:19:83:60
    [	2.834658] e1000e 0000:00:19.0: eth0: Intel(R) PRO/1000 Network Connection
    [	2.836230] e1000e 0000:00:19.0: eth0: MAC: 9, PHY: 10, PBA No: A002FF-0FF
    [	2.862126] EXT4-fs (sda4): re-mounted. Opts: discard
    [	8.395887] EXT4-fs (sda4): re-mounted. Opts: discard
    [	8.414172] EXT4-fs (sda4): re-mounted. Opts: discard
    [	8.417742] EXT4-fs (sda1): mounted filesystem without journal. Opts: barrier=0,data=writeback,discard
    [	8.422172] EXT4-fs (sda3): barriers disabled
    [	8.424118] EXT4-fs (sda3): mounted filesystem with writeback data mode. Opts: barrier=0,data=writeback,discard
    [	8.428414] EXT4-fs (sda5): barriers disabled
    [	8.432152] EXT4-fs (sda5): mounted filesystem with writeback data mode. Opts: barrier=0,data=writeback,discard
    [	8.447621] Adding 524284k swap on /dev/sda2.  Priority:-1 extents:1 across:524284k SS

  10. I've got a D-Link DNS-320 and I want to run tranmission on it but am waiting to fix whatever this issue is that is keeping me from mounting a USB drive on the thing

    any log we could use to try to debug this?

    I've got a E3000 running Tomato that I'm sure I could get transmission running on, and the USB works, but I want to get QoS working at some point and I'm afraid QoS + transmission will mean major fail for my low latency app needs, even when upstream is throttled down hard.

    well, i may have misunderstood but QoS is excatly what you need to avoid this "major fail for [...] low latency app needs".

    And every time I end up spending more than an hour on this stuff I can't help but think that I shouldn't have just built myself a real system to do it all and enjoy the ability to expand when necessary. Out more money but less time, and time is money too.

    Cross-building was fun but I ended up using lighttpd on a x86 linux box. just more convenient given what I had to host.

  11. God bless F/OSS.

    After building firmwares from source, now was the time to cross-compile packages, instructions here:

    http://www.nslu2-linux.org/wiki/Optware/AddAPackageToOptware

    There are 4/5 things broken in the toolchain build script but they are super easy to fix. Now I can install an *up-to-date* webserver on my beloved RT-N16.

    <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3

    em@drama:~/slug/optware/ddwrt$ ls builds/

    hiawatha hiawatha_7.7-1_mipsel.ipk libuclibc++ libxml2 libxslt openssl zlib

    <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3 <3

×
×
  • Create New...