* [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop @ 2014-12-16 11:55 Jeremiah Mahler 2014-12-16 12:56 ` Al Viro 0 siblings, 1 reply; 12+ messages in thread From: Jeremiah Mahler @ 2014-12-16 11:55 UTC (permalink / raw) To: Al Viro; +Cc: Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel all, The wireless network interface has become inoperative when running linux-next 20141216 on a Lenovo Carbon X1. It is completely non-existent and `ip addr` doesn't show it. A bisect has found that the bug was introduced by the following commit. commit 9d328afb18f05c25686102ad890a67bb3ca38aab Author: Al Viro <viro@zeniv.linux.org.uk> Date: Thu Dec 11 22:34:21 2014 -0500 spawn PID 1 without CLONE_FS, give kernel threads zero umask Don't give PID 1 init_fs, give it a copy of its own when it's spawned. Then we can make init_fs.umode zero, and have both the PID 1 and everything that gets spawned by call_usermodehelper() set ->fs->umask to old value (0022) early on. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Below is my network interface information. And the iwlwifi modules are being used. $ lspci ... 03:00.0 Network controller: Intel Corporation Centrino Advanced-N 6205 [Taylor Peak] (rev 96) ... And the patch which introduced this bug is included below. >From 9d328afb18f05c25686102ad890a67bb3ca38aab Mon Sep 17 00:00:00 2001 From: Al Viro <viro@zeniv.linux.org.uk> Date: Thu, 11 Dec 2014 22:34:21 -0500 Subject: [PATCH] spawn PID 1 without CLONE_FS, give kernel threads zero umask Don't give PID 1 init_fs, give it a copy of its own when it's spawned. Then we can make init_fs.umode zero, and have both the PID 1 and everything that gets spawned by call_usermodehelper() set ->fs->umask to old value (0022) early on. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> --- fs/fs_struct.c | 2 +- init/main.c | 4 +++- kernel/kmod.c | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/fs/fs_struct.c b/fs/fs_struct.c index 7dca743..2242c40 100644 --- a/fs/fs_struct.c +++ b/fs/fs_struct.c @@ -162,5 +162,5 @@ struct fs_struct init_fs = { .users = 1, .lock = __SPIN_LOCK_UNLOCKED(init_fs.lock), .seq = SEQCNT_ZERO(init_fs.seq), - .umask = 0022, + .umask = 0, }; diff --git a/init/main.c b/init/main.c index 40240c8..3a169a2 100644 --- a/init/main.c +++ b/init/main.c @@ -79,6 +79,7 @@ #include <linux/random.h> #include <linux/list.h> #include <linux/proc_ns.h> +#include <linux/fs_struct.h> #include <asm/io.h> #include <asm/bugs.h> @@ -401,7 +402,7 @@ static noinline void __init_refok rest_init(void) * the init task will end up wanting to create kthreads, which, if * we schedule it before we create kthreadd, will OOPS. */ - kernel_thread(kernel_init, NULL, CLONE_FS); + kernel_thread(kernel_init, NULL, 0); numa_default_policy(); pid = kernel_thread(kthreadd, NULL, CLONE_FS | CLONE_FILES); rcu_read_lock(); @@ -933,6 +934,7 @@ static int __ref kernel_init(void *unused) { int ret; + current->fs->umask = 0022; kernel_init_freeable(); /* need to finish all async __init code before freeing the memory */ async_synchronize_full(); diff --git a/kernel/kmod.c b/kernel/kmod.c index 80f7a6d..8879506 100644 --- a/kernel/kmod.c +++ b/kernel/kmod.c @@ -39,6 +39,7 @@ #include <linux/rwsem.h> #include <linux/ptrace.h> #include <linux/async.h> +#include <linux/fs_struct.h> #include <asm/uaccess.h> #include <trace/events/module.h> @@ -227,6 +228,7 @@ static int ____call_usermodehelper(void *data) struct cred *new; int retval; + current->fs->umask = 0022; spin_lock_irq(¤t->sighand->siglock); flush_signal_handlers(current, 1); spin_unlock_irq(¤t->sighand->siglock); -- 2.1.3 Let me know if I can provided any further information that would be helpful. -- - Jeremiah Mahler ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 11:55 [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop Jeremiah Mahler @ 2014-12-16 12:56 ` Al Viro 2014-12-16 13:28 ` Al Viro 0 siblings, 1 reply; 12+ messages in thread From: Al Viro @ 2014-12-16 12:56 UTC (permalink / raw) To: Jeremiah Mahler, Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel On Tue, Dec 16, 2014 at 03:55:37AM -0800, Jeremiah Mahler wrote: > all, > > The wireless network interface has become inoperative when running > linux-next 20141216 on a Lenovo Carbon X1. It is completely > non-existent and `ip addr` doesn't show it. A bisect has found that > the bug was introduced by the following commit. Very interesting. What userland are you running? I take it, the root filesystem is mounted and system boot except for that interface not coming up, right? Your card is normally handled by what, iwlwifi? What happens upon modprobe iwlwifi (or whatever module you see loaded on the normal boot)? Another interesting question is whether it manages to load the firmware... What happens if you boot with debug in kernel command line, with working and with non-working kernels resp.? ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 12:56 ` Al Viro @ 2014-12-16 13:28 ` Al Viro 2014-12-16 14:09 ` Jeremiah Mahler 0 siblings, 1 reply; 12+ messages in thread From: Al Viro @ 2014-12-16 13:28 UTC (permalink / raw) To: Jeremiah Mahler, Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel On Tue, Dec 16, 2014 at 12:56:15PM +0000, Al Viro wrote: > On Tue, Dec 16, 2014 at 03:55:37AM -0800, Jeremiah Mahler wrote: > > all, > > > > The wireless network interface has become inoperative when running > > linux-next 20141216 on a Lenovo Carbon X1. It is completely > > non-existent and `ip addr` doesn't show it. A bisect has found that > > the bug was introduced by the following commit. > > Very interesting. What userland are you running? I take it, the root > filesystem is mounted and system boot except for that interface not > coming up, right? > > Your card is normally handled by what, iwlwifi? What happens upon > modprobe iwlwifi (or whatever module you see loaded on the normal > boot)? Another interesting question is whether it manages to load > the firmware... What happens if you boot with debug in kernel command > line, with working and with non-working kernels resp.? Hmm... OK, I think I see what might be going on. On the testbox here I've got pivot_root(2) done from /init on initramfs. And that triggers chroot_fs_refs(), which switches init_fs.{root,pwd} to the final rootfs. In your case it apparently isn't triggered (different userland or setup, perhaps) and init_fs is left behind on initramfs. With some files (firmware?) not being there... Could you check if the following kludge helps? It's not intended as a solution, I just want to verify that guess about the mechanism of the problem... diff --git a/init/main.c b/init/main.c index 3a169a2..36c29d6 100644 --- a/init/main.c +++ b/init/main.c @@ -80,6 +80,8 @@ #include <linux/list.h> #include <linux/proc_ns.h> #include <linux/fs_struct.h> +#include "../fs/internal.h" // HACK +#include <linux/init_task.h> // HACK #include <asm/io.h> #include <asm/bugs.h> @@ -1024,6 +1026,15 @@ static noinline void __init kernel_init_freeable(void) if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) { ramdisk_execute_command = NULL; prepare_namespace(); + { + /* HACK */ + struct path old, new; + get_fs_root(current->fs, &new); + get_fs_root(&init_fs, &old); + chroot_fs_refs(&old, &new); + path_put(&old); + path_put(&new); + } } /* ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 13:28 ` Al Viro @ 2014-12-16 14:09 ` Jeremiah Mahler 2014-12-16 14:25 ` Al Viro 0 siblings, 1 reply; 12+ messages in thread From: Jeremiah Mahler @ 2014-12-16 14:09 UTC (permalink / raw) To: Al Viro; +Cc: Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel Al Viro, On Tue, Dec 16, 2014 at 01:28:21PM +0000, Al Viro wrote: > On Tue, Dec 16, 2014 at 12:56:15PM +0000, Al Viro wrote: > > On Tue, Dec 16, 2014 at 03:55:37AM -0800, Jeremiah Mahler wrote: > > > all, > > > > > > The wireless network interface has become inoperative when running > > > linux-next 20141216 on a Lenovo Carbon X1. It is completely > > > non-existent and `ip addr` doesn't show it. A bisect has found that > > > the bug was introduced by the following commit. > > > > Very interesting. What userland are you running? I take it, the root > > filesystem is mounted and system boot except for that interface not > > coming up, right? > > > > Your card is normally handled by what, iwlwifi? What happens upon > > modprobe iwlwifi (or whatever module you see loaded on the normal > > boot)? Another interesting question is whether it manages to load > > the firmware... What happens if you boot with debug in kernel command > > line, with working and with non-working kernels resp.? > > Hmm... OK, I think I see what might be going on. On the testbox here > I've got pivot_root(2) done from /init on initramfs. And that triggers > chroot_fs_refs(), which switches init_fs.{root,pwd} to the final rootfs. > In your case it apparently isn't triggered (different userland or setup, > perhaps) and init_fs is left behind on initramfs. With some files > (firmware?) not being there... Could you check if the following kludge > helps? It's not intended as a solution, I just want to verify that guess > about the mechanism of the problem... > > diff --git a/init/main.c b/init/main.c > index 3a169a2..36c29d6 100644 > --- a/init/main.c > +++ b/init/main.c > @@ -80,6 +80,8 @@ > #include <linux/list.h> > #include <linux/proc_ns.h> > #include <linux/fs_struct.h> > +#include "../fs/internal.h" // HACK > +#include <linux/init_task.h> // HACK > > #include <asm/io.h> > #include <asm/bugs.h> > @@ -1024,6 +1026,15 @@ static noinline void __init kernel_init_freeable(void) > if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) { > ramdisk_execute_command = NULL; > prepare_namespace(); > + { > + /* HACK */ > + struct path old, new; > + get_fs_root(current->fs, &new); > + get_fs_root(&init_fs, &old); > + chroot_fs_refs(&old, &new); > + path_put(&old); > + path_put(&new); > + } > } > > /* I tested the bad commit with your patch applied but it made no difference, the wireless is still down. Not sure if it helps, but the dmesg is included below. There are errors about not being able to load the firmware that look interesting. [ 0.000000] CPU0 microcode updated early to revision 0x1b, date = 2014-05-29 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 3.18.0-rc6+ (jeri@hudson) (gcc version 4.9.2 (Debian 4.9.2-7) ) #203 SMP Tue Dec 16 05:57:50 PST 2014 [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.18.0-rc6+ root=UUID=ce693de1-b8f1-4176-9dda-e3afdbf43a6f ro quiet [ 0.000000] e820: BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000ced48fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000ced49000-0x00000000dae9efff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000dae9f000-0x00000000daf9efff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data [ 0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000df9fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011e5fffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: LENOVO 3443CTO/3443CTO, BIOS G6ET59WW (2.03 ) 09/11/2012 [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000000] AGP: No AGP bridge found [ 0.000000] e820: last_pfn = 0x11e600 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 base 0FFC00000 mask FFFC00000 write-protect [ 0.000000] 1 base 000000000 mask F80000000 write-back [ 0.000000] 2 base 080000000 mask FC0000000 write-back [ 0.000000] 3 base 0C0000000 mask FE0000000 write-back [ 0.000000] 4 base 0DC000000 mask FFC000000 uncachable [ 0.000000] 5 base 0DB000000 mask FFF000000 uncachable [ 0.000000] 6 base 100000000 mask FE0000000 write-back [ 0.000000] 7 base 11F000000 mask FFF000000 uncachable [ 0.000000] 8 base 11E800000 mask FFF800000 uncachable [ 0.000000] 9 base 11E600000 mask FFFE00000 uncachable [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] e820: last_pfn = 0xced49 max_arch_pfn = 0x400000000 [ 0.000000] found SMP MP-table at [mem 0x000f0100-0x000f010f] mapped at [ffff8800000f0100] [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576 [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff] [ 0.000000] [mem 0x00000000-0x000fffff] page 4k [ 0.000000] BRK [0x01b18000, 0x01b18fff] PGTABLE [ 0.000000] BRK [0x01b19000, 0x01b19fff] PGTABLE [ 0.000000] BRK [0x01b1a000, 0x01b1afff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x11e400000-0x11e5fffff] [ 0.000000] [mem 0x11e400000-0x11e5fffff] page 2M [ 0.000000] BRK [0x01b1b000, 0x01b1bfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x11c000000-0x11e3fffff] [ 0.000000] [mem 0x11c000000-0x11e3fffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x100000000-0x11bffffff] [ 0.000000] [mem 0x100000000-0x11bffffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff] [ 0.000000] [mem 0x00100000-0x001fffff] page 4k [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff] [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M [ 0.000000] [mem 0x40000000-0x40003fff] page 4k [ 0.000000] BRK [0x01b1c000, 0x01b1cfff] PGTABLE [ 0.000000] BRK [0x01b1d000, 0x01b1dfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x40005000-0xced48fff] [ 0.000000] [mem 0x40005000-0x401fffff] page 4k [ 0.000000] [mem 0x40200000-0xcebfffff] page 2M [ 0.000000] [mem 0xcec00000-0xced48fff] page 4k [ 0.000000] RAMDISK: [mem 0x35368000-0x369abfff] [ 0.000000] ACPI: Early table checksum verification disabled [ 0.000000] ACPI: RSDP 0x00000000000F0120 000024 (v02 LENOVO) [ 0.000000] ACPI: XSDT 0x00000000DAFFE170 0000CC (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: FACP 0x00000000DAFE7000 00010C (v05 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: DSDT 0x00000000DAFE9000 00FB6A (v01 LENOVO TP-G6 00002030 INTL 20061109) [ 0.000000] ACPI: FACS 0x00000000DAF5A000 000040 [ 0.000000] ACPI: SLIC 0x00000000DAFFD000 000176 (v01 LENOVO TP-G6 00002030 PTL 00000001) [ 0.000000] ACPI: TCPA 0x00000000DAFFC000 000032 (v02 PTL LENOVO 06040000 LNVO 00000001) [ 0.000000] ACPI: SSDT 0x00000000DAFFB000 000408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109) [ 0.000000] ACPI: SSDT 0x00000000DAFFA000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109) [ 0.000000] ACPI: SSDT 0x00000000DAFF9000 000797 (v01 LENOVO SataAhci 00001000 INTL 20061109) [ 0.000000] ACPI: HPET 0x00000000DAFE5000 000038 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: APIC 0x00000000DAFE4000 000098 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: MCFG 0x00000000DAFE3000 00003C (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: ECDT 0x00000000DAFE2000 000052 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: FPDT 0x00000000DAFE1000 000064 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: ASF! 0x00000000DAFE8000 0000A5 (v32 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: UEFI 0x00000000DAFE0000 00003E (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: UEFI 0x00000000DAFDF000 000042 (v01 PTL COMBUF 00000001 PTL 00000001) [ 0.000000] ACPI: POAT 0x00000000DAFDE000 000055 (v03 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: SSDT 0x00000000DAFDD000 000C1A (v01 PmRef Cpu0Ist 00003000 INTL 20061109) [ 0.000000] ACPI: SSDT 0x00000000DAFDC000 000A7E (v01 PmRef CpuPm 00003000 INTL 20061109) [ 0.000000] ACPI: DMAR 0x00000000DAFDB000 0000B8 (v01 INTEL SNB 00000001 INTL 00000001) [ 0.000000] ACPI: UEFI 0x00000000DAFDA000 0002A6 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: SSDT 0x00000000DAFD9000 000379 (v01 LENOVO AoacTabl 00001000 INTL 20061109) [ 0.000000] ACPI: DBG2 0x00000000DAFD8000 0000B4 (v00 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000011e5fffff] [ 0.000000] NODE_DATA(0) allocated [mem 0x11e5f8000-0x11e5fcfff] [ 0.000000] [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff88011a000000-ffff88011d5fffff] on node 0 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x00001000-0x00ffffff] [ 0.000000] DMA32 [mem 0x01000000-0xffffffff] [ 0.000000] Normal [mem 0x100000000-0x11e5fffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x00001000-0x0009cfff] [ 0.000000] node 0: [mem 0x00100000-0x1fffffff] [ 0.000000] node 0: [mem 0x20200000-0x40003fff] [ 0.000000] node 0: [mem 0x40005000-0xced48fff] [ 0.000000] node 0: [mem 0x100000000-0x11e5fffff] [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x11e5fffff] [ 0.000000] On node 0 totalpages: 970980 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 21 pages reserved [ 0.000000] DMA zone: 3996 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 11520 pages used for memmap [ 0.000000] DMA32 zone: 842568 pages, LIFO batch:31 [ 0.000000] Normal zone: 1701 pages used for memmap [ 0.000000] Normal zone: 124416 pages, LIFO batch:31 [ 0.000000] Reserving Intel graphics stolen memory at 0xdba00000-0xdf9fffff [ 0.000000] ACPI: PM-Timer IO Port: 0x408 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled) [ 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: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, 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: IRQ9 used by override. [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff] [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff] [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff] [ 0.000000] PM: Registered nosave memory: [mem 0xced49000-0xdae9efff] [ 0.000000] PM: Registered nosave memory: [mem 0xdae9f000-0xdaf9efff] [ 0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff] [ 0.000000] PM: Registered nosave memory: [mem 0xdafff000-0xdf9fffff] [ 0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff] [ 0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff88011e200000 s83648 r8192 d31040 u262144 [ 0.000000] pcpu-alloc: s83648 r8192 d31040 u262144 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 957682 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.18.0-rc6+ root=UUID=ce693de1-b8f1-4176-9dda-e3afdbf43a6f ro quiet [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form [ 0.000000] AGP: Checking aperture... [ 0.000000] AGP: No AGP bridge found [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 3726868K/3883920K available (5319K kernel code, 1043K rwdata, 1816K rodata, 1212K init, 880K bss, 157052K reserved) [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. [ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8. [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8 [ 0.000000] NR_IRQS:33024 nr_irqs:488 0 [ 0.000000] Console: colour VGA+ 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] hpet clockevent registered [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 2494.307 MHz processor [ 0.000044] Calibrating delay loop (skipped), value calculated using timer frequency.. 4988.61 BogoMIPS (lpj=9977228) [ 0.000047] pid_max: default: 32768 minimum: 301 [ 0.000057] ACPI: Core revision 20140926 [ 0.016124] ACPI: All ACPI Tables successfully acquired [ 0.017080] Security Framework initialized [ 0.017089] AppArmor: AppArmor disabled by boot time parameter [ 0.017090] Yama: becoming mindful. [ 0.017406] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) [ 0.018694] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.019276] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.019284] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.019547] Initializing cgroup subsys devices [ 0.019551] Initializing cgroup subsys freezer [ 0.019554] Initializing cgroup subsys net_cls [ 0.019557] Initializing cgroup subsys blkio [ 0.019559] Initializing cgroup subsys perf_event [ 0.019563] Initializing cgroup subsys net_prio [ 0.019596] CPU: Physical Processor ID: 0 [ 0.019597] CPU: Processor Core ID: 0 [ 0.019602] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8) [ 0.020091] mce: CPU supports 7 MCE banks [ 0.020104] CPU0: Thermal monitoring enabled (TM1) [ 0.020114] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0 [ 0.020247] Freeing SMP alternatives memory: 20K (ffffffff81a35000 - ffffffff81a3a000) [ 0.021294] ftrace: allocating 21491 entries in 84 pages [ 0.032583] dmar: Host address width 36 [ 0.032585] dmar: DRHD base: 0x000000fed90000 flags: 0x0 [ 0.032592] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a [ 0.032593] dmar: DRHD base: 0x000000fed91000 flags: 0x1 [ 0.032598] dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a [ 0.032599] dmar: RMRR base: 0x000000da3ba000 end: 0x000000da3d0fff [ 0.032601] dmar: RMRR base: 0x000000db800000 end: 0x000000df9fffff [ 0.032676] IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1 [ 0.032678] HPET id 0 under DRHD base 0xfed91000 [ 0.032679] Queued invalidation will be enabled to support x2apic and Intr-remapping. [ 0.032856] Enabled IRQ remapping in x2apic mode [ 0.032858] Enabling x2apic [ 0.032859] Enabled x2apic [ 0.032867] Switched APIC routing to cluster x2apic. [ 0.033334] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.073063] smpboot: CPU0: Intel(R) Core(TM) i7-3667U CPU @ 2.00GHz (fam: 06, model: 3a, stepping: 09) [ 0.073075] TSC deadline timer enabled [ 0.073103] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver. [ 0.073127] ... version: 3 [ 0.073129] ... bit width: 48 [ 0.073130] ... generic registers: 4 [ 0.073131] ... value mask: 0000ffffffffffff [ 0.073132] ... max period: 0000ffffffffffff [ 0.073133] ... fixed-purpose events: 3 [ 0.073134] ... event mask: 000000070000000f [ 0.074781] x86: Booting SMP configuration: [ 0.074784] .... node #0, CPUs: #1 [ 0.088558] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter. [ 0.088672] #2 [ 0.100078] CPU2 microcode updated early to revision 0x1b, date = 2014-05-29 [ 0.102854] #3 [ 0.116437] x86: Booted up 1 node, 4 CPUs [ 0.116441] smpboot: Total of 4 processors activated (19954.45 BogoMIPS) [ 0.121221] devtmpfs: initialized [ 0.124206] PM: Registering ACPI NVS region [mem 0xdae9f000-0xdaf9efff] (1048576 bytes) [ 0.125357] pinctrl core: initialized pinctrl subsystem [ 0.125485] NET: Registered protocol family 16 [ 0.137025] cpuidle: using governor ladder [ 0.146828] cpuidle: using governor menu [ 0.146901] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 0.146903] ACPI: bus type PCI registered [ 0.146905] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.147112] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) [ 0.147115] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820 [ 0.147209] PCI: Using configuration type 1 for base access [ 0.157592] ACPI: Added _OSI(Module Device) [ 0.157595] ACPI: Added _OSI(Processor Device) [ 0.157596] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.157598] ACPI: Added _OSI(Processor Aggregator Device) [ 0.159426] ACPI : EC: EC description table is found, configuring boot EC [ 0.164959] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored [ 0.213927] ACPI: Dynamic OEM Table Load: [ 0.213946] ACPI: SSDT 0xFFFF88011901D000 000A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109) [ 0.229515] ACPI: Dynamic OEM Table Load: [ 0.229532] ACPI: SSDT 0xFFFF880119732000 000303 (v01 PmRef ApIst 00003000 INTL 20061109) [ 0.239116] ACPI: Dynamic OEM Table Load: [ 0.239131] ACPI: SSDT 0xFFFF880119060E00 000119 (v01 PmRef ApCst 00003000 INTL 20061109) [ 0.250018] ACPI: Interpreter enabled [ 0.250025] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140926/hwxface-580) [ 0.250030] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140926/hwxface-580) [ 0.250046] ACPI: (supports S0 S3 S4 S5) [ 0.250048] ACPI: Using IOAPIC for interrupt routing [ 0.250078] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.261774] ACPI: Power Resource [PUBS] (on) [ 0.262462] acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1) [ 0.263533] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2) [ 0.266554] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11) [ 0.266659] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11) [ 0.266761] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11) [ 0.266858] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 9 10 11) [ 0.266939] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled. [ 0.267039] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 *10 11) [ 0.267140] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 9 10 11) [ 0.267242] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11) [ 0.267354] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f]) [ 0.267360] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 0.267499] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability] [ 0.267561] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability] [ 0.267564] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability] [ 0.267566] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER] [ 0.267568] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM [ 0.267763] PCI host bridge to bus 0000:00 [ 0.267766] pci_bus 0000:00: root bus resource [bus 00-3f] [ 0.267769] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] [ 0.267771] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff] [ 0.267773] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] [ 0.267775] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfebfffff] [ 0.267777] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff] [ 0.267785] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000 [ 0.267890] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000 [ 0.267903] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit] [ 0.267911] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref] [ 0.267916] pci 0000:00:02.0: reg 0x20: [io 0x4000-0x403f] [ 0.268036] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330 [ 0.268062] pci 0000:00:14.0: reg 0x10: [mem 0xf1500000-0xf150ffff 64bit] [ 0.268144] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.268181] pci 0000:00:14.0: System wakeup disabled by ACPI [ 0.268244] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000 [ 0.268270] pci 0000:00:16.0: reg 0x10: [mem 0xf1515000-0xf151500f 64bit] [ 0.268357] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 0.268448] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002 [ 0.268469] pci 0000:00:16.3: reg 0x10: [io 0x4090-0x4097] [ 0.268481] pci 0000:00:16.3: reg 0x14: [mem 0xf151b000-0xf151bfff] [ 0.268647] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320 [ 0.268672] pci 0000:00:1a.0: reg 0x10: [mem 0xf151a000-0xf151a3ff] [ 0.268773] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 0.268811] pci 0000:00:1a.0: System wakeup disabled by ACPI [ 0.268870] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300 [ 0.268890] pci 0000:00:1b.0: reg 0x10: [mem 0xf1510000-0xf1513fff 64bit] [ 0.268976] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.269020] pci 0000:00:1b.0: System wakeup disabled by ACPI [ 0.269080] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400 [ 0.269220] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.269326] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400 [ 0.269473] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold [ 0.269521] pci 0000:00:1c.1: System wakeup disabled by ACPI [ 0.269593] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320 [ 0.269617] pci 0000:00:1d.0: reg 0x10: [mem 0xf1519000-0xf15193ff] [ 0.269719] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.269758] pci 0000:00:1d.0: System wakeup disabled by ACPI [ 0.269814] pci 0000:00:1f.0: [8086:1e56] type 00 class 0x060100 [ 0.270007] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601 [ 0.270029] pci 0000:00:1f.2: reg 0x10: [io 0x4088-0x408f] [ 0.270040] pci 0000:00:1f.2: reg 0x14: [io 0x409c-0x409f] [ 0.270048] pci 0000:00:1f.2: reg 0x18: [io 0x4080-0x4087] [ 0.270057] pci 0000:00:1f.2: reg 0x1c: [io 0x4098-0x409b] [ 0.270067] pci 0000:00:1f.2: reg 0x20: [io 0x4060-0x407f] [ 0.270076] pci 0000:00:1f.2: reg 0x24: [mem 0xf1518000-0xf15187ff] [ 0.270129] pci 0000:00:1f.2: PME# supported from D3hot [ 0.270215] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500 [ 0.270233] pci 0000:00:1f.3: reg 0x10: [mem 0xf1514000-0xf15140ff 64bit] [ 0.270256] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf] [ 0.270619] pci 0000:02:00.0: [1180:e822] type 00 class 0x088001 [ 0.270643] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz. [ 0.270671] pci 0000:02:00.0: reg 0x10: [mem 0xf0d00000-0xf0d000ff] [ 0.270914] pci 0000:02:00.0: supports D1 D2 [ 0.270916] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.277591] pci 0000:00:1c.0: PCI bridge to [bus 02] [ 0.277597] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff] [ 0.277602] pci 0000:00:1c.0: bridge window [mem 0xf0d00000-0xf14fffff] [ 0.277611] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.277869] pci 0000:03:00.0: [8086:0085] type 00 class 0x028000 [ 0.278071] pci 0000:03:00.0: reg 0x10: [mem 0xf0c00000-0xf0c01fff 64bit] [ 0.278881] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold [ 0.285541] pci 0000:00:1c.1: PCI bridge to [bus 03] [ 0.285550] pci 0000:00:1c.1: bridge window [mem 0xf0c00000-0xf0cfffff] [ 0.286845] ACPI: Enabled 4 GPEs in block 00 to 3F [ 0.286921] ACPI : EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62 [ 0.287053] vgaarb: setting as boot device: PCI:0000:00:02.0 [ 0.287056] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none [ 0.287059] vgaarb: loaded [ 0.287060] vgaarb: bridge control possible 0000:00:02.0 [ 0.287136] PCI: Using ACPI for IRQ routing [ 0.288871] PCI: pci_cache_line_size set to 64 bytes [ 0.289239] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff] [ 0.289241] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff] [ 0.289242] e820: reserve RAM buffer [mem 0xced49000-0xcfffffff] [ 0.289244] e820: reserve RAM buffer [mem 0x11e600000-0x11fffffff] [ 0.289422] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.289428] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 0.291465] Switched to clocksource hpet [ 0.298995] pnp: PnP ACPI init [ 0.299518] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved [ 0.299521] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved [ 0.299523] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved [ 0.299525] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved [ 0.299527] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved [ 0.299530] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved [ 0.299532] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved [ 0.299534] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved [ 0.299536] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved [ 0.299538] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved [ 0.299541] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved [ 0.299543] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved [ 0.299545] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved [ 0.299547] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved [ 0.299549] system 00:00: [mem 0x00100000-0xdf9fffff] could not be reserved [ 0.299552] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved [ 0.299554] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved [ 0.299558] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) [ 0.299660] pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff] [ 0.299686] system 00:01: [io 0x0400-0x047f] could not be reserved [ 0.299688] system 00:01: [io 0x0500-0x057f] has been reserved [ 0.299691] system 00:01: [io 0x0800-0x080f] has been reserved [ 0.299693] system 00:01: [io 0x15e0-0x15ef] has been reserved [ 0.299695] system 00:01: [io 0x1600-0x167f] has been reserved [ 0.299698] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved [ 0.299700] system 00:01: [mem 0xfffff000-0xffffffff] has been reserved [ 0.299703] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 0.299705] system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved [ 0.299707] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.299710] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.299712] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved [ 0.299715] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.299790] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.299830] pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active) [ 0.299867] pnp 00:04: Plug and Play ACPI device, IDs LEN0030 PNP0f13 (active) [ 0.299925] pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active) [ 0.300397] pnp: PnP ACPI: found 6 devices [ 0.307736] pci 0000:00:1c.0: PCI bridge to [bus 02] [ 0.307744] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff] [ 0.307751] pci 0000:00:1c.0: bridge window [mem 0xf0d00000-0xf14fffff] [ 0.307757] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.307766] pci 0000:00:1c.1: PCI bridge to [bus 03] [ 0.307773] pci 0000:00:1c.1: bridge window [mem 0xf0c00000-0xf0cfffff] [ 0.307786] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] [ 0.307788] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] [ 0.307790] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] [ 0.307792] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfebfffff] [ 0.307794] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff] [ 0.307796] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff] [ 0.307798] pci_bus 0000:02: resource 1 [mem 0xf0d00000-0xf14fffff] [ 0.307800] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.307802] pci_bus 0000:03: resource 1 [mem 0xf0c00000-0xf0cfffff] [ 0.307870] NET: Registered protocol family 2 [ 0.308079] TCP established hash table entries: 32768 (order: 6, 262144 bytes) [ 0.308209] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes) [ 0.308480] TCP: Hash tables configured (established 32768 bind 32768) [ 0.308500] TCP: reno registered [ 0.308515] UDP hash table entries: 2048 (order: 5, 196608 bytes) [ 0.308579] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes) [ 0.308715] NET: Registered protocol family 1 [ 0.308732] pci 0000:00:02.0: Video device with shadowed ROM [ 0.309267] PCI: CLS 64 bytes, default 64 [ 0.309319] Unpacking initramfs... [ 0.780435] Freeing initrd memory: 22800K (ffff880035368000 - ffff8800369ac000) [ 0.780476] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.780478] software IO TLB [mem 0xcad49000-0xced49000] (64MB) mapped at [ffff8800cad49000-ffff8800ced48fff] [ 0.780759] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer [ 0.780891] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1b [ 0.780901] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1b [ 0.780912] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1b [ 0.780922] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1b [ 0.780987] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba [ 0.781370] futex hash table entries: 2048 (order: 5, 131072 bytes) [ 0.781434] audit: initializing netlink subsys (disabled) [ 0.781453] audit: type=2000 audit(1418713133.772:1): initialized [ 0.781928] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 0.781955] zpool: loaded [ 0.781958] zbud: loaded [ 0.782148] VFS: Disk quotas dquot_6.5.2 [ 0.782173] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.782244] msgmni has been set to 7323 [ 0.782731] alg: No test for stdrng (krng) [ 0.782775] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) [ 0.782837] io scheduler noop registered [ 0.782844] io scheduler deadline registered [ 0.782864] io scheduler cfq registered (default) [ 0.783258] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 0.783279] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 0.783339] intel_idle: MWAIT substates: 0x21120 [ 0.783341] intel_idle: v0.4 model 0x3A [ 0.783342] intel_idle: lapic_timer_reliable_states 0xffffffff [ 0.783634] GHES: HEST is not enabled! [ 0.783726] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.804532] serial 0000:00:16.3: ttyS0 at I/O 0x4090 (irq = 19, base_baud = 115200) is a 16550A [ 0.804796] Linux agpgart interface v0.103 [ 0.804933] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 0.807213] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 0.807219] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 0.807444] mousedev: PS/2 mouse device common for all mice [ 0.807502] rtc_cmos 00:02: RTC can wake from S4 [ 0.807710] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0 [ 0.807744] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 0.807762] Intel P-state driver initializing. [ 0.808109] ledtrig-cpu: registered to indicate activity on CPUs [ 0.808867] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 [ 0.809935] AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com> [ 0.809938] AMD IOMMUv2 functionality not available on this system [ 0.810174] TCP: cubic registered [ 0.810324] NET: Registered protocol family 10 [ 0.810949] mip6: Mobile IPv6 [ 0.810959] NET: Registered protocol family 17 [ 0.810974] mpls_gso: MPLS GSO support [ 0.812156] registered taskstats version 1 [ 0.813695] rtc_cmos 00:02: setting system clock to 2014-12-16 06:58:54 UTC (1418713134) [ 0.816090] Freeing unused kernel memory: 1212K (ffffffff81906000 - ffffffff81a35000) [ 0.816106] Write protecting the kernel read-only data: 8192k [ 0.820481] Freeing unused kernel memory: 812K (ffff880001535000 - ffff880001600000) [ 0.821734] Freeing unused kernel memory: 232K (ffff8800017c6000 - ffff880001800000) [ 0.842608] systemd-udevd[74]: starting version 215 [ 0.843301] random: systemd-udevd urandom read with 4 bits of entropy available [ 0.863423] thermal LNXTHERM:00: registered as thermal_zone0 [ 0.863426] ACPI: Thermal Zone [THM0] (60 C) [ 0.864070] sdhci: Secure Digital Host Controller Interface driver [ 0.864072] sdhci: Copyright(c) Pierre Ossman [ 0.864444] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e822] (rev 7) [ 0.864827] sdhci-pci 0000:02:00.0: No vmmc regulator found [ 0.864829] sdhci-pci 0000:02:00.0: No vqmmc regulator found [ 0.866291] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA [ 0.869384] SCSI subsystem initialized [ 0.871038] libata version 3.00 loaded. [ 0.871902] ahci 0000:00:1f.2: version 3.0 [ 0.872018] ahci 0000:00:1f.2: irq 26 for MSI/MSI-X [ 0.872059] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode [ 0.872061] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst [ 0.873823] scsi host0: ahci [ 0.873930] scsi host1: ahci [ 0.874261] scsi host2: ahci [ 0.874493] scsi host3: ahci [ 0.874746] scsi host4: ahci [ 0.874874] scsi host5: ahci [ 0.875028] ata1: SATA max UDMA/133 abar m2048@0xf1518000 port 0xf1518100 irq 26 [ 0.875030] ata2: DUMMY [ 0.875032] ata3: DUMMY [ 0.875033] ata4: DUMMY [ 0.875034] ata5: DUMMY [ 0.875035] ata6: DUMMY [ 1.192660] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.193347] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded [ 1.193358] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out [ 1.197062] ata1.00: ATA-8: SanDisk SD5SG2256G1052E, 10.02.01, max UDMA/133 [ 1.197070] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA [ 1.197844] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded [ 1.197854] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out [ 1.198918] ata1.00: configured for UDMA/133 [ 1.199434] scsi 0:0:0:0: Direct-Access ATA SanDisk SD5SG225 2.01 PQ: 0 ANSI: 5 [ 1.207402] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB) [ 1.207681] sd 0:0:0:0: [sda] Write Protect is off [ 1.207689] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.207767] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.209221] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 > [ 1.210400] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.211893] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 1.275813] PM: Starting manual resume from disk [ 1.330807] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null) [ 1.521380] systemd[1]: RTC configured in localtime, applying delta of -480 minutes to system time. [ 1.717865] systemd[1]: Cannot add dependency job for unit slcand.service, ignoring: Unit slcand.service failed to load: No such file or directory. [ 1.752743] fuse init (API version 7.23) [ 1.759866] loop: module loaded [ 1.781191] tsc: Refined TSC clocksource calibration: 2494.340 MHz [ 1.795497] systemd-udevd[200]: starting version 215 [ 1.886385] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro,discard [ 2.014428] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2 [ 2.014559] ACPI: Lid Switch [LID] [ 2.017653] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3 [ 2.017659] ACPI: Sleep Button [SLPB] [ 2.017727] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4 [ 2.017730] ACPI: Power Button [PWRF] [ 2.040825] ACPI: AC Adapter [AC] (on-line) [ 2.041562] mei_me 0000:00:16.0: irq 27 for MSI/MSI-X [ 2.048392] ACPI: Battery Slot [BAT0] (battery present) [ 2.051532] Non-volatile memory driver v1.3 [ 2.052209] wmi: Mapper loaded [ 2.052744] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\_SB_.PCI0.LPC_.PMIO) (20140926/utaddress-258) [ 2.052749] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.052754] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140926/utaddress-258) [ 2.052757] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.052759] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140926/utaddress-258) [ 2.052763] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.052764] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140926/utaddress-258) [ 2.052768] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.052769] lpc_ich: Resource conflict(s) found affecting gpio_ich [ 2.055791] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.058682] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt [ 2.061894] input: PC Speaker as /devices/platform/pcspkr/input/input5 [ 2.067342] tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78) [ 2.068798] thinkpad_acpi: ThinkPad ACPI Extras v0.25 [ 2.068800] thinkpad_acpi: http://ibm-acpi.sf.net/ [ 2.068801] thinkpad_acpi: ThinkPad BIOS G6ET59WW (2.03 ), EC unknown [ 2.068802] thinkpad_acpi: Lenovo ThinkPad X1 Carbon, model 3443CTO [ 2.069130] thinkpad_acpi: Unsupported brightness interface, please contact ibm-acpi-devel@lists.sourceforge.net [ 2.069299] thinkpad_acpi: radio switch found; radios are enabled [ 2.069408] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver [ 2.069410] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default... [ 2.070977] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked [ 2.071430] thinkpad_acpi: Console audio control enabled, mode: monitor (read only) [ 2.072870] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6 [ 2.074917] ACPI: bus type USB registered [ 2.074942] usbcore: registered new interface driver usbfs [ 2.074952] usbcore: registered new interface driver hub [ 2.075087] usbcore: registered new device driver usb [ 2.089466] [drm] Initialized drm 1.1.0 20060810 [ 2.112294] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.112304] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 2.112412] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported [ 2.112439] xhci_hcd 0000:00:14.0: irq 28 for MSI/MSI-X [ 2.112652] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 2.112654] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.112655] usb usb1: Product: xHCI Host Controller [ 2.112656] usb usb1: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.112657] usb usb1: SerialNumber: 0000:00:14.0 [ 2.112808] hub 1-0:1.0: USB hub found [ 2.112820] hub 1-0:1.0: 4 ports detected [ 2.114176] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.114181] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 2.114218] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003 [ 2.114220] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.114222] usb usb2: Product: xHCI Host Controller [ 2.114223] usb usb2: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.114225] usb usb2: SerialNumber: 0000:00:14.0 [ 2.114393] hub 2-0:1.0: USB hub found [ 2.114404] hub 2-0:1.0: 4 ports detected [ 2.114645] usb: failed to peer usb2-port2 and usb1-port1 by location (usb2-port2:none) (usb1-port1:usb2-port1) [ 2.114647] usb usb2-port2: failed to peer to usb1-port1 (-16) [ 2.114648] usb: port power management may be unreliable [ 2.114725] usb: failed to peer usb2-port3 and usb1-port1 by location (usb2-port3:none) (usb1-port1:usb2-port1) [ 2.114727] usb usb2-port3: failed to peer to usb1-port1 (-16) [ 2.114832] usb: failed to peer usb2-port4 and usb1-port1 by location (usb2-port4:none) (usb1-port1:usb2-port1) [ 2.114834] usb usb2-port4: failed to peer to usb1-port1 (-16) [ 2.122209] iTCO_vendor_support: vendor-support=0 [ 2.125726] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11 [ 2.125765] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460) [ 2.125880] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 2.134372] AVX version of gcm_enc/dec engaged. [ 2.134374] AES CTR mode by8 optimization enabled [ 2.134924] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni) [ 2.137633] tpm_tis 00:05: TPM is disabled/deactivated (0x6) [ 2.167612] alg: No test for crc32 (crc32-pclmul) [ 2.172968] snd_hda_intel 0000:00:1b.0: irq 29 for MSI/MSI-X [ 2.178633] Adding 3785724k swap on /dev/sda7. Priority:-1 extents:1 across:3785724k SSFS [ 2.181923] sound hdaudioC0D0: No codec parser is available [ 2.182226] sound hdaudioC0D3: No codec parser is available [ 2.193044] cfg80211: Calling CRDA to update world regulatory domain [ 2.242699] Intel(R) Wireless WiFi driver for Linux, in-tree: [ 2.242702] Copyright(c) 2003- 2014 Intel Corporation [ 2.242862] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control [ 2.243029] iwlwifi 0000:03:00.0: irq 30 for MSI/MSI-X [ 2.243157] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000g2a-6.ucode failed with error -2 [ 2.243166] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000g2a-5.ucode failed with error -2 [ 2.243168] iwlwifi 0000:03:00.0: request for firmware file 'iwlwifi-6000g2a-5.ucode' failed. [ 2.243242] iwlwifi 0000:03:00.0: no suitable firmware found! [ 2.267881] cfg80211: World regulatory domain updated: [ 2.267885] cfg80211: DFS Master region: unset [ 2.267886] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ 2.267887] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.267889] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.267890] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ 2.267891] cfg80211: (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A) [ 2.267892] cfg80211: (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.267894] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.267895] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ 2.267897] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ 2.280977] EXT4-fs (sda5): mounting ext2 file system using the ext4 subsystem [ 2.285652] EXT4-fs (sda5): mounted filesystem without journal. Opts: (null) [ 2.291789] systemd-journald[179]: Received request to flush runtime journal from PID 1 [ 2.352938] [drm] Memory usable by graphics device = 2048M [ 2.352941] [drm] Replacing VGA console driver [ 2.353967] Console: switching to colour dummy device 80x25 [ 2.377924] i915 0000:00:02.0: irq 30 for MSI/MSI-X [ 2.377943] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 2.377944] [drm] Driver supports precise vblank timestamp query. [ 2.378038] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 2.422272] ACPI: Video Device [VID] (multi-head: yes rom: no post: no) [ 2.422349] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8 [ 2.422481] [drm] Initialized i915 1.6.0 20140905 for 0000:00:02.0 on minor 0 [ 2.486001] [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2 [ 2.488690] RPC: Registered named UNIX socket transport module. [ 2.488693] RPC: Registered udp transport module. [ 2.488694] RPC: Registered tcp transport module. [ 2.488694] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 2.498069] FS-Cache: Loaded [ 2.533818] FS-Cache: Netfs 'nfs' registered for caching [ 2.558158] [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5 [ 2.560006] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 2.575050] fbcon: inteldrmfb (fb0) is primary device [ 2.782677] Switched to clocksource tsc [ 2.849910] [drm:cpt_set_fifo_underrun_reporting] *ERROR* uncleared pch fifo underrun on pch transcoder A [ 2.849912] [drm:cpt_serr_int_handler] *ERROR* PCH transcoder A FIFO underrun [ 2.955266] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd001a3/0x940300/0x127c00, board id: 2182, fw id: 1164733 [ 2.955287] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0 [ 2.994242] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7 [ 3.407902] Console: switching to colour frame buffer device 200x56 [ 3.416111] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device [ 3.416116] i915 0000:00:02.0: registered panic notifier [ 3.674968] random: nonblocking pool is initialized [ 7.076053] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3 [ 7.273265] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input9 -- - Jeremiah Mahler ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 14:09 ` Jeremiah Mahler @ 2014-12-16 14:25 ` Al Viro 2014-12-16 14:46 ` Jeremiah Mahler 0 siblings, 1 reply; 12+ messages in thread From: Al Viro @ 2014-12-16 14:25 UTC (permalink / raw) To: Jeremiah Mahler, Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel On Tue, Dec 16, 2014 at 06:09:52AM -0800, Jeremiah Mahler wrote: > > ramdisk_execute_command = NULL; > > prepare_namespace(); > > + { > > + /* HACK */ > > + struct path old, new; > > + get_fs_root(current->fs, &new); > > + get_fs_root(&init_fs, &old); > > + chroot_fs_refs(&old, &new); > > + path_put(&old); > > + path_put(&new); > > + } > > } > > > > /* > > I tested the bad commit with your patch applied but it made no > difference, the wireless is still down. Interesting... What happens if you move that added piece (i.e. call of chroot_fs_refs()) just after that if, instead of the end of the body of the if? > Not sure if it helps, but the dmesg is included below. There are errors > about not being able to load the firmware that look interesting. Errors about not being able to load the firmware clearly indicate that we have an attempt to load it (from a kernel thread of some sort, e.g. workqueue worker) getting failing with ENOENT. So we have init_fs stuck behind, presumably still on initramfs under the overmounting rootfs. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 14:25 ` Al Viro @ 2014-12-16 14:46 ` Jeremiah Mahler 2014-12-16 15:05 ` Al Viro 0 siblings, 1 reply; 12+ messages in thread From: Jeremiah Mahler @ 2014-12-16 14:46 UTC (permalink / raw) To: Al Viro; +Cc: Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel Al Viro, On Tue, Dec 16, 2014 at 02:25:42PM +0000, Al Viro wrote: > On Tue, Dec 16, 2014 at 06:09:52AM -0800, Jeremiah Mahler wrote: > > > ramdisk_execute_command = NULL; > > > prepare_namespace(); > > > + { > > > + /* HACK */ > > > + struct path old, new; > > > + get_fs_root(current->fs, &new); > > > + get_fs_root(&init_fs, &old); > > > + chroot_fs_refs(&old, &new); > > > + path_put(&old); > > > + path_put(&new); > > > + } > > > } > > > > > > /* > > > > I tested the bad commit with your patch applied but it made no > > difference, the wireless is still down. > > Interesting... What happens if you move that added piece (i.e. call of > chroot_fs_refs()) just after that if, instead of the end of the body of > the if? > > > Not sure if it helps, but the dmesg is included below. There are errors > > about not being able to load the firmware that look interesting. > > Errors about not being able to load the firmware clearly indicate that we > have an attempt to load it (from a kernel thread of some sort, e.g. > workqueue worker) getting failing with ENOENT. So we have init_fs stuck > behind, presumably still on initramfs under the overmounting rootfs. Here is how I changed the code. diff --git a/init/main.c b/init/main.c index 36c29d6..961a8fa 100644 --- a/init/main.c +++ b/init/main.c @@ -1026,16 +1026,17 @@ static noinline void __init kernel_init_freeable(void) if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) { ramdisk_execute_command = NULL; prepare_namespace(); - { - /* HACK */ - struct path old, new; - get_fs_root(current->fs, &new); - get_fs_root(&init_fs, &old); - chroot_fs_refs(&old, &new); - path_put(&old); - path_put(&new); - } } + { + /* HACK */ + struct path old, new; + get_fs_root(current->fs, &new); + get_fs_root(&init_fs, &old); + chroot_fs_refs(&old, &new); + path_put(&old); + path_put(&new); + } + /* * Ok, we have completed the initial bootup, and And it still behaves the same. Below is the dmesg output. [ 0.000000] CPU0 microcode updated early to revision 0x1b, date = 2014-05-29 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 3.18.0-rc6+ (jeri@hudson) (gcc version 4.9.2 (Debian 4.9.2-7) ) #204 SMP Tue Dec 16 06:35:15 PST 2014 [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.18.0-rc6+ root=UUID=ce693de1-b8f1-4176-9dda-e3afdbf43a6f ro quiet [ 0.000000] e820: BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000ced48fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000ced49000-0x00000000dae9efff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000dae9f000-0x00000000daf9efff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data [ 0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000df9fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011e5fffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: LENOVO 3443CTO/3443CTO, BIOS G6ET59WW (2.03 ) 09/11/2012 [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000000] AGP: No AGP bridge found [ 0.000000] e820: last_pfn = 0x11e600 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 base 0FFC00000 mask FFFC00000 write-protect [ 0.000000] 1 base 000000000 mask F80000000 write-back [ 0.000000] 2 base 080000000 mask FC0000000 write-back [ 0.000000] 3 base 0C0000000 mask FE0000000 write-back [ 0.000000] 4 base 0DC000000 mask FFC000000 uncachable [ 0.000000] 5 base 0DB000000 mask FFF000000 uncachable [ 0.000000] 6 base 100000000 mask FE0000000 write-back [ 0.000000] 7 base 11F000000 mask FFF000000 uncachable [ 0.000000] 8 base 11E800000 mask FFF800000 uncachable [ 0.000000] 9 base 11E600000 mask FFFE00000 uncachable [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] e820: last_pfn = 0xced49 max_arch_pfn = 0x400000000 [ 0.000000] found SMP MP-table at [mem 0x000f0100-0x000f010f] mapped at [ffff8800000f0100] [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576 [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff] [ 0.000000] [mem 0x00000000-0x000fffff] page 4k [ 0.000000] BRK [0x01b18000, 0x01b18fff] PGTABLE [ 0.000000] BRK [0x01b19000, 0x01b19fff] PGTABLE [ 0.000000] BRK [0x01b1a000, 0x01b1afff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x11e400000-0x11e5fffff] [ 0.000000] [mem 0x11e400000-0x11e5fffff] page 2M [ 0.000000] BRK [0x01b1b000, 0x01b1bfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x11c000000-0x11e3fffff] [ 0.000000] [mem 0x11c000000-0x11e3fffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x100000000-0x11bffffff] [ 0.000000] [mem 0x100000000-0x11bffffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff] [ 0.000000] [mem 0x00100000-0x001fffff] page 4k [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff] [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M [ 0.000000] [mem 0x40000000-0x40003fff] page 4k [ 0.000000] BRK [0x01b1c000, 0x01b1cfff] PGTABLE [ 0.000000] BRK [0x01b1d000, 0x01b1dfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x40005000-0xced48fff] [ 0.000000] [mem 0x40005000-0x401fffff] page 4k [ 0.000000] [mem 0x40200000-0xcebfffff] page 2M [ 0.000000] [mem 0xcec00000-0xced48fff] page 4k [ 0.000000] RAMDISK: [mem 0x35368000-0x369abfff] [ 0.000000] ACPI: Early table checksum verification disabled [ 0.000000] ACPI: RSDP 0x00000000000F0120 000024 (v02 LENOVO) [ 0.000000] ACPI: XSDT 0x00000000DAFFE170 0000CC (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: FACP 0x00000000DAFE7000 00010C (v05 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: DSDT 0x00000000DAFE9000 00FB6A (v01 LENOVO TP-G6 00002030 INTL 20061109) [ 0.000000] ACPI: FACS 0x00000000DAF5A000 000040 [ 0.000000] ACPI: SLIC 0x00000000DAFFD000 000176 (v01 LENOVO TP-G6 00002030 PTL 00000001) [ 0.000000] ACPI: TCPA 0x00000000DAFFC000 000032 (v02 PTL LENOVO 06040000 LNVO 00000001) [ 0.000000] ACPI: SSDT 0x00000000DAFFB000 000408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109) [ 0.000000] ACPI: SSDT 0x00000000DAFFA000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109) [ 0.000000] ACPI: SSDT 0x00000000DAFF9000 000797 (v01 LENOVO SataAhci 00001000 INTL 20061109) [ 0.000000] ACPI: HPET 0x00000000DAFE5000 000038 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: APIC 0x00000000DAFE4000 000098 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: MCFG 0x00000000DAFE3000 00003C (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: ECDT 0x00000000DAFE2000 000052 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: FPDT 0x00000000DAFE1000 000064 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: ASF! 0x00000000DAFE8000 0000A5 (v32 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: UEFI 0x00000000DAFE0000 00003E (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: UEFI 0x00000000DAFDF000 000042 (v01 PTL COMBUF 00000001 PTL 00000001) [ 0.000000] ACPI: POAT 0x00000000DAFDE000 000055 (v03 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: SSDT 0x00000000DAFDD000 000C1A (v01 PmRef Cpu0Ist 00003000 INTL 20061109) [ 0.000000] ACPI: SSDT 0x00000000DAFDC000 000A7E (v01 PmRef CpuPm 00003000 INTL 20061109) [ 0.000000] ACPI: DMAR 0x00000000DAFDB000 0000B8 (v01 INTEL SNB 00000001 INTL 00000001) [ 0.000000] ACPI: UEFI 0x00000000DAFDA000 0002A6 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: SSDT 0x00000000DAFD9000 000379 (v01 LENOVO AoacTabl 00001000 INTL 20061109) [ 0.000000] ACPI: DBG2 0x00000000DAFD8000 0000B4 (v00 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000011e5fffff] [ 0.000000] NODE_DATA(0) allocated [mem 0x11e5f8000-0x11e5fcfff] [ 0.000000] [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff88011a000000-ffff88011d5fffff] on node 0 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x00001000-0x00ffffff] [ 0.000000] DMA32 [mem 0x01000000-0xffffffff] [ 0.000000] Normal [mem 0x100000000-0x11e5fffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x00001000-0x0009cfff] [ 0.000000] node 0: [mem 0x00100000-0x1fffffff] [ 0.000000] node 0: [mem 0x20200000-0x40003fff] [ 0.000000] node 0: [mem 0x40005000-0xced48fff] [ 0.000000] node 0: [mem 0x100000000-0x11e5fffff] [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x11e5fffff] [ 0.000000] On node 0 totalpages: 970980 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 21 pages reserved [ 0.000000] DMA zone: 3996 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 11520 pages used for memmap [ 0.000000] DMA32 zone: 842568 pages, LIFO batch:31 [ 0.000000] Normal zone: 1701 pages used for memmap [ 0.000000] Normal zone: 124416 pages, LIFO batch:31 [ 0.000000] Reserving Intel graphics stolen memory at 0xdba00000-0xdf9fffff [ 0.000000] ACPI: PM-Timer IO Port: 0x408 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled) [ 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: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, 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: IRQ9 used by override. [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff] [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff] [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff] [ 0.000000] PM: Registered nosave memory: [mem 0xced49000-0xdae9efff] [ 0.000000] PM: Registered nosave memory: [mem 0xdae9f000-0xdaf9efff] [ 0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff] [ 0.000000] PM: Registered nosave memory: [mem 0xdafff000-0xdf9fffff] [ 0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff] [ 0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff88011e200000 s83648 r8192 d31040 u262144 [ 0.000000] pcpu-alloc: s83648 r8192 d31040 u262144 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 957682 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.18.0-rc6+ root=UUID=ce693de1-b8f1-4176-9dda-e3afdbf43a6f ro quiet [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form [ 0.000000] AGP: Checking aperture... [ 0.000000] AGP: No AGP bridge found [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 3726868K/3883920K available (5319K kernel code, 1043K rwdata, 1816K rodata, 1212K init, 880K bss, 157052K reserved) [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. [ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8. [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8 [ 0.000000] NR_IRQS:33024 nr_irqs:488 0 [ 0.000000] Console: colour VGA+ 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] hpet clockevent registered [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 2494.291 MHz processor [ 0.000044] Calibrating delay loop (skipped), value calculated using timer frequency.. 4988.58 BogoMIPS (lpj=9977164) [ 0.000048] pid_max: default: 32768 minimum: 301 [ 0.000058] ACPI: Core revision 20140926 [ 0.016123] ACPI: All ACPI Tables successfully acquired [ 0.017154] Security Framework initialized [ 0.017163] AppArmor: AppArmor disabled by boot time parameter [ 0.017164] Yama: becoming mindful. [ 0.017483] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) [ 0.018771] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.019351] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.019359] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.019622] Initializing cgroup subsys devices [ 0.019626] Initializing cgroup subsys freezer [ 0.019629] Initializing cgroup subsys net_cls [ 0.019632] Initializing cgroup subsys blkio [ 0.019634] Initializing cgroup subsys perf_event [ 0.019638] Initializing cgroup subsys net_prio [ 0.019671] CPU: Physical Processor ID: 0 [ 0.019672] CPU: Processor Core ID: 0 [ 0.019678] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8) [ 0.020166] mce: CPU supports 7 MCE banks [ 0.020179] CPU0: Thermal monitoring enabled (TM1) [ 0.020189] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0 [ 0.020323] Freeing SMP alternatives memory: 20K (ffffffff81a35000 - ffffffff81a3a000) [ 0.021371] ftrace: allocating 21491 entries in 84 pages [ 0.032662] dmar: Host address width 36 [ 0.032664] dmar: DRHD base: 0x000000fed90000 flags: 0x0 [ 0.032671] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a [ 0.032673] dmar: DRHD base: 0x000000fed91000 flags: 0x1 [ 0.032677] dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a [ 0.032679] dmar: RMRR base: 0x000000da3ba000 end: 0x000000da3d0fff [ 0.032680] dmar: RMRR base: 0x000000db800000 end: 0x000000df9fffff [ 0.032755] IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1 [ 0.032757] HPET id 0 under DRHD base 0xfed91000 [ 0.032758] Queued invalidation will be enabled to support x2apic and Intr-remapping. [ 0.032936] Enabled IRQ remapping in x2apic mode [ 0.032937] Enabling x2apic [ 0.032938] Enabled x2apic [ 0.032946] Switched APIC routing to cluster x2apic. [ 0.033430] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.073159] smpboot: CPU0: Intel(R) Core(TM) i7-3667U CPU @ 2.00GHz (fam: 06, model: 3a, stepping: 09) [ 0.073171] TSC deadline timer enabled [ 0.073200] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver. [ 0.073225] ... version: 3 [ 0.073226] ... bit width: 48 [ 0.073227] ... generic registers: 4 [ 0.073228] ... value mask: 0000ffffffffffff [ 0.073229] ... max period: 0000ffffffffffff [ 0.073230] ... fixed-purpose events: 3 [ 0.073231] ... event mask: 000000070000000f [ 0.074871] x86: Booting SMP configuration: [ 0.074874] .... node #0, CPUs: #1 [ 0.088665] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter. [ 0.088780] #2 [ 0.100185] CPU2 microcode updated early to revision 0x1b, date = 2014-05-29 [ 0.102959] #3 [ 0.116542] x86: Booted up 1 node, 4 CPUs [ 0.116545] smpboot: Total of 4 processors activated (19954.32 BogoMIPS) [ 0.121333] devtmpfs: initialized [ 0.125441] PM: Registering ACPI NVS region [mem 0xdae9f000-0xdaf9efff] (1048576 bytes) [ 0.126579] pinctrl core: initialized pinctrl subsystem [ 0.126706] NET: Registered protocol family 16 [ 0.137132] cpuidle: using governor ladder [ 0.146933] cpuidle: using governor menu [ 0.147007] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 0.147009] ACPI: bus type PCI registered [ 0.147011] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.147219] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) [ 0.147222] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820 [ 0.147316] PCI: Using configuration type 1 for base access [ 0.157682] ACPI: Added _OSI(Module Device) [ 0.157684] ACPI: Added _OSI(Processor Device) [ 0.157686] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.157687] ACPI: Added _OSI(Processor Aggregator Device) [ 0.159513] ACPI : EC: EC description table is found, configuring boot EC [ 0.165042] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored [ 0.225998] ACPI: Dynamic OEM Table Load: [ 0.226017] ACPI: SSDT 0xFFFF88011901D000 000A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109) [ 0.241636] ACPI: Dynamic OEM Table Load: [ 0.241652] ACPI: SSDT 0xFFFF8801190A0C00 000303 (v01 PmRef ApIst 00003000 INTL 20061109) [ 0.251237] ACPI: Dynamic OEM Table Load: [ 0.251251] ACPI: SSDT 0xFFFF880119060E00 000119 (v01 PmRef ApCst 00003000 INTL 20061109) [ 0.262137] ACPI: Interpreter enabled [ 0.262145] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140926/hwxface-580) [ 0.262150] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140926/hwxface-580) [ 0.262166] ACPI: (supports S0 S3 S4 S5) [ 0.262168] ACPI: Using IOAPIC for interrupt routing [ 0.262198] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.277877] ACPI: Power Resource [PUBS] (on) [ 0.278597] acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1) [ 0.279663] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2) [ 0.282794] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11) [ 0.282899] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11) [ 0.283002] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11) [ 0.283101] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 9 10 11) [ 0.283181] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled. [ 0.283281] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 *10 11) [ 0.283382] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 9 10 11) [ 0.283483] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11) [ 0.283595] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f]) [ 0.283601] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 0.283740] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability] [ 0.283802] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability] [ 0.283805] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability] [ 0.283807] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER] [ 0.283809] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM [ 0.284004] PCI host bridge to bus 0000:00 [ 0.284007] pci_bus 0000:00: root bus resource [bus 00-3f] [ 0.284010] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] [ 0.284012] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff] [ 0.284014] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] [ 0.284016] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfebfffff] [ 0.284018] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff] [ 0.284027] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000 [ 0.284131] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000 [ 0.284144] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit] [ 0.284151] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref] [ 0.284156] pci 0000:00:02.0: reg 0x20: [io 0x4000-0x403f] [ 0.284278] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330 [ 0.284304] pci 0000:00:14.0: reg 0x10: [mem 0xf1500000-0xf150ffff 64bit] [ 0.284385] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.284423] pci 0000:00:14.0: System wakeup disabled by ACPI [ 0.284484] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000 [ 0.284512] pci 0000:00:16.0: reg 0x10: [mem 0xf1515000-0xf151500f 64bit] [ 0.284598] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 0.284689] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002 [ 0.284711] pci 0000:00:16.3: reg 0x10: [io 0x4090-0x4097] [ 0.284722] pci 0000:00:16.3: reg 0x14: [mem 0xf151b000-0xf151bfff] [ 0.284893] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320 [ 0.284918] pci 0000:00:1a.0: reg 0x10: [mem 0xf151a000-0xf151a3ff] [ 0.285019] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 0.285057] pci 0000:00:1a.0: System wakeup disabled by ACPI [ 0.285119] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300 [ 0.285138] pci 0000:00:1b.0: reg 0x10: [mem 0xf1510000-0xf1513fff 64bit] [ 0.285224] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.285269] pci 0000:00:1b.0: System wakeup disabled by ACPI [ 0.285329] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400 [ 0.285479] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.285585] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400 [ 0.285728] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold [ 0.285776] pci 0000:00:1c.1: System wakeup disabled by ACPI [ 0.285848] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320 [ 0.285873] pci 0000:00:1d.0: reg 0x10: [mem 0xf1519000-0xf15193ff] [ 0.285975] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.286014] pci 0000:00:1d.0: System wakeup disabled by ACPI [ 0.286072] pci 0000:00:1f.0: [8086:1e56] type 00 class 0x060100 [ 0.286265] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601 [ 0.286288] pci 0000:00:1f.2: reg 0x10: [io 0x4088-0x408f] [ 0.286298] pci 0000:00:1f.2: reg 0x14: [io 0x409c-0x409f] [ 0.286307] pci 0000:00:1f.2: reg 0x18: [io 0x4080-0x4087] [ 0.286317] pci 0000:00:1f.2: reg 0x1c: [io 0x4098-0x409b] [ 0.286326] pci 0000:00:1f.2: reg 0x20: [io 0x4060-0x407f] [ 0.286335] pci 0000:00:1f.2: reg 0x24: [mem 0xf1518000-0xf15187ff] [ 0.286388] pci 0000:00:1f.2: PME# supported from D3hot [ 0.286473] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500 [ 0.286492] pci 0000:00:1f.3: reg 0x10: [mem 0xf1514000-0xf15140ff 64bit] [ 0.286515] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf] [ 0.286847] pci 0000:02:00.0: [1180:e822] type 00 class 0x088001 [ 0.286872] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz. [ 0.286900] pci 0000:02:00.0: reg 0x10: [mem 0xf0d00000-0xf0d000ff] [ 0.287146] pci 0000:02:00.0: supports D1 D2 [ 0.287148] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.297760] pci 0000:00:1c.0: PCI bridge to [bus 02] [ 0.297765] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff] [ 0.297771] pci 0000:00:1c.0: bridge window [mem 0xf0d00000-0xf14fffff] [ 0.297780] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.298038] pci 0000:03:00.0: [8086:0085] type 00 class 0x028000 [ 0.298240] pci 0000:03:00.0: reg 0x10: [mem 0xf0c00000-0xf0c01fff 64bit] [ 0.299050] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold [ 0.309605] pci 0000:00:1c.1: PCI bridge to [bus 03] [ 0.309615] pci 0000:00:1c.1: bridge window [mem 0xf0c00000-0xf0cfffff] [ 0.310967] ACPI: Enabled 4 GPEs in block 00 to 3F [ 0.311043] ACPI : EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62 [ 0.311173] vgaarb: setting as boot device: PCI:0000:00:02.0 [ 0.311175] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none [ 0.311179] vgaarb: loaded [ 0.311180] vgaarb: bridge control possible 0000:00:02.0 [ 0.311256] PCI: Using ACPI for IRQ routing [ 0.312991] PCI: pci_cache_line_size set to 64 bytes [ 0.313346] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff] [ 0.313348] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff] [ 0.313350] e820: reserve RAM buffer [mem 0xced49000-0xcfffffff] [ 0.313352] e820: reserve RAM buffer [mem 0x11e600000-0x11fffffff] [ 0.313530] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.313537] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 0.316577] Switched to clocksource hpet [ 0.324114] pnp: PnP ACPI init [ 0.324638] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved [ 0.324641] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved [ 0.324643] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved [ 0.324645] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved [ 0.324647] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved [ 0.324650] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved [ 0.324652] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved [ 0.324654] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved [ 0.324656] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved [ 0.324658] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved [ 0.324661] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved [ 0.324663] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved [ 0.324665] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved [ 0.324667] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved [ 0.324670] system 00:00: [mem 0x00100000-0xdf9fffff] could not be reserved [ 0.324672] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved [ 0.324674] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved [ 0.324678] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) [ 0.324782] pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff] [ 0.324808] system 00:01: [io 0x0400-0x047f] could not be reserved [ 0.324810] system 00:01: [io 0x0500-0x057f] has been reserved [ 0.324812] system 00:01: [io 0x0800-0x080f] has been reserved [ 0.324815] system 00:01: [io 0x15e0-0x15ef] has been reserved [ 0.324817] system 00:01: [io 0x1600-0x167f] has been reserved [ 0.324820] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved [ 0.324822] system 00:01: [mem 0xfffff000-0xffffffff] has been reserved [ 0.324825] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 0.324827] system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved [ 0.324829] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.324831] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.324834] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved [ 0.324836] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.324911] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.324952] pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active) [ 0.324989] pnp 00:04: Plug and Play ACPI device, IDs LEN0030 PNP0f13 (active) [ 0.325046] pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active) [ 0.325462] pnp: PnP ACPI: found 6 devices [ 0.333034] pci 0000:00:1c.0: PCI bridge to [bus 02] [ 0.333043] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff] [ 0.333050] pci 0000:00:1c.0: bridge window [mem 0xf0d00000-0xf14fffff] [ 0.333056] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.333065] pci 0000:00:1c.1: PCI bridge to [bus 03] [ 0.333072] pci 0000:00:1c.1: bridge window [mem 0xf0c00000-0xf0cfffff] [ 0.333085] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] [ 0.333087] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] [ 0.333089] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] [ 0.333091] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfebfffff] [ 0.333093] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff] [ 0.333095] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff] [ 0.333097] pci_bus 0000:02: resource 1 [mem 0xf0d00000-0xf14fffff] [ 0.333099] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.333101] pci_bus 0000:03: resource 1 [mem 0xf0c00000-0xf0cfffff] [ 0.333176] NET: Registered protocol family 2 [ 0.333409] TCP established hash table entries: 32768 (order: 6, 262144 bytes) [ 0.333538] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes) [ 0.333806] TCP: Hash tables configured (established 32768 bind 32768) [ 0.333824] TCP: reno registered [ 0.333841] UDP hash table entries: 2048 (order: 5, 196608 bytes) [ 0.333904] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes) [ 0.334037] NET: Registered protocol family 1 [ 0.334054] pci 0000:00:02.0: Video device with shadowed ROM [ 0.334595] PCI: CLS 64 bytes, default 64 [ 0.334646] Unpacking initramfs... [ 0.805861] Freeing initrd memory: 22800K (ffff880035368000 - ffff8800369ac000) [ 0.805901] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.805904] software IO TLB [mem 0xcad49000-0xced49000] (64MB) mapped at [ffff8800cad49000-ffff8800ced48fff] [ 0.806191] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer [ 0.806328] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1b [ 0.806337] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1b [ 0.806344] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1b [ 0.806355] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1b [ 0.806433] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba [ 0.806831] futex hash table entries: 2048 (order: 5, 131072 bytes) [ 0.806900] audit: initializing netlink subsys (disabled) [ 0.806922] audit: type=2000 audit(1418715362.796:1): initialized [ 0.807405] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 0.807431] zpool: loaded [ 0.807433] zbud: loaded [ 0.807628] VFS: Disk quotas dquot_6.5.2 [ 0.807654] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.807727] msgmni has been set to 7323 [ 0.808229] alg: No test for stdrng (krng) [ 0.808277] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) [ 0.808333] io scheduler noop registered [ 0.808338] io scheduler deadline registered [ 0.808362] io scheduler cfq registered (default) [ 0.808768] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 0.808790] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 0.808850] intel_idle: MWAIT substates: 0x21120 [ 0.808852] intel_idle: v0.4 model 0x3A [ 0.808853] intel_idle: lapic_timer_reliable_states 0xffffffff [ 0.809168] GHES: HEST is not enabled! [ 0.809267] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.830064] serial 0000:00:16.3: ttyS0 at I/O 0x4090 (irq = 19, base_baud = 115200) is a 16550A [ 0.830264] Linux agpgart interface v0.103 [ 0.830407] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 0.832176] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 0.832181] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 0.832325] mousedev: PS/2 mouse device common for all mice [ 0.832387] rtc_cmos 00:02: RTC can wake from S4 [ 0.832562] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0 [ 0.832601] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 0.832614] Intel P-state driver initializing. [ 0.832974] ledtrig-cpu: registered to indicate activity on CPUs [ 0.833855] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 [ 0.834839] AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com> [ 0.834842] AMD IOMMUv2 functionality not available on this system [ 0.835083] TCP: cubic registered [ 0.835231] NET: Registered protocol family 10 [ 0.835809] mip6: Mobile IPv6 [ 0.835819] NET: Registered protocol family 17 [ 0.835835] mpls_gso: MPLS GSO support [ 0.836926] registered taskstats version 1 [ 0.838496] rtc_cmos 00:02: setting system clock to 2014-12-16 07:36:03 UTC (1418715363) [ 0.840844] Freeing unused kernel memory: 1212K (ffffffff81906000 - ffffffff81a35000) [ 0.840848] Write protecting the kernel read-only data: 8192k [ 0.845236] Freeing unused kernel memory: 812K (ffff880001535000 - ffff880001600000) [ 0.846491] Freeing unused kernel memory: 232K (ffff8800017c6000 - ffff880001800000) [ 0.867779] systemd-udevd[73]: starting version 215 [ 0.868797] random: systemd-udevd urandom read with 4 bits of entropy available [ 0.904293] thermal LNXTHERM:00: registered as thermal_zone0 [ 0.904300] ACPI: Thermal Zone [THM0] (46 C) [ 0.905530] sdhci: Secure Digital Host Controller Interface driver [ 0.905534] sdhci: Copyright(c) Pierre Ossman [ 0.906613] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e822] (rev 7) [ 0.907295] sdhci-pci 0000:02:00.0: No vmmc regulator found [ 0.907300] sdhci-pci 0000:02:00.0: No vqmmc regulator found [ 0.908647] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA [ 0.910019] SCSI subsystem initialized [ 0.912940] libata version 3.00 loaded. [ 0.915694] ahci 0000:00:1f.2: version 3.0 [ 0.915910] ahci 0000:00:1f.2: irq 26 for MSI/MSI-X [ 0.915993] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode [ 0.916000] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst [ 0.923046] scsi host0: ahci [ 0.923809] scsi host1: ahci [ 0.924017] scsi host2: ahci [ 0.924501] scsi host3: ahci [ 0.924732] scsi host4: ahci [ 0.925004] scsi host5: ahci [ 0.925161] ata1: SATA max UDMA/133 abar m2048@0xf1518000 port 0xf1518100 irq 26 [ 0.925165] ata2: DUMMY [ 0.925167] ata3: DUMMY [ 0.925169] ata4: DUMMY [ 0.925171] ata5: DUMMY [ 0.925182] ata6: DUMMY [ 1.241787] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.242521] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded [ 1.242531] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out [ 1.246401] ata1.00: ATA-8: SanDisk SD5SG2256G1052E, 10.02.01, max UDMA/133 [ 1.246407] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA [ 1.247240] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded [ 1.247248] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out [ 1.248312] ata1.00: configured for UDMA/133 [ 1.248641] scsi 0:0:0:0: Direct-Access ATA SanDisk SD5SG225 2.01 PQ: 0 ANSI: 5 [ 1.254360] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB) [ 1.254681] sd 0:0:0:0: [sda] Write Protect is off [ 1.254690] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.254761] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.256146] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 > [ 1.257650] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.259155] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 1.315152] PM: Starting manual resume from disk [ 1.353674] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null) [ 1.565056] systemd[1]: RTC configured in localtime, applying delta of -480 minutes to system time. [ 1.782871] systemd[1]: Cannot add dependency job for unit slcand.service, ignoring: Unit slcand.service failed to load: No such file or directory. [ 1.806294] tsc: Refined TSC clocksource calibration: 2494.342 MHz [ 1.822382] fuse init (API version 7.23) [ 1.826717] loop: module loaded [ 1.863662] systemd-udevd[199]: starting version 215 [ 1.961019] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro,discard [ 2.094531] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2 [ 2.094652] ACPI: Lid Switch [LID] [ 2.094713] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3 [ 2.094718] ACPI: Sleep Button [SLPB] [ 2.094803] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4 [ 2.094807] ACPI: Power Button [PWRF] [ 2.100462] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\_SB_.PCI0.LPC_.PMIO) (20140926/utaddress-258) [ 2.100467] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.100471] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140926/utaddress-258) [ 2.100473] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.100474] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140926/utaddress-258) [ 2.100476] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.100477] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140926/utaddress-258) [ 2.100480] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.100480] lpc_ich: Resource conflict(s) found affecting gpio_ich [ 2.119433] mei_me 0000:00:16.0: irq 27 for MSI/MSI-X [ 2.124039] ACPI: AC Adapter [AC] (on-line) [ 2.124667] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.133227] ACPI: Battery Slot [BAT0] (battery present) [ 2.137138] wmi: Mapper loaded [ 2.137373] Non-volatile memory driver v1.3 [ 2.143385] input: PC Speaker as /devices/platform/pcspkr/input/input5 [ 2.144654] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt [ 2.147991] tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78) [ 2.156441] thinkpad_acpi: ThinkPad ACPI Extras v0.25 [ 2.156444] thinkpad_acpi: http://ibm-acpi.sf.net/ [ 2.156445] thinkpad_acpi: ThinkPad BIOS G6ET59WW (2.03 ), EC unknown [ 2.156446] thinkpad_acpi: Lenovo ThinkPad X1 Carbon, model 3443CTO [ 2.156985] thinkpad_acpi: Unsupported brightness interface, please contact ibm-acpi-devel@lists.sourceforge.net [ 2.157184] thinkpad_acpi: radio switch found; radios are enabled [ 2.157304] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver [ 2.157306] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default... [ 2.158847] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked [ 2.159357] thinkpad_acpi: Console audio control enabled, mode: monitor (read only) [ 2.160702] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input6 [ 2.161208] ACPI: bus type USB registered [ 2.161313] usbcore: registered new interface driver usbfs [ 2.161368] usbcore: registered new interface driver hub [ 2.161403] usbcore: registered new device driver usb [ 2.180816] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.180824] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 2.180912] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported [ 2.180934] xhci_hcd 0000:00:14.0: irq 28 for MSI/MSI-X [ 2.180998] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 2.181000] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.181001] usb usb1: Product: xHCI Host Controller [ 2.181002] usb usb1: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.181003] usb usb1: SerialNumber: 0000:00:14.0 [ 2.181122] hub 1-0:1.0: USB hub found [ 2.181130] hub 1-0:1.0: 4 ports detected [ 2.181543] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.181548] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 2.181589] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003 [ 2.181591] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.181593] usb usb2: Product: xHCI Host Controller [ 2.181594] usb usb2: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.181596] usb usb2: SerialNumber: 0000:00:14.0 [ 2.181715] hub 2-0:1.0: USB hub found [ 2.181727] hub 2-0:1.0: 4 ports detected [ 2.181890] usb: failed to peer usb2-port2 and usb1-port1 by location (usb2-port2:none) (usb1-port1:usb2-port1) [ 2.181891] usb usb2-port2: failed to peer to usb1-port1 (-16) [ 2.181892] usb: port power management may be unreliable [ 2.182078] usb: failed to peer usb2-port3 and usb1-port1 by location (usb2-port3:none) (usb1-port1:usb2-port1) [ 2.182080] usb usb2-port3: failed to peer to usb1-port1 (-16) [ 2.182192] usb: failed to peer usb2-port4 and usb1-port1 by location (usb2-port4:none) (usb1-port1:usb2-port1) [ 2.182194] usb usb2-port4: failed to peer to usb1-port1 (-16) [ 2.186705] iTCO_vendor_support: vendor-support=0 [ 2.189143] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11 [ 2.189180] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460) [ 2.189246] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 2.206778] tpm_tis 00:05: TPM is disabled/deactivated (0x6) [ 2.209376] AVX version of gcm_enc/dec engaged. [ 2.209379] AES CTR mode by8 optimization enabled [ 2.211589] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni) [ 2.230955] alg: No test for crc32 (crc32-pclmul) [ 2.240498] [drm] Initialized drm 1.1.0 20060810 [ 2.242923] cfg80211: Calling CRDA to update world regulatory domain [ 2.247481] snd_hda_intel 0000:00:1b.0: irq 29 for MSI/MSI-X [ 2.256459] sound hdaudioC0D0: No codec parser is available [ 2.256737] sound hdaudioC0D3: No codec parser is available [ 2.281006] Intel(R) Wireless WiFi driver for Linux, in-tree: [ 2.281008] Copyright(c) 2003- 2014 Intel Corporation [ 2.281165] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control [ 2.281318] iwlwifi 0000:03:00.0: irq 30 for MSI/MSI-X [ 2.281438] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000g2a-6.ucode failed with error -2 [ 2.281451] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000g2a-5.ucode failed with error -2 [ 2.281453] iwlwifi 0000:03:00.0: request for firmware file 'iwlwifi-6000g2a-5.ucode' failed. [ 2.281521] iwlwifi 0000:03:00.0: no suitable firmware found! [ 2.303852] Adding 3785724k swap on /dev/sda7. Priority:-1 extents:1 across:3785724k SSFS [ 2.305401] cfg80211: World regulatory domain updated: [ 2.305403] cfg80211: DFS Master region: unset [ 2.305404] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ 2.305406] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.305407] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.305409] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ 2.305410] cfg80211: (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A) [ 2.305411] cfg80211: (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.305412] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.305413] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ 2.305414] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ 2.392117] EXT4-fs (sda5): mounting ext2 file system using the ext4 subsystem [ 2.393920] EXT4-fs (sda5): mounted filesystem without journal. Opts: (null) [ 2.399659] [drm] Memory usable by graphics device = 2048M [ 2.399662] [drm] Replacing VGA console driver [ 2.400606] Console: switching to colour dummy device 80x25 [ 2.401978] systemd-journald[178]: Received request to flush runtime journal from PID 1 [ 2.423043] i915 0000:00:02.0: irq 30 for MSI/MSI-X [ 2.423058] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 2.423059] [drm] Driver supports precise vblank timestamp query. [ 2.423130] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 2.475378] ACPI: Video Device [VID] (multi-head: yes rom: no post: no) [ 2.475457] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8 [ 2.475661] [drm] Initialized i915 1.6.0 20140905 for 0000:00:02.0 on minor 0 [ 2.531157] [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2 [ 2.603280] [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5 [ 2.607130] RPC: Registered named UNIX socket transport module. [ 2.607132] RPC: Registered udp transport module. [ 2.607133] RPC: Registered tcp transport module. [ 2.607134] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 2.615914] FS-Cache: Loaded [ 2.620026] fbcon: inteldrmfb (fb0) is primary device [ 2.653203] FS-Cache: Netfs 'nfs' registered for caching [ 2.683476] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 2.807796] Switched to clocksource tsc [ 2.903109] [drm:cpt_set_fifo_underrun_reporting] *ERROR* uncleared pch fifo underrun on pch transcoder A [ 2.903111] [drm:cpt_serr_int_handler] *ERROR* PCH transcoder A FIFO underrun [ 2.992321] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd001a3/0x940300/0x127c00, board id: 2182, fw id: 1164733 [ 2.992340] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0 [ 3.031308] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7 [ 3.364902] Console: switching to colour frame buffer device 200x56 [ 3.373650] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device [ 3.373652] i915 0000:00:02.0: registered panic notifier [ 3.676431] random: nonblocking pool is initialized [ 7.092288] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3 [ 7.286827] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input9 -- - Jeremiah Mahler ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 14:46 ` Jeremiah Mahler @ 2014-12-16 15:05 ` Al Viro 2014-12-16 15:26 ` Jeremiah Mahler 0 siblings, 1 reply; 12+ messages in thread From: Al Viro @ 2014-12-16 15:05 UTC (permalink / raw) To: Jeremiah Mahler, Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel On Tue, Dec 16, 2014 at 06:46:10AM -0800, Jeremiah Mahler wrote: > --- a/init/main.c > +++ b/init/main.c > @@ -1026,16 +1026,17 @@ static noinline void __init kernel_init_freeable(void) > if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) { > ramdisk_execute_command = NULL; > prepare_namespace(); > - { > - /* HACK */ > - struct path old, new; > - get_fs_root(current->fs, &new); > - get_fs_root(&init_fs, &old); > - chroot_fs_refs(&old, &new); > - path_put(&old); > - path_put(&new); > - } > } > + { > + /* HACK */ > + struct path old, new; > + get_fs_root(current->fs, &new); > + get_fs_root(&init_fs, &old); > + chroot_fs_refs(&old, &new); > + path_put(&old); > + path_put(&new); > + } > + > > /* > * Ok, we have completed the initial bootup, and > > > And it still behaves the same. Below is the dmesg output. > [ 2.281438] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000g2a-6.ucode failed with error -2 > [ 2.281451] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000g2a-5.ucode failed with error -2 > [ 2.281453] iwlwifi 0000:03:00.0: request for firmware file 'iwlwifi-6000g2a-5.ucode' failed. > [ 2.281521] iwlwifi 0000:03:00.0: no suitable firmware found! No such errors happen on the normal boot, presumably? > [ 2.392117] EXT4-fs (sda5): mounting ext2 file system using the ext4 subsystem > [ 2.393920] EXT4-fs (sda5): mounted filesystem without journal. Opts: (null) Wait a minute. So that happens _before_ /dev/sda5 mount? Could you post dmesg from the normal boot (e.g. just prior to the buggy commit)? I really don't get it - there's nothing for init_fs.root to point to other than initramfs by that point, CLONE_FS or no CLONE_FS. We simply don't have anything else mounted yet. Do you get another failing bunch of request_firmware later? And what does dmesg look like on the working kernel - either you have that firmware on initramfs image (in which case it ought to have been picked by both kernels), or you do not, in which case neither kernel would've managed to load it until after mounting the real root... ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 15:05 ` Al Viro @ 2014-12-16 15:26 ` Jeremiah Mahler 2014-12-16 16:27 ` Al Viro 0 siblings, 1 reply; 12+ messages in thread From: Jeremiah Mahler @ 2014-12-16 15:26 UTC (permalink / raw) To: Al Viro; +Cc: Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel On Tue, Dec 16, 2014 at 03:05:18PM +0000, Al Viro wrote: > On Tue, Dec 16, 2014 at 06:46:10AM -0800, Jeremiah Mahler wrote: > > --- a/init/main.c > > +++ b/init/main.c > > @@ -1026,16 +1026,17 @@ static noinline void __init kernel_init_freeable(void) > > if (sys_access((const char __user *) ramdisk_execute_command, 0) != 0) { > > ramdisk_execute_command = NULL; > > prepare_namespace(); > > - { > > - /* HACK */ > > - struct path old, new; > > - get_fs_root(current->fs, &new); > > - get_fs_root(&init_fs, &old); > > - chroot_fs_refs(&old, &new); > > - path_put(&old); > > - path_put(&new); > > - } > > } > > + { > > + /* HACK */ > > + struct path old, new; > > + get_fs_root(current->fs, &new); > > + get_fs_root(&init_fs, &old); > > + chroot_fs_refs(&old, &new); > > + path_put(&old); > > + path_put(&new); > > + } > > + > > > > /* > > * Ok, we have completed the initial bootup, and > > > > > > And it still behaves the same. Below is the dmesg output. > > > [ 2.281438] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000g2a-6.ucode failed with error -2 > > [ 2.281451] iwlwifi 0000:03:00.0: Direct firmware load for iwlwifi-6000g2a-5.ucode failed with error -2 > > [ 2.281453] iwlwifi 0000:03:00.0: request for firmware file 'iwlwifi-6000g2a-5.ucode' failed. > > [ 2.281521] iwlwifi 0000:03:00.0: no suitable firmware found! > > No such errors happen on the normal boot, presumably? > > > [ 2.392117] EXT4-fs (sda5): mounting ext2 file system using the ext4 subsystem > > [ 2.393920] EXT4-fs (sda5): mounted filesystem without journal. Opts: (null) > > Wait a minute. So that happens _before_ /dev/sda5 mount? Could you post dmesg > from the normal boot (e.g. just prior to the buggy commit)? > > I really don't get it - there's nothing for init_fs.root to point to other > than initramfs by that point, CLONE_FS or no CLONE_FS. We simply don't > have anything else mounted yet. Do you get another failing bunch of > request_firmware later? And what does dmesg look like on the working > kernel - either you have that firmware on initramfs image (in which case > it ought to have been picked by both kernels), or you do not, in which case > neither kernel would've managed to load it until after mounting the real > root... I compiled this kernel with the commit just before the bug was introduced (93fe74b2e2b5d266d630f0c3f8287efcbe6ecd10). Wireless comes up without any issue. Here is the dmesg output. [ 0.000000] CPU0 microcode updated early to revision 0x1b, date = 2014-05-29 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 3.18.0-rc6+ (jeri@hudson) (gcc version 4.9.2 (Debian 4.9.2-7) ) #206 SMP Tue Dec 16 07:18:35 PST 2014 [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.18.0-rc6+ root=UUID=ce693de1-b8f1-4176-9dda-e3afdbf43a6f ro quiet [ 0.000000] e820: BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000ced48fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000ced49000-0x00000000dae9efff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000dae9f000-0x00000000daf9efff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000daf9f000-0x00000000daffefff] ACPI data [ 0.000000] BIOS-e820: [mem 0x00000000dafff000-0x00000000df9fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011e5fffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: LENOVO 3443CTO/3443CTO, BIOS G6ET59WW (2.03 ) 09/11/2012 [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000000] AGP: No AGP bridge found [ 0.000000] e820: last_pfn = 0x11e600 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 base 0FFC00000 mask FFFC00000 write-protect [ 0.000000] 1 base 000000000 mask F80000000 write-back [ 0.000000] 2 base 080000000 mask FC0000000 write-back [ 0.000000] 3 base 0C0000000 mask FE0000000 write-back [ 0.000000] 4 base 0DC000000 mask FFC000000 uncachable [ 0.000000] 5 base 0DB000000 mask FFF000000 uncachable [ 0.000000] 6 base 100000000 mask FE0000000 write-back [ 0.000000] 7 base 11F000000 mask FFF000000 uncachable [ 0.000000] 8 base 11E800000 mask FFF800000 uncachable [ 0.000000] 9 base 11E600000 mask FFFE00000 uncachable [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] e820: last_pfn = 0xced49 max_arch_pfn = 0x400000000 [ 0.000000] found SMP MP-table at [mem 0x000f0100-0x000f010f] mapped at [ffff8800000f0100] [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576 [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff] [ 0.000000] [mem 0x00000000-0x000fffff] page 4k [ 0.000000] BRK [0x01b18000, 0x01b18fff] PGTABLE [ 0.000000] BRK [0x01b19000, 0x01b19fff] PGTABLE [ 0.000000] BRK [0x01b1a000, 0x01b1afff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x11e400000-0x11e5fffff] [ 0.000000] [mem 0x11e400000-0x11e5fffff] page 2M [ 0.000000] BRK [0x01b1b000, 0x01b1bfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x11c000000-0x11e3fffff] [ 0.000000] [mem 0x11c000000-0x11e3fffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x100000000-0x11bffffff] [ 0.000000] [mem 0x100000000-0x11bffffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x00100000-0x1fffffff] [ 0.000000] [mem 0x00100000-0x001fffff] page 4k [ 0.000000] [mem 0x00200000-0x1fffffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x20200000-0x40003fff] [ 0.000000] [mem 0x20200000-0x3fffffff] page 2M [ 0.000000] [mem 0x40000000-0x40003fff] page 4k [ 0.000000] BRK [0x01b1c000, 0x01b1cfff] PGTABLE [ 0.000000] BRK [0x01b1d000, 0x01b1dfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x40005000-0xced48fff] [ 0.000000] [mem 0x40005000-0x401fffff] page 4k [ 0.000000] [mem 0x40200000-0xcebfffff] page 2M [ 0.000000] [mem 0xcec00000-0xced48fff] page 4k [ 0.000000] RAMDISK: [mem 0x35368000-0x369abfff] [ 0.000000] ACPI: Early table checksum verification disabled [ 0.000000] ACPI: RSDP 0x00000000000F0120 000024 (v02 LENOVO) [ 0.000000] ACPI: XSDT 0x00000000DAFFE170 0000CC (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: FACP 0x00000000DAFE7000 00010C (v05 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: DSDT 0x00000000DAFE9000 00FB6A (v01 LENOVO TP-G6 00002030 INTL 20061109) [ 0.000000] ACPI: FACS 0x00000000DAF5A000 000040 [ 0.000000] ACPI: SLIC 0x00000000DAFFD000 000176 (v01 LENOVO TP-G6 00002030 PTL 00000001) [ 0.000000] ACPI: TCPA 0x00000000DAFFC000 000032 (v02 PTL LENOVO 06040000 LNVO 00000001) [ 0.000000] ACPI: SSDT 0x00000000DAFFB000 000408 (v01 LENOVO TP-SSDT2 00000200 INTL 20061109) [ 0.000000] ACPI: SSDT 0x00000000DAFFA000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20061109) [ 0.000000] ACPI: SSDT 0x00000000DAFF9000 000797 (v01 LENOVO SataAhci 00001000 INTL 20061109) [ 0.000000] ACPI: HPET 0x00000000DAFE5000 000038 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: APIC 0x00000000DAFE4000 000098 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: MCFG 0x00000000DAFE3000 00003C (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: ECDT 0x00000000DAFE2000 000052 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: FPDT 0x00000000DAFE1000 000064 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: ASF! 0x00000000DAFE8000 0000A5 (v32 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: UEFI 0x00000000DAFE0000 00003E (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: UEFI 0x00000000DAFDF000 000042 (v01 PTL COMBUF 00000001 PTL 00000001) [ 0.000000] ACPI: POAT 0x00000000DAFDE000 000055 (v03 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: SSDT 0x00000000DAFDD000 000C1A (v01 PmRef Cpu0Ist 00003000 INTL 20061109) [ 0.000000] ACPI: SSDT 0x00000000DAFDC000 000A7E (v01 PmRef CpuPm 00003000 INTL 20061109) [ 0.000000] ACPI: DMAR 0x00000000DAFDB000 0000B8 (v01 INTEL SNB 00000001 INTL 00000001) [ 0.000000] ACPI: UEFI 0x00000000DAFDA000 0002A6 (v01 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: SSDT 0x00000000DAFD9000 000379 (v01 LENOVO AoacTabl 00001000 INTL 20061109) [ 0.000000] ACPI: DBG2 0x00000000DAFD8000 0000B4 (v00 LENOVO TP-G6 00002030 PTL 00000002) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000011e5fffff] [ 0.000000] NODE_DATA(0) allocated [mem 0x11e5f8000-0x11e5fcfff] [ 0.000000] [ffffea0000000000-ffffea0003ffffff] PMD -> [ffff88011a000000-ffff88011d5fffff] on node 0 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x00001000-0x00ffffff] [ 0.000000] DMA32 [mem 0x01000000-0xffffffff] [ 0.000000] Normal [mem 0x100000000-0x11e5fffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x00001000-0x0009cfff] [ 0.000000] node 0: [mem 0x00100000-0x1fffffff] [ 0.000000] node 0: [mem 0x20200000-0x40003fff] [ 0.000000] node 0: [mem 0x40005000-0xced48fff] [ 0.000000] node 0: [mem 0x100000000-0x11e5fffff] [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x11e5fffff] [ 0.000000] On node 0 totalpages: 970980 [ 0.000000] DMA zone: 56 pages used for memmap [ 0.000000] DMA zone: 21 pages reserved [ 0.000000] DMA zone: 3996 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 11520 pages used for memmap [ 0.000000] DMA32 zone: 842568 pages, LIFO batch:31 [ 0.000000] Normal zone: 1701 pages used for memmap [ 0.000000] Normal zone: 124416 pages, LIFO batch:31 [ 0.000000] Reserving Intel graphics stolen memory at 0xdba00000-0xdf9fffff [ 0.000000] ACPI: PM-Timer IO Port: 0x408 [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled) [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled) [ 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: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, 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: IRQ9 used by override. [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000 [ 0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff] [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff] [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x20000000-0x201fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff] [ 0.000000] PM: Registered nosave memory: [mem 0xced49000-0xdae9efff] [ 0.000000] PM: Registered nosave memory: [mem 0xdae9f000-0xdaf9efff] [ 0.000000] PM: Registered nosave memory: [mem 0xdaf9f000-0xdaffefff] [ 0.000000] PM: Registered nosave memory: [mem 0xdafff000-0xdf9fffff] [ 0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff] [ 0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff] [ 0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff88011e200000 s83648 r8192 d31040 u262144 [ 0.000000] pcpu-alloc: s83648 r8192 d31040 u262144 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 957682 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.18.0-rc6+ root=UUID=ce693de1-b8f1-4176-9dda-e3afdbf43a6f ro quiet [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340 using standard form [ 0.000000] AGP: Checking aperture... [ 0.000000] AGP: No AGP bridge found [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 3726868K/3883920K available (5319K kernel code, 1043K rwdata, 1816K rodata, 1212K init, 880K bss, 157052K reserved) [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. [ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8. [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8 [ 0.000000] NR_IRQS:33024 nr_irqs:488 0 [ 0.000000] Console: colour VGA+ 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] hpet clockevent registered [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 2494.159 MHz processor [ 0.000044] Calibrating delay loop (skipped), value calculated using timer frequency.. 4988.31 BogoMIPS (lpj=9976636) [ 0.000047] pid_max: default: 32768 minimum: 301 [ 0.000058] ACPI: Core revision 20140926 [ 0.016239] ACPI: All ACPI Tables successfully acquired [ 0.017229] Security Framework initialized [ 0.017239] AppArmor: AppArmor disabled by boot time parameter [ 0.017240] Yama: becoming mindful. [ 0.017554] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes) [ 0.018842] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.019422] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.019430] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes) [ 0.019692] Initializing cgroup subsys devices [ 0.019696] Initializing cgroup subsys freezer [ 0.019699] Initializing cgroup subsys net_cls [ 0.019702] Initializing cgroup subsys blkio [ 0.019704] Initializing cgroup subsys perf_event [ 0.019708] Initializing cgroup subsys net_prio [ 0.019740] CPU: Physical Processor ID: 0 [ 0.019741] CPU: Processor Core ID: 0 [ 0.019746] ENERGY_PERF_BIAS: Set to 'normal', was 'performance' ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8) [ 0.020233] mce: CPU supports 7 MCE banks [ 0.020247] CPU0: Thermal monitoring enabled (TM1) [ 0.020256] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0 [ 0.020389] Freeing SMP alternatives memory: 20K (ffffffff81a35000 - ffffffff81a3a000) [ 0.021442] ftrace: allocating 21491 entries in 84 pages [ 0.032815] dmar: Host address width 36 [ 0.032818] dmar: DRHD base: 0x000000fed90000 flags: 0x0 [ 0.032824] dmar: IOMMU 0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a [ 0.032826] dmar: DRHD base: 0x000000fed91000 flags: 0x1 [ 0.032831] dmar: IOMMU 1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a [ 0.032832] dmar: RMRR base: 0x000000da3ba000 end: 0x000000da3d0fff [ 0.032834] dmar: RMRR base: 0x000000db800000 end: 0x000000df9fffff [ 0.032909] IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1 [ 0.032910] HPET id 0 under DRHD base 0xfed91000 [ 0.032911] Queued invalidation will be enabled to support x2apic and Intr-remapping. [ 0.033089] Enabled IRQ remapping in x2apic mode [ 0.033091] Enabling x2apic [ 0.033092] Enabled x2apic [ 0.033100] Switched APIC routing to cluster x2apic. [ 0.033585] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.073311] smpboot: CPU0: Intel(R) Core(TM) i7-3667U CPU @ 2.00GHz (fam: 06, model: 3a, stepping: 09) [ 0.073323] TSC deadline timer enabled [ 0.073352] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver. [ 0.073377] ... version: 3 [ 0.073378] ... bit width: 48 [ 0.073379] ... generic registers: 4 [ 0.073380] ... value mask: 0000ffffffffffff [ 0.073381] ... max period: 0000ffffffffffff [ 0.073382] ... fixed-purpose events: 3 [ 0.073383] ... event mask: 000000070000000f [ 0.075093] x86: Booting SMP configuration: [ 0.075095] .... node #0, CPUs: #1 [ 0.088867] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter. [ 0.088984] #2 [ 0.100388] CPU2 microcode updated early to revision 0x1b, date = 2014-05-29 [ 0.103162] #3 [ 0.116744] x86: Booted up 1 node, 4 CPUs [ 0.116748] smpboot: Total of 4 processors activated (19953.27 BogoMIPS) [ 0.121543] devtmpfs: initialized [ 0.125593] PM: Registering ACPI NVS region [mem 0xdae9f000-0xdaf9efff] (1048576 bytes) [ 0.126684] pinctrl core: initialized pinctrl subsystem [ 0.126811] NET: Registered protocol family 16 [ 0.137347] cpuidle: using governor ladder [ 0.147134] cpuidle: using governor menu [ 0.147209] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it [ 0.147211] ACPI: bus type PCI registered [ 0.147213] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.147425] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) [ 0.147428] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820 [ 0.147531] PCI: Using configuration type 1 for base access [ 0.157905] ACPI: Added _OSI(Module Device) [ 0.157908] ACPI: Added _OSI(Processor Device) [ 0.157910] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.157911] ACPI: Added _OSI(Processor Aggregator Device) [ 0.159730] ACPI : EC: EC description table is found, configuring boot EC [ 0.165248] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored [ 0.218196] ACPI: Dynamic OEM Table Load: [ 0.218214] ACPI: SSDT 0xFFFF88011901D000 000A01 (v01 PmRef Cpu0Cst 00003001 INTL 20061109) [ 0.233829] ACPI: Dynamic OEM Table Load: [ 0.233846] ACPI: SSDT 0xFFFF880119732000 000303 (v01 PmRef ApIst 00003000 INTL 20061109) [ 0.243425] ACPI: Dynamic OEM Table Load: [ 0.243440] ACPI: SSDT 0xFFFF880119060E00 000119 (v01 PmRef ApCst 00003000 INTL 20061109) [ 0.254328] ACPI: Interpreter enabled [ 0.254335] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140926/hwxface-580) [ 0.254341] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140926/hwxface-580) [ 0.254357] ACPI: (supports S0 S3 S4 S5) [ 0.254358] ACPI: Using IOAPIC for interrupt routing [ 0.254388] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.282066] ACPI: Power Resource [PUBS] (on) [ 0.282830] acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1) [ 0.283896] acpi LNXIOBAY:00: ACPI dock station (docks/bays count: 2) [ 0.287203] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11) [ 0.287309] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 *10 11) [ 0.287412] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 10 *11) [ 0.287513] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *7 9 10 11) [ 0.287594] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11) *0, disabled. [ 0.287696] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 *10 11) [ 0.287798] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 9 10 11) [ 0.287898] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 9 10 *11) [ 0.288012] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f]) [ 0.288017] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 0.288155] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability] [ 0.288217] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability] [ 0.288220] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability] [ 0.288222] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER] [ 0.288224] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM [ 0.288416] PCI host bridge to bus 0000:00 [ 0.288420] pci_bus 0000:00: root bus resource [bus 00-3f] [ 0.288422] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] [ 0.288424] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff] [ 0.288426] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] [ 0.288428] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfebfffff] [ 0.288430] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff] [ 0.288439] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000 [ 0.288543] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000 [ 0.288556] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit] [ 0.288563] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref] [ 0.288568] pci 0000:00:02.0: reg 0x20: [io 0x4000-0x403f] [ 0.288688] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330 [ 0.288713] pci 0000:00:14.0: reg 0x10: [mem 0xf1500000-0xf150ffff 64bit] [ 0.288794] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.288831] pci 0000:00:14.0: System wakeup disabled by ACPI [ 0.288893] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000 [ 0.288919] pci 0000:00:16.0: reg 0x10: [mem 0xf1515000-0xf151500f 64bit] [ 0.289005] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold [ 0.289095] pci 0000:00:16.3: [8086:1e3d] type 00 class 0x070002 [ 0.289116] pci 0000:00:16.3: reg 0x10: [io 0x4090-0x4097] [ 0.289128] pci 0000:00:16.3: reg 0x14: [mem 0xf151b000-0xf151bfff] [ 0.289290] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320 [ 0.289314] pci 0000:00:1a.0: reg 0x10: [mem 0xf151a000-0xf151a3ff] [ 0.289414] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold [ 0.289452] pci 0000:00:1a.0: System wakeup disabled by ACPI [ 0.289511] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300 [ 0.289532] pci 0000:00:1b.0: reg 0x10: [mem 0xf1510000-0xf1513fff 64bit] [ 0.289618] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.289672] pci 0000:00:1b.0: System wakeup disabled by ACPI [ 0.289728] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400 [ 0.289871] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.289973] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400 [ 0.290115] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold [ 0.290163] pci 0000:00:1c.1: System wakeup disabled by ACPI [ 0.290226] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320 [ 0.290250] pci 0000:00:1d.0: reg 0x10: [mem 0xf1519000-0xf15193ff] [ 0.290352] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.290390] pci 0000:00:1d.0: System wakeup disabled by ACPI [ 0.290447] pci 0000:00:1f.0: [8086:1e56] type 00 class 0x060100 [ 0.290636] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601 [ 0.290659] pci 0000:00:1f.2: reg 0x10: [io 0x4088-0x408f] [ 0.290668] pci 0000:00:1f.2: reg 0x14: [io 0x409c-0x409f] [ 0.290676] pci 0000:00:1f.2: reg 0x18: [io 0x4080-0x4087] [ 0.290685] pci 0000:00:1f.2: reg 0x1c: [io 0x4098-0x409b] [ 0.290694] pci 0000:00:1f.2: reg 0x20: [io 0x4060-0x407f] [ 0.290703] pci 0000:00:1f.2: reg 0x24: [mem 0xf1518000-0xf15187ff] [ 0.290756] pci 0000:00:1f.2: PME# supported from D3hot [ 0.290838] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500 [ 0.290856] pci 0000:00:1f.3: reg 0x10: [mem 0xf1514000-0xf15140ff 64bit] [ 0.290880] pci 0000:00:1f.3: reg 0x20: [io 0xefa0-0xefbf] [ 0.291220] pci 0000:02:00.0: [1180:e822] type 00 class 0x088001 [ 0.291245] pci 0000:02:00.0: MMC controller base frequency changed to 50Mhz. [ 0.291271] pci 0000:02:00.0: reg 0x10: [mem 0xf0d00000-0xf0d000ff] [ 0.291506] pci 0000:02:00.0: supports D1 D2 [ 0.291508] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.301879] pci 0000:00:1c.0: PCI bridge to [bus 02] [ 0.301885] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff] [ 0.301890] pci 0000:00:1c.0: bridge window [mem 0xf0d00000-0xf14fffff] [ 0.301899] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.302155] pci 0000:03:00.0: [8086:0085] type 00 class 0x028000 [ 0.302357] pci 0000:03:00.0: reg 0x10: [mem 0xf0c00000-0xf0c01fff 64bit] [ 0.303171] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold [ 0.313822] pci 0000:00:1c.1: PCI bridge to [bus 03] [ 0.313832] pci 0000:00:1c.1: bridge window [mem 0xf0c00000-0xf0cfffff] [ 0.315095] ACPI: Enabled 4 GPEs in block 00 to 3F [ 0.315172] ACPI : EC: GPE = 0x11, I/O: command/status = 0x66, data = 0x62 [ 0.315304] vgaarb: setting as boot device: PCI:0000:00:02.0 [ 0.315306] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none [ 0.315309] vgaarb: loaded [ 0.315311] vgaarb: bridge control possible 0000:00:02.0 [ 0.315385] PCI: Using ACPI for IRQ routing [ 0.317120] PCI: pci_cache_line_size set to 64 bytes [ 0.317486] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff] [ 0.317488] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff] [ 0.317490] e820: reserve RAM buffer [mem 0xced49000-0xcfffffff] [ 0.317491] e820: reserve RAM buffer [mem 0x11e600000-0x11fffffff] [ 0.317663] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.317670] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 0.320713] Switched to clocksource hpet [ 0.328209] pnp: PnP ACPI init [ 0.328718] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved [ 0.328733] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved [ 0.328735] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved [ 0.328737] system 00:00: [mem 0x000c8000-0x000cbfff] has been reserved [ 0.328739] system 00:00: [mem 0x000cc000-0x000cffff] has been reserved [ 0.328741] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved [ 0.328744] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved [ 0.328746] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved [ 0.328748] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved [ 0.328750] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved [ 0.328752] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved [ 0.328754] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved [ 0.328756] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved [ 0.328759] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved [ 0.328761] system 00:00: [mem 0x00100000-0xdf9fffff] could not be reserved [ 0.328763] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved [ 0.328766] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved [ 0.328770] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) [ 0.328873] pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff] [ 0.328899] system 00:01: [io 0x0400-0x047f] could not be reserved [ 0.328901] system 00:01: [io 0x0500-0x057f] has been reserved [ 0.328903] system 00:01: [io 0x0800-0x080f] has been reserved [ 0.328905] system 00:01: [io 0x15e0-0x15ef] has been reserved [ 0.328907] system 00:01: [io 0x1600-0x167f] has been reserved [ 0.328910] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved [ 0.328913] system 00:01: [mem 0xfffff000-0xffffffff] has been reserved [ 0.328915] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 0.328917] system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved [ 0.328919] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.328922] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.328924] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved [ 0.328927] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.329001] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.329042] pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active) [ 0.329079] pnp 00:04: Plug and Play ACPI device, IDs LEN0030 PNP0f13 (active) [ 0.329136] pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active) [ 0.329555] pnp: PnP ACPI: found 6 devices [ 0.337114] pci 0000:00:1c.0: PCI bridge to [bus 02] [ 0.337123] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff] [ 0.337131] pci 0000:00:1c.0: bridge window [mem 0xf0d00000-0xf14fffff] [ 0.337137] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.337147] pci 0000:00:1c.1: PCI bridge to [bus 03] [ 0.337153] pci 0000:00:1c.1: bridge window [mem 0xf0c00000-0xf0cfffff] [ 0.337167] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] [ 0.337169] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] [ 0.337171] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] [ 0.337173] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfebfffff] [ 0.337175] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff] [ 0.337177] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff] [ 0.337179] pci_bus 0000:02: resource 1 [mem 0xf0d00000-0xf14fffff] [ 0.337181] pci_bus 0000:02: resource 2 [mem 0xf0400000-0xf0bfffff 64bit pref] [ 0.337183] pci_bus 0000:03: resource 1 [mem 0xf0c00000-0xf0cfffff] [ 0.337256] NET: Registered protocol family 2 [ 0.337490] TCP established hash table entries: 32768 (order: 6, 262144 bytes) [ 0.337619] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes) [ 0.337889] TCP: Hash tables configured (established 32768 bind 32768) [ 0.337908] TCP: reno registered [ 0.337924] UDP hash table entries: 2048 (order: 5, 196608 bytes) [ 0.337987] UDP-Lite hash table entries: 2048 (order: 5, 196608 bytes) [ 0.338119] NET: Registered protocol family 1 [ 0.338136] pci 0000:00:02.0: Video device with shadowed ROM [ 0.338775] PCI: CLS 64 bytes, default 64 [ 0.338827] Unpacking initramfs... [ 0.813759] Freeing initrd memory: 22800K (ffff880035368000 - ffff8800369ac000) [ 0.813800] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.813803] software IO TLB [mem 0xcad49000-0xced49000] (64MB) mapped at [ffff8800cad49000-ffff8800ced48fff] [ 0.814085] RAPL PMU detected, hw unit 2^-16 Joules, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer [ 0.814215] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1b [ 0.814225] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1b [ 0.814231] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1b [ 0.814242] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1b [ 0.814310] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba [ 0.814696] futex hash table entries: 2048 (order: 5, 131072 bytes) [ 0.814763] audit: initializing netlink subsys (disabled) [ 0.814784] audit: type=2000 audit(1418717980.804:1): initialized [ 0.815264] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 0.815290] zpool: loaded [ 0.815292] zbud: loaded [ 0.815483] VFS: Disk quotas dquot_6.5.2 [ 0.815510] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.815578] msgmni has been set to 7323 [ 0.816074] alg: No test for stdrng (krng) [ 0.816121] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) [ 0.816179] io scheduler noop registered [ 0.816184] io scheduler deadline registered [ 0.816205] io scheduler cfq registered (default) [ 0.816598] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 0.816622] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 0.816679] intel_idle: MWAIT substates: 0x21120 [ 0.816681] intel_idle: v0.4 model 0x3A [ 0.816682] intel_idle: lapic_timer_reliable_states 0xffffffff [ 0.816976] GHES: HEST is not enabled! [ 0.817075] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.837872] serial 0000:00:16.3: ttyS0 at I/O 0x4090 (irq = 19, base_baud = 115200) is a 16550A [ 0.838062] Linux agpgart interface v0.103 [ 0.838202] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 0.840353] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 0.840359] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 0.840502] mousedev: PS/2 mouse device common for all mice [ 0.840561] rtc_cmos 00:02: RTC can wake from S4 [ 0.840724] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0 [ 0.840760] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 0.840773] Intel P-state driver initializing. [ 0.841105] ledtrig-cpu: registered to indicate activity on CPUs [ 0.841965] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 [ 0.842986] AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com> [ 0.842989] AMD IOMMUv2 functionality not available on this system [ 0.843229] TCP: cubic registered [ 0.843398] NET: Registered protocol family 10 [ 0.843996] mip6: Mobile IPv6 [ 0.844020] NET: Registered protocol family 17 [ 0.844049] mpls_gso: MPLS GSO support [ 0.845180] registered taskstats version 1 [ 0.846668] rtc_cmos 00:02: setting system clock to 2014-12-16 08:19:41 UTC (1418717981) [ 0.848743] Freeing unused kernel memory: 1212K (ffffffff81906000 - ffffffff81a35000) [ 0.848747] Write protecting the kernel read-only data: 8192k [ 0.853074] Freeing unused kernel memory: 812K (ffff880001535000 - ffff880001600000) [ 0.854318] Freeing unused kernel memory: 232K (ffff8800017c6000 - ffff880001800000) [ 0.875218] systemd-udevd[73]: starting version 215 [ 0.875924] random: systemd-udevd urandom read with 4 bits of entropy available [ 0.907147] sdhci: Secure Digital Host Controller Interface driver [ 0.907151] sdhci: Copyright(c) Pierre Ossman [ 0.907626] sdhci-pci 0000:02:00.0: SDHCI controller found [1180:e822] (rev 7) [ 0.908161] sdhci-pci 0000:02:00.0: No vmmc regulator found [ 0.908163] sdhci-pci 0000:02:00.0: No vqmmc regulator found [ 0.909820] thermal LNXTHERM:00: registered as thermal_zone0 [ 0.909825] ACPI: Thermal Zone [THM0] (61 C) [ 0.910527] mmc0: SDHCI controller on PCI [0000:02:00.0] using DMA [ 0.911848] SCSI subsystem initialized [ 0.915435] libata version 3.00 loaded. [ 0.918831] ahci 0000:00:1f.2: version 3.0 [ 0.919044] ahci 0000:00:1f.2: irq 26 for MSI/MSI-X [ 0.919120] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode [ 0.919126] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst [ 0.924005] scsi host0: ahci [ 0.924348] scsi host1: ahci [ 0.924757] scsi host2: ahci [ 0.924968] scsi host3: ahci [ 0.925772] scsi host4: ahci [ 0.926274] scsi host5: ahci [ 0.926459] ata1: SATA max UDMA/133 abar m2048@0xf1518000 port 0xf1518100 irq 26 [ 0.926463] ata2: DUMMY [ 0.926465] ata3: DUMMY [ 0.926467] ata4: DUMMY [ 0.926469] ata5: DUMMY [ 0.926471] ata6: DUMMY [ 1.245878] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.246607] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded [ 1.246617] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out [ 1.250398] ata1.00: ATA-8: SanDisk SD5SG2256G1052E, 10.02.01, max UDMA/133 [ 1.250403] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA [ 1.251220] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded [ 1.251226] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out [ 1.252368] ata1.00: configured for UDMA/133 [ 1.252725] scsi 0:0:0:0: Direct-Access ATA SanDisk SD5SG225 2.01 PQ: 0 ANSI: 5 [ 1.257168] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB) [ 1.257343] sd 0:0:0:0: [sda] Write Protect is off [ 1.257347] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.257390] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.258394] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 > [ 1.259215] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.260507] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 1.332059] PM: Starting manual resume from disk [ 1.371467] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null) [ 1.554272] systemd[1]: RTC configured in localtime, applying delta of -480 minutes to system time. [ 1.776196] systemd[1]: Cannot add dependency job for unit slcand.service, ignoring: Unit slcand.service failed to load: No such file or directory. [ 1.814444] tsc: Refined TSC clocksource calibration: 2494.341 MHz [ 1.821810] fuse init (API version 7.23) [ 1.826372] loop: module loaded [ 1.865501] systemd-udevd[199]: starting version 215 [ 1.961940] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro,discard [ 2.089798] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2 [ 2.089979] ACPI: Lid Switch [LID] [ 2.090022] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3 [ 2.090025] ACPI: Sleep Button [SLPB] [ 2.090073] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4 [ 2.090075] ACPI: Power Button [PWRF] [ 2.094380] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\_SB_.PCI0.LPC_.PMIO) (20140926/utaddress-258) [ 2.094387] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.094390] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140926/utaddress-258) [ 2.094394] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.094396] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140926/utaddress-258) [ 2.094399] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.094400] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\_SB_.PCI0.LPC_.LPIO) (20140926/utaddress-258) [ 2.094404] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver [ 2.094405] lpc_ich: Resource conflict(s) found affecting gpio_ich [ 2.104214] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.117778] ACPI: Battery Slot [BAT0] (battery present) [ 2.118168] ACPI: AC Adapter [AC] (on-line) [ 2.125870] wmi: Mapper loaded [ 2.134308] Non-volatile memory driver v1.3 [ 2.137466] input: PC Speaker as /devices/platform/pcspkr/input/input5 [ 2.137963] mei_me 0000:00:16.0: irq 27 for MSI/MSI-X [ 2.141055] ACPI: bus type USB registered [ 2.141077] usbcore: registered new interface driver usbfs [ 2.141087] usbcore: registered new interface driver hub [ 2.141111] usbcore: registered new device driver usb [ 2.142327] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt [ 2.144075] tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78) [ 2.164931] thinkpad_acpi: ThinkPad ACPI Extras v0.25 [ 2.164933] thinkpad_acpi: http://ibm-acpi.sf.net/ [ 2.164934] thinkpad_acpi: ThinkPad BIOS G6ET59WW (2.03 ), EC unknown [ 2.164935] thinkpad_acpi: Lenovo ThinkPad X1 Carbon, model 3443CTO [ 2.165529] thinkpad_acpi: Unsupported brightness interface, please contact ibm-acpi-devel@lists.sourceforge.net [ 2.165718] thinkpad_acpi: radio switch found; radios are enabled [ 2.165820] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver [ 2.165821] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default... [ 2.167105] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked [ 2.168415] thinkpad_acpi: Console audio control enabled, mode: monitor (read only) [ 2.169826] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input7 [ 2.174166] iTCO_vendor_support: vendor-support=0 [ 2.180046] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11 [ 2.180085] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460) [ 2.180159] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 2.185324] AVX version of gcm_enc/dec engaged. [ 2.185327] AES CTR mode by8 optimization enabled [ 2.188346] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni) [ 2.191564] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.191574] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 2.191677] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported [ 2.191718] xhci_hcd 0000:00:14.0: irq 28 for MSI/MSI-X [ 2.191837] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 2.191838] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.191840] usb usb1: Product: xHCI Host Controller [ 2.191841] usb usb1: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.191842] usb usb1: SerialNumber: 0000:00:14.0 [ 2.192143] hub 1-0:1.0: USB hub found [ 2.192156] hub 1-0:1.0: 4 ports detected [ 2.192569] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.192573] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 2.192601] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003 [ 2.192602] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.192603] usb usb2: Product: xHCI Host Controller [ 2.192604] usb usb2: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.192605] usb usb2: SerialNumber: 0000:00:14.0 [ 2.192784] hub 2-0:1.0: USB hub found [ 2.192793] hub 2-0:1.0: 4 ports detected [ 2.192929] usb: failed to peer usb2-port2 and usb1-port1 by location (usb2-port2:none) (usb1-port1:usb2-port1) [ 2.192930] usb usb2-port2: failed to peer to usb1-port1 (-16) [ 2.192931] usb: port power management may be unreliable [ 2.192989] usb: failed to peer usb2-port3 and usb1-port1 by location (usb2-port3:none) (usb1-port1:usb2-port1) [ 2.192990] usb usb2-port3: failed to peer to usb1-port1 (-16) [ 2.193047] usb: failed to peer usb2-port4 and usb1-port1 by location (usb2-port4:none) (usb1-port1:usb2-port1) [ 2.193048] usb usb2-port4: failed to peer to usb1-port1 (-16) [ 2.197426] cfg80211: Calling CRDA to update world regulatory domain [ 2.209237] [drm] Initialized drm 1.1.0 20060810 [ 2.212487] alg: No test for crc32 (crc32-pclmul) [ 2.214928] tpm_tis 00:05: TPM is disabled/deactivated (0x6) [ 2.247028] snd_hda_intel 0000:00:1b.0: irq 29 for MSI/MSI-X [ 2.255594] Intel(R) Wireless WiFi driver for Linux, in-tree: [ 2.255597] Copyright(c) 2003- 2014 Intel Corporation [ 2.255771] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control [ 2.255963] iwlwifi 0000:03:00.0: irq 30 for MSI/MSI-X [ 2.263419] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm [ 2.271848] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker [ 2.271851] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 2.271853] sound hdaudioC0D0: hp_outs=1 (0x15/0x0/0x0/0x0/0x0) [ 2.271854] sound hdaudioC0D0: mono: mono_out=0x0 [ 2.271855] sound hdaudioC0D0: inputs: [ 2.271856] sound hdaudioC0D0: Mic=0x18 [ 2.271858] sound hdaudioC0D0: Internal Mic=0x12 [ 2.292884] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input8 [ 2.294066] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9 [ 2.294124] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10 [ 2.294179] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11 [ 2.359587] [drm] Memory usable by graphics device = 2048M [ 2.359591] [drm] Replacing VGA console driver [ 2.360555] Console: switching to colour dummy device 80x25 [ 2.379691] cfg80211: World regulatory domain updated: [ 2.379694] cfg80211: DFS Master region: unset [ 2.379695] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ 2.379697] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.379699] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.379700] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ 2.379701] cfg80211: (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A) [ 2.379703] cfg80211: (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.379704] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.379706] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ 2.379708] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ 2.383166] i915 0000:00:02.0: irq 31 for MSI/MSI-X [ 2.383177] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 2.383178] [drm] Driver supports precise vblank timestamp query. [ 2.383276] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 2.395130] Adding 3785724k swap on /dev/sda7. Priority:-1 extents:1 across:3785724k SSFS [ 2.404706] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled [ 2.404709] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled [ 2.404711] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled [ 2.404713] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Advanced-N 6205S AGN, REV=0xB0 [ 2.404953] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled [ 2.428204] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs' [ 2.440017] ACPI: Video Device [VID] (multi-head: yes rom: no post: no) [ 2.440167] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input12 [ 2.440309] [drm] Initialized i915 1.6.0 20140905 for 0000:00:02.0 on minor 0 [ 2.447065] EXT4-fs (sda5): mounting ext2 file system using the ext4 subsystem [ 2.449080] EXT4-fs (sda5): mounted filesystem without journal. Opts: (null) [ 2.454155] systemd-journald[179]: Received request to flush runtime journal from PID 1 [ 2.495251] [drm] GMBUS [i915 gmbus vga] timed out, falling back to bit banging on pin 2 [ 2.567310] [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5 [ 2.584098] fbcon: inteldrmfb (fb0) is primary device [ 2.815860] Switched to clocksource tsc [ 2.859168] [drm:cpt_set_fifo_underrun_reporting] *ERROR* uncleared pch fifo underrun on pch transcoder A [ 2.859170] [drm:cpt_serr_int_handler] *ERROR* PCH transcoder A FIFO underrun [ 2.994951] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd001a3/0x940300/0x127c00, board id: 2182, fw id: 1164733 [ 2.994980] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0 [ 3.034110] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6 [ 3.328864] Console: switching to colour frame buffer device 200x56 [ 3.334090] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device [ 3.334092] i915 0000:00:02.0: registered panic notifier [ 3.407084] RPC: Registered named UNIX socket transport module. [ 3.407088] RPC: Registered udp transport module. [ 3.407090] RPC: Registered tcp transport module. [ 3.407092] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 3.417180] FS-Cache: Loaded [ 3.455925] FS-Cache: Netfs 'nfs' registered for caching [ 3.486632] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 3.740341] random: nonblocking pool is initialized [ 4.057623] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled [ 4.064540] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0 [ 4.339407] iwlwifi 0000:03:00.0: L1 Enabled - LTR Disabled [ 4.346331] iwlwifi 0000:03:00.0: Radio type=0x1-0x2-0x0 [ 7.083089] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3 [ 7.278123] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input13 [ 7.721089] wlan0: authenticate with 00:1a:70:5a:6e:0b [ 7.723656] wlan0: send auth to 00:1a:70:5a:6e:0b (try 1/3) [ 7.726567] wlan0: authenticated [ 7.726756] iwlwifi 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP [ 7.726760] iwlwifi 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP [ 7.729277] wlan0: associate with 00:1a:70:5a:6e:0b (try 1/3) [ 7.731676] wlan0: RX AssocResp from 00:1a:70:5a:6e:0b (capab=0x401 status=0 aid=8) [ 7.734538] wlan0: associated -- - Jeremiah Mahler ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 15:26 ` Jeremiah Mahler @ 2014-12-16 16:27 ` Al Viro 2014-12-16 20:03 ` Jeremiah Mahler 0 siblings, 1 reply; 12+ messages in thread From: Al Viro @ 2014-12-16 16:27 UTC (permalink / raw) To: Jeremiah Mahler, Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel On Tue, Dec 16, 2014 at 07:26:26AM -0800, Jeremiah Mahler wrote: > > No such errors happen on the normal boot, presumably? > > > > > [ 2.392117] EXT4-fs (sda5): mounting ext2 file system using the ext4 subsystem > > > [ 2.393920] EXT4-fs (sda5): mounted filesystem without journal. Opts: (null) > > > > Wait a minute. So that happens _before_ /dev/sda5 mount? Could you post dmesg > > from the normal boot (e.g. just prior to the buggy commit)? > > > > I really don't get it - there's nothing for init_fs.root to point to other > > than initramfs by that point, CLONE_FS or no CLONE_FS. We simply don't > > have anything else mounted yet. Do you get another failing bunch of > > request_firmware later? And what does dmesg look like on the working > > kernel - either you have that firmware on initramfs image (in which case > > it ought to have been picked by both kernels), or you do not, in which case > > neither kernel would've managed to load it until after mounting the real > > root... > > I compiled this kernel with the commit just before the bug was introduced > (93fe74b2e2b5d266d630f0c3f8287efcbe6ecd10). Wireless comes up without > any issue. Here is the dmesg output. OK, so the root is on sda6, it's been mounted before those attempts to load firmware and init has been chrooted into it, while init_fs got left behind. And that "chrooted into" has happened without pivot_root(2) (or it would've been caught by chroot_fs_refs() in sys_pivot_root()) and not from the "no /init on initramfs" codepath (you do have it there). OK, it's probably unsalvagable, then. Pity, since it means that PID 1 and kernel threads _must_ share ->fs, for the sake of usable ->fs->root, which is asking for trouble. And it means that we still need a sane solution for nfsd folks... Anyway, dropped that stuff from for-next (and for-linus, obviously), with apologies all around. ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 16:27 ` Al Viro @ 2014-12-16 20:03 ` Jeremiah Mahler 2014-12-17 13:17 ` Takashi Iwai 0 siblings, 1 reply; 12+ messages in thread From: Jeremiah Mahler @ 2014-12-16 20:03 UTC (permalink / raw) To: Al Viro; +Cc: Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel [-- Attachment #1: Type: text/plain, Size: 2296 bytes --] Al Viro, On Tue, Dec 16, 2014 at 04:27:16PM +0000, Al Viro wrote: > On Tue, Dec 16, 2014 at 07:26:26AM -0800, Jeremiah Mahler wrote: > > > > No such errors happen on the normal boot, presumably? > > > > > > > [ 2.392117] EXT4-fs (sda5): mounting ext2 file system using the ext4 subsystem > > > > [ 2.393920] EXT4-fs (sda5): mounted filesystem without journal. Opts: (null) > > > > > > Wait a minute. So that happens _before_ /dev/sda5 mount? Could you post dmesg > > > from the normal boot (e.g. just prior to the buggy commit)? > > > > > > I really don't get it - there's nothing for init_fs.root to point to other > > > than initramfs by that point, CLONE_FS or no CLONE_FS. We simply don't > > > have anything else mounted yet. Do you get another failing bunch of > > > request_firmware later? And what does dmesg look like on the working > > > kernel - either you have that firmware on initramfs image (in which case > > > it ought to have been picked by both kernels), or you do not, in which case > > > neither kernel would've managed to load it until after mounting the real > > > root... > > > > I compiled this kernel with the commit just before the bug was introduced > > (93fe74b2e2b5d266d630f0c3f8287efcbe6ecd10). Wireless comes up without > > any issue. Here is the dmesg output. > > OK, so the root is on sda6, it's been mounted before those attempts to > load firmware and init has been chrooted into it, while init_fs got left > behind. And that "chrooted into" has happened without pivot_root(2) (or > it would've been caught by chroot_fs_refs() in sys_pivot_root()) and > not from the "no /init on initramfs" codepath (you do have it there). > > OK, it's probably unsalvagable, then. Pity, since it means that PID 1 and > kernel threads _must_ share ->fs, for the sake of usable ->fs->root, which > is asking for trouble. And it means that we still need a sane solution for > nfsd folks... > > Anyway, dropped that stuff from for-next (and for-linus, obviously), with > apologies all around. On a totally different machine, an Acer C720, the sound quit working. I bisected that one and it pointed to this same commit. However this one doesn't involve loading firmware or any of that stuff. Attached are the good/bad dmesg logs. -- - Jeremiah Mahler [-- Attachment #2: dmesg.good.log --] [-- Type: text/plain, Size: 42509 bytes --] [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 3.18.0-rc6+ (jeri@newt) (gcc version 4.9.2 (Debian 4.9.2-7) ) #152 SMP Tue Dec 16 11:51:07 PST 2014 [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.18.0-rc6+ root=UUID=e5fd0a8b-e57d-428c-831e-3aff30526800 ro quiet [ 0.000000] e820: BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000002ffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000000030000-0x000000000003ffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000040000-0x000000000009e3ff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009e400-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000000efffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000000f00000-0x0000000000ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000001000000-0x000000007bf79fff] usable [ 0.000000] BIOS-e820: [mem 0x000000007bf7a000-0x000000007e9fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001005fffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: Acer Peppy, BIOS 04/30/2014 [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000000] AGP: No AGP bridge found [ 0.000000] e820: last_pfn = 0x100600 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-back [ 0.000000] MTRR variable ranges enabled: [ 0.000000] 0 base 0000000000 mask 7F80000000 write-back [ 0.000000] 1 base 007C800000 mask 7FFF800000 uncachable [ 0.000000] 2 base 007D000000 mask 7FFF000000 uncachable [ 0.000000] 3 base 007E000000 mask 7FFE000000 uncachable [ 0.000000] 4 base 00D0000000 mask 7FF0000000 write-combining [ 0.000000] 5 base 00FF800000 mask 7FFF800000 uncachable [ 0.000000] 6 base 0100000000 mask 7F00000000 write-back [ 0.000000] 7 disabled [ 0.000000] 8 disabled [ 0.000000] 9 disabled [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] e820: last_pfn = 0x7bf7a max_arch_pfn = 0x400000000 [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576 [ 0.000000] Using GB pages for direct mapping [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff] [ 0.000000] [mem 0x00000000-0x000fffff] page 4k [ 0.000000] BRK [0x01b1a000, 0x01b1afff] PGTABLE [ 0.000000] BRK [0x01b1b000, 0x01b1bfff] PGTABLE [ 0.000000] BRK [0x01b1c000, 0x01b1cfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x100400000-0x1005fffff] [ 0.000000] [mem 0x100400000-0x1005fffff] page 2M [ 0.000000] BRK [0x01b1d000, 0x01b1dfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1003fffff] [ 0.000000] [mem 0x100000000-0x1003fffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x00100000-0x00efffff] [ 0.000000] [mem 0x00100000-0x001fffff] page 4k [ 0.000000] [mem 0x00200000-0x00dfffff] page 2M [ 0.000000] [mem 0x00e00000-0x00efffff] page 4k [ 0.000000] BRK [0x01b1e000, 0x01b1efff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x01000000-0x7bf79fff] [ 0.000000] [mem 0x01000000-0x7bdfffff] page 2M [ 0.000000] [mem 0x7be00000-0x7bf79fff] page 4k [ 0.000000] RAMDISK: [mem 0x35364000-0x369a9fff] [ 0.000000] ACPI: Early table checksum verification disabled [ 0.000000] ACPI: RSDP 0x00000000000FDBB0 000024 (v02 CORE ) [ 0.000000] ACPI: XSDT 0x000000007BF840E0 000054 (v01 CORE COREBOOT 00000000 CORE 00000000) [ 0.000000] ACPI: FACP 0x000000007BF88690 0000F4 (v03 CORE COREBOOT 00000000 CORE 00000001) [ 0.000000] ACPI: DSDT 0x000000007BF84250 004431 (v02 COREv4 COREBOOT 20110725 INTL 20090123) [ 0.000000] ACPI: FACS 0x000000007BF84210 000040 [ 0.000000] ACPI: HPET 0x000000007BF88790 000038 (v01 CORE COREBOOT 00000000 CORE 00000000) [ 0.000000] ACPI: APIC 0x000000007BF887D0 00005C (v01 CORE COREBOOT 00000000 CORE 00000000) [ 0.000000] ACPI: MCFG 0x000000007BF88830 00003C (v01 CORE COREBOOT 00000000 CORE 00000000) [ 0.000000] ACPI: SSDT 0x000000007BF89730 0008A0 (v02 CORE COREBOOT 0000002A CORE 0000002A) [ 0.000000] ACPI: SSDT 0x000000007BF89FD0 00005C (v02 CORE COREBOOT 0000002A CORE 0000002A) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000001005fffff] [ 0.000000] NODE_DATA(0) allocated [mem 0x1005f9000-0x1005fdfff] [ 0.000000] [ffffea0000000000-ffffea00039fffff] PMD -> [ffff880079800000-ffff88007b5fffff] on node 0 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x00001000-0x00ffffff] [ 0.000000] DMA32 [mem 0x01000000-0xffffffff] [ 0.000000] Normal [mem 0x100000000-0x1005fffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x00001000-0x0002ffff] [ 0.000000] node 0: [mem 0x00040000-0x0009dfff] [ 0.000000] node 0: [mem 0x00100000-0x00efffff] [ 0.000000] node 0: [mem 0x01000000-0x7bf79fff] [ 0.000000] node 0: [mem 0x100000000-0x1005fffff] [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x1005fffff] [ 0.000000] On node 0 totalpages: 508935 [ 0.000000] DMA zone: 51 pages used for memmap [ 0.000000] DMA zone: 21 pages reserved [ 0.000000] DMA zone: 3725 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 6887 pages used for memmap [ 0.000000] DMA32 zone: 503674 pages, LIFO batch:31 [ 0.000000] Normal zone: 21 pages used for memmap [ 0.000000] Normal zone: 1536 pages, LIFO batch:0 [ 0.000000] Reserving Intel graphics stolen memory at 0x7ca00000-0x7e9fffff [ 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[0x02] enabled) [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39 [ 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: IRQ9 used by override. [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.000000] PM: Registered nosave memory: [mem 0x00030000-0x0003ffff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff] [ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x00f00000-0x00ffffff] [ 0.000000] PM: Registered nosave memory: [mem 0x7bf7a000-0x7e9fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x7ea00000-0xefffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf3ffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xf4000000-0xfed0ffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed83fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed84000-0xfed84fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed85000-0xffffffff] [ 0.000000] e820: [mem 0x7ea00000-0xefffffff] available for PCI devices [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880100200000 s83648 r8192 d31040 u1048576 [ 0.000000] pcpu-alloc: s83648 r8192 d31040 u1048576 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 501955 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.18.0-rc6+ root=UUID=e5fd0a8b-e57d-428c-831e-3aff30526800 ro quiet [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240 using standard form [ 0.000000] AGP: Checking aperture... [ 0.000000] AGP: No AGP bridge found [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 1903968K/2035740K available (5343K kernel code, 1049K rwdata, 1824K rodata, 1212K init, 880K bss, 131772K reserved) [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. [ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=2. [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS:33024 nr_irqs:512 0 [ 0.000000] Console: colour VGA+ 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] hpet clockevent registered [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 1396.803 MHz processor [ 0.000047] Calibrating delay loop (skipped), value calculated using timer frequency.. 2793.60 BogoMIPS (lpj=5587212) [ 0.000051] pid_max: default: 32768 minimum: 301 [ 0.000063] ACPI: Core revision 20140926 [ 0.004418] ACPI: All ACPI Tables successfully acquired [ 0.007962] Security Framework initialized [ 0.007973] AppArmor: AppArmor disabled by boot time parameter [ 0.007975] Yama: becoming mindful. [ 0.008228] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.008867] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.009148] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) [ 0.009155] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) [ 0.009465] Initializing cgroup subsys devices [ 0.009470] Initializing cgroup subsys freezer [ 0.009474] Initializing cgroup subsys net_cls [ 0.009478] Initializing cgroup subsys blkio [ 0.009480] Initializing cgroup subsys perf_event [ 0.009485] Initializing cgroup subsys net_prio [ 0.009523] CPU: Physical Processor ID: 0 [ 0.009525] CPU: Processor Core ID: 0 [ 0.010880] mce: CPU supports 7 MCE banks [ 0.010899] CPU0: Thermal monitoring enabled (TM1) [ 0.010914] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024 Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4 [ 0.011059] Freeing SMP alternatives memory: 20K (ffffffff81a37000 - ffffffff81a3c000) [ 0.012138] ftrace: allocating 21601 entries in 85 pages [ 0.025620] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.065307] smpboot: CPU0: Intel(R) Celeron(R) 2955U @ 1.40GHz (fam: 06, model: 45, stepping: 01) [ 0.065316] TSC deadline timer enabled [ 0.065345] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver. [ 0.065376] ... version: 3 [ 0.065377] ... bit width: 48 [ 0.065378] ... generic registers: 8 [ 0.065380] ... value mask: 0000ffffffffffff [ 0.065381] ... max period: 0000ffffffffffff [ 0.065383] ... fixed-purpose events: 3 [ 0.065384] ... event mask: 00000007000000ff [ 0.067565] x86: Booting SMP configuration: [ 0.067568] .... node #0, CPUs: #1 [ 0.082124] x86: Booted up 1 node, 2 CPUs [ 0.082127] smpboot: Total of 2 processors activated (5587.21 BogoMIPS) [ 0.082167] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter. [ 0.084192] devtmpfs: initialized [ 0.088359] pinctrl core: initialized pinctrl subsystem [ 0.088525] NET: Registered protocol family 16 [ 0.106136] cpuidle: using governor ladder [ 0.122142] cpuidle: using governor menu [ 0.122210] ACPI: bus type PCI registered [ 0.122213] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.122293] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000) [ 0.122296] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820 [ 0.122418] PCI: Using configuration type 1 for base access [ 0.134673] ACPI: Added _OSI(Module Device) [ 0.134677] ACPI: Added _OSI(Processor Device) [ 0.134678] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.134680] ACPI: Added _OSI(Processor Aggregator Device) [ 0.148366] ACPI: Interpreter enabled [ 0.148374] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140926/hwxface-580) [ 0.148380] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140926/hwxface-580) [ 0.148397] ACPI: (supports S0 S3 S4 S5) [ 0.148399] ACPI: Using IOAPIC for interrupt routing [ 0.148428] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.164002] ACPI: Power Resource [TNP0] (off) [ 0.164051] ACPI: Power Resource [TNP1] (on) [ 0.164741] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.164749] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 0.164804] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability] [ 0.164932] acpi PNP0A08:00: ignoring host bridge window [mem 0x000cc000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000cebff]) [ 0.164939] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge [ 0.165180] PCI host bridge to bus 0000:00 [ 0.165183] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.165186] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] [ 0.165188] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff] [ 0.165190] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] [ 0.165193] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff] [ 0.165195] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff] [ 0.165197] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff] [ 0.165199] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] [ 0.165201] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] [ 0.165203] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] [ 0.165205] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff] [ 0.165207] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff] [ 0.165209] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff] [ 0.165212] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff] [ 0.165214] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff] [ 0.165216] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff] [ 0.165218] pci_bus 0000:00: root bus resource [mem 0x7ea00001-0xfebfffff] [ 0.165220] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff] [ 0.165231] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000 [ 0.165379] pci 0000:00:02.0: [8086:0a06] type 00 class 0x030000 [ 0.165397] pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe03fffff 64bit] [ 0.165407] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref] [ 0.165414] pci 0000:00:02.0: reg 0x20: [io 0x1800-0x183f] [ 0.165551] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300 [ 0.165564] pci 0000:00:03.0: reg 0x10: [mem 0xe0510000-0xe0513fff 64bit] [ 0.165725] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330 [ 0.165747] pci 0000:00:14.0: reg 0x10: [mem 0xe0500000-0xe050ffff 64bit] [ 0.165819] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.165879] pci 0000:00:14.0: System wakeup disabled by ACPI [ 0.165943] pci 0000:00:15.0: [8086:9c60] type 00 class 0x080102 [ 0.165964] pci 0000:00:15.0: reg 0x10: [mem 0xe0518000-0xe0518fff] [ 0.165976] pci 0000:00:15.0: reg 0x14: [mem 0xe0519000-0xe0519fff] [ 0.166156] pci 0000:00:15.1: [8086:9c61] type 00 class 0x0c8000 [ 0.166182] pci 0000:00:15.1: reg 0x10: [mem 0xe051a000-0xe051afff] [ 0.166194] pci 0000:00:15.1: reg 0x14: [mem 0xe051b000-0xe051bfff] [ 0.166373] pci 0000:00:15.2: [8086:9c62] type 00 class 0x0c8000 [ 0.166393] pci 0000:00:15.2: reg 0x10: [mem 0xe051c000-0xe051cfff] [ 0.166405] pci 0000:00:15.2: reg 0x14: [mem 0xe051d000-0xe051dfff] [ 0.166596] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300 [ 0.166614] pci 0000:00:1b.0: reg 0x10: [mem 0xe0514000-0xe0517fff 64bit] [ 0.166697] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.166757] pci 0000:00:1b.0: System wakeup disabled by ACPI [ 0.166817] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400 [ 0.166898] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.167029] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320 [ 0.167053] pci 0000:00:1d.0: reg 0x10: [mem 0xe051f800-0xe051fbff] [ 0.167159] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.167221] pci 0000:00:1d.0: System wakeup disabled by ACPI [ 0.167285] pci 0000:00:1f.0: [8086:9c45] type 00 class 0x060100 [ 0.167514] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601 [ 0.167532] pci 0000:00:1f.2: reg 0x10: [io 0x1860-0x1867] [ 0.167542] pci 0000:00:1f.2: reg 0x14: [io 0x1870-0x1873] [ 0.167551] pci 0000:00:1f.2: reg 0x18: [io 0x1868-0x186f] [ 0.167559] pci 0000:00:1f.2: reg 0x1c: [io 0x1874-0x1877] [ 0.167568] pci 0000:00:1f.2: reg 0x20: [io 0x1840-0x185f] [ 0.167577] pci 0000:00:1f.2: reg 0x24: [mem 0xe051f000-0xe051f7ff] [ 0.167623] pci 0000:00:1f.2: PME# supported from D3hot [ 0.167732] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500 [ 0.167749] pci 0000:00:1f.3: reg 0x10: [mem 0xe051fc00-0xe051fcff 64bit] [ 0.167773] pci 0000:00:1f.3: reg 0x20: [io 0x0400-0x041f] [ 0.167904] pci 0000:00:1f.6: [8086:9c24] type 00 class 0x118000 [ 0.167938] pci 0000:00:1f.6: reg 0x10: [mem 0xe051e000-0xe051efff 64bit] [ 0.168228] pci 0000:01:00.0: [168c:0034] type 00 class 0x028000 [ 0.168256] pci 0000:01:00.0: reg 0x10: [mem 0xe0400000-0xe047ffff 64bit] [ 0.168316] pci 0000:01:00.0: reg 0x30: [mem 0xe0480000-0xe048ffff pref] [ 0.168394] pci 0000:01:00.0: supports D1 D2 [ 0.168397] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.174200] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.174206] pci 0000:00:1c.0: bridge window [mem 0xe0400000-0xe04fffff] [ 0.174352] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11, disabled. [ 0.174417] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10, disabled. [ 0.174478] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11, disabled. [ 0.174537] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15), disabled. [ 0.174595] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. [ 0.174654] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. [ 0.174712] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. [ 0.174769] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. [ 0.175540] ACPI : EC: GPE = 0x24, I/O: command/status = 0x66, data = 0x62 [ 0.175685] vgaarb: setting as boot device: PCI:0000:00:02.0 [ 0.175688] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none [ 0.175692] vgaarb: loaded [ 0.175694] vgaarb: bridge control possible 0000:00:02.0 [ 0.175799] PCI: Using ACPI for IRQ routing [ 0.177453] PCI: pci_cache_line_size set to 64 bytes [ 0.177507] e820: reserve RAM buffer [mem 0x0009e400-0x0009ffff] [ 0.177509] e820: reserve RAM buffer [mem 0x7bf7a000-0x7bffffff] [ 0.177511] e820: reserve RAM buffer [mem 0x100600000-0x103ffffff] [ 0.177711] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.177719] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 0.179752] Switched to clocksource hpet [ 0.189200] pnp: PnP ACPI init [ 0.189325] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 0.189329] system 00:00: [mem 0xfed10000-0xfed13fff] has been reserved [ 0.189332] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.189334] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.189337] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved [ 0.189340] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved [ 0.189343] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved [ 0.189346] system 00:00: [mem 0xfed45000-0xfed8ffff] could not be reserved [ 0.189348] system 00:00: [mem 0x00f00000-0x00ffffff] has been reserved [ 0.189353] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.189668] system 00:01: [mem 0xfed00000-0xfed003ff] has been reserved [ 0.189672] system 00:01: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) [ 0.189759] system 00:02: [io 0x1000-0x10fe] could not be reserved [ 0.189763] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.189797] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.189853] system 00:04: [io 0x0900-0x09fe] has been reserved [ 0.189856] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.189909] system 00:05: [io 0x0200] has been reserved [ 0.189912] system 00:05: [io 0x0204] has been reserved [ 0.189914] system 00:05: [io 0x0800-0x087f] has been reserved [ 0.189917] system 00:05: [io 0x0880-0x08ff] has been reserved [ 0.189920] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.189967] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active) [ 0.190012] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 PNP030b (active) [ 0.190063] pnp 00:08: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active) [ 0.190182] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.190326] pnp: PnP ACPI: found 10 devices [ 0.197432] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.197439] pci 0000:00:1c.0: bridge window [mem 0xe0400000-0xe04fffff] [ 0.197449] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] [ 0.197452] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] [ 0.197454] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] [ 0.197456] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff] [ 0.197458] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff] [ 0.197460] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff] [ 0.197463] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff] [ 0.197465] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff] [ 0.197467] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff] [ 0.197469] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff] [ 0.197471] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff] [ 0.197473] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff] [ 0.197475] pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff] [ 0.197477] pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff] [ 0.197479] pci_bus 0000:00: resource 18 [mem 0x000f0000-0x000fffff] [ 0.197481] pci_bus 0000:00: resource 19 [mem 0x7ea00001-0xfebfffff] [ 0.197484] pci_bus 0000:00: resource 20 [mem 0xfed40000-0xfed44fff] [ 0.197486] pci_bus 0000:01: resource 1 [mem 0xe0400000-0xe04fffff] [ 0.197543] NET: Registered protocol family 2 [ 0.197783] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ 0.197864] TCP bind hash table entries: 16384 (order: 7, 524288 bytes) [ 0.198053] TCP: Hash tables configured (established 16384 bind 16384) [ 0.198080] TCP: reno registered [ 0.198093] UDP hash table entries: 1024 (order: 4, 98304 bytes) [ 0.198140] UDP-Lite hash table entries: 1024 (order: 4, 98304 bytes) [ 0.198259] NET: Registered protocol family 1 [ 0.198283] pci 0000:00:02.0: Video device with shadowed ROM [ 0.198848] PCI: CLS 64 bytes, default 64 [ 0.198914] Unpacking initramfs... [ 0.813574] Freeing initrd memory: 22808K (ffff880035364000 - ffff8800369aa000) [ 0.813600] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.813604] software IO TLB [mem 0x75800000-0x79800000] (64MB) mapped at [ffff880075800000-ffff8800797fffff] [ 0.813807] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer [ 0.813885] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x15 [ 0.813894] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x15 [ 0.813974] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba [ 0.814379] futex hash table entries: 512 (order: 3, 32768 bytes) [ 0.814430] audit: initializing netlink subsys (disabled) [ 0.814454] audit: type=2000 audit(1418759606.812:1): initialized [ 0.814933] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 0.814969] zpool: loaded [ 0.814973] zbud: loaded [ 0.815207] VFS: Disk quotas dquot_6.5.2 [ 0.815230] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.815297] msgmni has been set to 3763 [ 0.815781] alg: No test for stdrng (krng) [ 0.815815] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) [ 0.815855] io scheduler noop registered [ 0.815859] io scheduler deadline registered [ 0.815873] io scheduler cfq registered (default) [ 0.816142] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X [ 0.816285] aer 0000:00:1c.0:pcie02: service driver aer loaded [ 0.816311] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt [ 0.816314] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt [ 0.816318] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded [ 0.816330] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 0.816357] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 0.816436] intel_idle: MWAIT substates: 0x11142120 [ 0.816437] intel_idle: v0.4 model 0x45 [ 0.816439] intel_idle: lapic_timer_reliable_states 0xffffffff [ 0.816695] GHES: HEST is not enabled! [ 0.816789] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.817454] Linux agpgart interface v0.103 [ 0.817612] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1 [ 0.817614] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp [ 0.818151] i8042: Warning: Keylock active [ 0.818340] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 0.818535] mousedev: PS/2 mouse device common for all mice [ 0.818597] rtc_cmos 00:03: RTC can wake from S4 [ 0.818773] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 0.818803] rtc_cmos 00:03: alarms up to one month, 242 bytes nvram, hpet irqs [ 0.818821] Intel P-state driver initializing. [ 0.818969] ledtrig-cpu: registered to indicate activity on CPUs [ 0.819232] AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com> [ 0.819235] AMD IOMMUv2 functionality not available on this system [ 0.819452] TCP: cubic registered [ 0.819547] NET: Registered protocol family 10 [ 0.820023] mip6: Mobile IPv6 [ 0.820048] NET: Registered protocol family 17 [ 0.820069] mpls_gso: MPLS GSO support [ 0.821014] registered taskstats version 1 [ 0.821735] rtc_cmos 00:03: setting system clock to 2014-12-16 19:53:27 UTC (1418759607) [ 0.823888] Freeing unused kernel memory: 1212K (ffffffff81908000 - ffffffff81a37000) [ 0.823891] Write protecting the kernel read-only data: 8192k [ 0.828035] Freeing unused kernel memory: 788K (ffff88000153b000 - ffff880001600000) [ 0.829175] Freeing unused kernel memory: 224K (ffff8800017c8000 - ffff880001800000) [ 0.829306] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 [ 0.847257] systemd-udevd[62]: starting version 215 [ 0.847733] random: systemd-udevd urandom read with 2 bits of entropy available [ 0.864116] SCSI subsystem initialized [ 0.867936] libata version 3.00 loaded. [ 0.869381] ahci 0000:00:1f.2: version 3.0 [ 0.869571] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X [ 0.869591] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled [ 0.869608] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 2 ports 6 Gbps 0x1 impl SATA mode [ 0.869612] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo only pio slum part deso sadm sds apst [ 0.872169] scsi host0: ahci [ 0.873076] scsi host1: ahci [ 0.873164] ata1: SATA max UDMA/133 abar m2048@0xe051f000 port 0xe051f100 irq 41 [ 0.873167] ata2: DUMMY [ 0.873540] thermal LNXTHERM:00: registered as thermal_zone0 [ 0.873544] ACPI: Thermal Zone [THRM] (46 C) [ 0.876360] sdhci: Secure Digital Host Controller Interface driver [ 0.876364] sdhci: Copyright(c) Pierre Ossman [ 1.191664] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.191923] ata1.00: ATA-10: SC2 M2 SSD, S9FM01.7, max UDMA/100 [ 1.191928] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32), AA [ 1.192198] ata1.00: configured for UDMA/100 [ 1.192384] scsi 0:0:0:0: Direct-Access ATA SC2 M2 SSD 01.7 PQ: 0 ANSI: 5 [ 1.194720] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB) [ 1.194778] sd 0:0:0:0: [sda] Write Protect is off [ 1.194782] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.194799] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.195387] sda: sda1 sda2 < sda5 > [ 1.196247] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.197053] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 1.352763] PM: Starting manual resume from disk [ 1.407162] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) [ 1.705439] fuse init (API version 7.23) [ 1.755855] systemd-udevd[163]: starting version 215 [ 1.811508] tsc: Refined TSC clocksource calibration: 1396.766 MHz [ 1.878941] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro [ 1.895289] systemd-journald[144]: Received request to flush runtime journal from PID 1 [ 1.934532] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 [ 1.934617] ACPI: Lid Switch [LID0] [ 1.937908] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2 [ 1.937917] ACPI: Power Button [PWRB] [ 1.938002] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3 [ 1.938006] ACPI: Sleep Button [TPAD] [ 1.938076] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:01/input/input4 [ 1.938080] ACPI: Sleep Button [TSCR] [ 1.938169] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5 [ 1.938173] ACPI: Power Button [PWRF] [ 1.944438] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) [ 1.944655] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6 [ 1.967363] ACPI: Battery Slot [BAT0] (battery present) [ 1.969255] ACPI: AC Adapter [AC] (on-line) [ 1.972621] tpm_tis tpm_tis: 1.2 TPM (device-id 0xB, rev-id 16) [ 2.023898] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.032367] input: PC Speaker as /devices/platform/pcspkr/input/input7 [ 2.034674] ACPI: bus type USB registered [ 2.034718] usbcore: registered new interface driver usbfs [ 2.034736] usbcore: registered new interface driver hub [ 2.036956] usbcore: registered new device driver usb [ 2.040377] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt [ 2.066278] snd_hda_intel 0000:00:1b.0: irq 42 for MSI/MSI-X [ 2.095526] [drm] Initialized drm 1.1.0 20060810 [ 2.096996] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.097008] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 2.097109] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported [ 2.097132] xhci_hcd 0000:00:14.0: irq 43 for MSI/MSI-X [ 2.097493] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 2.097496] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.097498] usb usb1: Product: xHCI Host Controller [ 2.097501] usb usb1: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.097503] usb usb1: SerialNumber: 0000:00:14.0 [ 2.097792] hub 1-0:1.0: USB hub found [ 2.097808] hub 1-0:1.0: 8 ports detected [ 2.098211] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.098217] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 2.098260] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003 [ 2.098263] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.098265] usb usb2: Product: xHCI Host Controller [ 2.098267] usb usb2: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.098269] usb usb2: SerialNumber: 0000:00:14.0 [ 2.098427] hub 2-0:1.0: USB hub found [ 2.098437] hub 2-0:1.0: 4 ports detected [ 2.100748] sound hdaudioC1D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker [ 2.100753] sound hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 2.100756] sound hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0) [ 2.100758] sound hdaudioC1D0: mono: mono_out=0x0 [ 2.100760] sound hdaudioC1D0: inputs: [ 2.100763] sound hdaudioC1D0: Internal Mic=0x1a [ 2.100766] sound hdaudioC1D0: Mic=0x19 [ 2.118151] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card1/hdaudioC1D0/input8 [ 2.118385] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input9 [ 2.118467] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input10 [ 2.141706] __add_probed_i2c_device failed to register device 1-4a [ 2.160140] platform chromeos_laptop: Driver chromeos_laptop requests probe deferral [ 2.184445] cfg80211: Calling CRDA to update world regulatory domain [ 2.193384] alg: No test for crc32 (crc32-pclmul) [ 2.220459] iTCO_vendor_support: vendor-support=0 [ 2.223193] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11 [ 2.223241] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1060) [ 2.223776] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 2.224531] __add_probed_i2c_device failed to register device 1-4a [ 2.224547] platform chromeos_laptop: Driver chromeos_laptop requests probe deferral [ 2.251264] input: Cypress APA Trackpad (cyapa) as /devices/pci0000:00/0000:00:15.1/i2c-0/0-0067/input/input11 [ 2.255229] __add_probed_i2c_device failed to register device 1-4a [ 2.255241] platform chromeos_laptop: Driver chromeos_laptop requests probe deferral [ 2.257607] RPC: Registered named UNIX socket transport module. [ 2.257611] RPC: Registered udp transport module. [ 2.257613] RPC: Registered tcp transport module. [ 2.257614] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 2.264947] [drm] Memory usable by graphics device = 2048M [ 2.264954] [drm] Replacing VGA console driver [ 2.265119] tpm_inf_pnp 00:08: Found TPM with ID IFX0102 [ 2.266402] Console: switching to colour dummy device 80x25 [ 2.268048] i915 0000:00:02.0: irq 44 for MSI/MSI-X [ 2.268063] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 2.268065] [drm] Driver supports precise vblank timestamp query. [ 2.268108] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 2.268165] [drm] applying backlight present quirk [ 2.277627] FS-Cache: Loaded [ 2.316428] [drm] Initialized i915 1.6.0 20140905 for 0000:00:02.0 on minor 0 [ 2.317916] __add_probed_i2c_device failed to register device 1-4a [ 2.317929] platform chromeos_laptop: Driver chromeos_laptop requests probe deferral [ 2.318811] fbcon: inteldrmfb (fb0) is primary device [ 2.349401] FS-Cache: Netfs 'nfs' registered for caching [ 2.403691] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 2.410475] usb 1-3: new high-speed USB device number 2 using xhci_hcd [ 2.411628] ath: phy0: ASPM enabled: 0x43 [ 2.411630] ath: EEPROM regdomain: 0x6c [ 2.411631] ath: EEPROM indicates we should expect a direct regpair map [ 2.411633] ath: Country alpha2 being used: 00 [ 2.411633] ath: Regpair used: 0x6c [ 2.427302] cfg80211: World regulatory domain updated: [ 2.427304] cfg80211: DFS Master region: unset [ 2.427305] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ 2.427307] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.427309] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.427310] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ 2.427311] cfg80211: (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A) [ 2.427313] cfg80211: (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.427314] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.427315] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ 2.427316] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ 2.428215] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' [ 2.428535] ieee80211 phy0: Atheros AR9462 Rev:2 mem=0xffffc90004580000, irq=16 [ 2.429411] __add_probed_i2c_device failed to register device 1-4a [ 2.429412] chromeos_laptop_probe: Ran out of tries for device. [ 2.435191] intel_rapl: Found RAPL domain package [ 2.435194] intel_rapl: Found RAPL domain core [ 2.435196] intel_rapl: Found RAPL domain uncore [ 2.435199] intel_rapl: Found RAPL domain dram [ 2.664449] usb 1-3: New USB device found, idVendor=1bcf, idProduct=2c67 [ 2.664453] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.664455] usb 1-3: Product: HD WebCam [ 2.664457] usb 1-3: Manufacturer: NC.21411.024409008DCLM0001 [ 2.748233] media: Linux media interface: v0.10 [ 2.761067] Linux video capture interface: v2.00 [ 2.779665] uvcvideo: Found UVC 1.00 device HD WebCam (1bcf:2c67) [ 2.788668] input: HD WebCam as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/input/input12 [ 2.788776] usbcore: registered new interface driver uvcvideo [ 2.788777] USB Video Class driver (1.1.1) [ 2.811617] Switched to clocksource tsc [ 2.899409] usb 1-4: new full-speed USB device number 3 using xhci_hcd [ 3.029104] usb 1-4: language id specifier not provided by device, defaulting to English [ 3.030976] usb 1-4: New USB device found, idVendor=0489, idProduct=e056 [ 3.030978] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 3.071870] Bluetooth: Core ver 2.19 [ 3.071901] NET: Registered protocol family 31 [ 3.071902] Bluetooth: HCI device and connection manager initialized [ 3.071912] Bluetooth: HCI socket layer initialized [ 3.071915] Bluetooth: L2CAP socket layer initialized [ 3.071925] Bluetooth: SCO socket layer initialized [ 3.075804] usbcore: registered new interface driver btusb [ 3.078086] usbcore: registered new interface driver ath3k [ 3.199364] usb 1-5: new low-speed USB device number 4 using xhci_hcd [ 3.379415] Console: switching to colour frame buffer device 170x48 [ 3.383083] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device [ 3.383084] i915 0000:00:02.0: registered panic notifier [ 3.389614] usb 1-5: New USB device found, idVendor=046d, idProduct=c062 [ 3.389620] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.389623] usb 1-5: Product: USB Laser Mouse [ 3.389625] usb 1-5: Manufacturer: Logitech [ 3.389757] usb 1-5: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes [ 3.399277] snd_hda_intel 0000:00:03.0: irq 45 for MSI/MSI-X [ 3.402767] hidraw: raw HID events driver (C) Jiri Kosina [ 3.415487] usbcore: registered new interface driver usbhid [ 3.415491] usbhid: USB HID core driver [ 3.416466] Adding 4069372k swap on /dev/sda5. Priority:-1 extents:1 across:4069372k SSFS [ 3.418208] input: Logitech USB Laser Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C062.0001/input/input13 [ 3.419398] hid-generic 0003:046D:C062.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB Laser Mouse] on usb-0000:00:14.0-5/input0 [ 3.424128] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input14 [ 3.424440] systemd-journald[144]: Received request to flush runtime journal from PID 1 [ 3.427295] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input15 [ 3.427559] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input16 [ 3.588066] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 3.588071] Bluetooth: BNEP filters: protocol multicast [ 3.588081] Bluetooth: BNEP socket layer initialized [ 4.454337] random: nonblocking pool is initialized [ 7.409423] wlan0: authenticate with 00:1a:70:5a:6e:0b [ 7.419278] wlan0: send auth to 00:1a:70:5a:6e:0b (try 1/3) [ 7.421357] wlan0: authenticated [ 7.421643] ath9k 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP [ 7.421651] ath9k 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP [ 7.422714] wlan0: associate with 00:1a:70:5a:6e:0b (try 1/3) [ 7.428617] wlan0: RX AssocResp from 00:1a:70:5a:6e:0b (capab=0x401 status=0 aid=3) [ 7.428722] wlan0: associated [-- Attachment #3: dmesg.bad.log --] [-- Type: text/plain, Size: 41508 bytes --] [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 3.18.0-rc6+ (jeri@newt) (gcc version 4.9.2 (Debian 4.9.2-7) ) #151 SMP Tue Dec 16 11:48:55 PST 2014 [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.18.0-rc6+ root=UUID=e5fd0a8b-e57d-428c-831e-3aff30526800 ro quiet [ 0.000000] e820: BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000002ffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000000030000-0x000000000003ffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000040000-0x000000000009e3ff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009e400-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000000efffff] usable [ 0.000000] BIOS-e820: [mem 0x0000000000f00000-0x0000000000ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000001000000-0x000000007bf79fff] usable [ 0.000000] BIOS-e820: [mem 0x000000007bf7a000-0x000000007e9fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed84000-0x00000000fed84fff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001005fffff] usable [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.7 present. [ 0.000000] DMI: Acer Peppy, BIOS 04/30/2014 [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000000] AGP: No AGP bridge found [ 0.000000] e820: last_pfn = 0x100600 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-back [ 0.000000] MTRR variable ranges enabled: [ 0.000000] 0 base 0000000000 mask 7F80000000 write-back [ 0.000000] 1 base 007C800000 mask 7FFF800000 uncachable [ 0.000000] 2 base 007D000000 mask 7FFF000000 uncachable [ 0.000000] 3 base 007E000000 mask 7FFE000000 uncachable [ 0.000000] 4 base 00D0000000 mask 7FF0000000 write-combining [ 0.000000] 5 base 00FF800000 mask 7FFF800000 uncachable [ 0.000000] 6 base 0100000000 mask 7F00000000 write-back [ 0.000000] 7 disabled [ 0.000000] 8 disabled [ 0.000000] 9 disabled [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106 [ 0.000000] e820: last_pfn = 0x7bf7a max_arch_pfn = 0x400000000 [ 0.000000] Base memory trampoline at [ffff880000098000] 98000 size 24576 [ 0.000000] Using GB pages for direct mapping [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff] [ 0.000000] [mem 0x00000000-0x000fffff] page 4k [ 0.000000] BRK [0x01b1a000, 0x01b1afff] PGTABLE [ 0.000000] BRK [0x01b1b000, 0x01b1bfff] PGTABLE [ 0.000000] BRK [0x01b1c000, 0x01b1cfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x100400000-0x1005fffff] [ 0.000000] [mem 0x100400000-0x1005fffff] page 2M [ 0.000000] BRK [0x01b1d000, 0x01b1dfff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x100000000-0x1003fffff] [ 0.000000] [mem 0x100000000-0x1003fffff] page 2M [ 0.000000] init_memory_mapping: [mem 0x00100000-0x00efffff] [ 0.000000] [mem 0x00100000-0x001fffff] page 4k [ 0.000000] [mem 0x00200000-0x00dfffff] page 2M [ 0.000000] [mem 0x00e00000-0x00efffff] page 4k [ 0.000000] BRK [0x01b1e000, 0x01b1efff] PGTABLE [ 0.000000] init_memory_mapping: [mem 0x01000000-0x7bf79fff] [ 0.000000] [mem 0x01000000-0x7bdfffff] page 2M [ 0.000000] [mem 0x7be00000-0x7bf79fff] page 4k [ 0.000000] RAMDISK: [mem 0x35364000-0x369a9fff] [ 0.000000] ACPI: Early table checksum verification disabled [ 0.000000] ACPI: RSDP 0x00000000000FDBB0 000024 (v02 CORE ) [ 0.000000] ACPI: XSDT 0x000000007BF840E0 000054 (v01 CORE COREBOOT 00000000 CORE 00000000) [ 0.000000] ACPI: FACP 0x000000007BF88690 0000F4 (v03 CORE COREBOOT 00000000 CORE 00000001) [ 0.000000] ACPI: DSDT 0x000000007BF84250 004431 (v02 COREv4 COREBOOT 20110725 INTL 20090123) [ 0.000000] ACPI: FACS 0x000000007BF84210 000040 [ 0.000000] ACPI: HPET 0x000000007BF88790 000038 (v01 CORE COREBOOT 00000000 CORE 00000000) [ 0.000000] ACPI: APIC 0x000000007BF887D0 00005C (v01 CORE COREBOOT 00000000 CORE 00000000) [ 0.000000] ACPI: MCFG 0x000000007BF88830 00003C (v01 CORE COREBOOT 00000000 CORE 00000000) [ 0.000000] ACPI: SSDT 0x000000007BF89730 0008A0 (v02 CORE COREBOOT 0000002A CORE 0000002A) [ 0.000000] ACPI: SSDT 0x000000007BF89FD0 00005C (v02 CORE COREBOOT 0000002A CORE 0000002A) [ 0.000000] ACPI: Local APIC address 0xfee00000 [ 0.000000] No NUMA configuration found [ 0.000000] Faking a node at [mem 0x0000000000000000-0x00000001005fffff] [ 0.000000] NODE_DATA(0) allocated [mem 0x1005f9000-0x1005fdfff] [ 0.000000] [ffffea0000000000-ffffea00039fffff] PMD -> [ffff880079800000-ffff88007b5fffff] on node 0 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x00001000-0x00ffffff] [ 0.000000] DMA32 [mem 0x01000000-0xffffffff] [ 0.000000] Normal [mem 0x100000000-0x1005fffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x00001000-0x0002ffff] [ 0.000000] node 0: [mem 0x00040000-0x0009dfff] [ 0.000000] node 0: [mem 0x00100000-0x00efffff] [ 0.000000] node 0: [mem 0x01000000-0x7bf79fff] [ 0.000000] node 0: [mem 0x100000000-0x1005fffff] [ 0.000000] Initmem setup node 0 [mem 0x00001000-0x1005fffff] [ 0.000000] On node 0 totalpages: 508935 [ 0.000000] DMA zone: 51 pages used for memmap [ 0.000000] DMA zone: 21 pages reserved [ 0.000000] DMA zone: 3725 pages, LIFO batch:0 [ 0.000000] DMA32 zone: 6887 pages used for memmap [ 0.000000] DMA32 zone: 503674 pages, LIFO batch:31 [ 0.000000] Normal zone: 21 pages used for memmap [ 0.000000] Normal zone: 1536 pages, LIFO batch:0 [ 0.000000] Reserving Intel graphics stolen memory at 0x7ca00000-0x7e9fffff [ 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[0x02] enabled) [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0]) [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39 [ 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: IRQ9 used by override. [ 0.000000] Using ACPI (MADT) for SMP configuration information [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000 [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.000000] PM: Registered nosave memory: [mem 0x00030000-0x0003ffff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009efff] [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff] [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff] [ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x00f00000-0x00ffffff] [ 0.000000] PM: Registered nosave memory: [mem 0x7bf7a000-0x7e9fffff] [ 0.000000] PM: Registered nosave memory: [mem 0x7ea00000-0xefffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xf3ffffff] [ 0.000000] PM: Registered nosave memory: [mem 0xf4000000-0xfed0ffff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed83fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed84000-0xfed84fff] [ 0.000000] PM: Registered nosave memory: [mem 0xfed85000-0xffffffff] [ 0.000000] e820: [mem 0x7ea00000-0xefffffff] available for PCI devices [ 0.000000] Booting paravirtualized kernel on bare hardware [ 0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:2 nr_node_ids:1 [ 0.000000] PERCPU: Embedded 30 pages/cpu @ffff880100200000 s83648 r8192 d31040 u1048576 [ 0.000000] pcpu-alloc: s83648 r8192 d31040 u1048576 alloc=1*2097152 [ 0.000000] pcpu-alloc: [0] 0 1 [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 501955 [ 0.000000] Policy zone: Normal [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.18.0-rc6+ root=UUID=e5fd0a8b-e57d-428c-831e-3aff30526800 ro quiet [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] xsave: enabled xstate_bv 0x3, cntxt size 0x240 using standard form [ 0.000000] AGP: Checking aperture... [ 0.000000] AGP: No AGP bridge found [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing! [ 0.000000] Memory: 1903968K/2035740K available (5343K kernel code, 1049K rwdata, 1824K rodata, 1212K init, 880K bss, 131772K reserved) [ 0.000000] Hierarchical RCU implementation. [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled. [ 0.000000] RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=2. [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] NR_IRQS:33024 nr_irqs:512 0 [ 0.000000] Console: colour VGA+ 80x25 [ 0.000000] console [tty0] enabled [ 0.000000] hpet clockevent registered [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 1396.801 MHz processor [ 0.000048] Calibrating delay loop (skipped), value calculated using timer frequency.. 2793.60 BogoMIPS (lpj=5587204) [ 0.000052] pid_max: default: 32768 minimum: 301 [ 0.000063] ACPI: Core revision 20140926 [ 0.004434] ACPI: All ACPI Tables successfully acquired [ 0.007681] Security Framework initialized [ 0.007692] AppArmor: AppArmor disabled by boot time parameter [ 0.007693] Yama: becoming mindful. [ 0.007953] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes) [ 0.008593] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.008873] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes) [ 0.008880] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes) [ 0.009191] Initializing cgroup subsys devices [ 0.009196] Initializing cgroup subsys freezer [ 0.009201] Initializing cgroup subsys net_cls [ 0.009204] Initializing cgroup subsys blkio [ 0.009207] Initializing cgroup subsys perf_event [ 0.009211] Initializing cgroup subsys net_prio [ 0.009250] CPU: Physical Processor ID: 0 [ 0.009251] CPU: Processor Core ID: 0 [ 0.010607] mce: CPU supports 7 MCE banks [ 0.010625] CPU0: Thermal monitoring enabled (TM1) [ 0.010641] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024 Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4 [ 0.010785] Freeing SMP alternatives memory: 20K (ffffffff81a37000 - ffffffff81a3c000) [ 0.011870] ftrace: allocating 21601 entries in 85 pages [ 0.025147] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.064828] smpboot: CPU0: Intel(R) Celeron(R) 2955U @ 1.40GHz (fam: 06, model: 45, stepping: 01) [ 0.064837] TSC deadline timer enabled [ 0.064866] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver. [ 0.064898] ... version: 3 [ 0.064899] ... bit width: 48 [ 0.064900] ... generic registers: 8 [ 0.064902] ... value mask: 0000ffffffffffff [ 0.064903] ... max period: 0000ffffffffffff [ 0.064904] ... fixed-purpose events: 3 [ 0.064906] ... event mask: 00000007000000ff [ 0.066898] x86: Booting SMP configuration: [ 0.066901] .... node #0, CPUs: #1 [ 0.081454] x86: Booted up 1 node, 2 CPUs [ 0.081459] smpboot: Total of 2 processors activated (5587.20 BogoMIPS) [ 0.081498] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter. [ 0.083521] devtmpfs: initialized [ 0.087711] pinctrl core: initialized pinctrl subsystem [ 0.087879] NET: Registered protocol family 16 [ 0.105468] cpuidle: using governor ladder [ 0.121475] cpuidle: using governor menu [ 0.121544] ACPI: bus type PCI registered [ 0.121547] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.121628] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000) [ 0.121631] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820 [ 0.121748] PCI: Using configuration type 1 for base access [ 0.138007] ACPI: Added _OSI(Module Device) [ 0.138010] ACPI: Added _OSI(Processor Device) [ 0.138012] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.138014] ACPI: Added _OSI(Processor Aggregator Device) [ 0.151697] ACPI: Interpreter enabled [ 0.151706] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140926/hwxface-580) [ 0.151712] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140926/hwxface-580) [ 0.151730] ACPI: (supports S0 S3 S4 S5) [ 0.151732] ACPI: Using IOAPIC for interrupt routing [ 0.151762] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.171342] ACPI: Power Resource [TNP0] (off) [ 0.171391] ACPI: Power Resource [TNP1] (on) [ 0.172082] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.172090] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] [ 0.172144] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability] [ 0.172274] acpi PNP0A08:00: ignoring host bridge window [mem 0x000cc000-0x000cffff] (conflicts with Video ROM [mem 0x000c0000-0x000cebff]) [ 0.172281] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge [ 0.172520] PCI host bridge to bus 0000:00 [ 0.172524] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.172527] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7] [ 0.172529] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff] [ 0.172531] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff] [ 0.172534] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff] [ 0.172536] pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff] [ 0.172538] pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff] [ 0.172540] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff] [ 0.172542] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff] [ 0.172544] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff] [ 0.172547] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff] [ 0.172549] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff] [ 0.172551] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff] [ 0.172553] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff] [ 0.172555] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff] [ 0.172557] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff] [ 0.172560] pci_bus 0000:00: root bus resource [mem 0x7ea00001-0xfebfffff] [ 0.172562] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff] [ 0.172573] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000 [ 0.172720] pci 0000:00:02.0: [8086:0a06] type 00 class 0x030000 [ 0.172738] pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe03fffff 64bit] [ 0.172748] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref] [ 0.172755] pci 0000:00:02.0: reg 0x20: [io 0x1800-0x183f] [ 0.172892] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300 [ 0.172905] pci 0000:00:03.0: reg 0x10: [mem 0xe0510000-0xe0513fff 64bit] [ 0.173066] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330 [ 0.173088] pci 0000:00:14.0: reg 0x10: [mem 0xe0500000-0xe050ffff 64bit] [ 0.173161] pci 0000:00:14.0: PME# supported from D3hot D3cold [ 0.173220] pci 0000:00:14.0: System wakeup disabled by ACPI [ 0.173285] pci 0000:00:15.0: [8086:9c60] type 00 class 0x080102 [ 0.173305] pci 0000:00:15.0: reg 0x10: [mem 0xe0518000-0xe0518fff] [ 0.173318] pci 0000:00:15.0: reg 0x14: [mem 0xe0519000-0xe0519fff] [ 0.173497] pci 0000:00:15.1: [8086:9c61] type 00 class 0x0c8000 [ 0.173523] pci 0000:00:15.1: reg 0x10: [mem 0xe051a000-0xe051afff] [ 0.173535] pci 0000:00:15.1: reg 0x14: [mem 0xe051b000-0xe051bfff] [ 0.173714] pci 0000:00:15.2: [8086:9c62] type 00 class 0x0c8000 [ 0.173735] pci 0000:00:15.2: reg 0x10: [mem 0xe051c000-0xe051cfff] [ 0.173747] pci 0000:00:15.2: reg 0x14: [mem 0xe051d000-0xe051dfff] [ 0.173937] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300 [ 0.173956] pci 0000:00:1b.0: reg 0x10: [mem 0xe0514000-0xe0517fff 64bit] [ 0.174037] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold [ 0.174097] pci 0000:00:1b.0: System wakeup disabled by ACPI [ 0.174157] pci 0000:00:1c.0: [8086:9c10] type 01 class 0x060400 [ 0.174237] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold [ 0.174367] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320 [ 0.174391] pci 0000:00:1d.0: reg 0x10: [mem 0xe051f800-0xe051fbff] [ 0.174497] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold [ 0.174558] pci 0000:00:1d.0: System wakeup disabled by ACPI [ 0.174622] pci 0000:00:1f.0: [8086:9c45] type 00 class 0x060100 [ 0.174850] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601 [ 0.174868] pci 0000:00:1f.2: reg 0x10: [io 0x1860-0x1867] [ 0.174877] pci 0000:00:1f.2: reg 0x14: [io 0x1870-0x1873] [ 0.174886] pci 0000:00:1f.2: reg 0x18: [io 0x1868-0x186f] [ 0.174895] pci 0000:00:1f.2: reg 0x1c: [io 0x1874-0x1877] [ 0.174904] pci 0000:00:1f.2: reg 0x20: [io 0x1840-0x185f] [ 0.174913] pci 0000:00:1f.2: reg 0x24: [mem 0xe051f000-0xe051f7ff] [ 0.174958] pci 0000:00:1f.2: PME# supported from D3hot [ 0.175067] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500 [ 0.175084] pci 0000:00:1f.3: reg 0x10: [mem 0xe051fc00-0xe051fcff 64bit] [ 0.175108] pci 0000:00:1f.3: reg 0x20: [io 0x0400-0x041f] [ 0.175239] pci 0000:00:1f.6: [8086:9c24] type 00 class 0x118000 [ 0.175274] pci 0000:00:1f.6: reg 0x10: [mem 0xe051e000-0xe051efff 64bit] [ 0.175563] pci 0000:01:00.0: [168c:0034] type 00 class 0x028000 [ 0.175591] pci 0000:01:00.0: reg 0x10: [mem 0xe0400000-0xe047ffff 64bit] [ 0.175651] pci 0000:01:00.0: reg 0x30: [mem 0xe0480000-0xe048ffff pref] [ 0.175729] pci 0000:01:00.0: supports D1 D2 [ 0.175731] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.181536] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.181543] pci 0000:00:1c.0: bridge window [mem 0xe0400000-0xe04fffff] [ 0.181688] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11, disabled. [ 0.181754] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10, disabled. [ 0.181815] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *11, disabled. [ 0.181874] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15), disabled. [ 0.181934] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. [ 0.181992] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. [ 0.182051] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled. [ 0.182109] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled. [ 0.182885] ACPI : EC: GPE = 0x24, I/O: command/status = 0x66, data = 0x62 [ 0.183031] vgaarb: setting as boot device: PCI:0000:00:02.0 [ 0.183034] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none [ 0.183038] vgaarb: loaded [ 0.183040] vgaarb: bridge control possible 0000:00:02.0 [ 0.183145] PCI: Using ACPI for IRQ routing [ 0.184800] PCI: pci_cache_line_size set to 64 bytes [ 0.184852] e820: reserve RAM buffer [mem 0x0009e400-0x0009ffff] [ 0.184855] e820: reserve RAM buffer [mem 0x7bf7a000-0x7bffffff] [ 0.184857] e820: reserve RAM buffer [mem 0x100600000-0x103ffffff] [ 0.185057] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 [ 0.185065] hpet0: 8 comparators, 64-bit 14.318180 MHz counter [ 0.187099] Switched to clocksource hpet [ 0.196568] pnp: PnP ACPI init [ 0.196693] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved [ 0.196696] system 00:00: [mem 0xfed10000-0xfed13fff] has been reserved [ 0.196699] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved [ 0.196702] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved [ 0.196705] system 00:00: [mem 0xf0000000-0xf3ffffff] has been reserved [ 0.196708] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved [ 0.196710] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved [ 0.196713] system 00:00: [mem 0xfed45000-0xfed8ffff] could not be reserved [ 0.196716] system 00:00: [mem 0x00f00000-0x00ffffff] has been reserved [ 0.196721] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.197038] system 00:01: [mem 0xfed00000-0xfed003ff] has been reserved [ 0.197042] system 00:01: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active) [ 0.197130] system 00:02: [io 0x1000-0x10fe] could not be reserved [ 0.197133] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.197167] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.197223] system 00:04: [io 0x0900-0x09fe] has been reserved [ 0.197226] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.197279] system 00:05: [io 0x0200] has been reserved [ 0.197281] system 00:05: [io 0x0204] has been reserved [ 0.197284] system 00:05: [io 0x0800-0x087f] has been reserved [ 0.197286] system 00:05: [io 0x0880-0x08ff] has been reserved [ 0.197289] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.197336] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active) [ 0.197380] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 PNP030b (active) [ 0.197433] pnp 00:08: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active) [ 0.197551] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.197696] pnp: PnP ACPI: found 10 devices [ 0.204792] pci 0000:00:1c.0: PCI bridge to [bus 01] [ 0.204800] pci 0000:00:1c.0: bridge window [mem 0xe0400000-0xe04fffff] [ 0.204810] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7] [ 0.204813] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff] [ 0.204815] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff] [ 0.204817] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff] [ 0.204819] pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff] [ 0.204821] pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff] [ 0.204824] pci_bus 0000:00: resource 10 [mem 0x000d0000-0x000d3fff] [ 0.204826] pci_bus 0000:00: resource 11 [mem 0x000d4000-0x000d7fff] [ 0.204828] pci_bus 0000:00: resource 12 [mem 0x000d8000-0x000dbfff] [ 0.204830] pci_bus 0000:00: resource 13 [mem 0x000dc000-0x000dffff] [ 0.204832] pci_bus 0000:00: resource 14 [mem 0x000e0000-0x000e3fff] [ 0.204834] pci_bus 0000:00: resource 15 [mem 0x000e4000-0x000e7fff] [ 0.204836] pci_bus 0000:00: resource 16 [mem 0x000e8000-0x000ebfff] [ 0.204838] pci_bus 0000:00: resource 17 [mem 0x000ec000-0x000effff] [ 0.204841] pci_bus 0000:00: resource 18 [mem 0x000f0000-0x000fffff] [ 0.204843] pci_bus 0000:00: resource 19 [mem 0x7ea00001-0xfebfffff] [ 0.204845] pci_bus 0000:00: resource 20 [mem 0xfed40000-0xfed44fff] [ 0.204848] pci_bus 0000:01: resource 1 [mem 0xe0400000-0xe04fffff] [ 0.204906] NET: Registered protocol family 2 [ 0.205150] TCP established hash table entries: 16384 (order: 5, 131072 bytes) [ 0.205231] TCP bind hash table entries: 16384 (order: 7, 524288 bytes) [ 0.205419] TCP: Hash tables configured (established 16384 bind 16384) [ 0.205446] TCP: reno registered [ 0.205459] UDP hash table entries: 1024 (order: 4, 98304 bytes) [ 0.205505] UDP-Lite hash table entries: 1024 (order: 4, 98304 bytes) [ 0.205624] NET: Registered protocol family 1 [ 0.205647] pci 0000:00:02.0: Video device with shadowed ROM [ 0.206200] PCI: CLS 64 bytes, default 64 [ 0.206267] Unpacking initramfs... [ 0.813162] Freeing initrd memory: 22808K (ffff880035364000 - ffff8800369aa000) [ 0.813189] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.813193] software IO TLB [mem 0x75800000-0x79800000] (64MB) mapped at [ffff880075800000-ffff8800797fffff] [ 0.813393] RAPL PMU detected, hw unit 2^-14 Joules, API unit is 2^-32 Joules, 4 fixed counters 655360 ms ovfl timer [ 0.813470] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x15 [ 0.813481] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x15 [ 0.813554] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba [ 0.813925] futex hash table entries: 512 (order: 3, 32768 bytes) [ 0.813975] audit: initializing netlink subsys (disabled) [ 0.814002] audit: type=2000 audit(1418759441.812:1): initialized [ 0.814481] HugeTLB registered 2 MB page size, pre-allocated 0 pages [ 0.814519] zpool: loaded [ 0.814524] zbud: loaded [ 0.814759] VFS: Disk quotas dquot_6.5.2 [ 0.814783] Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.814855] msgmni has been set to 3763 [ 0.815330] alg: No test for stdrng (krng) [ 0.815369] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) [ 0.815410] io scheduler noop registered [ 0.815415] io scheduler deadline registered [ 0.815430] io scheduler cfq registered (default) [ 0.815696] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X [ 0.815838] aer 0000:00:1c.0:pcie02: service driver aer loaded [ 0.815864] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt [ 0.815866] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt [ 0.815871] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded [ 0.815882] pci_hotplug: PCI Hot Plug PCI Core version: 0.5 [ 0.815912] pciehp: PCI Express Hot Plug Controller Driver version: 0.4 [ 0.815992] intel_idle: MWAIT substates: 0x11142120 [ 0.815994] intel_idle: v0.4 model 0x45 [ 0.815996] intel_idle: lapic_timer_reliable_states 0xffffffff [ 0.816257] GHES: HEST is not enabled! [ 0.816359] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.817028] Linux agpgart interface v0.103 [ 0.817188] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1 [ 0.817190] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp [ 0.817730] i8042: Warning: Keylock active [ 0.817864] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 0.818025] mousedev: PS/2 mouse device common for all mice [ 0.818088] rtc_cmos 00:03: RTC can wake from S4 [ 0.818271] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0 [ 0.818301] rtc_cmos 00:03: alarms up to one month, 242 bytes nvram, hpet irqs [ 0.818319] Intel P-state driver initializing. [ 0.818466] ledtrig-cpu: registered to indicate activity on CPUs [ 0.818729] AMD IOMMUv2 driver by Joerg Roedel <joerg.roedel@amd.com> [ 0.818732] AMD IOMMUv2 functionality not available on this system [ 0.818949] TCP: cubic registered [ 0.819070] NET: Registered protocol family 10 [ 0.819528] mip6: Mobile IPv6 [ 0.819540] NET: Registered protocol family 17 [ 0.819560] mpls_gso: MPLS GSO support [ 0.820472] registered taskstats version 1 [ 0.821189] rtc_cmos 00:03: setting system clock to 2014-12-16 19:50:42 UTC (1418759442) [ 0.823239] Freeing unused kernel memory: 1212K (ffffffff81908000 - ffffffff81a37000) [ 0.823241] Write protecting the kernel read-only data: 8192k [ 0.825921] Freeing unused kernel memory: 788K (ffff88000153b000 - ffff880001600000) [ 0.826648] Freeing unused kernel memory: 224K (ffff8800017c8000 - ffff880001800000) [ 0.826734] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0 [ 0.840410] systemd-udevd[62]: starting version 215 [ 0.840790] random: systemd-udevd urandom read with 2 bits of entropy available [ 0.858223] SCSI subsystem initialized [ 0.862893] libata version 3.00 loaded. [ 0.866817] ahci 0000:00:1f.2: version 3.0 [ 0.867540] sdhci: Secure Digital Host Controller Interface driver [ 0.867543] sdhci: Copyright(c) Pierre Ossman [ 0.868859] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X [ 0.868881] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled [ 0.868899] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 2 ports 6 Gbps 0x1 impl SATA mode [ 0.868903] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo only pio slum part deso sadm sds apst [ 0.869284] thermal LNXTHERM:00: registered as thermal_zone0 [ 0.869288] ACPI: Thermal Zone [THRM] (47 C) [ 0.870361] scsi host0: ahci [ 0.871139] scsi host1: ahci [ 0.871426] ata1: SATA max UDMA/133 abar m2048@0xe051f000 port 0xe051f100 irq 41 [ 0.871430] ata2: DUMMY [ 1.191012] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.191255] ata1.00: ATA-10: SC2 M2 SSD, S9FM01.7, max UDMA/100 [ 1.191260] ata1.00: 234441648 sectors, multi 16: LBA48 NCQ (depth 31/32), AA [ 1.191495] ata1.00: configured for UDMA/100 [ 1.191683] scsi 0:0:0:0: Direct-Access ATA SC2 M2 SSD 01.7 PQ: 0 ANSI: 5 [ 1.194034] sd 0:0:0:0: [sda] 234441648 512-byte logical blocks: (120 GB/111 GiB) [ 1.194106] sd 0:0:0:0: [sda] Write Protect is off [ 1.194110] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.194126] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.194632] sda: sda1 sda2 < sda5 > [ 1.195181] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.195966] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 1.390307] PM: Starting manual resume from disk [ 1.443340] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) [ 1.738711] fuse init (API version 7.23) [ 1.767220] systemd-udevd[161]: starting version 215 [ 1.810865] tsc: Refined TSC clocksource calibration: 1396.766 MHz [ 1.895743] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro [ 1.906859] systemd-journald[143]: Received request to flush runtime journal from PID 1 [ 1.942596] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1 [ 1.942650] ACPI: Lid Switch [LID0] [ 1.942721] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2 [ 1.942726] ACPI: Power Button [PWRB] [ 1.942786] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3 [ 1.942789] ACPI: Sleep Button [TPAD] [ 1.943374] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:01/input/input4 [ 1.943380] ACPI: Sleep Button [TSCR] [ 1.943470] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5 [ 1.943474] ACPI: Power Button [PWRF] [ 1.953650] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no) [ 1.953850] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6 [ 1.970488] tpm_tis tpm_tis: 1.2 TPM (device-id 0xB, rev-id 16) [ 1.977159] ACPI: AC Adapter [AC] (on-line) [ 1.978892] ACPI: Battery Slot [BAT0] (battery present) [ 2.027883] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 2.028319] i801_smbus 0000:00:1f.3: SMBus using PCI Interrupt [ 2.052233] ACPI: bus type USB registered [ 2.055603] usbcore: registered new interface driver usbfs [ 2.055623] usbcore: registered new interface driver hub [ 2.055652] usbcore: registered new device driver usb [ 2.062020] [drm] Initialized drm 1.1.0 20060810 [ 2.070560] input: PC Speaker as /devices/platform/pcspkr/input/input7 [ 2.097681] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.097695] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1 [ 2.097792] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported [ 2.097816] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X [ 2.102014] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 [ 2.102020] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.102023] usb usb1: Product: xHCI Host Controller [ 2.102025] usb usb1: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.102027] usb usb1: SerialNumber: 0000:00:14.0 [ 2.102322] hub 1-0:1.0: USB hub found [ 2.102337] hub 1-0:1.0: 8 ports detected [ 2.102696] xhci_hcd 0000:00:14.0: xHCI Host Controller [ 2.102702] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2 [ 2.104015] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003 [ 2.104019] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.104021] usb usb2: Product: xHCI Host Controller [ 2.104023] usb usb2: Manufacturer: Linux 3.18.0-rc6+ xhci-hcd [ 2.104025] usb usb2: SerialNumber: 0000:00:14.0 [ 2.104222] hub 2-0:1.0: USB hub found [ 2.104232] hub 2-0:1.0: 4 ports detected [ 2.114638] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X [ 2.122849] hda-i915: get_power symbol get fail [ 2.122856] snd_hda_intel 0000:00:03.0: Error request power-well from i915 [ 2.136091] __add_probed_i2c_device failed to register device 1-4a [ 2.136420] cfg80211: Calling CRDA to update world regulatory domain [ 2.151282] sound hdaudioC1D0: No codec parser is available [ 2.152647] platform chromeos_laptop: Driver chromeos_laptop requests probe deferral [ 2.167921] alg: No test for crc32 (crc32-pclmul) [ 2.236543] tpm_inf_pnp 00:08: Found TPM with ID IFX0102 [ 2.238749] input: Cypress APA Trackpad (cyapa) as /devices/pci0000:00/0000:00:15.1/i2c-0/0-0067/input/input8 [ 2.243087] RPC: Registered named UNIX socket transport module. [ 2.243091] RPC: Registered udp transport module. [ 2.243093] RPC: Registered tcp transport module. [ 2.243095] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 2.245577] iTCO_vendor_support: vendor-support=0 [ 2.248181] __add_probed_i2c_device failed to register device 1-4a [ 2.248194] platform chromeos_laptop: Driver chromeos_laptop requests probe deferral [ 2.263888] FS-Cache: Loaded [ 2.271609] Adding 4069372k swap on /dev/sda5. Priority:-1 extents:1 across:4069372k SSFS [ 2.296567] [drm] Memory usable by graphics device = 2048M [ 2.296573] [drm] Replacing VGA console driver [ 2.297442] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11 [ 2.297487] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1060) [ 2.297702] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) [ 2.298268] Console: switching to colour dummy device 80x25 [ 2.298380] __add_probed_i2c_device failed to register device 1-4a [ 2.298391] platform chromeos_laptop: Driver chromeos_laptop requests probe deferral [ 2.300718] i915 0000:00:02.0: irq 44 for MSI/MSI-X [ 2.300731] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 2.300733] [drm] Driver supports precise vblank timestamp query. [ 2.300779] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem [ 2.300835] [drm] applying backlight present quirk [ 2.349111] FS-Cache: Netfs 'nfs' registered for caching [ 2.360332] cfg80211: World regulatory domain updated: [ 2.360338] cfg80211: DFS Master region: unset [ 2.360339] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ 2.360343] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.360345] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 2.360347] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ 2.360349] cfg80211: (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A) [ 2.360352] cfg80211: (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.360354] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 2.360356] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ 2.360358] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ 2.363273] [drm] Initialized i915 1.6.0 20140905 for 0000:00:02.0 on minor 0 [ 2.364442] __add_probed_i2c_device failed to register device 1-4a [ 2.364457] platform chromeos_laptop: Driver chromeos_laptop requests probe deferral [ 2.364778] fbcon: inteldrmfb (fb0) is primary device [ 2.376786] __add_probed_i2c_device failed to register device 1-4a [ 2.376788] chromeos_laptop_probe: Ran out of tries for device. [ 2.398574] ath: phy0: ASPM enabled: 0x43 [ 2.398576] ath: EEPROM regdomain: 0x6c [ 2.398577] ath: EEPROM indicates we should expect a direct regpair map [ 2.398579] ath: Country alpha2 being used: 00 [ 2.398579] ath: Regpair used: 0x6c [ 2.399654] ieee80211 phy0: Failed to initialize wep: -2 [ 2.399662] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' [ 2.399975] ieee80211 phy0: Atheros AR9462 Rev:2 mem=0xffffc90004c00000, irq=16 [ 2.401746] intel_rapl: Found RAPL domain package [ 2.401747] intel_rapl: Found RAPL domain core [ 2.401748] intel_rapl: Found RAPL domain uncore [ 2.401749] intel_rapl: Found RAPL domain dram [ 2.402451] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 2.410806] usb 1-3: new high-speed USB device number 2 using xhci_hcd [ 2.663948] usb 1-3: New USB device found, idVendor=1bcf, idProduct=2c67 [ 2.663950] usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.663951] usb 1-3: Product: HD WebCam [ 2.663953] usb 1-3: Manufacturer: NC.21411.024409008DCLM0001 [ 2.747080] media: Linux media interface: v0.10 [ 2.760705] Linux video capture interface: v2.00 [ 2.778940] uvcvideo: Found UVC 1.00 device HD WebCam (1bcf:2c67) [ 2.787711] input: HD WebCam as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/input/input9 [ 2.787831] usbcore: registered new interface driver uvcvideo [ 2.787832] USB Video Class driver (1.1.1) [ 2.810926] Switched to clocksource tsc [ 2.898772] usb 1-4: new full-speed USB device number 3 using xhci_hcd [ 3.028431] usb 1-4: language id specifier not provided by device, defaulting to English [ 3.030299] usb 1-4: New USB device found, idVendor=0489, idProduct=e056 [ 3.030302] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 3.069888] Bluetooth: Core ver 2.19 [ 3.069913] NET: Registered protocol family 31 [ 3.069914] Bluetooth: HCI device and connection manager initialized [ 3.069923] Bluetooth: HCI socket layer initialized [ 3.069926] Bluetooth: L2CAP socket layer initialized [ 3.069941] Bluetooth: SCO socket layer initialized [ 3.073978] usbcore: registered new interface driver btusb [ 3.076150] usbcore: registered new interface driver ath3k [ 3.155225] Bluetooth: Unable to create crypto context [ 3.198708] usb 1-5: new low-speed USB device number 4 using xhci_hcd [ 3.388581] usb 1-5: New USB device found, idVendor=046d, idProduct=c062 [ 3.388583] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.388585] usb 1-5: Product: USB Laser Mouse [ 3.388586] usb 1-5: Manufacturer: Logitech [ 3.388844] usb 1-5: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes [ 3.399997] hidraw: raw HID events driver (C) Jiri Kosina [ 3.408880] usbcore: registered new interface driver usbhid [ 3.408881] usbhid: USB HID core driver [ 3.411080] input: Logitech USB Laser Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C062.0001/input/input10 [ 3.411203] hid-generic 0003:046D:C062.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB Laser Mouse] on usb-0000:00:14.0-5/input0 [ 3.434750] Console: switching to colour frame buffer device 170x48 [ 3.438486] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device [ 3.438488] i915 0000:00:02.0: registered panic notifier [ 3.622675] systemd-journald[143]: Received request to flush runtime journal from PID 1 [ 4.685623] random: nonblocking pool is initialized [ 7.432426] wlan0: authenticate with 00:1a:70:5a:6e:0b [ 7.442193] wlan0: send auth to 00:1a:70:5a:6e:0b (try 1/3) [ 7.444230] wlan0: authenticated [ 7.444536] ath9k 0000:01:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP [ 7.444543] ath9k 0000:01:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP [ 7.445950] wlan0: associate with 00:1a:70:5a:6e:0b (try 1/3) [ 7.452935] wlan0: RX AssocResp from 00:1a:70:5a:6e:0b (capab=0x401 status=0 aid=3) [ 7.453041] wlan0: associated ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-16 20:03 ` Jeremiah Mahler @ 2014-12-17 13:17 ` Takashi Iwai 2014-12-17 14:54 ` Jeremiah Mahler 0 siblings, 1 reply; 12+ messages in thread From: Takashi Iwai @ 2014-12-17 13:17 UTC (permalink / raw) To: Jeremiah Mahler Cc: Al Viro, Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel At Tue, 16 Dec 2014 12:03:51 -0800, Jeremiah Mahler wrote: > > Al Viro, > > On Tue, Dec 16, 2014 at 04:27:16PM +0000, Al Viro wrote: > > On Tue, Dec 16, 2014 at 07:26:26AM -0800, Jeremiah Mahler wrote: > > > > > > No such errors happen on the normal boot, presumably? > > > > > > > > > [ 2.392117] EXT4-fs (sda5): mounting ext2 file system using the ext4 subsystem > > > > > [ 2.393920] EXT4-fs (sda5): mounted filesystem without journal. Opts: (null) > > > > > > > > Wait a minute. So that happens _before_ /dev/sda5 mount? Could you post dmesg > > > > from the normal boot (e.g. just prior to the buggy commit)? > > > > > > > > I really don't get it - there's nothing for init_fs.root to point to other > > > > than initramfs by that point, CLONE_FS or no CLONE_FS. We simply don't > > > > have anything else mounted yet. Do you get another failing bunch of > > > > request_firmware later? And what does dmesg look like on the working > > > > kernel - either you have that firmware on initramfs image (in which case > > > > it ought to have been picked by both kernels), or you do not, in which case > > > > neither kernel would've managed to load it until after mounting the real > > > > root... > > > > > > I compiled this kernel with the commit just before the bug was introduced > > > (93fe74b2e2b5d266d630f0c3f8287efcbe6ecd10). Wireless comes up without > > > any issue. Here is the dmesg output. > > > > OK, so the root is on sda6, it's been mounted before those attempts to > > load firmware and init has been chrooted into it, while init_fs got left > > behind. And that "chrooted into" has happened without pivot_root(2) (or > > it would've been caught by chroot_fs_refs() in sys_pivot_root()) and > > not from the "no /init on initramfs" codepath (you do have it there). > > > > OK, it's probably unsalvagable, then. Pity, since it means that PID 1 and > > kernel threads _must_ share ->fs, for the sake of usable ->fs->root, which > > is asking for trouble. And it means that we still need a sane solution for > > nfsd folks... > > > > Anyway, dropped that stuff from for-next (and for-linus, obviously), with > > apologies all around. > > On a totally different machine, an Acer C720, the sound quit working. > I bisected that one and it pointed to this same commit. However this > one doesn't involve loading firmware or any of that stuff. Attached > are the good/bad dmesg logs. Did you mean HD-audio stuff? The bad case shows the error [ 2.122849] hda-i915: get_power symbol get fail [ 2.122856] snd_hda_intel 0000:00:03.0: Error request power-well from i915 This is the place calling request_symbol(), where i915 module should have been loaded dynamically but it failed, likely because of the same reason as the firmware loading failure. Takashi ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop 2014-12-17 13:17 ` Takashi Iwai @ 2014-12-17 14:54 ` Jeremiah Mahler 0 siblings, 0 replies; 12+ messages in thread From: Jeremiah Mahler @ 2014-12-17 14:54 UTC (permalink / raw) To: Takashi Iwai Cc: Al Viro, Stephen Rothwell, linux-kernel, linux-next, linux-fsdevel Takashi, On Wed, Dec 17, 2014 at 02:17:57PM +0100, Takashi Iwai wrote: > At Tue, 16 Dec 2014 12:03:51 -0800, > Jeremiah Mahler wrote: > > > > Al Viro, [...] > > > > > > OK, so the root is on sda6, it's been mounted before those attempts to > > > load firmware and init has been chrooted into it, while init_fs got left > > > behind. And that "chrooted into" has happened without pivot_root(2) (or > > > it would've been caught by chroot_fs_refs() in sys_pivot_root()) and > > > not from the "no /init on initramfs" codepath (you do have it there). > > > > > > OK, it's probably unsalvagable, then. Pity, since it means that PID 1 and > > > kernel threads _must_ share ->fs, for the sake of usable ->fs->root, which > > > is asking for trouble. And it means that we still need a sane solution for > > > nfsd folks... > > > > > > Anyway, dropped that stuff from for-next (and for-linus, obviously), with > > > apologies all around. > > > > On a totally different machine, an Acer C720, the sound quit working. > > I bisected that one and it pointed to this same commit. However this > > one doesn't involve loading firmware or any of that stuff. Attached > > are the good/bad dmesg logs. > > Did you mean HD-audio stuff? The bad case shows the error > > [ 2.122849] hda-i915: get_power symbol get fail > [ 2.122856] snd_hda_intel 0000:00:03.0: Error request power-well from i915 > > This is the place calling request_symbol(), where i915 module should > have been loaded dynamically but it failed, likely because of the same > reason as the firmware loading failure. > Ah, perhaps it does load firmware. Then I am mistaken on that point. > > Takashi -- - Jeremiah Mahler ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2014-12-17 14:54 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-12-16 11:55 [BUG, linux-next] spawn PID 1 without CLONE_FS, wireless inop Jeremiah Mahler 2014-12-16 12:56 ` Al Viro 2014-12-16 13:28 ` Al Viro 2014-12-16 14:09 ` Jeremiah Mahler 2014-12-16 14:25 ` Al Viro 2014-12-16 14:46 ` Jeremiah Mahler 2014-12-16 15:05 ` Al Viro 2014-12-16 15:26 ` Jeremiah Mahler 2014-12-16 16:27 ` Al Viro 2014-12-16 20:03 ` Jeremiah Mahler 2014-12-17 13:17 ` Takashi Iwai 2014-12-17 14:54 ` Jeremiah Mahler
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).