linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* i915 black screen introduced by ACPI changes
@ 2013-02-18  4:43 Chris Li
  2013-02-19 18:08 ` Jesse Barnes
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-02-18  4:43 UTC (permalink / raw)
  To: linux-kernel; +Cc: jbarnes, robert.moore, feng.tang, len.brown, daniel.vetter

My Lenovo Y580 laptop with FC18 start to get black screen after the kernel
upgrade to 3.7.xxx

The black screen happens about the time kernel switch to using VT console.
At the point of black screen, no response of cap locks key led no network
connection. The machine seems dead.

The CPU is i7 and it has two video card. The Intel build-in video card
and Gtx 660M Nvidia card.

This is very annoying. I did some poking around it:
- It was fine on the FC18 3.6.xxx kernel before the upgrade.
- The black screen exists with FC18 3.7.xxx kernel
- The black screen also exists in latest tip of linux-2.6.
- Switch to multi-user mode booting does not get rid of the black screen.
- Get rid of the "rhrb quit" does not help either.
- When the black screen happen, cap lock LED does not response to cap locks.
- No networking when black screen happen. The only thing to do is
reboot the system.
- Adding "i915.modeset=0" will allow the kernel to boot into GUI login. However,
  logout of X will cause the machine to hang similar to the black screen.
- Suspend and resume will get stuck at the black screen with"i915.modeset=0".
- Kernel console and X is using the Intel driver for display.

There are other user experience the same problem as well.
http://forums.fedoraforum.org/showthread.php?t=287853

The black screen is introduced between v3.6 and v3.7. I did the git bisect.
It points to this ACPI change which is a little bit surprising. I was
expecting some
change relate to i915 driver. I double check commit before this does
not have black
screen.

Anyway, any suggestion to nail down this problem?
I am happy to reproduce and verify the fix.

Thanks

Chris


commit a57f7f9175b8ccbc9df83ac13860488913115de4
Author: Bob Moore <robert.moore@intel.com>
Date:   Fri Aug 17 10:55:02 2012 +0800

    ACPICA: Add Windows8/Server2012 string for _OSI method.

    This change adds a new _OSI string, "Windows 2012" for both Windows 8
    and Windows Server 2012.

    From Microsoft document "How to Identify the Windows Version in ACPI
    by Using _OSI", July 13, 2012.

    Signed-off-by: Bob Moore <robert.moore@intel.com>
    Signed-off-by: Feng Tang <feng.tang@intel.com>
    Signed-off-by: Len Brown <len.brown@intel.com>

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-18  4:43 i915 black screen introduced by ACPI changes Chris Li
@ 2013-02-19 18:08 ` Jesse Barnes
  2013-02-19 20:18   ` Chris Li
  0 siblings, 1 reply; 29+ messages in thread
From: Jesse Barnes @ 2013-02-19 18:08 UTC (permalink / raw)
  To: Chris Li; +Cc: linux-kernel, robert.moore, feng.tang, len.brown, daniel.vetter

On Sun, 17 Feb 2013 20:43:47 -0800
Chris Li <lkml@chrisli.org> wrote:

> My Lenovo Y580 laptop with FC18 start to get black screen after the kernel
> upgrade to 3.7.xxx
> 
> The black screen happens about the time kernel switch to using VT console.
> At the point of black screen, no response of cap locks key led no network
> connection. The machine seems dead.

Can you set up netconsole and see if you can get any output from the
boot, if we're lucky maybe you'll see a panic...

> The CPU is i7 and it has two video card. The Intel build-in video card
> and Gtx 660M Nvidia card.
> 
> This is very annoying. I did some poking around it:
> - It was fine on the FC18 3.6.xxx kernel before the upgrade.
> - The black screen exists with FC18 3.7.xxx kernel
> - The black screen also exists in latest tip of linux-2.6.
> - Switch to multi-user mode booting does not get rid of the black screen.
> - Get rid of the "rhrb quit" does not help either.
> - When the black screen happen, cap lock LED does not response to cap locks.
> - No networking when black screen happen. The only thing to do is
> reboot the system.
> - Adding "i915.modeset=0" will allow the kernel to boot into GUI login. However,
>   logout of X will cause the machine to hang similar to the black screen.
> - Suspend and resume will get stuck at the black screen with"i915.modeset=0".
> - Kernel console and X is using the Intel driver for display.

I don't know about the ACPI change mentioned, but ACPI is involved in
dual-GPU configurations.  Maybe the change affected the default
behavior and pointed more functions at the nVidia device rather than
the Intel?

-- 
Jesse Barnes, Intel Open Source Technology Center

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-19 18:08 ` Jesse Barnes
@ 2013-02-19 20:18   ` Chris Li
  2013-02-19 20:52     ` Jesse Barnes
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-02-19 20:18 UTC (permalink / raw)
  To: Jesse Barnes
  Cc: linux-kernel, robert.moore, feng.tang, len.brown, daniel.vetter,
	Linus Torvalds

CC Linus for suggestion of debugging.

Linus, it seems very hard to extract information from the dead kernel.
Black screen prevents seeing the kernel OOPS, if there is one.
The laptop has no serial port. Ethernet driver is not working on that
laptop. Only wifi works.

Any suggestion?

On Tue, Feb 19, 2013 at 10:08 AM, Jesse Barnes <jbarnes@virtuousgeek.org> wrote:
>> The black screen happens about the time kernel switch to using VT console.
>> At the point of black screen, no response of cap locks key led no network
>> connection. The machine seems dead.
>
> Can you set up netconsole and see if you can get any output from the
> boot, if we're lucky maybe you'll see a panic...

The kernel does not support the Gigabit Ethernet on that laptop.
I am not sure netconsole through wifi will work or not in that early
stage of the boot up. There seems to be a out of kernel driver
to support that ethernet card, but I haven't able to get to compile
on FC18.

Last time I try the kernel crashdump it does not seem to produce
dump. I can give it more try and get back to you.

BTW, does any one know limiting the kernel memory via "mem=1024M"
will work with the kernel crashdump? The laptop has 8G of memory, it will take
a long time to dump all the memory.

>
>> The CPU is i7 and it has two video card. The Intel build-in video card
>> and Gtx 660M Nvidia card.
>>
>> This is very annoying. I did some poking around it:
>> - It was fine on the FC18 3.6.xxx kernel before the upgrade.
>> - The black screen exists with FC18 3.7.xxx kernel
>> - The black screen also exists in latest tip of linux-2.6.
>> - Switch to multi-user mode booting does not get rid of the black screen.
>> - Get rid of the "rhrb quit" does not help either.
>> - When the black screen happen, cap lock LED does not response to cap locks.
>> - No networking when black screen happen. The only thing to do is
>> reboot the system.
>> - Adding "i915.modeset=0" will allow the kernel to boot into GUI login. However,
>>   logout of X will cause the machine to hang similar to the black screen.
>> - Suspend and resume will get stuck at the black screen with"i915.modeset=0".
>> - Kernel console and X is using the Intel driver for display.
>
> I don't know about the ACPI change mentioned, but ACPI is involved in
> dual-GPU configurations.  Maybe the change affected the default
> behavior and pointed more functions at the nVidia device rather than
> the Intel?

I don't think so. First of all, I want to clarify that I did the experiment
without the Nvidia commercial driver. I even blacklist the nouveau
driver it does
not change the test result. In that case, I assume the functions at
the nVidia driver
does not come into play. No?

Secondly, the one clue is that, setting "i915.modeset=0" alone will allow
the kernel to boot into X GUI login. It seems that the mode switch alone in
i915 can trigger the black screen. It is consistent with kernel lockup when I
logout of X desktop, where X want to reset the screen.

Instead of guess which driver were at fault, can you suggest some experiment
to confirm or denial which driver is at fault?

Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-19 20:18   ` Chris Li
@ 2013-02-19 20:52     ` Jesse Barnes
  2013-02-20  7:17       ` Chris Li
  0 siblings, 1 reply; 29+ messages in thread
From: Jesse Barnes @ 2013-02-19 20:52 UTC (permalink / raw)
  To: Chris Li
  Cc: linux-kernel, robert.moore, feng.tang, len.brown, daniel.vetter,
	Linus Torvalds

On Tue, 19 Feb 2013 12:18:45 -0800
Chris Li <lkml@chrisli.org> wrote:
> Secondly, the one clue is that, setting "i915.modeset=0" alone will allow
> the kernel to boot into X GUI login. It seems that the mode switch alone in
> i915 can trigger the black screen. It is consistent with kernel lockup when I
> logout of X desktop, where X want to reset the screen.
> 
> Instead of guess which driver were at fault, can you suggest some experiment
> to confirm or denial which driver is at fault?

Well it definitely sounds i915 related.  I was just thinking that if
certain bits were routed to the nvidia chip instead of the i915 one,
the i915 driver may get confused and panic.

For debugging, you could modify the modeset_init function in i915_dma.c
and make it return early with an error.  You could use that to narrow
down which part of init was failing.

-- 
Jesse Barnes, Intel Open Source Technology Center

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-19 20:52     ` Jesse Barnes
@ 2013-02-20  7:17       ` Chris Li
  2013-02-20 10:57         ` Daniel Vetter
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-02-20  7:17 UTC (permalink / raw)
  To: Jesse Barnes
  Cc: linux-kernel, robert.moore, feng.tang, len.brown, daniel.vetter,
	Linus Torvalds

[-- Attachment #1: Type: text/plain, Size: 3266 bytes --]

On Tue, Feb 19, 2013 at 12:52 PM, Jesse Barnes <jbarnes@virtuousgeek.org> wrote:
> Well it definitely sounds i915 related.  I was just thinking that if
> certain bits were routed to the nvidia chip instead of the i915 one,
> the i915 driver may get confused and panic.

That is certainly possible.

> For debugging, you could modify the modeset_init function in i915_dma.c
> and make it return early with an error.  You could use that to narrow
> down which part of init was failing.

I did try that. It seems there is not fail at modeset_init function. The
function complete successfully. Here is the related section.
[i915 Hack] was the line add by me.

There is one line said: "vgaarb: transferring owner from
PCI:0000:00:02.0 to PCI:0000:01:00.0".
Does it mean the display switch to the Nvidia video card?

[    4.917591] i915 0000:00:02.0: setting latency timer to 64
[    4.962649] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[    4.962656] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    4.962660] [drm] Driver supports precise vblank timestamp query.
[    4.962663] [i915 Hack] enter modeset
[    4.962670] [i915 Hack] after intel_parse_bios
[    4.962672] [i915 Hack] after vga_client_register
[    4.962727] [i915 Hack] after intel_register_dsm_handler
[    4.962730] [i915 Hack] after intel_switchroo_register_client
[    4.962733] [i915 Hack] after i915_gen_init_stolen
[    4.962752] vgaarb: device changed decodes:
PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    4.962757] vgaarb: transferring owner from PCI:0000:00:02.0 to
PCI:0000:01:00.0
[    5.018486] [i915 Hack] after intel_modeset_init
[    5.020823] [i915 Hack] after i915_gem_init
[    5.020869] [i915 Hack] after intel_modeset_gem_init
[    5.020892] [i915 Hack] after drm_irq_install
[    5.051980] fbcon: inteldrmfb (fb0) is primary device
[    5.089303] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1,
id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id:
1087391
[    5.202472] input: SynPS/2 Synaptics TouchPad as
/devices/platform/i8042/serio1/input/input5
[    5.711448] Console: switching to colour frame buffer device 240x67
[    5.722628] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    5.722630] i915 0000:00:02.0: registered panic notifier
[    5.722633] [i915 Hack] after intel_fbdev_init
[    5.722634] [i915 Hack] after drm_kms_helper_poll_init
[    5.722635] [i915 Hack] exit mode switch
[    5.722682] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.723017] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.733222] acpi device:3c: registered as cooling_device8
[    5.733587] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    5.733746] input: Video Bus as
/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:3a/LNXVIDEO:00/input/input6
[    5.745904] acpi device:48: registered as cooling_device9

I attach the dmesg and config of the kernel. It is with the tip of git tree.

BTW, my previous claim was wrong about the kernel is dead. It turn out the
wifi is usable after the black screen, I just need to wait long
enough. The kernel
has no panic at all. That explains why I didnot get a kernel crash
dump previously.
The caps locks LED actually works.

Thanks

Chris

[-- Attachment #2: dmesg --]
[-- Type: application/octet-stream, Size: 79183 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.8.0-rc7+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #23 SMP Tue Feb 19 19:24:57 PST 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.8.0-rc7+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] 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-0x00000000b3fecfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] e820: update [mem 0xb3cee018-0xb3d03e57] usable ==> usable
[    0.000000] e820: update [mem 0xb3cdd018-0xb3ced057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040005000-0x00000000b3cdd017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cdd018-0x00000000b3ced057] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3ced058-0x00000000b3cee017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cee018-0x00000000b3d03e57] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3d03e58-0x00000000b3fecfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xbaffe000  ACPI 2.0=0xbaffe014  SMBIOS=0xbaebef98 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000004000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000004000-0x000000000000e000) (0MB)
[    0.000000] efi: mem03: type=3, attr=0xf, range=[0x000000000000e000-0x0000000000010000) (0MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000010000-0x000000000002e000) (0MB)
[    0.000000] efi: mem05: type=3, attr=0xf, range=[0x000000000002e000-0x000000000002f000) (0MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x000000000002f000-0x0000000000030000) (0MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000000030000-0x000000000006f000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem10: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x0000000001000000-0x000000000238f000) (19MB)
[    0.000000] efi: mem13: type=7, attr=0xf, range=[0x000000000238f000-0x0000000020000000) (476MB)
[    0.000000] efi: mem14: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000020200000-0x000000003e2b5000) (480MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000003e2b5000-0x0000000040000000) (29MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000040000000-0x0000000040004000) (0MB)
[    0.000000] efi: mem18: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000040005000-0x000000008634e000) (1123MB)
[    0.000000] efi: mem20: type=2, attr=0xf, range=[0x000000008634e000-0x00000000b31c0000) (718MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000b31c0000-0x00000000b31e0000) (0MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000b31e0000-0x00000000b3a7e000) (8MB)
[    0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000b3a7e000-0x00000000b3b4d000) (0MB)
[    0.000000] efi: mem24: type=1, attr=0xf, range=[0x00000000b3b4d000-0x00000000b3c84000) (1MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000b3c84000-0x00000000b3cdd000) (0MB)
[    0.000000] efi: mem26: type=2, attr=0xf, range=[0x00000000b3cdd000-0x00000000b3dd3000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000b3dd3000-0x00000000b3fed000) (2MB)
[    0.000000] efi: mem28: type=0, attr=0xf, range=[0x00000000b3fed000-0x00000000b4d6e000) (13MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000b4d6e000-0x00000000b4db0000) (0MB)
[    0.000000] efi: mem30: type=0, attr=0xf, range=[0x00000000b4db0000-0x00000000b61b0000) (20MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b61b0000-0x00000000b61bd000) (0MB)
[    0.000000] efi: mem32: type=2, attr=0xf, range=[0x00000000b61bd000-0x00000000b61bf000) (0MB)
[    0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b61bf000-0x00000000b6279000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b6279000-0x00000000b81aa000) (31MB)
[    0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b81aa000-0x00000000b81b2000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b81b2000-0x00000000b81b4000) (0MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b81b4000-0x00000000b81b6000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b81b6000-0x00000000b81e6000) (0MB)
[    0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b81e6000-0x00000000b81ec000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b81ec000-0x00000000b81ed000) (0MB)
[    0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b81ed000-0x00000000b81ee000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b81ee000-0x00000000b81f8000) (0MB)
[    0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b81f8000-0x00000000b81f9000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b81f9000-0x00000000b821f000) (0MB)
[    0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b821f000-0x00000000b8221000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b8221000-0x00000000b83a0000) (1MB)
[    0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b83a0000-0x00000000b83a4000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b83a4000-0x00000000b83a7000) (0MB)
[    0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b83a7000-0x00000000b83a8000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b83a8000-0x00000000b83f8000) (0MB)
[    0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b83f8000-0x00000000b8420000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b8420000-0x00000000b859e000) (1MB)
[    0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b859e000-0x00000000b85a0000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b85a0000-0x00000000b85ba000) (0MB)
[    0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b85ba000-0x00000000b85bb000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b85bb000-0x00000000b87e8000) (2MB)
[    0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b87e8000-0x00000000b87f8000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b87f8000-0x00000000ba3bf000) (27MB)
[    0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000ba3bf000-0x00000000ba495000) (0MB)
[    0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000ba495000-0x00000000ba7bf000) (3MB)
[    0.000000] efi: mem61: type=5, attr=0x800000000000000f, range=[0x00000000ba7bf000-0x00000000ba880000) (0MB)
[    0.000000] efi: mem62: type=6, attr=0x800000000000000f, range=[0x00000000ba880000-0x00000000ba881000) (0MB)
[    0.000000] efi: mem63: type=5, attr=0x800000000000000f, range=[0x00000000ba881000-0x00000000ba8b0000) (0MB)
[    0.000000] efi: mem64: type=6, attr=0x800000000000000f, range=[0x00000000ba8b0000-0x00000000ba8b1000) (0MB)
[    0.000000] efi: mem65: type=5, attr=0x800000000000000f, range=[0x00000000ba8b1000-0x00000000ba8b3000) (0MB)
[    0.000000] efi: mem66: type=6, attr=0x800000000000000f, range=[0x00000000ba8b3000-0x00000000ba8b4000) (0MB)
[    0.000000] efi: mem67: type=5, attr=0x800000000000000f, range=[0x00000000ba8b4000-0x00000000ba8cc000) (0MB)
[    0.000000] efi: mem68: type=6, attr=0x800000000000000f, range=[0x00000000ba8cc000-0x00000000ba8cd000) (0MB)
[    0.000000] efi: mem69: type=5, attr=0x800000000000000f, range=[0x00000000ba8cd000-0x00000000ba8d2000) (0MB)
[    0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000ba8d2000-0x00000000ba8d3000) (0MB)
[    0.000000] efi: mem71: type=5, attr=0x800000000000000f, range=[0x00000000ba8d3000-0x00000000ba8e1000) (0MB)
[    0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000ba8e1000-0x00000000ba8e2000) (0MB)
[    0.000000] efi: mem73: type=5, attr=0x800000000000000f, range=[0x00000000ba8e2000-0x00000000ba8f2000) (0MB)
[    0.000000] efi: mem74: type=6, attr=0x800000000000000f, range=[0x00000000ba8f2000-0x00000000ba937000) (0MB)
[    0.000000] efi: mem75: type=5, attr=0x800000000000000f, range=[0x00000000ba937000-0x00000000ba9bf000) (0MB)
[    0.000000] efi: mem76: type=6, attr=0x800000000000000f, range=[0x00000000ba9bf000-0x00000000baabf000) (1MB)
[    0.000000] efi: mem77: type=0, attr=0xf, range=[0x00000000baabf000-0x00000000baebf000) (4MB)
[    0.000000] efi: mem78: type=10, attr=0xf, range=[0x00000000baebf000-0x00000000bafbf000) (1MB)
[    0.000000] efi: mem79: type=9, attr=0xf, range=[0x00000000bafbf000-0x00000000bafff000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000bafff000-0x00000000bb000000) (0MB)
[    0.000000] efi: mem81: type=7, attr=0xf, range=[0x0000000100000000-0x000000023f600000) (5110MB)
[    0.000000] efi: mem82: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem83: type=0, attr=0x0, range=[0x00000000bb000000-0x00000000bfa00000) (74MB)
[    0.000000] efi: mem84: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem85: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem86: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem87: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem88: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem89: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem90: type=11, attr=0x8000000000000000, range=[0x00000000ffb80000-0x0000000100000000) (4MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20132/INVALID, BIOS 5DCN90WW(V8.01) 10/11/2012
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x23f600 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-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   5 base 100000000 mask F00000000 write-back
[    0.000000]   6 base 200000000 mask FC0000000 write-back
[    0.000000]   7 base 23F600000 mask FFFE00000 uncachable
[    0.000000]   8 base 23F800000 mask FFF800000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [ffff8800000fe1c0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000028000] 28000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xbaffffff]
[    0.000000]  [mem 0x00000000-0xbaffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0xbaffffff @ [mem 0x1fffc000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x23f5fffff]
[    0.000000]  [mem 0x100000000-0x23f5fffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x23f5fffff @ [mem 0xba48f000-0xba494fff]
[    0.000000] RAMDISK: [mem 0x3e2b5000-0x3fffafff]
[    0.000000] ACPI: RSDP 00000000baffe014 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000baffe210 000AC (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 00000000baffa000 0010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DSDT 00000000bafec000 0A638 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000bafbb000 00040
[    0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 00000000baffc000 00236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! 00000000baffb000 000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 00000000baff9000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000baff8000 0008C (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000baff7000 0003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafeb000 006FE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000bafe9000 00028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT 00000000bafe7000 00034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DBGP 00000000bafe6000 00034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 00000000bafe4000 00044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MSDM 00000000bafe3000 00055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe2000 00926 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafdd000 02333 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BGRT 00000000bafe0000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x23f5fffff]
[    0.000000]   NODE_DATA [mem 0x23f5ec000-0x23f5fffff]
[    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236c00000-ffff88023ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x23f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xb3fecfff]
[    0.000000]   node   0: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]   node   0: [mem 0xb61b0000-0xba7befff]
[    0.000000]   node   0: [mem 0xbafff000-0xbaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x23f5fffff]
[    0.000000] On node 0 totalpages: 2062774
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 96 pages reserved
[    0.000000]   DMA zone: 3800 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11729 pages used for memmap
[    0.000000]   DMA32 zone: 738925 pages, LIFO batch:31
[    0.000000]   Normal zone: 20440 pages used for memmap
[    0.000000]   Normal zone: 1287720 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 0000000000088000 - 00000000000c0000
[    0.000000] PM: Registered nosave memory: 00000000000c0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000b3cdd000 - 00000000b3cde000
[    0.000000] PM: Registered nosave memory: 00000000b3ced000 - 00000000b3cee000
[    0.000000] PM: Registered nosave memory: 00000000b3cee000 - 00000000b3cef000
[    0.000000] PM: Registered nosave memory: 00000000b3d03000 - 00000000b3d04000
[    0.000000] PM: Registered nosave memory: 00000000b3fed000 - 00000000b4d6e000
[    0.000000] PM: Registered nosave memory: 00000000b4db0000 - 00000000b61b0000
[    0.000000] PM: Registered nosave memory: 00000000ba7bf000 - 00000000baebf000
[    0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
[    0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
[    0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
[    0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
[    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[    0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[    0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
[    0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
[    0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023f200000 s84544 r8192 d21952 u262144
[    0.000000] pcpu-alloc: s84544 r8192 d21952 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2030445
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.8.0-rc7+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 7934180k/9426944k available (6409k kernel code, 1175848k absent, 316916k reserved, 6804k data, 1076k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:8448 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.001000] tsc: Detected 2394.531 MHz processor
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.06 BogoMIPS (lpj=2394531)
[    0.000008] pid_max: default: 32768 minimum: 301
[    0.022890] Security Framework initialized
[    0.022901] SELinux:  Initializing.
[    0.022909] SELinux:  Starting in permissive mode
[    0.023504] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.025586] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.026486] Mount-cache hash table entries: 256
[    0.026642] Initializing cgroup subsys cpuacct
[    0.026646] Initializing cgroup subsys memory
[    0.026657] Initializing cgroup subsys devices
[    0.026660] Initializing cgroup subsys freezer
[    0.026662] Initializing cgroup subsys net_cls
[    0.026665] Initializing cgroup subsys blkio
[    0.026668] Initializing cgroup subsys perf_event
[    0.026694] CPU: Physical Processor ID: 0
[    0.026696] CPU: Processor Core ID: 0
[    0.026702] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.027077] mce: CPU supports 9 MCE banks
[    0.027092] CPU0: Thermal monitoring enabled (TM1)
[    0.027099] process: using mwait in idle threads
[    0.027104] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
[    0.027256] Freeing SMP alternatives: 24k freed
[    0.028342] ACPI: Core revision 20121018
[    0.050675] ftrace: allocating 24018 entries in 94 pages
[    0.062332] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.072326] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz (fam: 06, model: 3a, stepping: 09)
[    0.072335] TSC deadline timer enabled
[    0.072339] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[    0.072347] ... version:                3
[    0.072349] ... bit width:              48
[    0.072350] ... generic registers:      4
[    0.072352] ... value mask:             0000ffffffffffff
[    0.072354] ... max period:             000000007fffffff
[    0.072356] ... fixed-purpose events:   3
[    0.072358] ... event mask:             000000070000000f
[    0.087132] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.073487] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.169128] Brought up 8 CPUs
[    0.169134] smpboot: Total of 8 processors activated (38312.49 BogoMIPS)
[    0.176207] devtmpfs: initialized
[    0.176371] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
[    0.177003] atomic64 test passed for x86-64 platform with CX8 and with SSE
[    0.177031] RTC time:  5:38:50, date: 02/20/13
[    0.177069] NET: Registered protocol family 16
[    0.177204] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.177208] ACPI: bus type pci registered
[    0.177255] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.177260] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.186208] PCI: Using configuration type 1 for base access
[    0.186935] bio: create slab <bio-0> at 0
[    0.187000] ACPI: Added _OSI(Module Device)
[    0.187003] ACPI: Added _OSI(Processor Device)
[    0.187005] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.187007] ACPI: Added _OSI(Processor Aggregator Device)
[    0.188439] ACPI: EC: Look up EC in DSDT
[    0.189923] ACPI: Executed 1 blocks of module-level executable AML code
[    0.192784] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.193412] ACPI: SSDT 00000000babae018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.193779] ACPI: Dynamic OEM Table Load:
[    0.193782] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.197202] ACPI: SSDT 00000000babafa98 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.197591] ACPI: Dynamic OEM Table Load:
[    0.197594] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.201089] ACPI: SSDT 00000000babadd98 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.201449] ACPI: Dynamic OEM Table Load:
[    0.201451] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.206202] ACPI: Interpreter enabled
[    0.206206] ACPI: (supports S0 S3 S4 S5)
[    0.206225] ACPI: Using IOAPIC for interrupt routing
[    0.292082] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.292211] ACPI: No dock devices found.
[    0.292216] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.292453] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.292457] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.292640] \_SB_.PCI0:_OSC invalid UUID
[    0.292641] _OSC request data:1 8 1f 
[    0.292681] \_SB_.PCI0:_OSC invalid UUID
[    0.292682] _OSC request data:1 1f 1f 
[    0.292685] pci_root PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.292689] pci_root PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.293144] PCI host bridge to bus 0000:00
[    0.293148] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.293151] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.293153] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.293156] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.293159] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
[    0.293168] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.293203] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.293233] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.293251] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.293261] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
[    0.293266] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.293270] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    0.293321] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.293342] pci 0000:00:14.0: reg 10: [mem 0xd3700000-0xd370ffff 64bit]
[    0.293414] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.293437] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.293460] pci 0000:00:16.0: reg 10: [mem 0xd3714000-0xd371400f 64bit]
[    0.293536] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.293571] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.293592] pci 0000:00:1a.0: reg 10: [mem 0xd3719000-0xd37193ff]
[    0.293683] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.293710] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.293724] pci 0000:00:1b.0: reg 10: [mem 0xd3710000-0xd3713fff 64bit]
[    0.293791] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.293814] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.293891] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.293916] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.293994] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.294021] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    0.294103] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.294137] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.294158] pci 0000:00:1d.0: reg 10: [mem 0xd3718000-0xd37183ff]
[    0.294249] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.294275] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    0.294399] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.294418] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    0.294426] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    0.294434] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    0.294442] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    0.294450] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    0.294458] pci 0000:00:1f.2: reg 24: [mem 0xd3717000-0xd37177ff]
[    0.294504] pci 0000:00:1f.2: PME# supported from D3hot
[    0.294522] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.294537] pci 0000:00:1f.3: reg 10: [mem 0xd3715000-0xd37150ff 64bit]
[    0.294559] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    0.294618] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
[    0.294630] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
[    0.294642] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.294655] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.294663] pci 0000:01:00.0: reg 24: [io  0x3000-0x307f]
[    0.294672] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
[    0.296064] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.296072] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.296077] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.296083] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.296164] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[    0.296192] pci 0000:02:00.0: reg 10: [mem 0xd3600000-0xd363ffff 64bit]
[    0.296207] pci 0000:02:00.0: reg 18: [io  0x2000-0x207f]
[    0.296338] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.298073] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.298083] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.298090] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.298215] pci 0000:03:00.0: [8086:0891] type 00 class 0x028000
[    0.298262] pci 0000:03:00.0: reg 10: [mem 0xd3500000-0xd3501fff 64bit]
[    0.298491] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.300113] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.300121] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.300194] pci 0000:04:00.0: [197b:2392] type 00 class 0x088000
[    0.300220] pci 0000:04:00.0: reg 10: [mem 0xd3403000-0xd34030ff]
[    0.300484] pci 0000:04:00.2: [197b:2391] type 00 class 0x080501
[    0.300512] pci 0000:04:00.2: reg 10: [mem 0xd3402000-0xd34020ff]
[    0.300771] pci 0000:04:00.3: [197b:2393] type 00 class 0x088000
[    0.300799] pci 0000:04:00.3: reg 10: [mem 0xd3401000-0xd34010ff]
[    0.301059] pci 0000:04:00.4: [197b:2394] type 00 class 0x088000
[    0.301088] pci 0000:04:00.4: reg 10: [mem 0xd3400000-0xd34000ff]
[    0.303084] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.303098] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.303152] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.303180] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.303204] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
[    0.303250] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
[    0.303279] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.305998] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.306043] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.306084] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.306123] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.306161] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.306199] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.306237] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.306275] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.306346] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.306353] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    0.306356] vgaarb: loaded
[    0.306358] vgaarb: bridge control possible 0000:01:00.0
[    0.306360] vgaarb: no bridge control possible 0000:00:02.0
[    0.306412] SCSI subsystem initialized
[    0.306414] ACPI: bus type scsi registered
[    0.306438] libata version 3.00 loaded.
[    0.306453] ACPI: bus type usb registered
[    0.306467] usbcore: registered new interface driver usbfs
[    0.306476] usbcore: registered new interface driver hub
[    0.306491] usbcore: registered new device driver usb
[    0.306527] PCI: Using ACPI for IRQ routing
[    0.308056] PCI: pci_cache_line_size set to 64 bytes
[    0.308183] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.308184] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.308185] e820: reserve RAM buffer [mem 0xb3cdd018-0xb3ffffff]
[    0.308187] e820: reserve RAM buffer [mem 0xb3cee018-0xb3ffffff]
[    0.308188] e820: reserve RAM buffer [mem 0xb3fed000-0xb3ffffff]
[    0.308189] e820: reserve RAM buffer [mem 0xb4db0000-0xb7ffffff]
[    0.308190] e820: reserve RAM buffer [mem 0xba7bf000-0xbbffffff]
[    0.308192] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.308193] e820: reserve RAM buffer [mem 0x23f600000-0x23fffffff]
[    0.308258] NetLabel: Initializing
[    0.308260] NetLabel:  domain hash size = 128
[    0.308262] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.308270] NetLabel:  unlabeled traffic allowed by default
[    0.308308] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.308314] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.310327] Switching to clocksource hpet
[    0.314452] pnp: PnP ACPI init
[    0.314463] ACPI: bus type pnp registered
[    0.314486] pnp 00:00: [dma 4]
[    0.314503] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.314520] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.314597] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.314623] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.314654] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.314658] system 00:04: [io  0x1100-0x110f] has been reserved
[    0.314661] system 00:04: [io  0xffff] has been reserved
[    0.314665] system 00:04: [io  0xffff] has been reserved
[    0.314668] system 00:04: [io  0x0400-0x0453] has been reserved
[    0.314671] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.314674] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.314677] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.314680] system 00:04: [io  0xfd60-0xfd63] has been reserved
[    0.314683] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.314703] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.314740] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.314744] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.314773] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.314829] pnp 00:08: Plug and Play ACPI device, IDs SYN073d SYN0700 SYN0002 PNP0f13 (active)
[    0.355384] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.355388] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.355391] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.355394] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.355397] system 00:09: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.355400] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.355403] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.355406] system 00:09: [mem 0xff000000-0xff000fff] has been reserved
[    0.355410] system 00:09: [mem 0xff010000-0xffffffff] could not be reserved
[    0.355413] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.355416] system 00:09: [mem 0xbfa00000-0xbfa00fff] has been reserved
[    0.355419] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.355724] system 00:0a: [mem 0x20000000-0x201fffff] has been reserved
[    0.355728] system 00:0a: [mem 0x40004000-0x40004fff] has been reserved
[    0.355731] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.355747] pnp: PnP ACPI: found 11 devices
[    0.355749] ACPI: ACPI bus type pnp unregistered
[    0.361808] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.361843] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
[    0.361847] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.361850] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.361854] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.361858] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.361863] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.361866] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.361872] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.361882] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.361888] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.361898] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.361904] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.361939] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.361941] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.361943] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.361944] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.361946] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.361947] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
[    0.361949] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.361951] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.361952] pci_bus 0000:02: resource 1 [mem 0xd3600000-0xd36fffff]
[    0.361954] pci_bus 0000:03: resource 1 [mem 0xd3500000-0xd35fffff]
[    0.361955] pci_bus 0000:04: resource 1 [mem 0xd3400000-0xd34fffff]
[    0.361989] NET: Registered protocol family 2
[    0.362159] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.362352] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.362459] TCP: Hash tables configured (established 65536 bind 65536)
[    0.362475] TCP: reno registered
[    0.362489] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.362515] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.362584] NET: Registered protocol family 1
[    0.362596] pci 0000:00:02.0: Boot video device
[    1.461644] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.560007] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.560188] PCI: CLS 64 bytes, default 64
[    2.560218] Unpacking initramfs...
[    3.041976] Freeing initrd memory: 29976k freed
[    3.045576] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.045582] software IO TLB [mem 0xaf1c0000-0xb31c0000] (64MB) mapped at [ffff8800af1c0000-ffff8800b31bffff]
[    3.045627] Simple Boot Flag at 0x44 set to 0x1
[    3.048410] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    3.048667] Initialise module verification
[    3.048701] audit: initializing netlink socket (disabled)
[    3.048715] type=2000 audit(1361338733.006:1): initialized
[    3.070964] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.072157] VFS: Disk quotas dquot_6.5.2
[    3.072191] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.072543] msgmni has been set to 15696
[    3.072591] SELinux:  Registering netfilter hooks
[    3.073132] alg: No test for stdrng (krng)
[    3.073140] NET: Registered protocol family 38
[    3.073144] Key type asymmetric registered
[    3.073146] Asymmetric key parser 'x509' registered
[    3.073173] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    3.073197] io scheduler noop registered
[    3.073199] io scheduler deadline registered
[    3.073208] io scheduler cfq registered (default)
[    3.073321] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    3.073480] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.073492] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.073495] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.073881] efifb: probing for efifb
[    3.075117] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009480000, using 8100k, total 8100k
[    3.075120] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    3.075122] efifb: scrolling: redraw
[    3.075125] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.080643] Console: switching to colour frame buffer device 240x67
[    3.085832] fb0: EFI VGA frame buffer device
[    3.085857] intel_idle: MWAIT substates: 0x21120
[    3.085858] intel_idle: v0.4 model 0x3A
[    3.085859] intel_idle: lapic_timer_reliable_states 0xffffffff
[    3.085932] ACPI: AC Adapter [ACAD] (on-line)
[    3.086030] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input0
[    3.086077] ACPI: Power Button [PWRB]
[    3.086119] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0E:00/input/input1
[    3.086164] ACPI: Sleep Button [SLPB]
[    3.086240] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    3.086294] ACPI: Lid Switch [LID0]
[    3.086336] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.086371] ACPI: Power Button [PWRF]
[    3.086548] ACPI: Requesting acpi_cpufreq
[    3.173005] thermal LNXTHERM:00: registered as thermal_zone0
[    3.173035] ACPI: Thermal Zone [TZ00] (48 C)
[    3.173096] GHES: HEST is not enabled!
[    3.173171] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.214046] ACPI: Battery Slot [BAT1] (battery absent)
[    3.214176] Non-volatile memory driver v1.3
[    3.214198] Linux agpgart interface v0.103
[    3.214784] loop: module loaded
[    3.214844] ahci 0000:00:1f.2: version 3.0
[    3.214898] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    3.214927] ahci: SSS flag set, parallel bus scan disabled
[    3.225039] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    3.225094] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.225132] ahci 0000:00:1f.2: setting latency timer to 64
[    3.229322] scsi0 : ahci
[    3.229400] scsi1 : ahci
[    3.229463] scsi2 : ahci
[    3.229522] scsi3 : ahci
[    3.229582] scsi4 : ahci
[    3.229639] scsi5 : ahci
[    3.229679] ata1: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717100 irq 41
[    3.229715] ata2: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717180 irq 41
[    3.229749] ata3: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717200 irq 41
[    3.229782] ata4: DUMMY
[    3.229795] ata5: DUMMY
[    3.229808] ata6: DUMMY
[    3.229877] libphy: Fixed MDIO Bus: probed
[    3.229936] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.229967] ehci-pci: EHCI PCI platform driver
[    3.231271] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    3.231274] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.232573] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.233860] ehci-pci 0000:00:1a.0: debug port 2
[    3.239015] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.239031] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd3719000
[    3.245988] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.247271] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.248527] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.249784] usb usb1: Product: EHCI Host Controller
[    3.251041] usb usb1: Manufacturer: Linux 3.8.0-rc7+ ehci_hcd
[    3.252301] usb usb1: SerialNumber: 0000:00:1a.0
[    3.253623] hub 1-0:1.0: USB hub found
[    3.254857] hub 1-0:1.0: 2 ports detected
[    3.256164] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    3.256168] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.257436] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.258702] ehci-pci 0000:00:1d.0: debug port 2
[    3.263850] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.263863] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd3718000
[    3.270951] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.272215] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.273449] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.274680] usb usb2: Product: EHCI Host Controller
[    3.275896] usb usb2: Manufacturer: Linux 3.8.0-rc7+ ehci_hcd
[    3.277107] usb usb2: SerialNumber: 0000:00:1d.0
[    3.278381] hub 2-0:1.0: USB hub found
[    3.279588] hub 2-0:1.0: 2 ports detected
[    3.280847] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.282058] uhci_hcd: USB Universal Host Controller Interface driver
[    3.283304] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    3.283307] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.284522] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.285785] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.285796] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3700000
[    3.286994] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[    3.287038] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    3.288183] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.289319] usb usb3: Product: xHCI Host Controller
[    3.290440] usb usb3: Manufacturer: Linux 3.8.0-rc7+ xhci_hcd
[    3.291553] usb usb3: SerialNumber: 0000:00:14.0
[    3.292708] xHCI xhci_add_endpoint called for root hub
[    3.292710] xHCI xhci_check_bandwidth called for root hub
[    3.292727] hub 3-0:1.0: USB hub found
[    3.293835] hub 3-0:1.0: 4 ports detected
[    3.295310] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.296435] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    3.297562] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    3.298671] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.299777] usb usb4: Product: xHCI Host Controller
[    3.300879] usb usb4: Manufacturer: Linux 3.8.0-rc7+ xhci_hcd
[    3.301988] usb usb4: SerialNumber: 0000:00:14.0
[    3.303159] xHCI xhci_add_endpoint called for root hub
[    3.303160] xHCI xhci_check_bandwidth called for root hub
[    3.303175] hub 4-0:1.0: USB hub found
[    3.304288] hub 4-0:1.0: 4 ports detected
[    3.311937] usbcore: registered new interface driver usbserial
[    3.313039] usbcore: registered new interface driver usbserial_generic
[    3.314114] usbserial: USB Serial support registered for generic
[    3.315225] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS1] at 0x60,0x64 irq 1,12
[    3.355795] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.356949] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.358148] mousedev: PS/2 mouse device common for all mice
[    3.359473] rtc_cmos 00:05: RTC can wake from S4
[    3.360734] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    3.361922] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    3.363169] device-mapper: uevent: version 1.0.3
[    3.364386] device-mapper: ioctl: 4.23.1-ioctl (2012-12-18) initialised: dm-devel@redhat.com
[    3.365719] cpuidle: using governor ladder
[    3.367072] cpuidle: using governor menu
[    3.368608] EFI Variables Facility v0.08 2004-May-17
[    3.391158] usbcore: registered new interface driver usbhid
[    3.392415] usbhid: USB HID core driver
[    3.393628] drop_monitor: Initializing network drop monitor service
[    3.394849] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.394939] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.398019] TCP: cubic registered
[    3.399494] Initializing XFRM netlink socket
[    3.400949] NET: Registered protocol family 10
[    3.402295] mip6: Mobile IPv6
[    3.403502] NET: Registered protocol family 17
[    3.405264] PM: Hibernation image not present or could not be loaded.
[    3.405267] Loading module verification certificates
[    3.407292] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: b848057b753beab17f05b3dca255f65e59259035'
[    3.408553] registered taskstats version 1
[    3.410852]   Magic number: 1:586:618
[    3.415113] rtc_cmos 00:05: setting system clock to 2013-02-20 05:38:53 UTC (1361338733)
[    3.534647] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.537644] ata1.00: ATA-9: SanDisk SSD U100 16GB, 10.52.01, max UDMA/133
[    3.540207] ata1.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    3.543107] ata1.00: configured for UDMA/133
[    3.545966] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SSD U100 10.5 PQ: 0 ANSI: 5
[    3.549012] sd 0:0:0:0: [sda] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    3.549022] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.554333] sd 0:0:0:0: [sda] Write Protect is off
[    3.556918] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.556965] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.558589] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.568904]  sda: sda1
[    3.572021] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.674851] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.675891] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.677433] hub 1-1:1.0: USB hub found
[    3.680567] hub 1-1:1.0: 6 ports detected
[    3.786251] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.853191] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.856217] ata2.00: ATA-8: PLEXTOR PX-256M3, 1.05, max UDMA/133
[    3.858862] ata2.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    3.861897] ata2.00: configured for UDMA/133
[    3.864877] scsi 1:0:0:0: Direct-Access     ATA      PLEXTOR PX-256M3 1.05 PQ: 0 ANSI: 5
[    3.867931] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    3.868028] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.873419] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    3.876226] sd 1:0:0:0: [sdb] Write Protect is off
[    3.878904] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.878947] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.884097]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10
[    3.888190] sd 1:0:0:0: [sdb] Attached SCSI disk
[    3.902920] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    3.905714] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.908883] hub 2-1:1.0: USB hub found
[    3.911709] hub 2-1:1.0: 6 ports detected
[    3.978177] usb 1-1.6: new full-speed USB device number 3 using ehci-pci
[    4.045873] tsc: Refined TSC clocksource calibration: 2394.560 MHz
[    4.048663] Switching to clocksource tsc
[    4.069822] usb 1-1.6: New USB device found, idVendor=04ca, idProduct=2003
[    4.072646] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.075451] usb 1-1.6: Product: BCM20702A0
[    4.078233] usb 1-1.6: Manufacturer: Broadcom Corp
[    4.081010] usb 1-1.6: SerialNumber: 20689D9D9640
[    4.173714] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.180409] ata3.00: ATAPI: HL-DT-ST BD-RE BT20N, KV01, max UDMA/133
[    4.186827] ata3.00: configured for UDMA/133
[    4.189700] usb 2-1.6: new high-speed USB device number 3 using ehci-pci
[    4.193047] scsi 2:0:0:0: CD-ROM            HL-DT-ST BD-RE BT20N      KV01 PQ: 0 ANSI: 5
[    4.201234] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.204156] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.207258] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    4.207493] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    4.213964] Freeing unused kernel memory: 1076k freed
[    4.216952] Write protecting the kernel read-only data: 12288k
[    4.227708] Freeing unused kernel memory: 1772k freed
[    4.239843] Freeing unused kernel memory: 1380k freed
[    4.275460] usb 2-1.6: New USB device found, idVendor=04f2, idProduct=b2f1
[    4.278305] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.281118] usb 2-1.6: Product: Lenovo EasyCamera
[    4.283915] usb 2-1.6: Manufacturer: Vimicro Corp.
[    4.315583] systemd[1]: systemd 197 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    4.318705] systemd[1]: Running in initial RAM disk.
[    4.330641] systemd[1]: Set hostname to <ideapad.lan>.
[    4.351651] systemd[1]: Starting udev Kernel Socket.
[    4.357633] systemd[1]: Listening on udev Kernel Socket.
[    4.360658] systemd[1]: Starting udev Control Socket.
[    4.366460] systemd[1]: Listening on udev Control Socket.
[    4.369255] systemd[1]: Starting Journal Socket.
[    4.374648] systemd[1]: Listening on Journal Socket.
[    4.375681] systemd[1]: Starting dracut cmdline hook...
[    4.392821] systemd[1]: Started Load Kernel Modules.
[    4.395133] systemd[1]: Starting Journal Service...
[    4.426839] systemd[1]: Started Journal Service.
[    4.429763] systemd[1]: Starting Sockets.
[    4.434097] systemd[1]: Reached target Sockets.
[    4.435123] systemd[1]: Starting Swap.
[    4.437186] systemd[1]: Reached target Swap.
[    4.438182] systemd[1]: Starting Local File Systems.
[    4.440244] systemd[1]: Reached target Local File Systems.
[    4.556996] systemd-udevd[168]: starting version 197
[    4.717919] sdhci: Secure Digital Host Controller Interface driver
[    4.718888] sdhci: Copyright(c) Pierre Ossman
[    4.722564] sdhci-pci 0000:04:00.0: SDHCI controller found [197b:2392] (rev 30)
[    4.747741] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
[    4.749041] sdhci-pci 0000:04:00.2: SDHCI controller found [197b:2391] (rev 30)
[    4.750326] sdhci-pci 0000:04:00.2: Refusing to bind to secondary interface.
[    4.754359] [drm] Initialized drm 1.1.0 20060810
[    4.789556] wmi: Mapper loaded
[    4.914941] [drm] Memory usable by graphics device = 2048M
[    4.916214] checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
[    4.916215] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
[    4.917486] Console: switching to colour dummy device 80x25
[    4.917591] i915 0000:00:02.0: setting latency timer to 64
[    4.962649] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[    4.962656] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    4.962660] [drm] Driver supports precise vblank timestamp query.
[    4.962663] [i915 Hack] enter modeset
[    4.962670] [i915 Hack] after intel_parse_bios
[    4.962672] [i915 Hack] after vga_client_register
[    4.962727] [i915 Hack] after intel_register_dsm_handler
[    4.962730] [i915 Hack] after intel_switchroo_register_client
[    4.962733] [i915 Hack] after i915_gen_init_stolen
[    4.962752] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    4.962757] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[    5.018486] [i915 Hack] after intel_modeset_init
[    5.020823] [i915 Hack] after i915_gem_init
[    5.020869] [i915 Hack] after intel_modeset_gem_init
[    5.020892] [i915 Hack] after drm_irq_install
[    5.051980] fbcon: inteldrmfb (fb0) is primary device
[    5.089303] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id: 1087391
[    5.202472] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    5.711448] Console: switching to colour frame buffer device 240x67
[    5.722628] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    5.722630] i915 0000:00:02.0: registered panic notifier
[    5.722633] [i915 Hack] after intel_fbdev_init
[    5.722634] [i915 Hack] after drm_kms_helper_poll_init
[    5.722635] [i915 Hack] exit mode switch
[    5.722682] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.723017] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.733222] acpi device:3c: registered as cooling_device8
[    5.733587] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    5.733746] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:3a/LNXVIDEO:00/input/input6
[    5.745904] acpi device:48: registered as cooling_device9
[    5.746197] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.746350] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input7
[    5.746540] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    5.747524] nouveau  [  DEVICE][0000:01:00.0] BOOT0  : 0x0e7140a2
[    5.747613] nouveau  [  DEVICE][0000:01:00.0] Chipset: GK107 (NVE7)
[    5.747694] nouveau  [  DEVICE][0000:01:00.0] Family : NVE0
[    5.752707] nouveau  [   VBIOS][0000:01:00.0] checking PRAMIN for image...
[    5.800803] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.800846] nouveau  [   VBIOS][0000:01:00.0] checking PROM for image...
[    5.800948] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.800978] nouveau  [   VBIOS][0000:01:00.0] checking ACPI for image...
[    5.801011] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.801041] nouveau  [   VBIOS][0000:01:00.0] checking PCIROM for image...
[    5.801073] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.801103] nouveau E[   VBIOS][0000:01:00.0] unable to locate usable image
[    5.801134] nouveau E[  DEVICE][0000:01:00.0] failed to create 0x10000001, -22
[    5.801184] nouveau E[     DRM] failed to create 0x80000080, -22
[    5.801365] nouveau: probe of 0000:01:00.0 failed with error -22
[    5.824804] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    5.880846] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    6.141963] systemd-journald[125]: Received SIGTERM
[    6.199879] type=1404 audit(1361338736.291:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    6.238967] SELinux: 2048 avtab hash slots, 94720 rules.
[    6.249368] SELinux: 2048 avtab hash slots, 94720 rules.
[    6.339883] SELinux:  9 users, 15 roles, 4367 types, 239 bools, 1 sens, 1024 cats
[    6.339886] SELinux:  83 classes, 94720 rules
[    6.342675] SELinux:  Permission attach_queue in class tun_socket not defined in policy.
[    6.342708] SELinux: the above unknown classes and permissions will be allowed
[    6.343758] SELinux:  Completing initialization.
[    6.343759] SELinux:  Setting up existing superblocks.
[    6.343765] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    6.343768] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[    6.343774] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[    6.343777] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[    6.343782] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.343803] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[    6.344325] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[    6.344327] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[    6.344693] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[    6.344696] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[    6.344698] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[    6.344707] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.344711] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[    6.344715] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[    6.344721] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    6.344901] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[    6.344903] SELinux: initialized (dev efivarfs, type efivarfs), uses genfs_contexts
[    6.344909] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.344914] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.344963] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.344979] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.344982] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.344984] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.344993] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.344997] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.344999] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.345001] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.345003] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.345006] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.345012] SELinux: initialized (dev sdb9, type ext4), uses xattr
[    6.364691] type=1403 audit(1361338736.456:3): policy loaded auid=4294967295 ses=4294967295
[    6.376159] systemd[1]: Successfully loaded SELinux policy in 177ms 96us.
[    6.404938] systemd[1]: Relabelled /dev and /run in 13ms 123us.
[    6.592972] systemd-readahead[302]: Bumped block_nr parameter of 8:16 to 20480. This is a temporary hack and should be removed one day.
[    6.668900] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.732130] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    6.742116] systemd-udevd[311]: starting version 197
[    6.759861] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.841909] input: Ideapad extra buttons as /devices/platform/ideapad/input/input8
[    6.852698] mei 0000:00:16.0: setting latency timer to 64
[    6.852756] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[    6.875136] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20121018/utaddress-251)
[    6.876650] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.878436] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
[    6.879922] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20121018/utaddress-251)
[    6.881391] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.882990] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
[    6.884538] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20121018/utaddress-251)
[    6.886378] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.887936] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.889607] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20121018/utaddress-251)
[    6.891496] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.899013] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    6.902379] Bluetooth: Core ver 2.16
[    6.904033] NET: Registered protocol family 31
[    6.905662] Bluetooth: HCI device and connection manager initialized
[    6.907331] Bluetooth: HCI socket layer initialized
[    6.908943] Bluetooth: L2CAP socket layer initialized
[    6.912078] Bluetooth: SCO socket layer initialized
[    6.915277] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    6.916954] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    6.918568] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    6.920249] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    6.921824] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    6.923278] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    6.924440] usbcore: registered new interface driver btusb
[    6.926320] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    6.927888] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.971294] iTCO_vendor_support: vendor-support=0
[    6.976658] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    6.978237] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    6.980214] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.981777] tun: Universal TUN/TAP device driver, 1.6
[    6.983310] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    6.984954] media: Linux media interface: v0.10
[    6.988276] cfg80211: Calling CRDA to update world regulatory domain
[    6.990957] cfg80211: World regulatory domain updated:
[    6.992169] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    6.993348] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.994522] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.995691] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.996855] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.998012] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.999785] Linux video capture interface: v2.00
[    7.020013] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[    7.021160] Copyright(c) 2003-2012 Intel Corporation
[    7.022572] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2f1)
[    7.022696] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
[    7.024643] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input9
[    7.026169] usbcore: registered new interface driver uvcvideo
[    7.027372] USB Video Class driver (1.1.1)
[    7.050229] EXT4-fs (sdb9): re-mounted. Opts: (null)
[    7.055441] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1
[    7.062725] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[    7.083982] ALSA sound/pci/hda/patch_realtek.c:1241 SKU: Nid=0x1d sku_cfg=0x4015822d
[    7.083985] ALSA sound/pci/hda/patch_realtek.c:1243 SKU: port_connectivity=0x1
[    7.083986] ALSA sound/pci/hda/patch_realtek.c:1244 SKU: enable_pcbeep=0x1
[    7.083986] ALSA sound/pci/hda/patch_realtek.c:1245 SKU: check_sum=0x00000005
[    7.083987] ALSA sound/pci/hda/patch_realtek.c:1246 SKU: customization=0x00000082
[    7.083988] ALSA sound/pci/hda/patch_realtek.c:1247 SKU: external_amp=0x5
[    7.083989] ALSA sound/pci/hda/patch_realtek.c:1248 SKU: platform_type=0x1
[    7.083990] ALSA sound/pci/hda/patch_realtek.c:1249 SKU: swap=0x0
[    7.083991] ALSA sound/pci/hda/patch_realtek.c:1250 SKU: override=0x1
[    7.083994] ALSA sound/pci/hda/hda_auto_parser.c:306 autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    7.083996] ALSA sound/pci/hda/hda_auto_parser.c:310    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.083997] ALSA sound/pci/hda/hda_auto_parser.c:314    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    7.083998] ALSA sound/pci/hda/hda_auto_parser.c:315    mono: mono_out=0x0
[    7.083999] ALSA sound/pci/hda/hda_auto_parser.c:318    dig-out=0x1e/0x0
[    7.083999] ALSA sound/pci/hda/hda_auto_parser.c:319    inputs:
[    7.084001] ALSA sound/pci/hda/hda_auto_parser.c:323      Mic=0x18
[    7.084002] ALSA sound/pci/hda/hda_auto_parser.c:323      Internal Mic=0x12
[    7.085285] ALSA sound/pci/hda/patch_realtek.c:1304 realtek: No valid SSID, checking pincfg 0x4015822d for NID 0x1d
[    7.085286] ALSA sound/pci/hda/patch_realtek.c:1320 realtek: Enabling init ASM_ID=0x822d CODEC_ID=10ec0269
[    7.101709] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    7.115470] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    7.115541] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    7.330628] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
[    7.333829] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[    7.336998] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    7.340085] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[    7.343154] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled
[    7.346162] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 2200 BGN, REV=0x104
[    7.349307] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    7.373921] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    7.376454] cfg80211: Calling CRDA for country: US
[    7.378582] cfg80211: Regulatory domain changed to country: US
[    7.378583] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.378583] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.378584] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.378584] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.378585] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.378586] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.378586] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.378587] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[    7.456163] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[    7.664947] Adding 8044540k swap on /dev/sdb8.  Priority:-1 extents:1 across:8044540k SS
[    7.807370] SELinux: initialized (dev sdb2, type vfat), uses genfs_contexts
[    7.862148] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
[    7.865159] SELinux: initialized (dev sdb7, type ext4), uses xattr
[    7.907927] SELinux: initialized (dev sdb6, type vfat), uses genfs_contexts
[    8.069964] EXT4-fs (sdb10): mounted filesystem with ordered data mode. Opts: (null)
[    8.072809] SELinux: initialized (dev sdb10, type ext4), uses xattr
[    8.643800] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.644822] Bluetooth: BNEP filters: protocol multicast
[    8.645807] Bluetooth: BNEP socket layer initialized
[    8.646891] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    8.662623] Bluetooth: RFCOMM TTY layer initialized
[    8.662630] Bluetooth: RFCOMM socket layer initialized
[    8.662630] Bluetooth: RFCOMM ver 1.11
[    8.669077] Ebtables v2.0 registered
[    8.793252] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    8.948738] Loading iSCSI transport class v2.0-870.
[    8.949015] systemd-journald[455]: Received SIGUSR1
[    8.962776] iscsi: registered transport (tcp)
[    9.014266] iscsi: registered transport (iser)
[    9.023167] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[    9.024148] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[    9.042981] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    9.051640] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    9.061516] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[    9.062442] iscsi: registered transport (cxgb3i)
[    9.118854] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[    9.119840] iscsi: registered transport (cxgb4i)
[    9.153080] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.16 (Dec 05, 2012)
[    9.415169] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    9.422607] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    9.613951] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    9.627743] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Apr 25, 2012)
[    9.627774] iscsi: registered transport (bnx2i)
[    9.647287] iscsi: registered transport (be2iscsi)
[    9.647290] In beiscsi_module_init, tt=ffffffffa0814000
[    9.731929] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    9.731949] Bluetooth: HIDP socket layer initialized
[    9.732901] hid-generic 0005:046D:B002.0001: unknown main item tag 0x0
[    9.732944] input: Bluetooth Travel Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/bluetooth/hci0/hci0:11/input13
[    9.733505] hid-generic 0005:046D:B002.0001: input,hidraw0: BLUETOOTH HID v48.09 Mouse [Bluetooth Travel Mouse] on 20:68:9d:9d:96:40
[   10.044720] wlan0: authenticate with bc:ae:c5:c3:07:c4
[   10.049595] wlan0: capabilities/regulatory prevented using AP HT/VHT configuration, downgraded
[   10.052691] wlan0: send auth to bc:ae:c5:c3:07:c4 (try 1/3)
[   10.055404] wlan0: authenticated
[   10.056356] wlan0: associate with bc:ae:c5:c3:07:c4 (try 1/3)
[   10.061569] wlan0: RX AssocResp from bc:ae:c5:c3:07:c4 (capab=0x411 status=0 aid=1)
[   10.080095] wlan0: associated
[   10.080150] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   12.538664] cgroup: libvirtd (1255) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   12.538668] cgroup: "memory" requires setting use_hierarchy to 1 on the root.
[   12.538730] cgroup: libvirtd (1255) created nested cgroup for controller "devices" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   12.538785] cgroup: libvirtd (1255) created nested cgroup for controller "blkio" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   18.394637] fuse init (API version 7.20)
[   18.399853] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[   18.421078] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
[   36.548546] nf_conntrack: automatic helper assignment is deprecated and it will be removed soon. Use the iptables CT target to attach helpers instead.

[-- Attachment #3: .config --]
[-- Type: application/octet-stream, Size: 105438 bytes --]

#
# Automatically generated file; DO NOT EDIT.
# Linux/x86_64 3.8.0-rc7 Kernel Configuration
#
CONFIG_64BIT=y
CONFIG_X86_64=y
CONFIG_X86=y
CONFIG_INSTRUCTION_DECODER=y
CONFIG_OUTPUT_FORMAT="elf64-x86-64"
CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig"
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_HAVE_LATENCYTOP_SUPPORT=y
CONFIG_MMU=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_GENERIC_ISA_DMA=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ARCH_HAS_CPU_RELAX=y
CONFIG_ARCH_HAS_DEFAULT_IDLE=y
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_HAS_CPU_AUTOPROBE=y
CONFIG_HAVE_SETUP_PER_CPU_AREA=y
CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y
CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
CONFIG_ZONE_DMA32=y
CONFIG_AUDIT_ARCH=y
CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y
CONFIG_HAVE_INTEL_TXT=y
CONFIG_X86_64_SMP=y
CONFIG_X86_HT=y
CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11"
CONFIG_ARCH_CPU_PROBE_RELEASE=y
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config"
CONFIG_HAVE_IRQ_WORK=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_EXTABLE_SORT=y

#
# General setup
#
CONFIG_EXPERIMENTAL=y
CONFIG_INIT_ENV_ARG_LIMIT=32
CONFIG_CROSS_COMPILE=""
CONFIG_LOCALVERSION=""
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_HAVE_KERNEL_GZIP=y
CONFIG_HAVE_KERNEL_BZIP2=y
CONFIG_HAVE_KERNEL_LZMA=y
CONFIG_HAVE_KERNEL_XZ=y
CONFIG_HAVE_KERNEL_LZO=y
CONFIG_KERNEL_GZIP=y
# CONFIG_KERNEL_BZIP2 is not set
# CONFIG_KERNEL_LZMA is not set
# CONFIG_KERNEL_XZ is not set
# CONFIG_KERNEL_LZO is not set
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
CONFIG_FHANDLE=y
CONFIG_AUDIT=y
CONFIG_AUDITSYSCALL=y
CONFIG_AUDIT_WATCH=y
CONFIG_AUDIT_TREE=y
# CONFIG_AUDIT_LOGINUID_IMMUTABLE is not set
CONFIG_HAVE_GENERIC_HARDIRQS=y

#
# IRQ subsystem
#
CONFIG_GENERIC_HARDIRQS=y
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_PENDING_IRQ=y
CONFIG_IRQ_DOMAIN=y
# CONFIG_IRQ_DOMAIN_DEBUG is not set
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
CONFIG_CLOCKSOURCE_WATCHDOG=y
CONFIG_ARCH_CLOCKSOURCE_DATA=y
CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_GENERIC_CLOCKEVENTS_BUILD=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y
CONFIG_GENERIC_CMOS_UPDATE=y

#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ=y
CONFIG_HIGH_RES_TIMERS=y

#
# CPU/Task time and stats accounting
#
# CONFIG_TICK_CPU_ACCOUNTING is not set
CONFIG_IRQ_TIME_ACCOUNTING=y
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y

#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
# CONFIG_PREEMPT_RCU is not set
# CONFIG_RCU_USER_QS is not set
CONFIG_RCU_FANOUT=64
CONFIG_RCU_FANOUT_LEAF=16
# CONFIG_RCU_FANOUT_EXACT is not set
# CONFIG_RCU_FAST_NO_HZ is not set
# CONFIG_TREE_RCU_TRACE is not set
# CONFIG_RCU_NOCB_CPU is not set
CONFIG_IKCONFIG=m
# CONFIG_IKCONFIG_PROC is not set
CONFIG_LOG_BUF_SHIFT=18
CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y
CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_ARCH_WANTS_PROT_NUMA_PROT_NONE=y
# CONFIG_NUMA_BALANCING is not set
CONFIG_CGROUPS=y
# CONFIG_CGROUP_DEBUG is not set
CONFIG_CGROUP_FREEZER=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_RESOURCE_COUNTERS=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
# CONFIG_MEMCG_SWAP_ENABLED is not set
CONFIG_MEMCG_KMEM=y
# CONFIG_CGROUP_HUGETLB is not set
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
CONFIG_CFS_BANDWIDTH=y
CONFIG_RT_GROUP_SCHED=y
CONFIG_BLK_CGROUP=y
# CONFIG_DEBUG_BLK_CGROUP is not set
# CONFIG_CHECKPOINT_RESTORE is not set
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_IPC_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
CONFIG_SCHED_AUTOGROUP=y
CONFIG_MM_OWNER=y
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_SYSCTL=y
CONFIG_ANON_INODES=y
# CONFIG_EXPERT is not set
CONFIG_HAVE_UID16=y
CONFIG_UID16=y
# CONFIG_SYSCTL_SYSCALL is not set
CONFIG_SYSCTL_EXCEPTION_TRACE=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_ALL=y
CONFIG_HOTPLUG=y
CONFIG_PRINTK=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_PCSPKR_PLATFORM=y
CONFIG_HAVE_PCSPKR_PLATFORM=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y

#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
CONFIG_VM_EVENT_COUNTERS=y
CONFIG_PCI_QUIRKS=y
CONFIG_SLUB_DEBUG=y
# CONFIG_COMPAT_BRK is not set
# CONFIG_SLAB is not set
CONFIG_SLUB=y
CONFIG_PROFILING=y
CONFIG_TRACEPOINTS=y
# CONFIG_OPROFILE is not set
CONFIG_HAVE_OPROFILE=y
CONFIG_OPROFILE_NMI_TIMER=y
CONFIG_KPROBES=y
CONFIG_JUMP_LABEL=y
CONFIG_OPTPROBES=y
CONFIG_UPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_KRETPROBES=y
CONFIG_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_IOREMAP_PROT=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_OPTPROBES=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_ATTRS=y
CONFIG_USE_GENERIC_SMP_HELPERS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_DMA_API_DEBUG=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y
CONFIG_HAVE_USER_RETURN_NOTIFIER=y
CONFIG_HAVE_PERF_EVENTS_NMI=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_ARCH_WANT_OLD_COMPAT_IPC=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP_FILTER=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_GENERIC_SIGALTSTACK=y

#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set
CONFIG_SLABINFO=y
CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
CONFIG_MODULE_SIG=y
# CONFIG_MODULE_SIG_FORCE is not set
# CONFIG_MODULE_SIG_SHA1 is not set
# CONFIG_MODULE_SIG_SHA224 is not set
CONFIG_MODULE_SIG_SHA256=y
# CONFIG_MODULE_SIG_SHA384 is not set
# CONFIG_MODULE_SIG_SHA512 is not set
CONFIG_STOP_MACHINE=y
CONFIG_BLOCK=y
CONFIG_BLK_DEV_BSG=y
CONFIG_BLK_DEV_BSGLIB=y
CONFIG_BLK_DEV_INTEGRITY=y
CONFIG_BLK_DEV_THROTTLING=y

#
# Partition Types
#
CONFIG_PARTITION_ADVANCED=y
# CONFIG_ACORN_PARTITION is not set
CONFIG_OSF_PARTITION=y
CONFIG_AMIGA_PARTITION=y
# CONFIG_ATARI_PARTITION is not set
CONFIG_MAC_PARTITION=y
CONFIG_MSDOS_PARTITION=y
CONFIG_BSD_DISKLABEL=y
CONFIG_MINIX_SUBPARTITION=y
CONFIG_SOLARIS_X86_PARTITION=y
CONFIG_UNIXWARE_DISKLABEL=y
# CONFIG_LDM_PARTITION is not set
CONFIG_SGI_PARTITION=y
# CONFIG_ULTRIX_PARTITION is not set
CONFIG_SUN_PARTITION=y
CONFIG_KARMA_PARTITION=y
CONFIG_EFI_PARTITION=y
# CONFIG_SYSV68_PARTITION is not set
CONFIG_BLOCK_COMPAT=y

#
# IO Schedulers
#
CONFIG_IOSCHED_NOOP=y
CONFIG_IOSCHED_DEADLINE=y
CONFIG_IOSCHED_CFQ=y
CONFIG_CFQ_GROUP_IOSCHED=y
# CONFIG_DEFAULT_DEADLINE is not set
CONFIG_DEFAULT_CFQ=y
# CONFIG_DEFAULT_NOOP is not set
CONFIG_DEFAULT_IOSCHED="cfq"
CONFIG_PREEMPT_NOTIFIERS=y
CONFIG_ASN1=y
CONFIG_INLINE_SPIN_UNLOCK_IRQ=y
CONFIG_INLINE_READ_UNLOCK=y
CONFIG_INLINE_READ_UNLOCK_IRQ=y
CONFIG_INLINE_WRITE_UNLOCK=y
CONFIG_INLINE_WRITE_UNLOCK_IRQ=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_FREEZER=y

#
# Processor type and features
#
CONFIG_ZONE_DMA=y
CONFIG_SMP=y
CONFIG_X86_X2APIC=y
CONFIG_X86_MPPARSE=y
CONFIG_X86_EXTENDED_PLATFORM=y
# CONFIG_X86_NUMACHIP is not set
# CONFIG_X86_VSMP is not set
# CONFIG_X86_UV is not set
CONFIG_X86_SUPPORTS_MEMORY_FAILURE=y
CONFIG_SCHED_OMIT_FRAME_POINTER=y
CONFIG_PARAVIRT_GUEST=y
CONFIG_PARAVIRT_TIME_ACCOUNTING=y
CONFIG_XEN=y
CONFIG_XEN_DOM0=y
CONFIG_XEN_PRIVILEGED_GUEST=y
CONFIG_XEN_PVHVM=y
CONFIG_XEN_MAX_DOMAIN_MEMORY=500
CONFIG_XEN_SAVE_RESTORE=y
CONFIG_XEN_DEBUG_FS=y
CONFIG_KVM_GUEST=y
CONFIG_PARAVIRT=y
# CONFIG_PARAVIRT_SPINLOCKS is not set
CONFIG_PARAVIRT_CLOCK=y
# CONFIG_PARAVIRT_DEBUG is not set
CONFIG_NO_BOOTMEM=y
# CONFIG_MEMTEST is not set
# CONFIG_MK8 is not set
# CONFIG_MPSC is not set
# CONFIG_MCORE2 is not set
# CONFIG_MATOM is not set
CONFIG_GENERIC_CPU=y
CONFIG_X86_INTERNODE_CACHE_SHIFT=6
CONFIG_X86_L1_CACHE_SHIFT=6
CONFIG_X86_TSC=y
CONFIG_X86_CMPXCHG64=y
CONFIG_X86_CMOV=y
CONFIG_X86_MINIMUM_CPU_FAMILY=64
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_CPU_SUP_INTEL=y
CONFIG_CPU_SUP_AMD=y
CONFIG_CPU_SUP_CENTAUR=y
CONFIG_HPET_TIMER=y
CONFIG_HPET_EMULATE_RTC=y
CONFIG_DMI=y
CONFIG_GART_IOMMU=y
# CONFIG_CALGARY_IOMMU is not set
CONFIG_SWIOTLB=y
CONFIG_IOMMU_HELPER=y
# CONFIG_MAXSMP is not set
CONFIG_NR_CPUS=128
CONFIG_SCHED_SMT=y
CONFIG_SCHED_MC=y
# CONFIG_PREEMPT_NONE is not set
CONFIG_PREEMPT_VOLUNTARY=y
# CONFIG_PREEMPT is not set
CONFIG_X86_LOCAL_APIC=y
CONFIG_X86_IO_APIC=y
CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS=y
CONFIG_X86_MCE=y
CONFIG_X86_MCE_INTEL=y
CONFIG_X86_MCE_AMD=y
CONFIG_X86_MCE_THRESHOLD=y
# CONFIG_X86_MCE_INJECT is not set
CONFIG_X86_THERMAL_VECTOR=y
# CONFIG_I8K is not set
CONFIG_MICROCODE=m
CONFIG_MICROCODE_INTEL=y
CONFIG_MICROCODE_AMD=y
CONFIG_MICROCODE_OLD_INTERFACE=y
CONFIG_X86_MSR=y
CONFIG_X86_CPUID=y
CONFIG_ARCH_PHYS_ADDR_T_64BIT=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_DIRECT_GBPAGES=y
CONFIG_NUMA=y
CONFIG_AMD_NUMA=y
CONFIG_X86_64_ACPI_NUMA=y
CONFIG_NODES_SPAN_OTHER_NODES=y
# CONFIG_NUMA_EMU is not set
CONFIG_NODES_SHIFT=9
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_ARCH_SPARSEMEM_DEFAULT=y
CONFIG_ARCH_SELECT_MEMORY_MODEL=y
CONFIG_ARCH_PROC_KCORE_TEXT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_SELECT_MEMORY_MODEL=y
CONFIG_SPARSEMEM_MANUAL=y
CONFIG_SPARSEMEM=y
CONFIG_NEED_MULTIPLE_NODES=y
CONFIG_HAVE_MEMORY_PRESENT=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_MEMBLOCK=y
CONFIG_HAVE_MEMBLOCK_NODE_MAP=y
CONFIG_ARCH_DISCARD_MEMBLOCK=y
CONFIG_MEMORY_ISOLATION=y
# CONFIG_MOVABLE_NODE is not set
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_PAGEFLAGS_EXTENDED=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_COMPACTION=y
CONFIG_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
CONFIG_ZONE_DMA_FLAG=1
CONFIG_BOUNCE=y
CONFIG_VIRT_TO_BUS=y
CONFIG_MMU_NOTIFIER=y
CONFIG_KSM=y
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
CONFIG_MEMORY_FAILURE=y
# CONFIG_HWPOISON_INJECT is not set
CONFIG_TRANSPARENT_HUGEPAGE=y
CONFIG_TRANSPARENT_HUGEPAGE_ALWAYS=y
# CONFIG_TRANSPARENT_HUGEPAGE_MADVISE is not set
CONFIG_CROSS_MEMORY_ATTACH=y
CONFIG_CLEANCACHE=y
CONFIG_FRONTSWAP=y
CONFIG_X86_CHECK_BIOS_CORRUPTION=y
# CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK is not set
CONFIG_X86_RESERVE_LOW=64
CONFIG_MTRR=y
CONFIG_MTRR_SANITIZER=y
CONFIG_MTRR_SANITIZER_ENABLE_DEFAULT=1
CONFIG_MTRR_SANITIZER_SPARE_REG_NR_DEFAULT=1
CONFIG_X86_PAT=y
CONFIG_ARCH_USES_PG_UNCACHED=y
CONFIG_ARCH_RANDOM=y
CONFIG_X86_SMAP=y
CONFIG_EFI=y
CONFIG_EFI_STUB=y
CONFIG_SECCOMP=y
CONFIG_CC_STACKPROTECTOR=y
# CONFIG_HZ_100 is not set
# CONFIG_HZ_250 is not set
# CONFIG_HZ_300 is not set
CONFIG_HZ_1000=y
CONFIG_HZ=1000
CONFIG_SCHED_HRTICK=y
CONFIG_KEXEC=y
CONFIG_CRASH_DUMP=y
CONFIG_KEXEC_JUMP=y
CONFIG_PHYSICAL_START=0x1000000
CONFIG_RELOCATABLE=y
CONFIG_PHYSICAL_ALIGN=0x1000000
CONFIG_HOTPLUG_CPU=y
# CONFIG_BOOTPARAM_HOTPLUG_CPU0 is not set
# CONFIG_DEBUG_HOTPLUG_CPU0 is not set
# CONFIG_COMPAT_VDSO is not set
# CONFIG_CMDLINE_BOOL is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
CONFIG_USE_PERCPU_NUMA_NODE_ID=y

#
# Power management and ACPI options
#
CONFIG_ARCH_HIBERNATION_HEADER=y
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
CONFIG_HIBERNATE_CALLBACKS=y
CONFIG_HIBERNATION=y
CONFIG_PM_STD_PARTITION=""
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM_RUNTIME=y
CONFIG_PM=y
CONFIG_PM_DEBUG=y
CONFIG_PM_ADVANCED_DEBUG=y
# CONFIG_PM_TEST_SUSPEND is not set
CONFIG_PM_SLEEP_DEBUG=y
CONFIG_PM_TRACE=y
CONFIG_PM_TRACE_RTC=y
CONFIG_ACPI=y
CONFIG_ACPI_SLEEP=y
CONFIG_ACPI_PROCFS=y
# CONFIG_ACPI_PROCFS_POWER is not set
# CONFIG_ACPI_EC_DEBUGFS is not set
# CONFIG_ACPI_PROC_EVENT is not set
CONFIG_ACPI_AC=y
CONFIG_ACPI_BATTERY=y
CONFIG_ACPI_BUTTON=y
CONFIG_ACPI_VIDEO=m
CONFIG_ACPI_FAN=y
CONFIG_ACPI_DOCK=y
CONFIG_ACPI_I2C=m
CONFIG_ACPI_PROCESSOR=y
CONFIG_ACPI_HOTPLUG_CPU=y
# CONFIG_ACPI_PROCESSOR_AGGREGATOR is not set
CONFIG_ACPI_THERMAL=y
CONFIG_ACPI_NUMA=y
# CONFIG_ACPI_CUSTOM_DSDT is not set
# CONFIG_ACPI_INITRD_TABLE_OVERRIDE is not set
CONFIG_ACPI_BLACKLIST_YEAR=0
# CONFIG_ACPI_DEBUG is not set
CONFIG_ACPI_PCI_SLOT=y
CONFIG_X86_PM_TIMER=y
CONFIG_ACPI_CONTAINER=y
# CONFIG_ACPI_SBS is not set
CONFIG_ACPI_HED=y
# CONFIG_ACPI_CUSTOM_METHOD is not set
CONFIG_ACPI_BGRT=y
CONFIG_ACPI_APEI=y
CONFIG_ACPI_APEI_GHES=y
CONFIG_ACPI_APEI_PCIEAER=y
CONFIG_ACPI_APEI_MEMORY_FAILURE=y
# CONFIG_ACPI_APEI_EINJ is not set
# CONFIG_ACPI_APEI_ERST_DEBUG is not set
CONFIG_SFI=y

#
# CPU Frequency scaling
#
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
CONFIG_CPU_FREQ_GOV_COMMON=y
# CONFIG_CPU_FREQ_STAT is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
# CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_ONDEMAND=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_CONSERVATIVE is not set
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y

#
# x86 CPU frequency scaling drivers
#
CONFIG_X86_PCC_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ=y
CONFIG_X86_ACPI_CPUFREQ_CPB=y
CONFIG_X86_POWERNOW_K8=y
# CONFIG_X86_SPEEDSTEP_CENTRINO is not set
CONFIG_X86_P4_CLOCKMOD=y

#
# shared options
#
CONFIG_X86_SPEEDSTEP_LIB=y
CONFIG_CPU_IDLE=y
# CONFIG_CPU_IDLE_MULTIPLE_DRIVERS is not set
CONFIG_CPU_IDLE_GOV_LADDER=y
CONFIG_CPU_IDLE_GOV_MENU=y
# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set
CONFIG_INTEL_IDLE=y

#
# Memory power savings
#
# CONFIG_I7300_IDLE is not set

#
# Bus options (PCI etc.)
#
CONFIG_PCI=y
CONFIG_PCI_DIRECT=y
CONFIG_PCI_MMCONFIG=y
CONFIG_PCI_XEN=y
CONFIG_PCI_DOMAINS=y
CONFIG_PCIEPORTBUS=y
CONFIG_HOTPLUG_PCI_PCIE=y
CONFIG_PCIEAER=y
CONFIG_PCIE_ECRC=y
# CONFIG_PCIEAER_INJECT is not set
CONFIG_PCIEASPM=y
# CONFIG_PCIEASPM_DEBUG is not set
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
CONFIG_PCIE_PME=y
CONFIG_ARCH_SUPPORTS_MSI=y
CONFIG_PCI_MSI=y
# CONFIG_PCI_DEBUG is not set
# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set
CONFIG_PCI_STUB=y
# CONFIG_XEN_PCIDEV_FRONTEND is not set
CONFIG_HT_IRQ=y
CONFIG_PCI_ATS=y
CONFIG_PCI_IOV=y
CONFIG_PCI_PRI=y
CONFIG_PCI_PASID=y
CONFIG_PCI_IOAPIC=y
CONFIG_PCI_LABEL=y
CONFIG_ISA_DMA_API=y
CONFIG_AMD_NB=y
CONFIG_PCCARD=y
CONFIG_PCMCIA=y
CONFIG_PCMCIA_LOAD_CIS=y
CONFIG_CARDBUS=y

#
# PC-card bridges
#
# CONFIG_YENTA is not set
# CONFIG_PD6729 is not set
# CONFIG_I82092 is not set
CONFIG_HOTPLUG_PCI=y
CONFIG_HOTPLUG_PCI_ACPI=y
# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set
# CONFIG_HOTPLUG_PCI_CPCI is not set
# CONFIG_HOTPLUG_PCI_SHPC is not set
# CONFIG_RAPIDIO is not set

#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ARCH_BINFMT_ELF_RANDOMIZE_PIE=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
# CONFIG_HAVE_AOUT is not set
# CONFIG_BINFMT_MISC is not set
CONFIG_COREDUMP=y
CONFIG_IA32_EMULATION=y
# CONFIG_IA32_AOUT is not set
# CONFIG_X86_X32 is not set
CONFIG_COMPAT=y
CONFIG_COMPAT_FOR_U64_ALIGNMENT=y
CONFIG_SYSVIPC_COMPAT=y
CONFIG_KEYS_COMPAT=y
CONFIG_HAVE_TEXT_POKE_SMP=y
CONFIG_X86_DEV_DMA_OPS=y
CONFIG_NET=y
CONFIG_COMPAT_NETLINK_MESSAGES=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
# CONFIG_UNIX_DIAG is not set
CONFIG_XFRM=y
CONFIG_XFRM_ALGO=y
CONFIG_XFRM_USER=y
CONFIG_XFRM_SUB_POLICY=y
CONFIG_XFRM_MIGRATE=y
CONFIG_XFRM_STATISTICS=y
# CONFIG_NET_KEY is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
CONFIG_IP_FIB_TRIE_STATS=y
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
# CONFIG_IP_PNP is not set
# CONFIG_NET_IPIP is not set
# CONFIG_NET_IPGRE_DEMUX is not set
CONFIG_IP_MROUTE=y
CONFIG_IP_MROUTE_MULTIPLE_TABLES=y
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
CONFIG_ARPD=y
CONFIG_SYN_COOKIES=y
# CONFIG_INET_AH is not set
# CONFIG_INET_ESP is not set
# CONFIG_INET_IPCOMP is not set
# CONFIG_INET_XFRM_TUNNEL is not set
# CONFIG_INET_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET_XFRM_MODE_TUNNEL is not set
# CONFIG_INET_XFRM_MODE_BEET is not set
CONFIG_INET_LRO=y
# CONFIG_INET_DIAG is not set
CONFIG_TCP_CONG_ADVANCED=y
# CONFIG_TCP_CONG_BIC is not set
CONFIG_TCP_CONG_CUBIC=y
# CONFIG_TCP_CONG_WESTWOOD is not set
# CONFIG_TCP_CONG_HTCP is not set
# CONFIG_TCP_CONG_HSTCP is not set
# CONFIG_TCP_CONG_HYBLA is not set
# CONFIG_TCP_CONG_VEGAS is not set
# CONFIG_TCP_CONG_SCALABLE is not set
CONFIG_TCP_CONG_LP=m
# CONFIG_TCP_CONG_VENO is not set
# CONFIG_TCP_CONG_YEAH is not set
# CONFIG_TCP_CONG_ILLINOIS is not set
CONFIG_DEFAULT_CUBIC=y
# CONFIG_DEFAULT_RENO is not set
CONFIG_DEFAULT_TCP_CONG="cubic"
CONFIG_TCP_MD5SIG=y
CONFIG_IPV6=y
CONFIG_IPV6_PRIVACY=y
CONFIG_IPV6_ROUTER_PREF=y
CONFIG_IPV6_ROUTE_INFO=y
CONFIG_IPV6_OPTIMISTIC_DAD=y
# CONFIG_INET6_AH is not set
# CONFIG_INET6_ESP is not set
# CONFIG_INET6_IPCOMP is not set
CONFIG_IPV6_MIP6=y
# CONFIG_INET6_XFRM_TUNNEL is not set
# CONFIG_INET6_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_TRANSPORT is not set
# CONFIG_INET6_XFRM_MODE_TUNNEL is not set
# CONFIG_INET6_XFRM_MODE_BEET is not set
# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set
# CONFIG_IPV6_SIT is not set
# CONFIG_IPV6_TUNNEL is not set
# CONFIG_IPV6_GRE is not set
CONFIG_IPV6_MULTIPLE_TABLES=y
CONFIG_IPV6_SUBTREES=y
CONFIG_IPV6_MROUTE=y
CONFIG_IPV6_MROUTE_MULTIPLE_TABLES=y
CONFIG_IPV6_PIMSM_V2=y
CONFIG_NETLABEL=y
CONFIG_NETWORK_SECMARK=y
CONFIG_NETWORK_PHY_TIMESTAMPING=y
CONFIG_NETFILTER=y
# CONFIG_NETFILTER_DEBUG is not set
CONFIG_NETFILTER_ADVANCED=y
CONFIG_BRIDGE_NETFILTER=y

#
# Core Netfilter Configuration
#
# CONFIG_NETFILTER_NETLINK_ACCT is not set
# CONFIG_NETFILTER_NETLINK_QUEUE is not set
# CONFIG_NETFILTER_NETLINK_LOG is not set
CONFIG_NF_CONNTRACK=m
CONFIG_NF_CONNTRACK_MARK=y
CONFIG_NF_CONNTRACK_SECMARK=y
CONFIG_NF_CONNTRACK_PROCFS=y
CONFIG_NF_CONNTRACK_EVENTS=y
# CONFIG_NF_CONNTRACK_TIMEOUT is not set
CONFIG_NF_CONNTRACK_TIMESTAMP=y
# CONFIG_NF_CT_PROTO_DCCP is not set
# CONFIG_NF_CT_PROTO_SCTP is not set
# CONFIG_NF_CT_PROTO_UDPLITE is not set
# CONFIG_NF_CONNTRACK_AMANDA is not set
# CONFIG_NF_CONNTRACK_FTP is not set
# CONFIG_NF_CONNTRACK_H323 is not set
# CONFIG_NF_CONNTRACK_IRC is not set
CONFIG_NF_CONNTRACK_BROADCAST=m
CONFIG_NF_CONNTRACK_NETBIOS_NS=m
# CONFIG_NF_CONNTRACK_SNMP is not set
# CONFIG_NF_CONNTRACK_PPTP is not set
# CONFIG_NF_CONNTRACK_SANE is not set
# CONFIG_NF_CONNTRACK_SIP is not set
# CONFIG_NF_CONNTRACK_TFTP is not set
# CONFIG_NF_CT_NETLINK is not set
# CONFIG_NF_CT_NETLINK_TIMEOUT is not set
CONFIG_NF_NAT=m
CONFIG_NF_NAT_NEEDED=y
# CONFIG_NF_NAT_AMANDA is not set
# CONFIG_NF_NAT_FTP is not set
# CONFIG_NF_NAT_IRC is not set
# CONFIG_NF_NAT_SIP is not set
# CONFIG_NF_NAT_TFTP is not set
# CONFIG_NETFILTER_TPROXY is not set
CONFIG_NETFILTER_XTABLES=y

#
# Xtables combined modules
#
# CONFIG_NETFILTER_XT_MARK is not set
# CONFIG_NETFILTER_XT_CONNMARK is not set

#
# Xtables targets
#
# CONFIG_NETFILTER_XT_TARGET_AUDIT is not set
# CONFIG_NETFILTER_XT_TARGET_CHECKSUM is not set
# CONFIG_NETFILTER_XT_TARGET_CLASSIFY is not set
# CONFIG_NETFILTER_XT_TARGET_CONNMARK is not set
# CONFIG_NETFILTER_XT_TARGET_CONNSECMARK is not set
# CONFIG_NETFILTER_XT_TARGET_DSCP is not set
# CONFIG_NETFILTER_XT_TARGET_HL is not set
# CONFIG_NETFILTER_XT_TARGET_HMARK is not set
# CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set
# CONFIG_NETFILTER_XT_TARGET_LED is not set
# CONFIG_NETFILTER_XT_TARGET_LOG is not set
# CONFIG_NETFILTER_XT_TARGET_MARK is not set
# CONFIG_NETFILTER_XT_TARGET_NETMAP is not set
# CONFIG_NETFILTER_XT_TARGET_NFLOG is not set
# CONFIG_NETFILTER_XT_TARGET_NFQUEUE is not set
# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
# CONFIG_NETFILTER_XT_TARGET_REDIRECT is not set
# CONFIG_NETFILTER_XT_TARGET_TEE is not set
# CONFIG_NETFILTER_XT_TARGET_SECMARK is not set
# CONFIG_NETFILTER_XT_TARGET_TCPMSS is not set
# CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set

#
# Xtables matches
#
# CONFIG_NETFILTER_XT_MATCH_ADDRTYPE is not set
# CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
# CONFIG_NETFILTER_XT_MATCH_COMMENT is not set
# CONFIG_NETFILTER_XT_MATCH_CONNBYTES is not set
# CONFIG_NETFILTER_XT_MATCH_CONNLIMIT is not set
# CONFIG_NETFILTER_XT_MATCH_CONNMARK is not set
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
# CONFIG_NETFILTER_XT_MATCH_CPU is not set
# CONFIG_NETFILTER_XT_MATCH_DCCP is not set
# CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set
# CONFIG_NETFILTER_XT_MATCH_DSCP is not set
# CONFIG_NETFILTER_XT_MATCH_ECN is not set
# CONFIG_NETFILTER_XT_MATCH_ESP is not set
# CONFIG_NETFILTER_XT_MATCH_HASHLIMIT is not set
# CONFIG_NETFILTER_XT_MATCH_HELPER is not set
# CONFIG_NETFILTER_XT_MATCH_HL is not set
# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
# CONFIG_NETFILTER_XT_MATCH_LENGTH is not set
# CONFIG_NETFILTER_XT_MATCH_LIMIT is not set
# CONFIG_NETFILTER_XT_MATCH_MAC is not set
# CONFIG_NETFILTER_XT_MATCH_MARK is not set
# CONFIG_NETFILTER_XT_MATCH_MULTIPORT is not set
# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
# CONFIG_NETFILTER_XT_MATCH_POLICY is not set
# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set
# CONFIG_NETFILTER_XT_MATCH_PKTTYPE is not set
# CONFIG_NETFILTER_XT_MATCH_QUOTA is not set
# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
# CONFIG_NETFILTER_XT_MATCH_REALM is not set
# CONFIG_NETFILTER_XT_MATCH_RECENT is not set
# CONFIG_NETFILTER_XT_MATCH_SCTP is not set
# CONFIG_NETFILTER_XT_MATCH_STATE is not set
# CONFIG_NETFILTER_XT_MATCH_STATISTIC is not set
# CONFIG_NETFILTER_XT_MATCH_STRING is not set
# CONFIG_NETFILTER_XT_MATCH_TCPMSS is not set
# CONFIG_NETFILTER_XT_MATCH_TIME is not set
# CONFIG_NETFILTER_XT_MATCH_U32 is not set
# CONFIG_IP_VS is not set

#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=m
CONFIG_NF_CONNTRACK_IPV4=m
# CONFIG_NF_CONNTRACK_PROC_COMPAT is not set
# CONFIG_IP_NF_QUEUE is not set
CONFIG_IP_NF_IPTABLES=y
# CONFIG_IP_NF_MATCH_AH is not set
# CONFIG_IP_NF_MATCH_ECN is not set
# CONFIG_IP_NF_MATCH_RPFILTER is not set
# CONFIG_IP_NF_MATCH_TTL is not set
CONFIG_IP_NF_FILTER=y
CONFIG_IP_NF_TARGET_REJECT=y
# CONFIG_IP_NF_TARGET_ULOG is not set
CONFIG_NF_NAT_IPV4=m
CONFIG_IP_NF_TARGET_MASQUERADE=m
# CONFIG_IP_NF_TARGET_NETMAP is not set
# CONFIG_IP_NF_TARGET_REDIRECT is not set
# CONFIG_NF_NAT_PPTP is not set
# CONFIG_NF_NAT_H323 is not set
CONFIG_IP_NF_MANGLE=m
# CONFIG_IP_NF_TARGET_CLUSTERIP is not set
# CONFIG_IP_NF_TARGET_ECN is not set
# CONFIG_IP_NF_TARGET_TTL is not set
# CONFIG_IP_NF_RAW is not set
# CONFIG_IP_NF_SECURITY is not set
# CONFIG_IP_NF_ARPTABLES is not set

#
# IPv6: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV6=m
CONFIG_NF_CONNTRACK_IPV6=m
CONFIG_IP6_NF_IPTABLES=m
# CONFIG_IP6_NF_MATCH_AH is not set
# CONFIG_IP6_NF_MATCH_EUI64 is not set
# CONFIG_IP6_NF_MATCH_FRAG is not set
# CONFIG_IP6_NF_MATCH_OPTS is not set
# CONFIG_IP6_NF_MATCH_HL is not set
# CONFIG_IP6_NF_MATCH_IPV6HEADER is not set
# CONFIG_IP6_NF_MATCH_MH is not set
# CONFIG_IP6_NF_MATCH_RPFILTER is not set
# CONFIG_IP6_NF_MATCH_RT is not set
# CONFIG_IP6_NF_TARGET_HL is not set
CONFIG_IP6_NF_FILTER=m
CONFIG_IP6_NF_TARGET_REJECT=m
CONFIG_IP6_NF_MANGLE=m
# CONFIG_IP6_NF_RAW is not set
# CONFIG_IP6_NF_SECURITY is not set
# CONFIG_NF_NAT_IPV6 is not set
CONFIG_BRIDGE_NF_EBTABLES=m
# CONFIG_BRIDGE_EBT_BROUTE is not set
CONFIG_BRIDGE_EBT_T_FILTER=m
CONFIG_BRIDGE_EBT_T_NAT=m
# CONFIG_BRIDGE_EBT_802_3 is not set
# CONFIG_BRIDGE_EBT_AMONG is not set
# CONFIG_BRIDGE_EBT_ARP is not set
# CONFIG_BRIDGE_EBT_IP is not set
# CONFIG_BRIDGE_EBT_IP6 is not set
# CONFIG_BRIDGE_EBT_LIMIT is not set
# CONFIG_BRIDGE_EBT_MARK is not set
# CONFIG_BRIDGE_EBT_PKTTYPE is not set
# CONFIG_BRIDGE_EBT_STP is not set
# CONFIG_BRIDGE_EBT_VLAN is not set
# CONFIG_BRIDGE_EBT_ARPREPLY is not set
# CONFIG_BRIDGE_EBT_DNAT is not set
# CONFIG_BRIDGE_EBT_MARK_T is not set
# CONFIG_BRIDGE_EBT_REDIRECT is not set
# CONFIG_BRIDGE_EBT_SNAT is not set
# CONFIG_BRIDGE_EBT_LOG is not set
# CONFIG_BRIDGE_EBT_ULOG is not set
# CONFIG_BRIDGE_EBT_NFLOG is not set
# CONFIG_IP_DCCP is not set
# CONFIG_IP_SCTP is not set
# CONFIG_RDS is not set
# CONFIG_TIPC is not set
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
CONFIG_STP=m
CONFIG_BRIDGE=m
CONFIG_BRIDGE_IGMP_SNOOPING=y
CONFIG_HAVE_NET_DSA=y
# CONFIG_VLAN_8021Q is not set
# CONFIG_DECNET is not set
CONFIG_LLC=m
# CONFIG_LLC2 is not set
# CONFIG_IPX is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_WAN_ROUTER is not set
# CONFIG_PHONET is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y

#
# Queueing/Scheduling
#
# CONFIG_NET_SCH_CBQ is not set
# CONFIG_NET_SCH_HTB is not set
# CONFIG_NET_SCH_HFSC is not set
# CONFIG_NET_SCH_PRIO is not set
# CONFIG_NET_SCH_MULTIQ is not set
# CONFIG_NET_SCH_RED is not set
# CONFIG_NET_SCH_SFB is not set
# CONFIG_NET_SCH_SFQ is not set
# CONFIG_NET_SCH_TEQL is not set
# CONFIG_NET_SCH_TBF is not set
# CONFIG_NET_SCH_GRED is not set
# CONFIG_NET_SCH_DSMARK is not set
# CONFIG_NET_SCH_NETEM is not set
# CONFIG_NET_SCH_DRR is not set
# CONFIG_NET_SCH_MQPRIO is not set
# CONFIG_NET_SCH_CHOKE is not set
# CONFIG_NET_SCH_QFQ is not set
# CONFIG_NET_SCH_CODEL is not set
# CONFIG_NET_SCH_FQ_CODEL is not set
# CONFIG_NET_SCH_INGRESS is not set
# CONFIG_NET_SCH_PLUG is not set

#
# Classification
#
CONFIG_NET_CLS=y
# CONFIG_NET_CLS_BASIC is not set
# CONFIG_NET_CLS_TCINDEX is not set
# CONFIG_NET_CLS_ROUTE4 is not set
# CONFIG_NET_CLS_FW is not set
# CONFIG_NET_CLS_U32 is not set
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
CONFIG_NET_CLS_CGROUP=y
CONFIG_NET_EMATCH=y
CONFIG_NET_EMATCH_STACK=32
# CONFIG_NET_EMATCH_CMP is not set
# CONFIG_NET_EMATCH_NBYTE is not set
# CONFIG_NET_EMATCH_U32 is not set
# CONFIG_NET_EMATCH_META is not set
# CONFIG_NET_EMATCH_TEXT is not set
CONFIG_NET_CLS_ACT=y
# CONFIG_NET_ACT_POLICE is not set
# CONFIG_NET_ACT_GACT is not set
# CONFIG_NET_ACT_MIRRED is not set
# CONFIG_NET_ACT_IPT is not set
# CONFIG_NET_ACT_NAT is not set
# CONFIG_NET_ACT_PEDIT is not set
# CONFIG_NET_ACT_SIMP is not set
# CONFIG_NET_ACT_SKBEDIT is not set
# CONFIG_NET_ACT_CSUM is not set
CONFIG_NET_SCH_FIFO=y
CONFIG_DCB=y
# CONFIG_DNS_RESOLVER is not set
# CONFIG_BATMAN_ADV is not set
# CONFIG_OPENVSWITCH is not set
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_XPS=y
# CONFIG_NETPRIO_CGROUP is not set
CONFIG_BQL=y
CONFIG_BPF_JIT=y

#
# Network testing
#
# CONFIG_NET_PKTGEN is not set
# CONFIG_NET_TCPPROBE is not set
CONFIG_NET_DROP_MONITOR=y
CONFIG_HAMRADIO=y

#
# Packet Radio protocols
#
# CONFIG_AX25 is not set
# CONFIG_CAN is not set
# CONFIG_IRDA is not set
CONFIG_BT=m
CONFIG_BT_RFCOMM=m
CONFIG_BT_RFCOMM_TTY=y
CONFIG_BT_BNEP=m
CONFIG_BT_BNEP_MC_FILTER=y
CONFIG_BT_BNEP_PROTO_FILTER=y
CONFIG_BT_HIDP=m

#
# Bluetooth device drivers
#
CONFIG_BT_HCIBTUSB=m
# CONFIG_BT_HCIBTSDIO is not set
# CONFIG_BT_HCIUART is not set
# CONFIG_BT_HCIBCM203X is not set
# CONFIG_BT_HCIBPA10X is not set
# CONFIG_BT_HCIBFUSB is not set
# CONFIG_BT_HCIDTL1 is not set
# CONFIG_BT_HCIBT3C is not set
# CONFIG_BT_HCIBLUECARD is not set
# CONFIG_BT_HCIBTUART is not set
# CONFIG_BT_HCIVHCI is not set
# CONFIG_BT_MRVL is not set
# CONFIG_BT_ATH3K is not set
# CONFIG_AF_RXRPC is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
CONFIG_WEXT_CORE=y
CONFIG_WEXT_PROC=y
CONFIG_CFG80211=m
# CONFIG_NL80211_TESTMODE is not set
# CONFIG_CFG80211_DEVELOPER_WARNINGS is not set
# CONFIG_CFG80211_REG_DEBUG is not set
CONFIG_CFG80211_DEFAULT_PS=y
CONFIG_CFG80211_DEBUGFS=y
# CONFIG_CFG80211_INTERNAL_REGDB is not set
CONFIG_CFG80211_WEXT=y
# CONFIG_LIB80211 is not set
CONFIG_MAC80211=m
CONFIG_MAC80211_HAS_RC=y
CONFIG_MAC80211_RC_MINSTREL=y
CONFIG_MAC80211_RC_MINSTREL_HT=y
CONFIG_MAC80211_RC_DEFAULT_MINSTREL=y
CONFIG_MAC80211_RC_DEFAULT="minstrel_ht"
CONFIG_MAC80211_MESH=y
CONFIG_MAC80211_LEDS=y
CONFIG_MAC80211_DEBUGFS=y
# CONFIG_MAC80211_MESSAGE_TRACING is not set
# CONFIG_MAC80211_DEBUG_MENU is not set
# CONFIG_WIMAX is not set
CONFIG_RFKILL=m
CONFIG_RFKILL_LEDS=y
CONFIG_RFKILL_INPUT=y
# CONFIG_NET_9P is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
CONFIG_HAVE_BPF_JIT=y

#
# Device Drivers
#

#
# Generic Driver Options
#
CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y
# CONFIG_FIRMWARE_IN_KERNEL is not set
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_DEBUG_DRIVER is not set
CONFIG_DEBUG_DEVRES=y
CONFIG_SYS_HYPERVISOR=y
# CONFIG_GENERIC_CPU_DEVICES is not set
CONFIG_DMA_SHARED_BUFFER=y

#
# Bus devices
#
CONFIG_CONNECTOR=y
CONFIG_PROC_EVENTS=y
# CONFIG_MTD is not set
# CONFIG_PARPORT is not set
CONFIG_PNP=y
# CONFIG_PNP_DEBUG_MESSAGES is not set

#
# Protocols
#
CONFIG_PNPACPI=y
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_FD is not set
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
# CONFIG_BLK_CPQ_DA is not set
# CONFIG_BLK_CPQ_CISS_DA is not set
# CONFIG_BLK_DEV_DAC960 is not set
# CONFIG_BLK_DEV_UMEM is not set
# CONFIG_BLK_DEV_COW_COMMON is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
# CONFIG_BLK_DEV_CRYPTOLOOP is not set
# CONFIG_BLK_DEV_DRBD is not set
# CONFIG_BLK_DEV_NBD is not set
# CONFIG_BLK_DEV_NVME is not set
# CONFIG_BLK_DEV_SX8 is not set
# CONFIG_BLK_DEV_RAM is not set
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
# CONFIG_XEN_BLKDEV_FRONTEND is not set
# CONFIG_XEN_BLKDEV_BACKEND is not set
# CONFIG_VIRTIO_BLK is not set
# CONFIG_BLK_DEV_HD is not set
# CONFIG_BLK_DEV_RBD is not set

#
# Misc devices
#
# CONFIG_SENSORS_LIS3LV02D is not set
# CONFIG_AD525X_DPOT is not set
# CONFIG_IBM_ASM is not set
# CONFIG_PHANTOM is not set
# CONFIG_INTEL_MID_PTI is not set
# CONFIG_SGI_IOC4 is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1780 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_VMWARE_BALLOON is not set
# CONFIG_BMP085_I2C is not set
# CONFIG_PCH_PHUB is not set
# CONFIG_USB_SWITCH_FSA9480 is not set
# CONFIG_C2PORT is not set

#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_CB710_CORE is not set

#
# Texas Instruments shared transport line discipline
#
# CONFIG_SENSORS_LIS3_I2C is not set

#
# Altera FPGA firmware download module
#
# CONFIG_ALTERA_STAPL is not set
CONFIG_INTEL_MEI=m
CONFIG_HAVE_IDE=y
# CONFIG_IDE is not set

#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
CONFIG_SCSI=y
CONFIG_SCSI_DMA=y
# CONFIG_SCSI_TGT is not set
# CONFIG_SCSI_NETLINK is not set
CONFIG_SCSI_PROC_FS=y

#
# SCSI support type (disk, tape, CD-ROM)
#
CONFIG_BLK_DEV_SD=y
# CONFIG_CHR_DEV_ST is not set
# CONFIG_CHR_DEV_OSST is not set
CONFIG_BLK_DEV_SR=y
CONFIG_BLK_DEV_SR_VENDOR=y
CONFIG_CHR_DEV_SG=y
# CONFIG_CHR_DEV_SCH is not set
CONFIG_SCSI_MULTI_LUN=y
CONFIG_SCSI_CONSTANTS=y
CONFIG_SCSI_LOGGING=y
CONFIG_SCSI_SCAN_ASYNC=y

#
# SCSI Transports
#
# CONFIG_SCSI_SPI_ATTRS is not set
# CONFIG_SCSI_FC_ATTRS is not set
CONFIG_SCSI_ISCSI_ATTRS=m
# CONFIG_SCSI_SAS_ATTRS is not set
# CONFIG_SCSI_SAS_LIBSAS is not set
# CONFIG_SCSI_SRP_ATTRS is not set
CONFIG_SCSI_LOWLEVEL=y
CONFIG_ISCSI_TCP=m
CONFIG_ISCSI_BOOT_SYSFS=m
CONFIG_SCSI_CXGB3_ISCSI=m
CONFIG_SCSI_CXGB4_ISCSI=m
CONFIG_SCSI_BNX2_ISCSI=m
# CONFIG_SCSI_BNX2X_FCOE is not set
CONFIG_BE2ISCSI=m
# CONFIG_BLK_DEV_3W_XXXX_RAID is not set
# CONFIG_SCSI_HPSA is not set
# CONFIG_SCSI_3W_9XXX is not set
# CONFIG_SCSI_3W_SAS is not set
# CONFIG_SCSI_ACARD is not set
# CONFIG_SCSI_AACRAID is not set
# CONFIG_SCSI_AIC7XXX is not set
# CONFIG_SCSI_AIC7XXX_OLD is not set
# CONFIG_SCSI_AIC79XX is not set
# CONFIG_SCSI_AIC94XX is not set
# CONFIG_SCSI_MVSAS is not set
# CONFIG_SCSI_MVUMI is not set
# CONFIG_SCSI_DPT_I2O is not set
# CONFIG_SCSI_ADVANSYS is not set
# CONFIG_SCSI_ARCMSR is not set
CONFIG_MEGARAID_NEWGEN=y
# CONFIG_MEGARAID_MM is not set
# CONFIG_MEGARAID_LEGACY is not set
# CONFIG_MEGARAID_SAS is not set
# CONFIG_SCSI_MPT2SAS is not set
# CONFIG_SCSI_MPT3SAS is not set
# CONFIG_SCSI_UFSHCD is not set
# CONFIG_SCSI_HPTIOP is not set
# CONFIG_SCSI_BUSLOGIC is not set
# CONFIG_VMWARE_PVSCSI is not set
# CONFIG_LIBFC is not set
# CONFIG_LIBFCOE is not set
# CONFIG_FCOE is not set
# CONFIG_FCOE_FNIC is not set
# CONFIG_SCSI_DMX3191D is not set
# CONFIG_SCSI_EATA is not set
# CONFIG_SCSI_FUTURE_DOMAIN is not set
# CONFIG_SCSI_GDTH is not set
# CONFIG_SCSI_ISCI is not set
# CONFIG_SCSI_IPS is not set
# CONFIG_SCSI_INITIO is not set
# CONFIG_SCSI_INIA100 is not set
# CONFIG_SCSI_STEX is not set
# CONFIG_SCSI_SYM53C8XX_2 is not set
# CONFIG_SCSI_IPR is not set
# CONFIG_SCSI_QLOGIC_1280 is not set
# CONFIG_SCSI_QLA_FC is not set
CONFIG_SCSI_QLA_ISCSI=m
# CONFIG_SCSI_LPFC is not set
# CONFIG_SCSI_DC395x is not set
# CONFIG_SCSI_DC390T is not set
# CONFIG_SCSI_DEBUG is not set
# CONFIG_SCSI_PMCRAID is not set
# CONFIG_SCSI_PM8001 is not set
# CONFIG_SCSI_SRP is not set
# CONFIG_SCSI_BFA_FC is not set
# CONFIG_SCSI_VIRTIO is not set
# CONFIG_SCSI_CHELSIO_FCOE is not set
# CONFIG_SCSI_LOWLEVEL_PCMCIA is not set
CONFIG_SCSI_DH=y
# CONFIG_SCSI_DH_RDAC is not set
# CONFIG_SCSI_DH_HP_SW is not set
# CONFIG_SCSI_DH_EMC is not set
# CONFIG_SCSI_DH_ALUA is not set
# CONFIG_SCSI_OSD_INITIATOR is not set
CONFIG_ATA=y
# CONFIG_ATA_NONSTANDARD is not set
CONFIG_ATA_VERBOSE_ERROR=y
CONFIG_ATA_ACPI=y
CONFIG_SATA_PMP=y

#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=y
# CONFIG_SATA_AHCI_PLATFORM is not set
# CONFIG_SATA_INIC162X is not set
# CONFIG_SATA_ACARD_AHCI is not set
# CONFIG_SATA_SIL24 is not set
CONFIG_ATA_SFF=y

#
# SFF controllers with custom DMA interface
#
# CONFIG_PDC_ADMA is not set
# CONFIG_SATA_QSTOR is not set
# CONFIG_SATA_SX4 is not set
CONFIG_ATA_BMDMA=y

#
# SATA SFF controllers with BMDMA
#
CONFIG_ATA_PIIX=y
# CONFIG_SATA_HIGHBANK is not set
# CONFIG_SATA_MV is not set
# CONFIG_SATA_NV is not set
# CONFIG_SATA_PROMISE is not set
# CONFIG_SATA_SIL is not set
# CONFIG_SATA_SIS is not set
# CONFIG_SATA_SVW is not set
# CONFIG_SATA_ULI is not set
# CONFIG_SATA_VIA is not set
# CONFIG_SATA_VITESSE is not set

#
# PATA SFF controllers with BMDMA
#
# CONFIG_PATA_ALI is not set
# CONFIG_PATA_AMD is not set
# CONFIG_PATA_ARASAN_CF is not set
# CONFIG_PATA_ARTOP is not set
# CONFIG_PATA_ATIIXP is not set
# CONFIG_PATA_ATP867X is not set
# CONFIG_PATA_CMD64X is not set
# CONFIG_PATA_CS5520 is not set
# CONFIG_PATA_CS5530 is not set
# CONFIG_PATA_CS5536 is not set
# CONFIG_PATA_CYPRESS is not set
# CONFIG_PATA_EFAR is not set
# CONFIG_PATA_HPT366 is not set
# CONFIG_PATA_HPT37X is not set
# CONFIG_PATA_HPT3X2N is not set
# CONFIG_PATA_HPT3X3 is not set
# CONFIG_PATA_IT8213 is not set
# CONFIG_PATA_IT821X is not set
# CONFIG_PATA_JMICRON is not set
# CONFIG_PATA_MARVELL is not set
# CONFIG_PATA_NETCELL is not set
# CONFIG_PATA_NINJA32 is not set
# CONFIG_PATA_NS87415 is not set
# CONFIG_PATA_OLDPIIX is not set
# CONFIG_PATA_OPTIDMA is not set
# CONFIG_PATA_PDC2027X is not set
# CONFIG_PATA_PDC_OLD is not set
# CONFIG_PATA_RADISYS is not set
# CONFIG_PATA_RDC is not set
# CONFIG_PATA_SC1200 is not set
# CONFIG_PATA_SCH is not set
# CONFIG_PATA_SERVERWORKS is not set
# CONFIG_PATA_SIL680 is not set
# CONFIG_PATA_SIS is not set
# CONFIG_PATA_TOSHIBA is not set
# CONFIG_PATA_TRIFLEX is not set
# CONFIG_PATA_VIA is not set
# CONFIG_PATA_WINBOND is not set

#
# PIO-only SFF controllers
#
# CONFIG_PATA_CMD640_PCI is not set
# CONFIG_PATA_MPIIX is not set
# CONFIG_PATA_NS87410 is not set
# CONFIG_PATA_OPTI is not set
# CONFIG_PATA_PCMCIA is not set
# CONFIG_PATA_RZ1000 is not set

#
# Generic fallback / legacy drivers
#
# CONFIG_PATA_ACPI is not set
# CONFIG_ATA_GENERIC is not set
# CONFIG_PATA_LEGACY is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
# CONFIG_MD_LINEAR is not set
# CONFIG_MD_RAID0 is not set
# CONFIG_MD_RAID1 is not set
# CONFIG_MD_RAID10 is not set
# CONFIG_MD_RAID456 is not set
# CONFIG_MD_MULTIPATH is not set
# CONFIG_MD_FAULTY is not set
CONFIG_BLK_DEV_DM=y
CONFIG_DM_DEBUG=y
# CONFIG_DM_CRYPT is not set
CONFIG_DM_SNAPSHOT=y
# CONFIG_DM_THIN_PROVISIONING is not set
CONFIG_DM_MIRROR=y
# CONFIG_DM_RAID is not set
# CONFIG_DM_LOG_USERSPACE is not set
CONFIG_DM_ZERO=y
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
CONFIG_DM_UEVENT=y
# CONFIG_DM_FLAKEY is not set
# CONFIG_DM_VERITY is not set
# CONFIG_TARGET_CORE is not set
CONFIG_FUSION=y
# CONFIG_FUSION_SPI is not set
# CONFIG_FUSION_FC is not set
# CONFIG_FUSION_SAS is not set
CONFIG_FUSION_MAX_SGE=40
CONFIG_FUSION_LOGGING=y

#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
# CONFIG_I2O is not set
CONFIG_MACINTOSH_DRIVERS=y
CONFIG_MAC_EMUMOUSEBTN=y
CONFIG_NETDEVICES=y
CONFIG_NET_CORE=y
# CONFIG_BONDING is not set
# CONFIG_DUMMY is not set
# CONFIG_EQUALIZER is not set
CONFIG_NET_FC=y
# CONFIG_MII is not set
# CONFIG_IFB is not set
# CONFIG_NET_TEAM is not set
CONFIG_MACVLAN=m
CONFIG_MACVTAP=m
# CONFIG_VXLAN is not set
# CONFIG_NETCONSOLE is not set
# CONFIG_NETPOLL is not set
# CONFIG_NET_POLL_CONTROLLER is not set
CONFIG_TUN=m
# CONFIG_VETH is not set
# CONFIG_VIRTIO_NET is not set
# CONFIG_ARCNET is not set

#
# CAIF transport drivers
#

#
# Distributed Switch Architecture drivers
#
# CONFIG_NET_DSA_MV88E6XXX is not set
# CONFIG_NET_DSA_MV88E6060 is not set
# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set
# CONFIG_NET_DSA_MV88E6131 is not set
# CONFIG_NET_DSA_MV88E6123_61_65 is not set
CONFIG_ETHERNET=y
CONFIG_MDIO=m
CONFIG_NET_VENDOR_3COM=y
# CONFIG_PCMCIA_3C574 is not set
# CONFIG_PCMCIA_3C589 is not set
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
# CONFIG_PCMCIA_NMCLAN is not set
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
CONFIG_NET_CADENCE=y
# CONFIG_ARM_AT91_ETHER is not set
# CONFIG_MACB is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
CONFIG_BNX2=m
CONFIG_CNIC=m
# CONFIG_TIGON3 is not set
# CONFIG_BNX2X is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
# CONFIG_NET_CALXEDA_XGMAC is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
CONFIG_CHELSIO_T3=m
CONFIG_CHELSIO_T4=m
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
CONFIG_NET_TULIP=y
# CONFIG_DE2104X is not set
# CONFIG_TULIP is not set
# CONFIG_DE4X5 is not set
# CONFIG_WINBOND_840 is not set
# CONFIG_DM9102 is not set
# CONFIG_ULI526X is not set
# CONFIG_PCMCIA_XIRCOM is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_EXAR=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
# CONFIG_NET_VENDOR_FUJITSU is not set
# CONFIG_NET_VENDOR_HP is not set
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
# CONFIG_E1000 is not set
# CONFIG_E1000E is not set
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGB is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGBEVF is not set
# CONFIG_NET_VENDOR_I825XX is not set
# CONFIG_IP1000 is not set
# CONFIG_JME is not set
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX4_CORE is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_PCMCIA_AXNET is not set
# CONFIG_NE2K_PCI is not set
# CONFIG_PCMCIA_PCNET is not set
CONFIG_NET_VENDOR_NVIDIA=y
# CONFIG_FORCEDETH is not set
CONFIG_NET_VENDOR_OKI=y
# CONFIG_PCH_GBE is not set
# CONFIG_ETHOC is not set
CONFIG_NET_PACKET_ENGINE=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_QLGE is not set
# CONFIG_NETXEN_NIC is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
# CONFIG_R8169 is not set
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
# CONFIG_NET_VENDOR_SEEQ is not set
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
# CONFIG_SFC is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_PCMCIA_SMC91C92 is not set
# CONFIG_EPIC100 is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_NET_VENDOR_XIRCOM=y
# CONFIG_PCMCIA_XIRC2PS is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_NET_SB1000 is not set
CONFIG_PHYLIB=y

#
# MII PHY device drivers
#
# CONFIG_AT803X_PHY is not set
# CONFIG_AMD_PHY is not set
# CONFIG_MARVELL_PHY is not set
# CONFIG_DAVICOM_PHY is not set
# CONFIG_QSEMI_PHY is not set
# CONFIG_LXT_PHY is not set
# CONFIG_CICADA_PHY is not set
# CONFIG_VITESSE_PHY is not set
# CONFIG_SMSC_PHY is not set
# CONFIG_BROADCOM_PHY is not set
# CONFIG_BCM87XX_PHY is not set
# CONFIG_ICPLUS_PHY is not set
# CONFIG_REALTEK_PHY is not set
# CONFIG_NATIONAL_PHY is not set
# CONFIG_STE10XP is not set
# CONFIG_LSI_ET1011C_PHY is not set
# CONFIG_MICREL_PHY is not set
CONFIG_FIXED_PHY=y
# CONFIG_MDIO_BITBANG is not set
# CONFIG_PPP is not set
# CONFIG_SLIP is not set

#
# USB Network Adapters
#
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_USBNET is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_IPHETH is not set
CONFIG_WLAN=y
# CONFIG_PCMCIA_RAYCS is not set
# CONFIG_LIBERTAS_THINFIRM is not set
# CONFIG_AIRO is not set
# CONFIG_ATMEL is not set
# CONFIG_AT76C50X_USB is not set
# CONFIG_AIRO_CS is not set
# CONFIG_PCMCIA_WL3501 is not set
# CONFIG_PRISM54 is not set
# CONFIG_USB_ZD1201 is not set
# CONFIG_USB_NET_RNDIS_WLAN is not set
# CONFIG_RTL8180 is not set
# CONFIG_RTL8187 is not set
# CONFIG_ADM8211 is not set
# CONFIG_MAC80211_HWSIM is not set
# CONFIG_MWL8K is not set
# CONFIG_ATH_CARDS is not set
# CONFIG_B43 is not set
# CONFIG_B43LEGACY is not set
# CONFIG_BRCMFMAC is not set
# CONFIG_HOSTAP is not set
# CONFIG_IPW2100 is not set
# CONFIG_IPW2200 is not set
CONFIG_IWLWIFI=m
CONFIG_IWLDVM=m

#
# Debugging Options
#
CONFIG_IWLWIFI_DEBUG=y
CONFIG_IWLWIFI_DEBUGFS=y
# CONFIG_IWLWIFI_DEBUG_EXPERIMENTAL_UCODE is not set
# CONFIG_IWLWIFI_DEVICE_TRACING is not set
# CONFIG_IWLWIFI_P2P is not set
# CONFIG_IWL4965 is not set
# CONFIG_IWL3945 is not set
# CONFIG_LIBERTAS is not set
# CONFIG_HERMES is not set
# CONFIG_P54_COMMON is not set
# CONFIG_RT2X00 is not set
# CONFIG_RTL8192CE is not set
# CONFIG_RTL8192SE is not set
# CONFIG_RTL8192DE is not set
# CONFIG_RTL8723AE is not set
# CONFIG_RTL8192CU is not set
# CONFIG_WL_TI is not set
# CONFIG_ZD1211RW is not set
# CONFIG_MWIFIEX is not set

#
# Enable WiMAX (Networking options) to see the WiMAX drivers
#
# CONFIG_WAN is not set
# CONFIG_XEN_NETDEV_FRONTEND is not set
# CONFIG_XEN_NETDEV_BACKEND is not set
# CONFIG_VMXNET3 is not set
CONFIG_ISDN=y
# CONFIG_ISDN_I4L is not set
# CONFIG_ISDN_CAPI is not set
# CONFIG_ISDN_DRV_GIGASET is not set
# CONFIG_HYSDN is not set
# CONFIG_MISDN is not set

#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_FF_MEMLESS=y
# CONFIG_INPUT_POLLDEV is not set
CONFIG_INPUT_SPARSEKMAP=m
# CONFIG_INPUT_MATRIXKMAP is not set

#
# Userland interfaces
#
CONFIG_INPUT_MOUSEDEV=y
# CONFIG_INPUT_MOUSEDEV_PSAUX is not set
CONFIG_INPUT_MOUSEDEV_SCREEN_X=1024
CONFIG_INPUT_MOUSEDEV_SCREEN_Y=768
CONFIG_INPUT_JOYDEV=m
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_LM8323 is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_XTKBD is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_LIFEBOOK=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
CONFIG_MOUSE_PS2_ELANTECH=y
CONFIG_MOUSE_PS2_SENTELIC=y
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
CONFIG_INPUT_JOYSTICK=y
# CONFIG_JOYSTICK_ANALOG is not set
# CONFIG_JOYSTICK_A3D is not set
# CONFIG_JOYSTICK_ADI is not set
# CONFIG_JOYSTICK_COBRA is not set
# CONFIG_JOYSTICK_GF2K is not set
# CONFIG_JOYSTICK_GRIP is not set
# CONFIG_JOYSTICK_GRIP_MP is not set
# CONFIG_JOYSTICK_GUILLEMOT is not set
# CONFIG_JOYSTICK_INTERACT is not set
# CONFIG_JOYSTICK_SIDEWINDER is not set
# CONFIG_JOYSTICK_TMDC is not set
# CONFIG_JOYSTICK_IFORCE is not set
# CONFIG_JOYSTICK_WARRIOR is not set
# CONFIG_JOYSTICK_MAGELLAN is not set
# CONFIG_JOYSTICK_SPACEORB is not set
# CONFIG_JOYSTICK_SPACEBALL is not set
# CONFIG_JOYSTICK_STINGER is not set
# CONFIG_JOYSTICK_TWIDJOY is not set
# CONFIG_JOYSTICK_ZHENHUA is not set
# CONFIG_JOYSTICK_AS5011 is not set
# CONFIG_JOYSTICK_JOYDUMP is not set
# CONFIG_JOYSTICK_XPAD is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_GTCO is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_USB_WACOM is not set
CONFIG_INPUT_TOUCHSCREEN=y
# CONFIG_TOUCHSCREEN_AD7879 is not set
# CONFIG_TOUCHSCREEN_ATMEL_MXT is not set
# CONFIG_TOUCHSCREEN_BU21013 is not set
# CONFIG_TOUCHSCREEN_CYTTSP_CORE is not set
# CONFIG_TOUCHSCREEN_DYNAPRO is not set
# CONFIG_TOUCHSCREEN_HAMPSHIRE is not set
# CONFIG_TOUCHSCREEN_EETI is not set
# CONFIG_TOUCHSCREEN_FUJITSU is not set
# CONFIG_TOUCHSCREEN_ILI210X is not set
# CONFIG_TOUCHSCREEN_GUNZE is not set
# CONFIG_TOUCHSCREEN_ELO is not set
# CONFIG_TOUCHSCREEN_WACOM_W8001 is not set
# CONFIG_TOUCHSCREEN_WACOM_I2C is not set
# CONFIG_TOUCHSCREEN_MAX11801 is not set
# CONFIG_TOUCHSCREEN_MCS5000 is not set
# CONFIG_TOUCHSCREEN_MMS114 is not set
# CONFIG_TOUCHSCREEN_MTOUCH is not set
# CONFIG_TOUCHSCREEN_INEXIO is not set
# CONFIG_TOUCHSCREEN_MK712 is not set
# CONFIG_TOUCHSCREEN_PENMOUNT is not set
# CONFIG_TOUCHSCREEN_EDT_FT5X06 is not set
# CONFIG_TOUCHSCREEN_TOUCHRIGHT is not set
# CONFIG_TOUCHSCREEN_TOUCHWIN is not set
# CONFIG_TOUCHSCREEN_PIXCIR is not set
# CONFIG_TOUCHSCREEN_USB_COMPOSITE is not set
# CONFIG_TOUCHSCREEN_TOUCHIT213 is not set
# CONFIG_TOUCHSCREEN_TSC_SERIO is not set
# CONFIG_TOUCHSCREEN_TSC2007 is not set
# CONFIG_TOUCHSCREEN_ST1232 is not set
# CONFIG_TOUCHSCREEN_TPS6507X is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_PCSPKR is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_MPU3050 is not set
# CONFIG_INPUT_APANEL is not set
# CONFIG_INPUT_ATLAS_BTNS is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_KXTJ9 is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
CONFIG_INPUT_UINPUT=m
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_CMA3000 is not set
CONFIG_INPUT_XEN_KBDDEV_FRONTEND=y

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_I8042=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_CT82C710 is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_GAMEPORT is not set

#
# Character devices
#
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
CONFIG_DEVPTS_MULTIPLE_INSTANCES=y
# CONFIG_LEGACY_PTYS is not set
CONFIG_SERIAL_NONSTANDARD=y
# CONFIG_ROCKETPORT is not set
# CONFIG_CYCLADES is not set
# CONFIG_MOXA_INTELLIO is not set
# CONFIG_MOXA_SMARTIO is not set
# CONFIG_SYNCLINK is not set
# CONFIG_SYNCLINKMP is not set
# CONFIG_SYNCLINK_GT is not set
# CONFIG_NOZOMI is not set
# CONFIG_ISI is not set
# CONFIG_N_HDLC is not set
# CONFIG_N_GSM is not set
# CONFIG_TRACE_SINK is not set
# CONFIG_DEVKMEM is not set
# CONFIG_STALDRV is not set

#
# Serial drivers
#
CONFIG_SERIAL_8250=y
CONFIG_SERIAL_8250_PNP=y
CONFIG_SERIAL_8250_CONSOLE=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_SERIAL_8250_PCI=y
# CONFIG_SERIAL_8250_CS is not set
CONFIG_SERIAL_8250_NR_UARTS=32
CONFIG_SERIAL_8250_RUNTIME_UARTS=4
CONFIG_SERIAL_8250_EXTENDED=y
CONFIG_SERIAL_8250_MANY_PORTS=y
CONFIG_SERIAL_8250_SHARE_IRQ=y
# CONFIG_SERIAL_8250_DETECT_IRQ is not set
CONFIG_SERIAL_8250_RSA=y

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_KGDB_NMI is not set
# CONFIG_SERIAL_MFD_HSU is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
CONFIG_CONSOLE_POLL=y
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_TIMBERDALE is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_PCH_UART is not set
# CONFIG_SERIAL_ARC is not set
CONFIG_HVC_DRIVER=y
CONFIG_HVC_IRQ=y
CONFIG_HVC_XEN=y
CONFIG_HVC_XEN_FRONTEND=y
CONFIG_VIRTIO_CONSOLE=y
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_INTEL is not set
# CONFIG_HW_RANDOM_AMD is not set
# CONFIG_HW_RANDOM_VIA is not set
# CONFIG_HW_RANDOM_VIRTIO is not set
CONFIG_NVRAM=y
# CONFIG_R3964 is not set
# CONFIG_APPLICOM is not set

#
# PCMCIA character devices
#
# CONFIG_SYNCLINK_CS is not set
# CONFIG_CARDMAN_4000 is not set
# CONFIG_CARDMAN_4040 is not set
# CONFIG_IPWIRELESS is not set
# CONFIG_MWAVE is not set
CONFIG_RAW_DRIVER=y
CONFIG_MAX_RAW_DEVS=8192
CONFIG_HPET=y
# CONFIG_HPET_MMAP is not set
# CONFIG_HANGCHECK_TIMER is not set
# CONFIG_TCG_TPM is not set
# CONFIG_TELCLOCK is not set
CONFIG_DEVPORT=y
CONFIG_I2C=m
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=m

#
# I2C Hardware Bus support
#

#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
CONFIG_I2C_I801=m
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set

#
# ACPI drivers
#
# CONFIG_I2C_SCMI is not set

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_EG20T is not set
# CONFIG_I2C_INTEL_MID is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_PXA_PCI is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_XILINX is not set

#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_DIOLAN_U2C is not set
# CONFIG_I2C_PARPORT_LIGHT is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set

#
# Other I2C/SMBus bus drivers
#
# CONFIG_I2C_STUB is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# CONFIG_SPI is not set
# CONFIG_HSI is not set

#
# PPS support
#
# CONFIG_PPS is not set

#
# PPS generators support
#

#
# PTP clock support
#
# CONFIG_PTP_1588_CLOCK is not set
# CONFIG_DP83640_PHY is not set
# CONFIG_PTP_1588_CLOCK_PCH is not set
CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y
# CONFIG_GPIOLIB is not set
# CONFIG_W1 is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
# CONFIG_PDA_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_BATTERY_BQ27x00 is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_POWER_RESET is not set
# CONFIG_POWER_AVS is not set
CONFIG_HWMON=y
# CONFIG_HWMON_VID is not set
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Native drivers
#
# CONFIG_SENSORS_ABITUGURU is not set
# CONFIG_SENSORS_ABITUGURU3 is not set
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_K8TEMP is not set
# CONFIG_SENSORS_K10TEMP is not set
# CONFIG_SENSORS_FAM15H_POWER is not set
# CONFIG_SENSORS_ASB100 is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_DS620 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FSCHMD is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_HIH6130 is not set
CONFIG_SENSORS_CORETEMP=m
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_NTC_THERMISTOR is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH56XX_COMMON is not set
# CONFIG_SENSORS_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 is not set
# CONFIG_SENSORS_ADS1015 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA2XX is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_VIA_CPUTEMP is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_SENSORS_APPLESMC is not set

#
# ACPI drivers
#
# CONFIG_SENSORS_ACPI_POWER is not set
# CONFIG_SENSORS_ATK0110 is not set
CONFIG_THERMAL=y
CONFIG_THERMAL_HWMON=y
CONFIG_THERMAL_DEFAULT_GOV_STEP_WISE=y
# CONFIG_THERMAL_DEFAULT_GOV_FAIR_SHARE is not set
# CONFIG_THERMAL_DEFAULT_GOV_USER_SPACE is not set
# CONFIG_FAIR_SHARE is not set
CONFIG_STEP_WISE=y
# CONFIG_USER_SPACE is not set
# CONFIG_CPU_THERMAL is not set
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=y
# CONFIG_WATCHDOG_NOWAYOUT is not set

#
# Watchdog Device Drivers
#
# CONFIG_SOFT_WATCHDOG is not set
# CONFIG_ACQUIRE_WDT is not set
# CONFIG_ADVANTECH_WDT is not set
# CONFIG_ALIM1535_WDT is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_F71808E_WDT is not set
# CONFIG_SP5100_TCO is not set
# CONFIG_SC520_WDT is not set
# CONFIG_SBC_FITPC2_WATCHDOG is not set
# CONFIG_EUROTECH_WDT is not set
# CONFIG_IB700_WDT is not set
# CONFIG_IBMASR is not set
# CONFIG_WAFER_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_IE6XX_WDT is not set
CONFIG_ITCO_WDT=m
CONFIG_ITCO_VENDOR_SUPPORT=y
# CONFIG_IT8712F_WDT is not set
# CONFIG_IT87_WDT is not set
# CONFIG_HP_WATCHDOG is not set
# CONFIG_SC1200_WDT is not set
# CONFIG_PC87413_WDT is not set
# CONFIG_NV_TCO is not set
# CONFIG_60XX_WDT is not set
# CONFIG_SBC8360_WDT is not set
# CONFIG_CPU5_WDT is not set
# CONFIG_SMSC_SCH311X_WDT is not set
# CONFIG_SMSC37B787_WDT is not set
# CONFIG_VIA_WDT is not set
# CONFIG_W83627HF_WDT is not set
# CONFIG_W83697HF_WDT is not set
# CONFIG_W83697UG_WDT is not set
# CONFIG_W83877F_WDT is not set
# CONFIG_W83977F_WDT is not set
# CONFIG_MACHZ_WDT is not set
# CONFIG_SBC_EPX_C3_WATCHDOG is not set
# CONFIG_XEN_WDT is not set

#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set

#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
CONFIG_SSB_POSSIBLE=y

#
# Sonics Silicon Backplane
#
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y

#
# Broadcom specific AMBA
#
# CONFIG_BCMA is not set

#
# Multifunction device drivers
#
CONFIG_MFD_CORE=m
# CONFIG_MFD_SM501 is not set
# CONFIG_MFD_RTSX_PCI is not set
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_HTC_PASIC3 is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65217 is not set
# CONFIG_MFD_TMIO is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_ABX500_CORE is not set
# CONFIG_MFD_CS5535 is not set
# CONFIG_LPC_SCH is not set
CONFIG_LPC_ICH=m
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_RETU is not set
# CONFIG_REGULATOR is not set
CONFIG_MEDIA_SUPPORT=m

#
# Multimedia core support
#
CONFIG_MEDIA_CAMERA_SUPPORT=y
CONFIG_MEDIA_ANALOG_TV_SUPPORT=y
CONFIG_MEDIA_DIGITAL_TV_SUPPORT=y
CONFIG_MEDIA_RADIO_SUPPORT=y
CONFIG_MEDIA_RC_SUPPORT=y
CONFIG_MEDIA_CONTROLLER=y
CONFIG_VIDEO_DEV=m
CONFIG_VIDEO_V4L2_SUBDEV_API=y
CONFIG_VIDEO_V4L2=m
# CONFIG_VIDEO_ADV_DEBUG is not set
# CONFIG_VIDEO_FIXED_MINOR_RANGES is not set
CONFIG_VIDEOBUF2_CORE=m
CONFIG_VIDEOBUF2_MEMOPS=m
CONFIG_VIDEOBUF2_VMALLOC=m
CONFIG_DVB_CORE=m
CONFIG_DVB_NET=y
CONFIG_DVB_MAX_ADAPTERS=8
CONFIG_DVB_DYNAMIC_MINORS=y

#
# Media drivers
#
CONFIG_RC_CORE=m
# CONFIG_RC_MAP is not set
CONFIG_RC_DECODERS=y
# CONFIG_LIRC is not set
# CONFIG_IR_NEC_DECODER is not set
# CONFIG_IR_RC5_DECODER is not set
# CONFIG_IR_RC6_DECODER is not set
# CONFIG_IR_JVC_DECODER is not set
# CONFIG_IR_SONY_DECODER is not set
# CONFIG_IR_RC5_SZ_DECODER is not set
# CONFIG_IR_SANYO_DECODER is not set
# CONFIG_IR_MCE_KBD_DECODER is not set
CONFIG_RC_DEVICES=y
# CONFIG_RC_ATI_REMOTE is not set
# CONFIG_IR_ENE is not set
# CONFIG_IR_IMON is not set
# CONFIG_IR_MCEUSB is not set
# CONFIG_IR_ITE_CIR is not set
# CONFIG_IR_FINTEK is not set
# CONFIG_IR_NUVOTON is not set
# CONFIG_IR_REDRAT3 is not set
# CONFIG_IR_STREAMZAP is not set
# CONFIG_IR_WINBOND_CIR is not set
# CONFIG_IR_IGUANA is not set
# CONFIG_IR_TTUSBIR is not set
# CONFIG_RC_LOOPBACK is not set
# CONFIG_IR_GPIO_CIR is not set
CONFIG_MEDIA_USB_SUPPORT=y

#
# Webcam devices
#
CONFIG_USB_VIDEO_CLASS=m
CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y
# CONFIG_USB_GSPCA is not set
# CONFIG_USB_PWC is not set
# CONFIG_VIDEO_CPIA2 is not set
# CONFIG_USB_ZR364XX is not set
# CONFIG_USB_STKWEBCAM is not set
# CONFIG_USB_S2255 is not set
# CONFIG_USB_SN9C102 is not set

#
# Analog TV USB devices
#
# CONFIG_VIDEO_AU0828 is not set
# CONFIG_VIDEO_PVRUSB2 is not set
# CONFIG_VIDEO_HDPVR is not set
# CONFIG_VIDEO_TLG2300 is not set
# CONFIG_VIDEO_USBVISION is not set
# CONFIG_VIDEO_STK1160 is not set

#
# Analog/digital TV USB devices
#
# CONFIG_VIDEO_CX231XX is not set
# CONFIG_VIDEO_TM6000 is not set

#
# Digital TV USB devices
#
# CONFIG_DVB_USB is not set
# CONFIG_DVB_USB_V2 is not set
# CONFIG_DVB_TTUSB_BUDGET is not set
# CONFIG_DVB_TTUSB_DEC is not set
# CONFIG_SMS_USB_DRV is not set
# CONFIG_DVB_B2C2_FLEXCOP_USB is not set

#
# Webcam, TV (analog/digital) USB devices
#
# CONFIG_VIDEO_EM28XX is not set
CONFIG_MEDIA_PCI_SUPPORT=y

#
# Media capture support
#

#
# Media capture/analog TV support
#
# CONFIG_VIDEO_IVTV is not set
# CONFIG_VIDEO_ZORAN is not set
# CONFIG_VIDEO_HEXIUM_GEMINI is not set
# CONFIG_VIDEO_HEXIUM_ORION is not set
# CONFIG_VIDEO_MXB is not set

#
# Media capture/analog/hybrid TV support
#
# CONFIG_VIDEO_CX18 is not set
# CONFIG_VIDEO_CX23885 is not set
# CONFIG_VIDEO_CX25821 is not set
# CONFIG_VIDEO_CX88 is not set
# CONFIG_VIDEO_BT848 is not set
# CONFIG_VIDEO_SAA7134 is not set
# CONFIG_VIDEO_SAA7164 is not set

#
# Media digital TV PCI Adapters
#
# CONFIG_TTPCI_EEPROM is not set
# CONFIG_DVB_AV7110 is not set
# CONFIG_DVB_BUDGET_CORE is not set
# CONFIG_DVB_B2C2_FLEXCOP_PCI is not set
# CONFIG_DVB_PLUTO2 is not set
# CONFIG_DVB_DM1105 is not set
# CONFIG_DVB_PT1 is not set
# CONFIG_MANTIS_CORE is not set
# CONFIG_DVB_NGENE is not set
# CONFIG_DVB_DDBRIDGE is not set
# CONFIG_V4L_PLATFORM_DRIVERS is not set
CONFIG_V4L_MEM2MEM_DRIVERS=y
# CONFIG_V4L_TEST_DRIVERS is not set

#
# Supported MMC/SDIO adapters
#
# CONFIG_SMS_SDIO_DRV is not set
CONFIG_RADIO_ADAPTERS=y
CONFIG_RADIO_SI470X=y
# CONFIG_USB_SI470X is not set
# CONFIG_I2C_SI470X is not set
# CONFIG_USB_MR800 is not set
# CONFIG_USB_DSBR is not set
# CONFIG_RADIO_MAXIRADIO is not set
# CONFIG_RADIO_SHARK is not set
# CONFIG_RADIO_SHARK2 is not set
# CONFIG_I2C_SI4713 is not set
# CONFIG_RADIO_SI4713 is not set
# CONFIG_USB_KEENE is not set
# CONFIG_RADIO_TEA5764 is not set
# CONFIG_RADIO_SAA7706H is not set
# CONFIG_RADIO_TEF6862 is not set
# CONFIG_RADIO_WL1273 is not set

#
# Texas Instruments WL128x FM driver (ST based)
#
CONFIG_MEDIA_SUBDRV_AUTOSELECT=y

#
# Media ancillary drivers (tuners, sensors, i2c, frontends)
#
CONFIG_VIDEO_IR_I2C=m

#
# Audio decoders, processors and mixers
#

#
# RDS decoders
#

#
# Video decoders
#

#
# Video and audio decoders
#

#
# MPEG video encoders
#

#
# Video encoders
#

#
# Camera sensor devices
#

#
# Flash devices
#

#
# Video improvement chips
#

#
# Miscelaneous helper chips
#

#
# Sensors used on soc_camera driver
#
CONFIG_MEDIA_ATTACH=y
CONFIG_MEDIA_TUNER=m
CONFIG_MEDIA_TUNER_SIMPLE=m
CONFIG_MEDIA_TUNER_TDA8290=m
CONFIG_MEDIA_TUNER_TDA827X=m
CONFIG_MEDIA_TUNER_TDA18271=m
CONFIG_MEDIA_TUNER_TDA9887=m
CONFIG_MEDIA_TUNER_TEA5761=m
CONFIG_MEDIA_TUNER_TEA5767=m
CONFIG_MEDIA_TUNER_MT20XX=m
CONFIG_MEDIA_TUNER_XC2028=m
CONFIG_MEDIA_TUNER_XC5000=m
CONFIG_MEDIA_TUNER_XC4000=m
CONFIG_MEDIA_TUNER_MC44S803=m

#
# Multistandard (satellite) frontends
#

#
# Multistandard (cable + terrestrial) frontends
#

#
# DVB-S (satellite) frontends
#

#
# DVB-T (terrestrial) frontends
#

#
# DVB-C (cable) frontends
#

#
# ATSC (North American/Korean Terrestrial/Cable DTV) frontends
#

#
# ISDB-T (terrestrial) frontends
#

#
# Digital terrestrial only tuners/PLL
#

#
# SEC control devices for DVB-S
#

#
# Tools to develop new frontends
#
# CONFIG_DVB_DUMMY_FE is not set

#
# Graphics support
#
CONFIG_AGP=y
CONFIG_AGP_AMD64=y
CONFIG_AGP_INTEL=y
CONFIG_AGP_SIS=y
CONFIG_AGP_VIA=y
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
CONFIG_VGA_SWITCHEROO=y
CONFIG_DRM=m
CONFIG_DRM_KMS_HELPER=m
CONFIG_DRM_LOAD_EDID_FIRMWARE=y
CONFIG_DRM_TTM=m
# CONFIG_DRM_TDFX is not set
# CONFIG_DRM_R128 is not set
# CONFIG_DRM_RADEON is not set
CONFIG_DRM_NOUVEAU=m
CONFIG_NOUVEAU_DEBUG=5
CONFIG_NOUVEAU_DEBUG_DEFAULT=3
CONFIG_DRM_NOUVEAU_BACKLIGHT=y

#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_I810 is not set
CONFIG_DRM_I915=m
CONFIG_DRM_I915_KMS=y
# CONFIG_DRM_MGA is not set
# CONFIG_DRM_SIS is not set
# CONFIG_DRM_VIA is not set
# CONFIG_DRM_SAVAGE is not set
# CONFIG_DRM_VMWGFX is not set
# CONFIG_DRM_GMA500 is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
# CONFIG_DRM_CIRRUS_QEMU is not set
# CONFIG_STUB_POULSBO is not set
# CONFIG_VGASTATE is not set
CONFIG_VIDEO_OUTPUT_CONTROL=m
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
# CONFIG_FB_DDC is not set
CONFIG_FB_BOOT_VESA_SUPPORT=y
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
# CONFIG_FB_WMT_GE_ROPS is not set
CONFIG_FB_DEFERRED_IO=y
# CONFIG_FB_SVGALIB is not set
# CONFIG_FB_MACMODES is not set
CONFIG_FB_BACKLIGHT=y
# CONFIG_FB_MODE_HELPERS is not set
CONFIG_FB_TILEBLITTING=y

#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ARC is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_VGA16 is not set
# CONFIG_FB_UVESA is not set
CONFIG_FB_VESA=y
CONFIG_FB_EFI=y
# CONFIG_FB_N411 is not set
# CONFIG_FB_HGA is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_LE80578 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_VIA is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_GEODE is not set
# CONFIG_FB_TMIO is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_VIRTUAL is not set
CONFIG_XEN_FBDEV_FRONTEND=y
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
# CONFIG_FB_BROADSHEET is not set
# CONFIG_FB_AUO_K190X is not set
# CONFIG_EXYNOS_VIDEO is not set
CONFIG_BACKLIGHT_LCD_SUPPORT=y
# CONFIG_LCD_CLASS_DEVICE is not set
CONFIG_BACKLIGHT_CLASS_DEVICE=y
# CONFIG_BACKLIGHT_GENERIC is not set
# CONFIG_BACKLIGHT_APPLE is not set
# CONFIG_BACKLIGHT_SAHARA is not set
# CONFIG_BACKLIGHT_ADP8860 is not set
# CONFIG_BACKLIGHT_ADP8870 is not set
# CONFIG_BACKLIGHT_LM3630 is not set
# CONFIG_BACKLIGHT_LM3639 is not set
# CONFIG_BACKLIGHT_LP855X is not set

#
# Console display driver support
#
CONFIG_VGA_CONSOLE=y
CONFIG_VGACON_SOFT_SCROLLBACK=y
CONFIG_VGACON_SOFT_SCROLLBACK_SIZE=64
CONFIG_DUMMY_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
CONFIG_FRAMEBUFFER_CONSOLE_ROTATION=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
CONFIG_LOGO=y
# CONFIG_LOGO_LINUX_MONO is not set
# CONFIG_LOGO_LINUX_VGA16 is not set
CONFIG_LOGO_LINUX_CLUT224=y
CONFIG_SOUND=m
CONFIG_SOUND_OSS_CORE=y
CONFIG_SOUND_OSS_CORE_PRECLAIM=y
CONFIG_SND=m
CONFIG_SND_TIMER=m
CONFIG_SND_PCM=m
CONFIG_SND_HWDEP=m
CONFIG_SND_JACK=y
CONFIG_SND_SEQUENCER=m
# CONFIG_SND_SEQ_DUMMY is not set
CONFIG_SND_OSSEMUL=y
# CONFIG_SND_MIXER_OSS is not set
# CONFIG_SND_PCM_OSS is not set
CONFIG_SND_SEQUENCER_OSS=y
# CONFIG_SND_HRTIMER is not set
CONFIG_SND_DYNAMIC_MINORS=y
# CONFIG_SND_SUPPORT_OLD_API is not set
CONFIG_SND_VERBOSE_PROCFS=y
CONFIG_SND_VERBOSE_PRINTK=y
CONFIG_SND_DEBUG=y
# CONFIG_SND_DEBUG_VERBOSE is not set
CONFIG_SND_PCM_XRUN_DEBUG=y
CONFIG_SND_VMASTER=y
CONFIG_SND_KCTL_JACK=y
CONFIG_SND_DMA_SGBUF=y
# CONFIG_SND_RAWMIDI_SEQ is not set
# CONFIG_SND_OPL3_LIB_SEQ is not set
# CONFIG_SND_OPL4_LIB_SEQ is not set
# CONFIG_SND_SBAWE_SEQ is not set
# CONFIG_SND_EMU10K1_SEQ is not set
CONFIG_SND_DRIVERS=y
# CONFIG_SND_PCSP is not set
# CONFIG_SND_DUMMY is not set
# CONFIG_SND_ALOOP is not set
# CONFIG_SND_VIRMIDI is not set
# CONFIG_SND_MTPAV is not set
# CONFIG_SND_SERIAL_U16550 is not set
# CONFIG_SND_MPU401 is not set
CONFIG_SND_PCI=y
# CONFIG_SND_AD1889 is not set
# CONFIG_SND_ALS300 is not set
# CONFIG_SND_ALS4000 is not set
# CONFIG_SND_ALI5451 is not set
# CONFIG_SND_ASIHPI is not set
# CONFIG_SND_ATIIXP is not set
# CONFIG_SND_ATIIXP_MODEM is not set
# CONFIG_SND_AU8810 is not set
# CONFIG_SND_AU8820 is not set
# CONFIG_SND_AU8830 is not set
# CONFIG_SND_AW2 is not set
# CONFIG_SND_AZT3328 is not set
# CONFIG_SND_BT87X is not set
# CONFIG_SND_CA0106 is not set
# CONFIG_SND_CMIPCI is not set
# CONFIG_SND_OXYGEN is not set
# CONFIG_SND_CS4281 is not set
# CONFIG_SND_CS46XX is not set
# CONFIG_SND_CS5530 is not set
# CONFIG_SND_CS5535AUDIO is not set
# CONFIG_SND_CTXFI is not set
# CONFIG_SND_DARLA20 is not set
# CONFIG_SND_GINA20 is not set
# CONFIG_SND_LAYLA20 is not set
# CONFIG_SND_DARLA24 is not set
# CONFIG_SND_GINA24 is not set
# CONFIG_SND_LAYLA24 is not set
# CONFIG_SND_MONA is not set
# CONFIG_SND_MIA is not set
# CONFIG_SND_ECHO3G is not set
# CONFIG_SND_INDIGO is not set
# CONFIG_SND_INDIGOIO is not set
# CONFIG_SND_INDIGODJ is not set
# CONFIG_SND_INDIGOIOX is not set
# CONFIG_SND_INDIGODJX is not set
# CONFIG_SND_EMU10K1 is not set
# CONFIG_SND_EMU10K1X is not set
# CONFIG_SND_ENS1370 is not set
# CONFIG_SND_ENS1371 is not set
# CONFIG_SND_ES1938 is not set
# CONFIG_SND_ES1968 is not set
# CONFIG_SND_FM801 is not set
CONFIG_SND_HDA_INTEL=m
CONFIG_SND_HDA_PREALLOC_SIZE=4096
CONFIG_SND_HDA_HWDEP=y
CONFIG_SND_HDA_RECONFIG=y
CONFIG_SND_HDA_INPUT_BEEP=y
CONFIG_SND_HDA_INPUT_BEEP_MODE=0
CONFIG_SND_HDA_INPUT_JACK=y
CONFIG_SND_HDA_PATCH_LOADER=y
CONFIG_SND_HDA_CODEC_REALTEK=y
CONFIG_SND_HDA_CODEC_ANALOG=y
CONFIG_SND_HDA_CODEC_SIGMATEL=y
CONFIG_SND_HDA_CODEC_VIA=y
CONFIG_SND_HDA_CODEC_HDMI=y
CONFIG_SND_HDA_CODEC_CIRRUS=y
CONFIG_SND_HDA_CODEC_CONEXANT=y
CONFIG_SND_HDA_CODEC_CA0110=y
CONFIG_SND_HDA_CODEC_CA0132=y
CONFIG_SND_HDA_CODEC_CMEDIA=y
CONFIG_SND_HDA_CODEC_SI3054=y
CONFIG_SND_HDA_GENERIC=y
CONFIG_SND_HDA_POWER_SAVE_DEFAULT=0
# CONFIG_SND_HDSP is not set
# CONFIG_SND_HDSPM is not set
# CONFIG_SND_ICE1712 is not set
# CONFIG_SND_ICE1724 is not set
# CONFIG_SND_INTEL8X0 is not set
# CONFIG_SND_INTEL8X0M is not set
# CONFIG_SND_KORG1212 is not set
# CONFIG_SND_LOLA is not set
# CONFIG_SND_LX6464ES is not set
# CONFIG_SND_MAESTRO3 is not set
# CONFIG_SND_MIXART is not set
# CONFIG_SND_NM256 is not set
# CONFIG_SND_PCXHR is not set
# CONFIG_SND_RIPTIDE is not set
# CONFIG_SND_RME32 is not set
# CONFIG_SND_RME96 is not set
# CONFIG_SND_RME9652 is not set
# CONFIG_SND_SONICVIBES is not set
# CONFIG_SND_TRIDENT is not set
# CONFIG_SND_VIA82XX is not set
# CONFIG_SND_VIA82XX_MODEM is not set
# CONFIG_SND_VIRTUOSO is not set
# CONFIG_SND_VX222 is not set
# CONFIG_SND_YMFPCI is not set
CONFIG_SND_USB=y
# CONFIG_SND_USB_AUDIO is not set
# CONFIG_SND_USB_UA101 is not set
# CONFIG_SND_USB_USX2Y is not set
# CONFIG_SND_USB_CAIAQ is not set
# CONFIG_SND_USB_US122L is not set
# CONFIG_SND_USB_6FIRE is not set
# CONFIG_SND_PCMCIA is not set
# CONFIG_SND_SOC is not set
# CONFIG_SOUND_PRIME is not set

#
# HID support
#
CONFIG_HID=y
CONFIG_HID_BATTERY_STRENGTH=y
CONFIG_HIDRAW=y
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=y

#
# Special HID drivers
#
CONFIG_HID_A4TECH=y
# CONFIG_HID_ACRUX is not set
CONFIG_HID_APPLE=y
# CONFIG_HID_AUREAL is not set
CONFIG_HID_BELKIN=y
CONFIG_HID_CHERRY=y
CONFIG_HID_CHICONY=y
# CONFIG_HID_PRODIKEYS is not set
CONFIG_HID_CYPRESS=y
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
CONFIG_HID_EZKEY=y
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_UCLOGIC is not set
# CONFIG_HID_WALTOP is not set
# CONFIG_HID_GYRATION is not set
# CONFIG_HID_ICADE is not set
# CONFIG_HID_TWINHAN is not set
CONFIG_HID_KENSINGTON=y
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LENOVO_TPKBD is not set
CONFIG_HID_LOGITECH=y
# CONFIG_HID_LOGITECH_DJ is not set
CONFIG_LOGITECH_FF=y
CONFIG_LOGIRUMBLEPAD2_FF=y
CONFIG_LOGIG940_FF=y
CONFIG_LOGIWHEELS_FF=y
# CONFIG_HID_MAGICMOUSE is not set
CONFIG_HID_MICROSOFT=y
CONFIG_HID_MONTEREY=y
# CONFIG_HID_MULTITOUCH is not set
CONFIG_HID_NTRIG=y
# CONFIG_HID_ORTEK is not set
# CONFIG_HID_PANTHERLORD is not set
# CONFIG_HID_PETALYNX is not set
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_PS3REMOTE is not set
# CONFIG_HID_ROCCAT is not set
# CONFIG_HID_SAITEK is not set
# CONFIG_HID_SAMSUNG is not set
# CONFIG_HID_SONY is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_SUNPLUS is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
# CONFIG_HID_TOPSEED is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_WACOM is not set
# CONFIG_HID_WIIMOTE is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set

#
# USB HID support
#
CONFIG_USB_HID=y
CONFIG_HID_PID=y
CONFIG_USB_HIDDEV=y

#
# I2C HID support
#
# CONFIG_I2C_HID is not set
CONFIG_USB_ARCH_HAS_OHCI=y
CONFIG_USB_ARCH_HAS_EHCI=y
CONFIG_USB_ARCH_HAS_XHCI=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
# CONFIG_USB_DEBUG is not set
CONFIG_USB_ANNOUNCE_NEW_DEVICES=y

#
# Miscellaneous USB options
#
# CONFIG_USB_DYNAMIC_MINORS is not set
CONFIG_USB_SUSPEND=y
# CONFIG_USB_OTG is not set
CONFIG_USB_MON=y
# CONFIG_USB_WUSB_CBAF is not set

#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
# CONFIG_USB_XHCI_HCD_DEBUGGING is not set
CONFIG_USB_EHCI_HCD=y
CONFIG_USB_EHCI_ROOT_HUB_TT=y
CONFIG_USB_EHCI_TT_NEWSCHED=y
CONFIG_USB_EHCI_PCI=y
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_ISP1760_HCD is not set
# CONFIG_USB_ISP1362_HCD is not set
CONFIG_USB_OHCI_HCD=y
# CONFIG_USB_OHCI_HCD_PLATFORM is not set
# CONFIG_USB_EHCI_HCD_PLATFORM is not set
# CONFIG_USB_OHCI_BIG_ENDIAN_DESC is not set
# CONFIG_USB_OHCI_BIG_ENDIAN_MMIO is not set
CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_UHCI_HCD=y
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_CHIPIDEA is not set

#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set

#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#

#
# also be needed; see USB_STORAGE Help for more info
#
# CONFIG_USB_STORAGE is not set

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USB_MICROTEK is not set

#
# USB port drivers
#
CONFIG_USB_SERIAL=y
CONFIG_USB_SERIAL_CONSOLE=y
CONFIG_USB_SERIAL_GENERIC=y
# CONFIG_USB_SERIAL_AIRCABLE is not set
# CONFIG_USB_SERIAL_ARK3116 is not set
# CONFIG_USB_SERIAL_BELKIN is not set
# CONFIG_USB_SERIAL_CH341 is not set
# CONFIG_USB_SERIAL_WHITEHEAT is not set
# CONFIG_USB_SERIAL_DIGI_ACCELEPORT is not set
# CONFIG_USB_SERIAL_CP210X is not set
# CONFIG_USB_SERIAL_CYPRESS_M8 is not set
# CONFIG_USB_SERIAL_EMPEG is not set
# CONFIG_USB_SERIAL_FTDI_SIO is not set
# CONFIG_USB_SERIAL_FUNSOFT is not set
# CONFIG_USB_SERIAL_VISOR is not set
# CONFIG_USB_SERIAL_IPAQ is not set
# CONFIG_USB_SERIAL_IR is not set
# CONFIG_USB_SERIAL_EDGEPORT is not set
# CONFIG_USB_SERIAL_EDGEPORT_TI is not set
# CONFIG_USB_SERIAL_F81232 is not set
# CONFIG_USB_SERIAL_GARMIN is not set
# CONFIG_USB_SERIAL_IPW is not set
# CONFIG_USB_SERIAL_IUU is not set
# CONFIG_USB_SERIAL_KEYSPAN_PDA is not set
# CONFIG_USB_SERIAL_KEYSPAN is not set
# CONFIG_USB_SERIAL_KLSI is not set
# CONFIG_USB_SERIAL_KOBIL_SCT is not set
# CONFIG_USB_SERIAL_MCT_U232 is not set
# CONFIG_USB_SERIAL_METRO is not set
# CONFIG_USB_SERIAL_MOS7720 is not set
# CONFIG_USB_SERIAL_MOS7840 is not set
# CONFIG_USB_SERIAL_MOTOROLA is not set
# CONFIG_USB_SERIAL_NAVMAN is not set
# CONFIG_USB_SERIAL_PL2303 is not set
# CONFIG_USB_SERIAL_OTI6858 is not set
# CONFIG_USB_SERIAL_QCAUX is not set
# CONFIG_USB_SERIAL_QUALCOMM is not set
# CONFIG_USB_SERIAL_SPCP8X5 is not set
# CONFIG_USB_SERIAL_HP4X is not set
# CONFIG_USB_SERIAL_SAFE is not set
# CONFIG_USB_SERIAL_SIEMENS_MPI is not set
# CONFIG_USB_SERIAL_SIERRAWIRELESS is not set
# CONFIG_USB_SERIAL_SYMBOL is not set
# CONFIG_USB_SERIAL_TI is not set
# CONFIG_USB_SERIAL_CYBERJACK is not set
# CONFIG_USB_SERIAL_XIRCOM is not set
# CONFIG_USB_SERIAL_OPTION is not set
# CONFIG_USB_SERIAL_OMNINET is not set
# CONFIG_USB_SERIAL_OPTICON is not set
# CONFIG_USB_SERIAL_VIVOPAY_SERIAL is not set
# CONFIG_USB_SERIAL_ZIO is not set
# CONFIG_USB_SERIAL_ZTE is not set
# CONFIG_USB_SERIAL_SSU100 is not set
# CONFIG_USB_SERIAL_QT2 is not set
# CONFIG_USB_SERIAL_DEBUG is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_RIO500 is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_LED is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_USB_SISUSBVGA is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
# CONFIG_USB_EZUSB_FX2 is not set

#
# USB Physical Layer drivers
#
# CONFIG_USB_ISP1301 is not set
# CONFIG_USB_RCAR_PHY is not set
# CONFIG_USB_GADGET is not set

#
# OTG and related infrastructure
#
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_UWB is not set
CONFIG_MMC=m
# CONFIG_MMC_DEBUG is not set
# CONFIG_MMC_UNSAFE_RESUME is not set
# CONFIG_MMC_CLKGATE is not set

#
# MMC/SD/SDIO Card Drivers
#
# CONFIG_MMC_BLOCK is not set
# CONFIG_SDIO_UART is not set
# CONFIG_MMC_TEST is not set

#
# MMC/SD/SDIO Host Controller Drivers
#
CONFIG_MMC_SDHCI=m
CONFIG_MMC_SDHCI_PCI=m
CONFIG_MMC_RICOH_MMC=y
# CONFIG_MMC_SDHCI_ACPI is not set
# CONFIG_MMC_SDHCI_PLTFM is not set
# CONFIG_MMC_WBSD is not set
# CONFIG_MMC_TIFM_SD is not set
# CONFIG_MMC_SDRICOH_CS is not set
# CONFIG_MMC_CB710 is not set
# CONFIG_MMC_VIA_SDMMC is not set
# CONFIG_MMC_VUB300 is not set
# CONFIG_MMC_USHC is not set
CONFIG_MEMSTICK=m
# CONFIG_MEMSTICK_DEBUG is not set

#
# MemoryStick drivers
#
# CONFIG_MEMSTICK_UNSAFE_RESUME is not set
# CONFIG_MSPRO_BLOCK is not set

#
# MemoryStick Host Controller Drivers
#
# CONFIG_MEMSTICK_TIFM_MS is not set
CONFIG_MEMSTICK_JMICRON_38X=m
# CONFIG_MEMSTICK_R592 is not set
CONFIG_NEW_LEDS=y
CONFIG_LEDS_CLASS=y

#
# LED drivers
#
# CONFIG_LEDS_LM3530 is not set
# CONFIG_LEDS_LM3642 is not set
# CONFIG_LEDS_PCA9532 is not set
# CONFIG_LEDS_LP3944 is not set
# CONFIG_LEDS_LP5521 is not set
# CONFIG_LEDS_LP5523 is not set
# CONFIG_LEDS_CLEVO_MAIL is not set
# CONFIG_LEDS_PCA955X is not set
# CONFIG_LEDS_PCA9633 is not set
# CONFIG_LEDS_BD2802 is not set
# CONFIG_LEDS_INTEL_SS4200 is not set
# CONFIG_LEDS_DELL_NETBOOKS is not set
# CONFIG_LEDS_TCA6507 is not set
# CONFIG_LEDS_LM355x is not set
# CONFIG_LEDS_OT200 is not set
# CONFIG_LEDS_BLINKM is not set
CONFIG_LEDS_TRIGGERS=y

#
# LED Triggers
#
# CONFIG_LEDS_TRIGGER_TIMER is not set
# CONFIG_LEDS_TRIGGER_ONESHOT is not set
# CONFIG_LEDS_TRIGGER_HEARTBEAT is not set
# CONFIG_LEDS_TRIGGER_BACKLIGHT is not set
# CONFIG_LEDS_TRIGGER_CPU is not set
# CONFIG_LEDS_TRIGGER_DEFAULT_ON is not set

#
# iptables trigger is under Netfilter config (LED target)
#
# CONFIG_LEDS_TRIGGER_TRANSIENT is not set
CONFIG_ACCESSIBILITY=y
CONFIG_A11Y_BRAILLE_CONSOLE=y
CONFIG_INFINIBAND=m
# CONFIG_INFINIBAND_USER_MAD is not set
# CONFIG_INFINIBAND_USER_ACCESS is not set
CONFIG_INFINIBAND_ADDR_TRANS=y
# CONFIG_INFINIBAND_MTHCA is not set
# CONFIG_INFINIBAND_IPATH is not set
# CONFIG_INFINIBAND_QIB is not set
# CONFIG_INFINIBAND_AMSO1100 is not set
# CONFIG_INFINIBAND_CXGB3 is not set
# CONFIG_INFINIBAND_CXGB4 is not set
# CONFIG_MLX4_INFINIBAND is not set
# CONFIG_INFINIBAND_NES is not set
# CONFIG_INFINIBAND_OCRDMA is not set
# CONFIG_INFINIBAND_IPOIB is not set
# CONFIG_INFINIBAND_SRP is not set
CONFIG_INFINIBAND_ISER=m
CONFIG_EDAC=y
CONFIG_EDAC_LEGACY_SYSFS=y
# CONFIG_EDAC_DEBUG is not set
# CONFIG_EDAC_DECODE_MCE is not set
# CONFIG_EDAC_MM_EDAC is not set
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set

#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set

#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set

#
# SPI RTC drivers
#

#
# Platform RTC drivers
#
CONFIG_RTC_DRV_CMOS=y
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
# CONFIG_RTC_DRV_DS2404 is not set

#
# on-CPU RTC drivers
#
CONFIG_DMADEVICES=y
# CONFIG_DMADEVICES_DEBUG is not set

#
# DMA Devices
#
# CONFIG_INTEL_MID_DMAC is not set
# CONFIG_INTEL_IOATDMA is not set
# CONFIG_TIMB_DMA is not set
# CONFIG_PCH_DMA is not set
CONFIG_AUXDISPLAY=y
CONFIG_UIO=m
# CONFIG_UIO_CIF is not set
# CONFIG_UIO_PDRV is not set
# CONFIG_UIO_PDRV_GENIRQ is not set
# CONFIG_UIO_DMEM_GENIRQ is not set
# CONFIG_UIO_AEC is not set
# CONFIG_UIO_SERCOS3 is not set
# CONFIG_UIO_PCI_GENERIC is not set
# CONFIG_UIO_NETX is not set
# CONFIG_VFIO is not set
CONFIG_VIRTIO=y

#
# Virtio drivers
#
CONFIG_VIRTIO_PCI=y
# CONFIG_VIRTIO_BALLOON is not set
# CONFIG_VIRTIO_MMIO is not set

#
# Microsoft Hyper-V guest support
#
# CONFIG_HYPERV is not set

#
# Xen driver support
#
CONFIG_XEN_BALLOON=y
CONFIG_XEN_SELFBALLOONING=y
CONFIG_XEN_SCRUB_PAGES=y
# CONFIG_XEN_DEV_EVTCHN is not set
CONFIG_XEN_BACKEND=y
# CONFIG_XENFS is not set
CONFIG_XEN_SYS_HYPERVISOR=y
CONFIG_XEN_XENBUS_FRONTEND=y
# CONFIG_XEN_GNTDEV is not set
# CONFIG_XEN_GRANT_DEV_ALLOC is not set
CONFIG_SWIOTLB_XEN=y
CONFIG_XEN_TMEM=y
# CONFIG_XEN_PCIDEV_BACKEND is not set
CONFIG_XEN_PRIVCMD=m
# CONFIG_XEN_ACPI_PROCESSOR is not set
# CONFIG_XEN_MCE_LOG is not set
CONFIG_XEN_HAVE_PVMMU=y
CONFIG_STAGING=y
# CONFIG_ET131X is not set
# CONFIG_SLICOSS is not set
# CONFIG_USBIP_CORE is not set
# CONFIG_W35UND is not set
# CONFIG_PRISM2_USB is not set
# CONFIG_ECHO is not set
# CONFIG_COMEDI is not set
# CONFIG_ASUS_OLED is not set
# CONFIG_R8187SE is not set
# CONFIG_RTL8192U is not set
# CONFIG_RTLLIB is not set
# CONFIG_R8712U is not set
# CONFIG_RTS5139 is not set
# CONFIG_TRANZPORT is not set
# CONFIG_IDE_PHISON is not set
# CONFIG_LINE6_USB is not set
# CONFIG_USB_SERIAL_QUATECH2 is not set
# CONFIG_VT6655 is not set
# CONFIG_VT6656 is not set
# CONFIG_DX_SEP is not set
# CONFIG_ZSMALLOC is not set
# CONFIG_WLAGS49_H2 is not set
# CONFIG_WLAGS49_H25 is not set
# CONFIG_FB_SM7XX is not set
# CONFIG_CRYSTALHD is not set
# CONFIG_FB_XGI is not set
# CONFIG_ACPI_QUICKSTART is not set
# CONFIG_USB_ENESTORAGE is not set
# CONFIG_BCM_WIMAX is not set
# CONFIG_FT1000 is not set

#
# Speakup console speech
#
# CONFIG_SPEAKUP is not set
# CONFIG_TOUCHSCREEN_SYNAPTICS_I2C_RMI4 is not set
CONFIG_STAGING_MEDIA=y
# CONFIG_DVB_AS102 is not set
# CONFIG_DVB_CXD2099 is not set
# CONFIG_VIDEO_DT3155 is not set
# CONFIG_VIDEO_GO7007 is not set
# CONFIG_SOLO6X10 is not set

#
# Android
#
# CONFIG_ANDROID is not set
# CONFIG_USB_WPAN_HCD is not set
# CONFIG_WIMAX_GDM72XX is not set
# CONFIG_CSR_WIFI is not set
# CONFIG_ZCACHE2 is not set
# CONFIG_NET_VENDOR_SILICOM is not set
# CONFIG_CED1401 is not set
# CONFIG_DGRP is not set
# CONFIG_SB105X is not set
CONFIG_X86_PLATFORM_DEVICES=y
# CONFIG_ACER_WMI is not set
# CONFIG_ACERHDF is not set
# CONFIG_ASUS_LAPTOP is not set
# CONFIG_DELL_WMI is not set
# CONFIG_DELL_WMI_AIO is not set
# CONFIG_FUJITSU_LAPTOP is not set
# CONFIG_FUJITSU_TABLET is not set
# CONFIG_AMILO_RFKILL is not set
# CONFIG_HP_ACCEL is not set
# CONFIG_HP_WMI is not set
# CONFIG_MSI_LAPTOP is not set
# CONFIG_PANASONIC_LAPTOP is not set
# CONFIG_COMPAL_LAPTOP is not set
# CONFIG_SONY_LAPTOP is not set
CONFIG_IDEAPAD_LAPTOP=m
# CONFIG_THINKPAD_ACPI is not set
# CONFIG_SENSORS_HDAPS is not set
# CONFIG_INTEL_MENLOW is not set
# CONFIG_EEEPC_LAPTOP is not set
# CONFIG_ASUS_WMI is not set
CONFIG_ACPI_WMI=m
# CONFIG_MSI_WMI is not set
# CONFIG_TOPSTAR_LAPTOP is not set
# CONFIG_ACPI_TOSHIBA is not set
# CONFIG_TOSHIBA_BT_RFKILL is not set
# CONFIG_ACPI_CMPC is not set
# CONFIG_INTEL_IPS is not set
# CONFIG_IBM_RTL is not set
# CONFIG_XO15_EBOOK is not set
# CONFIG_SAMSUNG_LAPTOP is not set
CONFIG_MXM_WMI=m
# CONFIG_INTEL_OAKTRAIL is not set
# CONFIG_SAMSUNG_Q10 is not set
# CONFIG_APPLE_GMUX is not set

#
# Hardware Spinlock drivers
#
CONFIG_CLKEVT_I8253=y
CONFIG_I8253_LOCK=y
CONFIG_CLKBLD_I8253=y
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y
CONFIG_AMD_IOMMU=y
CONFIG_AMD_IOMMU_STATS=y
# CONFIG_AMD_IOMMU_V2 is not set
CONFIG_DMAR_TABLE=y
CONFIG_INTEL_IOMMU=y
# CONFIG_INTEL_IOMMU_DEFAULT_ON is not set
CONFIG_INTEL_IOMMU_FLOPPY_WA=y
CONFIG_IRQ_REMAP=y

#
# Remoteproc drivers (EXPERIMENTAL)
#
# CONFIG_STE_MODEM_RPROC is not set

#
# Rpmsg drivers (EXPERIMENTAL)
#
# CONFIG_VIRT_DRIVERS is not set
# CONFIG_PM_DEVFREQ is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
# CONFIG_IIO is not set
# CONFIG_VME_BUS is not set
# CONFIG_PWM is not set
# CONFIG_IPACK_BUS is not set

#
# Firmware Drivers
#
# CONFIG_EDD is not set
CONFIG_FIRMWARE_MEMMAP=y
CONFIG_EFI_VARS=y
# CONFIG_DELL_RBU is not set
# CONFIG_DCDBAS is not set
CONFIG_DMIID=y
CONFIG_DMI_SYSFS=y
CONFIG_ISCSI_IBFT_FIND=y
# CONFIG_ISCSI_IBFT is not set
# CONFIG_GOOGLE_FIRMWARE is not set

#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT23=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
# CONFIG_BTRFS_FS is not set
# CONFIG_NILFS2_FS is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
CONFIG_FILE_LOCKING=y
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
CONFIG_FANOTIFY=y
CONFIG_FANOTIFY_ACCESS_PERMISSIONS=y
CONFIG_QUOTA=y
CONFIG_QUOTA_NETLINK_INTERFACE=y
# CONFIG_PRINT_QUOTA_WARNING is not set
# CONFIG_QUOTA_DEBUG is not set
CONFIG_QUOTA_TREE=y
# CONFIG_QFMT_V1 is not set
CONFIG_QFMT_V2=y
CONFIG_QUOTACTL=y
CONFIG_QUOTACTL_COMPAT=y
CONFIG_AUTOFS4_FS=y
CONFIG_FUSE_FS=m
# CONFIG_CUSE is not set
CONFIG_GENERIC_ACL=y

#
# Caches
#
# CONFIG_FSCACHE is not set

#
# CD-ROM/DVD Filesystems
#
CONFIG_ISO9660_FS=y
CONFIG_JOLIET=y
CONFIG_ZISOFS=y
# CONFIG_UDF_FS is not set

#
# DOS/FAT/NT Filesystems
#
CONFIG_FAT_FS=m
# CONFIG_MSDOS_FS is not set
CONFIG_VFAT_FS=m
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="ascii"
# CONFIG_NTFS_FS is not set

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_VMCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
CONFIG_HUGETLBFS=y
CONFIG_HUGETLB_PAGE=y
CONFIG_CONFIGFS_FS=y
CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_ECRYPT_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_LOGFS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
# CONFIG_ROMFS_FS is not set
CONFIG_PSTORE=y
# CONFIG_PSTORE_CONSOLE is not set
# CONFIG_PSTORE_FTRACE is not set
# CONFIG_PSTORE_RAM is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
# CONFIG_F2FS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=m
# CONFIG_NFS_V2 is not set
# CONFIG_NFS_V3 is not set
# CONFIG_NFS_V4 is not set
# CONFIG_NFS_SWAP is not set
CONFIG_NFS_DEBUG=y
# CONFIG_NFSD is not set
CONFIG_LOCKD=m
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=m
CONFIG_SUNRPC_XPRT_RDMA=m
CONFIG_SUNRPC_DEBUG=y
# CONFIG_CEPH_FS is not set
# CONFIG_CIFS is not set
# CONFIG_NCP_FS is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="utf8"
CONFIG_NLS_CODEPAGE_437=y
# CONFIG_NLS_CODEPAGE_737 is not set
# CONFIG_NLS_CODEPAGE_775 is not set
# CONFIG_NLS_CODEPAGE_850 is not set
# CONFIG_NLS_CODEPAGE_852 is not set
# CONFIG_NLS_CODEPAGE_855 is not set
# CONFIG_NLS_CODEPAGE_857 is not set
# CONFIG_NLS_CODEPAGE_860 is not set
# CONFIG_NLS_CODEPAGE_861 is not set
# CONFIG_NLS_CODEPAGE_862 is not set
# CONFIG_NLS_CODEPAGE_863 is not set
# CONFIG_NLS_CODEPAGE_864 is not set
# CONFIG_NLS_CODEPAGE_865 is not set
# CONFIG_NLS_CODEPAGE_866 is not set
# CONFIG_NLS_CODEPAGE_869 is not set
# CONFIG_NLS_CODEPAGE_936 is not set
# CONFIG_NLS_CODEPAGE_950 is not set
# CONFIG_NLS_CODEPAGE_932 is not set
# CONFIG_NLS_CODEPAGE_949 is not set
# CONFIG_NLS_CODEPAGE_874 is not set
# CONFIG_NLS_ISO8859_8 is not set
# CONFIG_NLS_CODEPAGE_1250 is not set
# CONFIG_NLS_CODEPAGE_1251 is not set
CONFIG_NLS_ASCII=y
# CONFIG_NLS_ISO8859_1 is not set
# CONFIG_NLS_ISO8859_2 is not set
# CONFIG_NLS_ISO8859_3 is not set
# CONFIG_NLS_ISO8859_4 is not set
# CONFIG_NLS_ISO8859_5 is not set
# CONFIG_NLS_ISO8859_6 is not set
# CONFIG_NLS_ISO8859_7 is not set
# CONFIG_NLS_ISO8859_9 is not set
# CONFIG_NLS_ISO8859_13 is not set
# CONFIG_NLS_ISO8859_14 is not set
# CONFIG_NLS_ISO8859_15 is not set
# CONFIG_NLS_KOI8_R is not set
# CONFIG_NLS_KOI8_U is not set
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
# CONFIG_NLS_UTF8 is not set
# CONFIG_DLM is not set

#
# Kernel hacking
#
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_PRINTK_TIME=y
CONFIG_DEFAULT_MESSAGE_LOGLEVEL=4
# CONFIG_ENABLE_WARN_DEPRECATED is not set
CONFIG_ENABLE_MUST_CHECK=y
CONFIG_FRAME_WARN=2048
CONFIG_MAGIC_SYSRQ=y
CONFIG_STRIP_ASM_SYMS=y
# CONFIG_READABLE_ASM is not set
CONFIG_UNUSED_SYMBOLS=y
CONFIG_DEBUG_FS=y
CONFIG_HEADERS_CHECK=y
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_DEBUG_KERNEL=y
CONFIG_DEBUG_SHIRQ=y
CONFIG_LOCKUP_DETECTOR=y
CONFIG_HARDLOCKUP_DETECTOR=y
# CONFIG_BOOTPARAM_HARDLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_HARDLOCKUP_PANIC_VALUE=0
# CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC is not set
CONFIG_BOOTPARAM_SOFTLOCKUP_PANIC_VALUE=0
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
# CONFIG_DETECT_HUNG_TASK is not set
CONFIG_SCHED_DEBUG=y
CONFIG_SCHEDSTATS=y
CONFIG_TIMER_STATS=y
# CONFIG_DEBUG_OBJECTS is not set
# CONFIG_SLUB_DEBUG_ON is not set
# CONFIG_SLUB_STATS is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
# CONFIG_DEBUG_KMEMLEAK is not set
# CONFIG_DEBUG_RT_MUTEXES is not set
# CONFIG_RT_MUTEX_TESTER is not set
# CONFIG_DEBUG_SPINLOCK is not set
# CONFIG_DEBUG_MUTEXES is not set
# CONFIG_DEBUG_LOCK_ALLOC is not set
# CONFIG_PROVE_LOCKING is not set
CONFIG_SPARSE_RCU_POINTER=y
# CONFIG_LOCK_STAT is not set
# CONFIG_DEBUG_ATOMIC_SLEEP is not set
# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set
CONFIG_STACKTRACE=y
# CONFIG_DEBUG_STACK_USAGE is not set
# CONFIG_DEBUG_KOBJECT is not set
CONFIG_DEBUG_BUGVERBOSE=y
CONFIG_DEBUG_INFO=y
# CONFIG_DEBUG_INFO_REDUCED is not set
CONFIG_DEBUG_VM=y
# CONFIG_DEBUG_VM_RB is not set
# CONFIG_DEBUG_VIRTUAL is not set
# CONFIG_DEBUG_WRITECOUNT is not set
CONFIG_DEBUG_MEMORY_INIT=y
CONFIG_DEBUG_LIST=y
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_DEBUG_SG is not set
# CONFIG_DEBUG_NOTIFIERS is not set
# CONFIG_DEBUG_CREDENTIALS is not set
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
CONFIG_BOOT_PRINTK_DELAY=y
# CONFIG_RCU_TORTURE_TEST is not set
CONFIG_RCU_CPU_STALL_TIMEOUT=60
# CONFIG_RCU_CPU_STALL_INFO is not set
# CONFIG_RCU_TRACE is not set
# CONFIG_KPROBES_SANITY_TEST is not set
# CONFIG_BACKTRACE_SELF_TEST is not set
# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
# CONFIG_DEBUG_PER_CPU_MAPS is not set
# CONFIG_LKDTM is not set
# CONFIG_NOTIFIER_ERROR_INJECTION is not set
# CONFIG_FAULT_INJECTION is not set
CONFIG_LATENCYTOP=y
# CONFIG_DEBUG_PAGEALLOC is not set
CONFIG_USER_STACKTRACE_SUPPORT=y
CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y
CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_FENTRY=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACER_MAX_TRACE=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_EVENT_POWER_TRACING_DEPRECATED=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
# CONFIG_IRQSOFF_TRACER is not set
CONFIG_SCHED_TRACER=y
CONFIG_FTRACE_SYSCALLS=y
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
CONFIG_STACK_TRACER=y
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_KPROBE_EVENT=y
CONFIG_UPROBE_EVENT=y
CONFIG_PROBE_EVENTS=y
CONFIG_DYNAMIC_FTRACE=y
CONFIG_FUNCTION_PROFILER=y
CONFIG_FTRACE_MCOUNT_RECORD=y
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_MMIOTRACE is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_RBTREE_TEST is not set
# CONFIG_INTERVAL_TREE_TEST is not set
CONFIG_PROVIDE_OHCI1394_DMA_INIT=y
CONFIG_BUILD_DOCSRC=y
CONFIG_DYNAMIC_DEBUG=y
# CONFIG_DMA_API_DEBUG is not set
CONFIG_ATOMIC64_SELFTEST=y
# CONFIG_SAMPLES is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_KGDB=y
CONFIG_KGDB_SERIAL_CONSOLE=y
CONFIG_KGDB_TESTS=y
# CONFIG_KGDB_TESTS_ON_BOOT is not set
CONFIG_KGDB_LOW_LEVEL_TRAP=y
CONFIG_KGDB_KDB=y
CONFIG_KDB_KEYBOARD=y
CONFIG_HAVE_ARCH_KMEMCHECK=y
CONFIG_TEST_KSTRTOX=y
CONFIG_STRICT_DEVMEM=y
# CONFIG_X86_VERBOSE_BOOTUP is not set
CONFIG_EARLY_PRINTK=y
CONFIG_EARLY_PRINTK_DBGP=y
CONFIG_DEBUG_STACKOVERFLOW=y
# CONFIG_X86_PTDUMP is not set
CONFIG_DEBUG_RODATA=y
CONFIG_DEBUG_RODATA_TEST=y
CONFIG_DEBUG_SET_MODULE_RONX=y
# CONFIG_DEBUG_NX_TEST is not set
# CONFIG_DEBUG_TLBFLUSH is not set
# CONFIG_IOMMU_DEBUG is not set
# CONFIG_IOMMU_STRESS is not set
CONFIG_HAVE_MMIOTRACE_SUPPORT=y
CONFIG_X86_DECODER_SELFTEST=y
CONFIG_IO_DELAY_TYPE_0X80=0
CONFIG_IO_DELAY_TYPE_0XED=1
CONFIG_IO_DELAY_TYPE_UDELAY=2
CONFIG_IO_DELAY_TYPE_NONE=3
CONFIG_IO_DELAY_0X80=y
# CONFIG_IO_DELAY_0XED is not set
# CONFIG_IO_DELAY_UDELAY is not set
# CONFIG_IO_DELAY_NONE is not set
CONFIG_DEFAULT_IO_DELAY_TYPE=0
CONFIG_DEBUG_BOOT_PARAMS=y
# CONFIG_CPA_DEBUG is not set
CONFIG_OPTIMIZE_INLINING=y
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
# CONFIG_DEBUG_NMI_SELFTEST is not set

#
# Security options
#
CONFIG_KEYS=y
# CONFIG_ENCRYPTED_KEYS is not set
CONFIG_KEYS_DEBUG_PROC_KEYS=y
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
CONFIG_SECURITYFS=y
CONFIG_SECURITY_NETWORK=y
CONFIG_SECURITY_NETWORK_XFRM=y
# CONFIG_SECURITY_PATH is not set
CONFIG_INTEL_TXT=y
CONFIG_LSM_MMAP_MIN_ADDR=65536
CONFIG_SECURITY_SELINUX=y
CONFIG_SECURITY_SELINUX_BOOTPARAM=y
CONFIG_SECURITY_SELINUX_BOOTPARAM_VALUE=1
CONFIG_SECURITY_SELINUX_DISABLE=y
CONFIG_SECURITY_SELINUX_DEVELOP=y
CONFIG_SECURITY_SELINUX_AVC_STATS=y
CONFIG_SECURITY_SELINUX_CHECKREQPROT_VALUE=1
# CONFIG_SECURITY_SELINUX_POLICYDB_VERSION_MAX is not set
# CONFIG_SECURITY_SMACK is not set
# CONFIG_SECURITY_TOMOYO is not set
# CONFIG_SECURITY_APPARMOR is not set
# CONFIG_SECURITY_YAMA is not set
# CONFIG_IMA is not set
# CONFIG_EVM is not set
CONFIG_DEFAULT_SECURITY_SELINUX=y
# CONFIG_DEFAULT_SECURITY_DAC is not set
CONFIG_DEFAULT_SECURITY="selinux"
CONFIG_CRYPTO=y

#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_BLKCIPHER=y
CONFIG_CRYPTO_BLKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_PCOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
# CONFIG_CRYPTO_MANAGER_DISABLE_TESTS is not set
CONFIG_CRYPTO_GF128MUL=y
# CONFIG_CRYPTO_NULL is not set
# CONFIG_CRYPTO_PCRYPT is not set
CONFIG_CRYPTO_WORKQUEUE=y
CONFIG_CRYPTO_CRYPTD=y
# CONFIG_CRYPTO_AUTHENC is not set
# CONFIG_CRYPTO_TEST is not set
CONFIG_CRYPTO_ABLK_HELPER_X86=y

#
# Authenticated Encryption with Associated Data
#
# CONFIG_CRYPTO_CCM is not set
# CONFIG_CRYPTO_GCM is not set
CONFIG_CRYPTO_SEQIV=y

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
CONFIG_CRYPTO_CTR=y
# CONFIG_CRYPTO_CTS is not set
CONFIG_CRYPTO_ECB=y
CONFIG_CRYPTO_LRW=y
# CONFIG_CRYPTO_PCBC is not set
CONFIG_CRYPTO_XTS=y

#
# Hash modes
#
CONFIG_CRYPTO_HMAC=y
# CONFIG_CRYPTO_XCBC is not set
# CONFIG_CRYPTO_VMAC is not set

#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
CONFIG_CRYPTO_CRC32C_X86_64=y
CONFIG_CRYPTO_CRC32C_INTEL=m
# CONFIG_CRYPTO_GHASH is not set
# CONFIG_CRYPTO_MD4 is not set
CONFIG_CRYPTO_MD5=y
# CONFIG_CRYPTO_MICHAEL_MIC is not set
# CONFIG_CRYPTO_RMD128 is not set
# CONFIG_CRYPTO_RMD160 is not set
# CONFIG_CRYPTO_RMD256 is not set
# CONFIG_CRYPTO_RMD320 is not set
CONFIG_CRYPTO_SHA1=y
# CONFIG_CRYPTO_SHA1_SSSE3 is not set
CONFIG_CRYPTO_SHA256=y
# CONFIG_CRYPTO_SHA512 is not set
# CONFIG_CRYPTO_TGR192 is not set
# CONFIG_CRYPTO_WP512 is not set
CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL=m

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
CONFIG_CRYPTO_AES_X86_64=y
CONFIG_CRYPTO_AES_NI_INTEL=y
# CONFIG_CRYPTO_ANUBIS is not set
CONFIG_CRYPTO_ARC4=m
# CONFIG_CRYPTO_BLOWFISH is not set
# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA is not set
# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set
# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAST5 is not set
# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set
# CONFIG_CRYPTO_CAST6 is not set
# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set
# CONFIG_CRYPTO_DES is not set
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_KHAZAD is not set
# CONFIG_CRYPTO_SALSA20 is not set
# CONFIG_CRYPTO_SALSA20_X86_64 is not set
# CONFIG_CRYPTO_SEED is not set
# CONFIG_CRYPTO_SERPENT is not set
# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set
# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set
# CONFIG_CRYPTO_TEA is not set
# CONFIG_CRYPTO_TWOFISH is not set
# CONFIG_CRYPTO_TWOFISH_X86_64 is not set
# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set
# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set

#
# Compression
#
# CONFIG_CRYPTO_DEFLATE is not set
# CONFIG_CRYPTO_ZLIB is not set
# CONFIG_CRYPTO_LZO is not set

#
# Random Number Generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRYPTO_USER_API=y
CONFIG_CRYPTO_USER_API_HASH=y
CONFIG_CRYPTO_USER_API_SKCIPHER=y
CONFIG_CRYPTO_HW=y
# CONFIG_CRYPTO_DEV_PADLOCK is not set
CONFIG_ASYMMETRIC_KEY_TYPE=y
CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y
CONFIG_PUBLIC_KEY_ALGO_RSA=y
CONFIG_X509_CERTIFICATE_PARSER=y
CONFIG_HAVE_KVM=y
CONFIG_HAVE_KVM_IRQCHIP=y
CONFIG_HAVE_KVM_EVENTFD=y
CONFIG_KVM_APIC_ARCHITECTURE=y
CONFIG_KVM_MMIO=y
CONFIG_KVM_ASYNC_PF=y
CONFIG_HAVE_KVM_MSI=y
CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT=y
CONFIG_VIRTUALIZATION=y
CONFIG_KVM=m
CONFIG_KVM_INTEL=m
# CONFIG_KVM_AMD is not set
CONFIG_KVM_MMU_AUDIT=y
CONFIG_VHOST_NET=m
CONFIG_BINARY_PRINTF=y

#
# Library routines
#
CONFIG_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_GENERIC_IOMAP=y
CONFIG_GENERIC_IO=y
CONFIG_PERCPU_RWSEM=y
# CONFIG_CRC_CCITT is not set
CONFIG_CRC16=y
CONFIG_CRC_T10DIF=y
# CONFIG_CRC_ITU_T is not set
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
# CONFIG_CRC7 is not set
# CONFIG_LIBCRC32C is not set
# CONFIG_CRC8 is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_SPARC=y
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT=y
CONFIG_HAS_DMA=y
CONFIG_CHECK_SIGNATURE=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_NLATTR=y
CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y
CONFIG_AVERAGE=y
CONFIG_CLZ_TAB=y
# CONFIG_CORDIC is not set
# CONFIG_DDR is not set
CONFIG_MPILIB=y
CONFIG_OID_REGISTRY=y

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20  7:17       ` Chris Li
@ 2013-02-20 10:57         ` Daniel Vetter
  2013-02-20 19:29           ` Chris Li
  2013-02-20 19:45           ` Chris Li
  0 siblings, 2 replies; 29+ messages in thread
From: Daniel Vetter @ 2013-02-20 10:57 UTC (permalink / raw)
  To: Chris Li
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown,
	Linus Torvalds

On Wed, Feb 20, 2013 at 8:17 AM, Chris Li <lkml@chrisli.org> wrote:
> On Tue, Feb 19, 2013 at 12:52 PM, Jesse Barnes <jbarnes@virtuousgeek.org> wrote:
>> Well it definitely sounds i915 related.  I was just thinking that if
>> certain bits were routed to the nvidia chip instead of the i915 one,
>> the i915 driver may get confused and panic.
>
> That is certainly possible.
>
>> For debugging, you could modify the modeset_init function in i915_dma.c
>> and make it return early with an error.  You could use that to narrow
>> down which part of init was failing.
>
> I did try that. It seems there is not fail at modeset_init function. The
> function complete successfully. Here is the related section.
> [i915 Hack] was the line add by me.
>
> There is one line said: "vgaarb: transferring owner from
> PCI:0000:00:02.0 to PCI:0000:01:00.0".
> Does it mean the display switch to the Nvidia video card?

vgaarb is just about legacy VGA access routing, gpu switching is done
with vgaswitcheroo (if you have such a platform). Still, it could be
that the bios exposes different such interfaces with the differen acpi
os name. Can you please check the dmesg of a working kernel (or attach
it)?

> [    4.917591] i915 0000:00:02.0: setting latency timer to 64
> [    4.962649] i915 0000:00:02.0: irq 43 for MSI/MSI-X
> [    4.962656] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
> [    4.962660] [drm] Driver supports precise vblank timestamp query.
> [    4.962663] [i915 Hack] enter modeset
> [    4.962670] [i915 Hack] after intel_parse_bios
> [    4.962672] [i915 Hack] after vga_client_register
> [    4.962727] [i915 Hack] after intel_register_dsm_handler
> [    4.962730] [i915 Hack] after intel_switchroo_register_client
> [    4.962733] [i915 Hack] after i915_gen_init_stolen
> [    4.962752] vgaarb: device changed decodes:
> PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
> [    4.962757] vgaarb: transferring owner from PCI:0000:00:02.0 to
> PCI:0000:01:00.0
> [    5.018486] [i915 Hack] after intel_modeset_init
> [    5.020823] [i915 Hack] after i915_gem_init
> [    5.020869] [i915 Hack] after intel_modeset_gem_init
> [    5.020892] [i915 Hack] after drm_irq_install
> [    5.051980] fbcon: inteldrmfb (fb0) is primary device
> [    5.089303] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1,
> id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id:
> 1087391
> [    5.202472] input: SynPS/2 Synaptics TouchPad as
> /devices/platform/i8042/serio1/input/input5
> [    5.711448] Console: switching to colour frame buffer device 240x67
> [    5.722628] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
> [    5.722630] i915 0000:00:02.0: registered panic notifier
> [    5.722633] [i915 Hack] after intel_fbdev_init
> [    5.722634] [i915 Hack] after drm_kms_helper_poll_init
> [    5.722635] [i915 Hack] exit mode switch
> [    5.722682] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
> [    5.723017] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
> [    5.733222] acpi device:3c: registered as cooling_device8
> [    5.733587] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
> [    5.733746] input: Video Bus as
> /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:3a/LNXVIDEO:00/input/input6
> [    5.745904] acpi device:48: registered as cooling_device9
>
> I attach the dmesg and config of the kernel. It is with the tip of git tree.
>
> BTW, my previous claim was wrong about the kernel is dead. It turn out the
> wifi is usable after the black screen, I just need to wait long
> enough. The kernel
> has no panic at all. That explains why I didnot get a kernel crash
> dump previously.
> The caps locks LED actually works.

Starts to smell like a bog-standard i915 black screen bug (albeit with
a strange cause for the regression). Can you please boot the broken
kernels again with drm.debug=0xe and grab the complete dmesg?
Depending upon how long it takes for your wifi to get up, you might
need to extend the log buffer, it dumps a lot.

Thanks, Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 10:57         ` Daniel Vetter
@ 2013-02-20 19:29           ` Chris Li
  2013-02-20 19:33             ` Chris Li
  2013-02-20 19:45           ` Chris Li
  1 sibling, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-02-20 19:29 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown,
	Linus Torvalds

[-- Attachment #1: Type: text/plain, Size: 633 bytes --]

On Wed, Feb 20, 2013 at 2:57 AM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
> vgaarb is just about legacy VGA access routing, gpu switching is done
> with vgaswitcheroo (if you have such a platform). Still, it could be
> that the bios exposes different such interfaces with the differen acpi
> os name. Can you please check the dmesg of a working kernel (or attach
> it)?

It still sound odd that in the middle of the i915 modeset, the legacy VGA
access transfer to the Nvidia video card. I look at the 3.6 kernel there
is no such print out from vgaarb.

Here it is the dmesg from the FC18 live CD kernel. No black screen.

Chris

[-- Attachment #2: dmesg.good --]
[-- Type: application/octet-stream, Size: 80354 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.6.10-4.fc18.x86_64 (mockbuild@) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #1 SMP Tue Dec 11 18:01:27 UTC 2012
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.6.10-4.fc18.x86_64 root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us i915.modeset=0
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] 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-0x00000000b3fecfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] e820: update [mem 0xb3cee018-0xb3d03e57] usable ==> usable
[    0.000000] e820: update [mem 0xb3cdd018-0xb3ced057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040005000-0x00000000b3cdd017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cdd018-0x00000000b3ced057] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3ced058-0x00000000b3cee017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cee018-0x00000000b3d03e57] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3d03e58-0x00000000b3fecfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xbaffe000  ACPI 2.0=0xbaffe014  SMBIOS=0xbaebef98 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000004000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000004000-0x000000000000e000) (0MB)
[    0.000000] efi: mem03: type=3, attr=0xf, range=[0x000000000000e000-0x0000000000010000) (0MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000010000-0x000000000002e000) (0MB)
[    0.000000] efi: mem05: type=3, attr=0xf, range=[0x000000000002e000-0x000000000002f000) (0MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x000000000002f000-0x0000000000030000) (0MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000000030000-0x000000000006f000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem10: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x0000000001000000-0x00000000023c7000) (19MB)
[    0.000000] efi: mem13: type=7, attr=0xf, range=[0x00000000023c7000-0x0000000020000000) (476MB)
[    0.000000] efi: mem14: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000020200000-0x000000003e1e8000) (479MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000003e1e8000-0x0000000040000000) (30MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000040000000-0x0000000040004000) (0MB)
[    0.000000] efi: mem18: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000040005000-0x000000008634e000) (1123MB)
[    0.000000] efi: mem20: type=2, attr=0xf, range=[0x000000008634e000-0x00000000b31c0000) (718MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000b31c0000-0x00000000b31e0000) (0MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000b31e0000-0x00000000b3a7e000) (8MB)
[    0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000b3a7e000-0x00000000b3b4d000) (0MB)
[    0.000000] efi: mem24: type=1, attr=0xf, range=[0x00000000b3b4d000-0x00000000b3c84000) (1MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000b3c84000-0x00000000b3cdd000) (0MB)
[    0.000000] efi: mem26: type=2, attr=0xf, range=[0x00000000b3cdd000-0x00000000b3dd3000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000b3dd3000-0x00000000b3fed000) (2MB)
[    0.000000] efi: mem28: type=0, attr=0xf, range=[0x00000000b3fed000-0x00000000b4d6e000) (13MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000b4d6e000-0x00000000b4db0000) (0MB)
[    0.000000] efi: mem30: type=0, attr=0xf, range=[0x00000000b4db0000-0x00000000b61b0000) (20MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b61b0000-0x00000000b61bd000) (0MB)
[    0.000000] efi: mem32: type=2, attr=0xf, range=[0x00000000b61bd000-0x00000000b61bf000) (0MB)
[    0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b61bf000-0x00000000b6279000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b6279000-0x00000000b81aa000) (31MB)
[    0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b81aa000-0x00000000b81b2000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b81b2000-0x00000000b81b4000) (0MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b81b4000-0x00000000b81b6000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b81b6000-0x00000000b81e6000) (0MB)
[    0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b81e6000-0x00000000b81ec000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b81ec000-0x00000000b81ed000) (0MB)
[    0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b81ed000-0x00000000b81ee000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b81ee000-0x00000000b81f8000) (0MB)
[    0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b81f8000-0x00000000b81f9000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b81f9000-0x00000000b821f000) (0MB)
[    0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b821f000-0x00000000b8221000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b8221000-0x00000000b83a0000) (1MB)
[    0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b83a0000-0x00000000b83a4000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b83a4000-0x00000000b83a7000) (0MB)
[    0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b83a7000-0x00000000b83a8000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b83a8000-0x00000000b83f8000) (0MB)
[    0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b83f8000-0x00000000b8420000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b8420000-0x00000000b859e000) (1MB)
[    0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b859e000-0x00000000b85a0000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b85a0000-0x00000000b85ba000) (0MB)
[    0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b85ba000-0x00000000b85bb000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b85bb000-0x00000000b87e8000) (2MB)
[    0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b87e8000-0x00000000b87f8000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b87f8000-0x00000000ba3bf000) (27MB)
[    0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000ba3bf000-0x00000000ba495000) (0MB)
[    0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000ba495000-0x00000000ba7bf000) (3MB)
[    0.000000] efi: mem61: type=5, attr=0x800000000000000f, range=[0x00000000ba7bf000-0x00000000ba880000) (0MB)
[    0.000000] efi: mem62: type=6, attr=0x800000000000000f, range=[0x00000000ba880000-0x00000000ba881000) (0MB)
[    0.000000] efi: mem63: type=5, attr=0x800000000000000f, range=[0x00000000ba881000-0x00000000ba8b0000) (0MB)
[    0.000000] efi: mem64: type=6, attr=0x800000000000000f, range=[0x00000000ba8b0000-0x00000000ba8b1000) (0MB)
[    0.000000] efi: mem65: type=5, attr=0x800000000000000f, range=[0x00000000ba8b1000-0x00000000ba8b3000) (0MB)
[    0.000000] efi: mem66: type=6, attr=0x800000000000000f, range=[0x00000000ba8b3000-0x00000000ba8b4000) (0MB)
[    0.000000] efi: mem67: type=5, attr=0x800000000000000f, range=[0x00000000ba8b4000-0x00000000ba8cc000) (0MB)
[    0.000000] efi: mem68: type=6, attr=0x800000000000000f, range=[0x00000000ba8cc000-0x00000000ba8cd000) (0MB)
[    0.000000] efi: mem69: type=5, attr=0x800000000000000f, range=[0x00000000ba8cd000-0x00000000ba8d2000) (0MB)
[    0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000ba8d2000-0x00000000ba8d3000) (0MB)
[    0.000000] efi: mem71: type=5, attr=0x800000000000000f, range=[0x00000000ba8d3000-0x00000000ba8e1000) (0MB)
[    0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000ba8e1000-0x00000000ba8e2000) (0MB)
[    0.000000] efi: mem73: type=5, attr=0x800000000000000f, range=[0x00000000ba8e2000-0x00000000ba8f2000) (0MB)
[    0.000000] efi: mem74: type=6, attr=0x800000000000000f, range=[0x00000000ba8f2000-0x00000000ba937000) (0MB)
[    0.000000] efi: mem75: type=5, attr=0x800000000000000f, range=[0x00000000ba937000-0x00000000ba9bf000) (0MB)
[    0.000000] efi: mem76: type=6, attr=0x800000000000000f, range=[0x00000000ba9bf000-0x00000000baabf000) (1MB)
[    0.000000] efi: mem77: type=0, attr=0xf, range=[0x00000000baabf000-0x00000000baebf000) (4MB)
[    0.000000] efi: mem78: type=10, attr=0xf, range=[0x00000000baebf000-0x00000000bafbf000) (1MB)
[    0.000000] efi: mem79: type=9, attr=0xf, range=[0x00000000bafbf000-0x00000000bafff000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000bafff000-0x00000000bb000000) (0MB)
[    0.000000] efi: mem81: type=7, attr=0xf, range=[0x0000000100000000-0x000000023f600000) (5110MB)
[    0.000000] efi: mem82: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem83: type=0, attr=0x0, range=[0x00000000bb000000-0x00000000bfa00000) (74MB)
[    0.000000] efi: mem84: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem85: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem86: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem87: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem88: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem89: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem90: type=11, attr=0x8000000000000000, range=[0x00000000ffb80000-0x0000000100000000) (4MB)
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: LENOVO 20132/INVALID, BIOS 5DCN90WW(V8.01) 10/11/2012
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x23f600 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-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   5 base 100000000 mask F00000000 write-back
[    0.000000]   6 base 200000000 mask FC0000000 write-back
[    0.000000]   7 base 23F600000 mask FFFE00000 uncachable
[    0.000000]   8 base 23F800000 mask FFF800000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [ffff8800000fe1c0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000028000] 28000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xbaffffff]
[    0.000000]  [mem 0x00000000-0xbaffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0xbaffffff @ [mem 0x1fffc000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x23f5fffff]
[    0.000000]  [mem 0x100000000-0x23f5fffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x23f5fffff @ [mem 0xba48f000-0xba494fff]
[    0.000000] RAMDISK: [mem 0x3e1e8000-0x3fffafff]
[    0.000000] ACPI: RSDP 00000000baffe014 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000baffe210 000AC (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 00000000baffa000 0010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DSDT 00000000bafec000 0A638 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000bafbb000 00040
[    0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 00000000baffc000 00236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! 00000000baffb000 000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 00000000baff9000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000baff8000 0008C (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000baff7000 0003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafeb000 006FE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000bafe9000 00028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT 00000000bafe7000 00034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DBGP 00000000bafe6000 00034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 00000000bafe4000 00044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MSDM 00000000bafe3000 00055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe2000 00926 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafdd000 02333 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BGRT 00000000bafe0000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x23f5fffff]
[    0.000000]   NODE_DATA [mem 0x23f5ec000-0x23f5fffff]
[    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236c00000-ffff88023ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x23f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xb3fecfff]
[    0.000000]   node   0: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]   node   0: [mem 0xb61b0000-0xba7befff]
[    0.000000]   node   0: [mem 0xbafff000-0xbaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x23f5fffff]
[    0.000000] On node 0 totalpages: 2062774
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 96 pages reserved
[    0.000000]   DMA zone: 3800 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 16320 pages used for memmap
[    0.000000]   DMA32 zone: 734334 pages, LIFO batch:31
[    0.000000]   Normal zone: 20440 pages used for memmap
[    0.000000]   Normal zone: 1287720 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 0000000000088000 - 00000000000c0000
[    0.000000] PM: Registered nosave memory: 00000000000c0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000b3cdd000 - 00000000b3cde000
[    0.000000] PM: Registered nosave memory: 00000000b3ced000 - 00000000b3cee000
[    0.000000] PM: Registered nosave memory: 00000000b3cee000 - 00000000b3cef000
[    0.000000] PM: Registered nosave memory: 00000000b3d03000 - 00000000b3d04000
[    0.000000] PM: Registered nosave memory: 00000000b3fed000 - 00000000b4d6e000
[    0.000000] PM: Registered nosave memory: 00000000b4db0000 - 00000000b61b0000
[    0.000000] PM: Registered nosave memory: 00000000ba7bf000 - 00000000baebf000
[    0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
[    0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
[    0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
[    0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
[    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[    0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[    0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
[    0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
[    0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023f200000 s84288 r8192 d22208 u262144
[    0.000000] pcpu-alloc: s84288 r8192 d22208 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2025854
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.6.10-4.fc18.x86_64 root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us i915.modeset=0
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 7933156k/9426944k available (6334k kernel code, 1175848k absent, 317940k reserved, 6870k data, 1036k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:8448 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.001000] tsc: Detected 2394.678 MHz processor
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.35 BogoMIPS (lpj=2394678)
[    0.000008] pid_max: default: 32768 minimum: 301
[    0.024206] Security Framework initialized
[    0.024216] SELinux:  Initializing.
[    0.024224] SELinux:  Starting in permissive mode
[    0.024819] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.026898] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.027797] Mount-cache hash table entries: 256
[    0.027963] Initializing cgroup subsys cpuacct
[    0.027966] Initializing cgroup subsys memory
[    0.027976] Initializing cgroup subsys devices
[    0.027979] Initializing cgroup subsys freezer
[    0.027982] Initializing cgroup subsys net_cls
[    0.027984] Initializing cgroup subsys blkio
[    0.027986] Initializing cgroup subsys perf_event
[    0.028013] CPU: Physical Processor ID: 0
[    0.028015] CPU: Processor Core ID: 0
[    0.028021] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.028395] mce: CPU supports 9 MCE banks
[    0.028409] CPU0: Thermal monitoring enabled (TM1)
[    0.028417] process: using mwait in idle threads
[    0.028421] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift is 0x1
[    0.029547] ACPI: Core revision 20120711
[    0.051203] ftrace: allocating 23489 entries in 92 pages
[    0.062604] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.072594] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz stepping 09
[    0.173533] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[    0.173541] ... version:                3
[    0.173542] ... bit width:              48
[    0.173544] ... generic registers:      4
[    0.173546] ... value mask:             0000ffffffffffff
[    0.173548] ... max period:             000000007fffffff
[    0.173549] ... fixed-purpose events:   3
[    0.173551] ... event mask:             000000070000000f
[    0.174065] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.174157] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.269902] Brought up 8 CPUs
[    0.269908] smpboot: Total of 8 processors activated (38314.84 BogoMIPS)
[    0.276996] devtmpfs: initialized
[    0.277157] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
[    0.277804] atomic64 test passed for x86-64 platform with CX8 and with SSE
[    0.277832] RTC time: 19:22:00, date: 02/20/13
[    0.277872] NET: Registered protocol family 16
[    0.278010] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.278014] ACPI: bus type pci registered
[    0.278079] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.278084] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.287041] PCI: Using configuration type 1 for base access
[    0.287753] bio: create slab <bio-0> at 0
[    0.287815] ACPI: Added _OSI(Module Device)
[    0.287817] ACPI: Added _OSI(Processor Device)
[    0.287819] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.287822] ACPI: Added _OSI(Processor Aggregator Device)
[    0.289253] ACPI: EC: Look up EC in DSDT
[    0.290744] ACPI: Executed 1 blocks of module-level executable AML code
[    0.293587] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.294700] ACPI: SSDT 00000000babae018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.295068] ACPI: Dynamic OEM Table Load:
[    0.295071] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.297572] ACPI: SSDT 00000000babafa98 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.297962] ACPI: Dynamic OEM Table Load:
[    0.297965] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.300451] ACPI: SSDT 00000000babadd98 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.300815] ACPI: Dynamic OEM Table Load:
[    0.300818] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.304508] ACPI: Interpreter enabled
[    0.304512] ACPI: (supports S0 S3 S4 S5)
[    0.304531] ACPI: Using IOAPIC for interrupt routing
[    0.390050] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.390213] ACPI: No dock devices found.
[    0.390218] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.390492] \_SB_.PCI0:_OSC invalid UUID
[    0.390493] _OSC request data:1 8 1f 
[    0.390496] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.390934] PCI host bridge to bus 0000:00
[    0.390938] pci_bus 0000:00: busn_res: [bus 00-3e] is inserted under domain [bus 00-ff]
[    0.390940] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.390943] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.390945] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.390948] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.390951] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
[    0.390960] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.390994] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.391023] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.391041] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.391051] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
[    0.391056] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.391060] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    0.391110] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.391132] pci 0000:00:14.0: reg 10: [mem 0xd3700000-0xd370ffff 64bit]
[    0.391207] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.391232] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.391254] pci 0000:00:16.0: reg 10: [mem 0xd3714000-0xd371400f 64bit]
[    0.391330] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.391365] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.391386] pci 0000:00:1a.0: reg 10: [mem 0xd3719000-0xd37193ff]
[    0.391477] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.391505] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.391520] pci 0000:00:1b.0: reg 10: [mem 0xd3710000-0xd3713fff 64bit]
[    0.391589] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.391611] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.391689] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.391715] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.391793] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.391818] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    0.391897] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.391930] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.391950] pci 0000:00:1d.0: reg 10: [mem 0xd3718000-0xd37183ff]
[    0.392040] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.392066] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    0.392192] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.392210] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    0.392217] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    0.392225] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    0.392233] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    0.392240] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    0.392247] pci 0000:00:1f.2: reg 24: [mem 0xd3717000-0xd37177ff]
[    0.392291] pci 0000:00:1f.2: PME# supported from D3hot
[    0.392311] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.392327] pci 0000:00:1f.3: reg 10: [mem 0xd3715000-0xd37150ff 64bit]
[    0.392348] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    0.392396] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-3e]
[    0.392410] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
[    0.392422] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
[    0.392434] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.392446] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.392455] pci 0000:01:00.0: reg 24: [io  0x3000-0x307f]
[    0.392463] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
[    0.394193] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.394200] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.394204] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.394210] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.394273] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-3e]
[    0.394295] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[    0.394322] pci 0000:02:00.0: reg 10: [mem 0xd3600000-0xd363ffff 64bit]
[    0.394337] pci 0000:02:00.0: reg 18: [io  0x2000-0x207f]
[    0.394467] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396197] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.396206] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.396213] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.396277] pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-3e]
[    0.396341] pci 0000:03:00.0: [8086:0891] type 00 class 0x028000
[    0.396387] pci 0000:03:00.0: reg 10: [mem 0xd3500000-0xd3501fff 64bit]
[    0.396615] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.398221] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.398240] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.398288] pci_bus 0000:04: busn_res: [bus 04] is inserted under [bus 00-3e]
[    0.398317] pci 0000:04:00.0: [197b:2392] type 00 class 0x088000
[    0.398345] pci 0000:04:00.0: reg 10: [mem 0xd3403000-0xd34030ff]
[    0.398606] pci 0000:04:00.2: [197b:2391] type 00 class 0x080501
[    0.398633] pci 0000:04:00.2: reg 10: [mem 0xd3402000-0xd34020ff]
[    0.398893] pci 0000:04:00.3: [197b:2393] type 00 class 0x088000
[    0.398920] pci 0000:04:00.3: reg 10: [mem 0xd3401000-0xd34010ff]
[    0.399180] pci 0000:04:00.4: [197b:2394] type 00 class 0x088000
[    0.399207] pci 0000:04:00.4: reg 10: [mem 0xd3400000-0xd34000ff]
[    0.401195] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.401209] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.401247] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.401346] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.401369] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.401393] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
[    0.401437] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
[    0.401504] \_SB_.PCI0:_OSC invalid UUID
[    0.401505] _OSC request data:1 1f 1f 
[    0.401508]  pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.401511]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.404054] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.404095] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.404133] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.404175] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.404215] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.404253] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.404292] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.404331] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.404397] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.404405] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    0.404409] vgaarb: loaded
[    0.404411] vgaarb: bridge control possible 0000:01:00.0
[    0.404412] vgaarb: no bridge control possible 0000:00:02.0
[    0.404467] SCSI subsystem initialized
[    0.404469] ACPI: bus type scsi registered
[    0.404490] libata version 3.00 loaded.
[    0.404505] ACPI: bus type usb registered
[    0.404522] usbcore: registered new interface driver usbfs
[    0.404530] usbcore: registered new interface driver hub
[    0.404544] usbcore: registered new device driver usb
[    0.404583] PCI: Using ACPI for IRQ routing
[    0.406108] PCI: pci_cache_line_size set to 64 bytes
[    0.406249] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.406250] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.406251] e820: reserve RAM buffer [mem 0xb3cdd018-0xb3ffffff]
[    0.406253] e820: reserve RAM buffer [mem 0xb3cee018-0xb3ffffff]
[    0.406254] e820: reserve RAM buffer [mem 0xb3fed000-0xb3ffffff]
[    0.406255] e820: reserve RAM buffer [mem 0xb4db0000-0xb7ffffff]
[    0.406256] e820: reserve RAM buffer [mem 0xba7bf000-0xbbffffff]
[    0.406258] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.406259] e820: reserve RAM buffer [mem 0x23f600000-0x23fffffff]
[    0.406332] NetLabel: Initializing
[    0.406334] NetLabel:  domain hash size = 128
[    0.406336] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.406345] NetLabel:  unlabeled traffic allowed by default
[    0.406384] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.406391] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.409408] Switching to clocksource hpet
[    0.414161] pnp: PnP ACPI init
[    0.414173] ACPI: bus type pnp registered
[    0.414415] pnp 00:00: [bus 00-3e]
[    0.414418] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.414419] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.414421] pnp 00:00: [io  0x0d00-0xffff window]
[    0.414422] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.414423] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    0.414425] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    0.414426] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    0.414427] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    0.414429] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    0.414430] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    0.414433] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    0.414434] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    0.414436] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    0.414437] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    0.414438] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    0.414439] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    0.414441] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.414442] pnp 00:00: [mem 0xbfa00000-0xfeafffff window]
[    0.414444] pnp 00:00: [mem 0x00010000-0x0001ffff window]
[    0.414496] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.414507] pnp 00:01: [io  0x0000-0x001f]
[    0.414508] pnp 00:01: [io  0x0081-0x0091]
[    0.414509] pnp 00:01: [io  0x0093-0x009f]
[    0.414510] pnp 00:01: [io  0x00c0-0x00df]
[    0.414512] pnp 00:01: [dma 4]
[    0.414527] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.414533] pnp 00:02: [mem 0xff010000-0xffffffff]
[    0.414545] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[    0.414609] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[    0.414625] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.414631] pnp 00:04: [io  0x00f0]
[    0.414639] pnp 00:04: [irq 13]
[    0.414654] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.414661] pnp 00:05: [io  0x002e-0x002f]
[    0.414663] pnp 00:05: [io  0x004e-0x004f]
[    0.414664] pnp 00:05: [io  0x0061]
[    0.414665] pnp 00:05: [io  0x0063]
[    0.414666] pnp 00:05: [io  0x0065]
[    0.414667] pnp 00:05: [io  0x0067]
[    0.414669] pnp 00:05: [io  0x0070]
[    0.414670] pnp 00:05: [io  0x0080]
[    0.414671] pnp 00:05: [io  0x0092]
[    0.414672] pnp 00:05: [io  0x00b2-0x00b3]
[    0.414673] pnp 00:05: [io  0x0680-0x069f]
[    0.414675] pnp 00:05: [io  0x1100-0x110f]
[    0.414676] pnp 00:05: [io  0xffff]
[    0.414677] pnp 00:05: [io  0xffff]
[    0.414678] pnp 00:05: [io  0x0400-0x0453]
[    0.414679] pnp 00:05: [io  0x0458-0x047f]
[    0.414681] pnp 00:05: [io  0x0500-0x057f]
[    0.414682] pnp 00:05: [io  0x164e-0x164f]
[    0.414683] pnp 00:05: [io  0xfd60-0xfd63]
[    0.414712] system 00:05: [io  0x0680-0x069f] has been reserved
[    0.414716] system 00:05: [io  0x1100-0x110f] has been reserved
[    0.414719] system 00:05: [io  0xffff] has been reserved
[    0.414721] system 00:05: [io  0xffff] has been reserved
[    0.414724] system 00:05: [io  0x0400-0x0453] has been reserved
[    0.414727] system 00:05: [io  0x0458-0x047f] has been reserved
[    0.414729] system 00:05: [io  0x0500-0x057f] has been reserved
[    0.414732] system 00:05: [io  0x164e-0x164f] has been reserved
[    0.414735] system 00:05: [io  0xfd60-0xfd63] has been reserved
[    0.414738] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.414744] pnp 00:06: [io  0x0070-0x0077]
[    0.414748] pnp 00:06: [irq 8]
[    0.414763] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.414783] pnp 00:07: [io  0x0454-0x0457]
[    0.414806] system 00:07: [io  0x0454-0x0457] has been reserved
[    0.414810] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.414817] pnp 00:08: [io  0x0060]
[    0.414819] pnp 00:08: [io  0x0064]
[    0.414825] pnp 00:08: [irq 1]
[    0.414840] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.414884] pnp 00:09: [irq 12]
[    0.414901] pnp 00:09: Plug and Play ACPI device, IDs SYN073d SYN0700 SYN0002 PNP0f13 (active)
[    0.455518] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
[    0.455521] pnp 00:0a: [mem 0xfed10000-0xfed17fff]
[    0.455522] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
[    0.455523] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
[    0.455525] pnp 00:0a: [mem 0xf0000000-0xf3ffffff]
[    0.455526] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
[    0.455527] pnp 00:0a: [mem 0xfed90000-0xfed93fff]
[    0.455528] pnp 00:0a: [mem 0xff000000-0xff000fff]
[    0.455530] pnp 00:0a: [mem 0xff010000-0xffffffff]
[    0.455531] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
[    0.455532] pnp 00:0a: [mem 0xbfa00000-0xbfa00fff]
[    0.455573] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.455578] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.455581] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.455583] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.455586] system 00:0a: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.455589] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.455592] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.455595] system 00:0a: [mem 0xff000000-0xff000fff] has been reserved
[    0.455598] system 00:0a: [mem 0xff010000-0xffffffff] could not be reserved
[    0.455601] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.455604] system 00:0a: [mem 0xbfa00000-0xbfa00fff] has been reserved
[    0.455608] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.455894] pnp 00:0b: [mem 0x20000000-0x201fffff]
[    0.455896] pnp 00:0b: [mem 0x40004000-0x40004fff]
[    0.455941] system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
[    0.455944] system 00:0b: [mem 0x40004000-0x40004fff] has been reserved
[    0.455948] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.455962] pnp: PnP ACPI: found 12 devices
[    0.455964] ACPI: ACPI bus type pnp unregistered
[    0.461962] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.461999] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
[    0.462002] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.462006] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.462009] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.462013] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.462018] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.462022] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.462028] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.462037] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.462044] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.462053] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.462059] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.462095] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.462097] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.462098] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.462100] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.462101] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.462103] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
[    0.462104] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.462106] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.462107] pci_bus 0000:02: resource 1 [mem 0xd3600000-0xd36fffff]
[    0.462109] pci_bus 0000:03: resource 1 [mem 0xd3500000-0xd35fffff]
[    0.462110] pci_bus 0000:04: resource 1 [mem 0xd3400000-0xd34fffff]
[    0.462143] NET: Registered protocol family 2
[    0.462761] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.463796] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.463907] TCP: Hash tables configured (established 524288 bind 65536)
[    0.463920] TCP: reno registered
[    0.463933] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.463959] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.464042] NET: Registered protocol family 1
[    0.464055] pci 0000:00:02.0: Boot video device
[    1.562762] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.661126] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.661309] PCI: CLS 64 bytes, default 64
[    2.661353] Unpacking initramfs...
[    3.148094] Freeing initrd memory: 30796k freed
[    3.151733] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.151740] software IO TLB [mem 0xaf1c0000-0xb31bffff] (64MB) mapped at [ffff8800af1c0000-ffff8800b31bffff]
[    3.151795] Simple Boot Flag at 0x44 set to 0x1
[    3.154526] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    3.154725] Initialise module verification
[    3.154763] audit: initializing netlink socket (disabled)
[    3.154778] type=2000 audit(1361388123.014:1): initialized
[    3.173690] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.175063] VFS: Disk quotas dquot_6.5.2
[    3.175097] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.175434] msgmni has been set to 15696
[    3.175486] SELinux:  Registering netfilter hooks
[    3.176043] alg: No test for stdrng (krng)
[    3.176050] NET: Registered protocol family 38
[    3.176054] Key type asymmetric registered
[    3.176056] Asymmetric key parser 'x509' registered
[    3.176083] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    3.176106] io scheduler noop registered
[    3.176108] io scheduler deadline registered
[    3.176130] io scheduler cfq registered (default)
[    3.176232] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    3.176419] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.176434] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.176436] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.176800] efifb: probing for efifb
[    3.178028] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009b80000, using 8100k, total 8100k
[    3.178032] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    3.178034] efifb: scrolling: redraw
[    3.178036] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.183509] Console: switching to colour frame buffer device 240x67
[    3.188664] fb0: EFI VGA frame buffer device
[    3.188689] intel_idle: MWAIT substates: 0x21120
[    3.188691] intel_idle: v0.4 model 0x3A
[    3.188692] intel_idle: lapic_timer_reliable_states 0xffffffff
[    3.188760] ACPI: AC Adapter [ACAD] (on-line)
[    3.188854] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input0
[    3.188900] ACPI: Power Button [PWRB]
[    3.188941] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0E:00/input/input1
[    3.188986] ACPI: Sleep Button [SLPB]
[    3.189033] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    3.189085] ACPI: Lid Switch [LID0]
[    3.189125] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.189159] ACPI: Power Button [PWRF]
[    3.189353] ACPI: Requesting acpi_cpufreq
[    3.275379] thermal LNXTHERM:00: registered as thermal_zone0
[    3.275409] ACPI: Thermal Zone [TZ00] (48 C)
[    3.275448] GHES: HEST is not enabled!
[    3.275517] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.316158] ACPI: Battery Slot [BAT1] (battery absent)
[    3.316291] Non-volatile memory driver v1.3
[    3.316312] Linux agpgart interface v0.103
[    3.316845] loop: module loaded
[    3.316901] ahci 0000:00:1f.2: version 3.0
[    3.316955] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    3.316980] ahci: SSS flag set, parallel bus scan disabled
[    3.327157] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    3.327211] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.327249] ahci 0000:00:1f.2: setting latency timer to 64
[    3.331436] scsi0 : ahci
[    3.331507] scsi1 : ahci
[    3.331561] scsi2 : ahci
[    3.331615] scsi3 : ahci
[    3.331669] scsi4 : ahci
[    3.331727] scsi5 : ahci
[    3.331763] ata1: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717100 irq 41
[    3.331799] ata2: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717180 irq 41
[    3.331833] ata3: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717200 irq 41
[    3.331866] ata4: DUMMY
[    3.331879] ata5: DUMMY
[    3.331891] ata6: DUMMY
[    3.331956] libphy: Fixed MDIO Bus: probed
[    3.332027] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.332086] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    3.332089] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    3.333398] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.338564] ehci_hcd 0000:00:1a.0: debug port 2
[    3.339830] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    3.339844] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd3719000
[    3.347106] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.348392] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.349642] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.350895] usb usb1: Product: EHCI Host Controller
[    3.352143] usb usb1: Manufacturer: Linux 3.6.10-4.fc18.x86_64 ehci_hcd
[    3.353403] usb usb1: SerialNumber: 0000:00:1a.0
[    3.354738] hub 1-0:1.0: USB hub found
[    3.355981] hub 1-0:1.0: 2 ports detected
[    3.357259] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.357262] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    3.358523] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.363674] ehci_hcd 0000:00:1d.0: debug port 2
[    3.364923] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    3.364935] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd3718000
[    3.372068] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.373340] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.374578] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.375815] usb usb2: Product: EHCI Host Controller
[    3.377044] usb usb2: Manufacturer: Linux 3.6.10-4.fc18.x86_64 ehci_hcd
[    3.378269] usb usb2: SerialNumber: 0000:00:1d.0
[    3.379569] hub 2-0:1.0: USB hub found
[    3.380789] hub 2-0:1.0: 2 ports detected
[    3.382038] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.383256] uhci_hcd: USB Universal Host Controller Interface driver
[    3.384508] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    3.384511] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.385750] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.387047] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.387059] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3700000
[    3.388286] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[    3.388329] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    3.389503] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.390660] usb usb3: Product: xHCI Host Controller
[    3.391801] usb usb3: Manufacturer: Linux 3.6.10-4.fc18.x86_64 xhci_hcd
[    3.392940] usb usb3: SerialNumber: 0000:00:14.0
[    3.394121] xHCI xhci_add_endpoint called for root hub
[    3.394123] xHCI xhci_check_bandwidth called for root hub
[    3.394139] hub 3-0:1.0: USB hub found
[    3.395259] hub 3-0:1.0: 4 ports detected
[    3.396408] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.397541] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    3.398680] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    3.399808] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.400935] usb usb4: Product: xHCI Host Controller
[    3.402048] usb usb4: Manufacturer: Linux 3.6.10-4.fc18.x86_64 xhci_hcd
[    3.403175] usb usb4: SerialNumber: 0000:00:14.0
[    3.404350] xHCI xhci_add_endpoint called for root hub
[    3.404351] xHCI xhci_check_bandwidth called for root hub
[    3.404366] hub 4-0:1.0: USB hub found
[    3.405495] hub 4-0:1.0: 4 ports detected
[    3.414049] usbcore: registered new interface driver usbserial
[    3.415173] usbcore: registered new interface driver usbserial_generic
[    3.416282] USB Serial support registered for generic
[    3.417374] usbserial: USB Serial Driver core
[    3.418501] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS1] at 0x60,0x64 irq 1,12
[    3.459129] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.460289] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.461502] mousedev: PS/2 mouse device common for all mice
[    3.462837] rtc_cmos 00:06: RTC can wake from S4
[    3.464121] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    3.465326] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    3.466577] device-mapper: uevent: version 1.0.3
[    3.467804] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: dm-devel@redhat.com
[    3.469177] cpuidle: using governor ladder
[    3.470543] cpuidle: using governor menu
[    3.472098] EFI Variables Facility v0.08 2004-May-17
[    3.490026] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.494773] usbcore: registered new interface driver usbhid
[    3.496019] usbhid: USB HID core driver
[    3.497267] drop_monitor: Initializing network drop monitor service
[    3.498576] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.499904] TCP: cubic registered
[    3.501154] Initializing XFRM netlink socket
[    3.502480] NET: Registered protocol family 10
[    3.504110] mip6: Mobile IPv6
[    3.505573] NET: Registered protocol family 17
[    3.507499] PM: Hibernation image not present or could not be loaded.
[    3.507501] Loading module verification certificates
[    3.509987] MODSIGN: Loaded cert 'Fedora kernel signing key: 7686e1f22bbf511e76885be3fb6c7a462be60dda'
[    3.511513] registered taskstats version 1
[    3.513989]   Magic number: 1:317:395
[    3.515378] rtc_cmos 00:06: setting system clock to 2013-02-20 19:22:04 UTC (1361388124)
[    3.635781] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.638816] ata1.00: ATA-9: SanDisk SSD U100 16GB, 10.52.01, max UDMA/133
[    3.641426] ata1.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    3.644363] ata1.00: configured for UDMA/133
[    3.647308] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SSD U100 10.5 PQ: 0 ANSI: 5
[    3.650219] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.650221] sd 0:0:0:0: [sda] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    3.650258] sd 0:0:0:0: [sda] Write Protect is off
[    3.650260] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.650271] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.658702] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    3.667755]  sda: sda1
[    3.670915] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.773059] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.775788] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.778924] hub 1-1:1.0: USB hub found
[    3.781830] hub 1-1:1.0: 6 ports detected
[    3.887384] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    3.967297] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.970367] ata2.00: ATA-8: PLEXTOR PX-256M3, 1.05, max UDMA/133
[    3.973065] ata2.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    3.976147] ata2.00: configured for UDMA/133
[    3.979206] scsi 1:0:0:0: Direct-Access     ATA      PLEXTOR PX-256M3 1.05 PQ: 0 ANSI: 5
[    3.982340] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    3.982419] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.987856] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    3.990660] sd 1:0:0:0: [sdb] Write Protect is off
[    3.993355] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.993398] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.996812]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10
[    4.000813] sd 1:0:0:0: [sdb] Attached SCSI disk
[    4.006699] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    4.009540] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.012695] hub 2-1:1.0: USB hub found
[    4.015685] hub 2-1:1.0: 6 ports detected
[    4.092183] usb 1-1.6: new full-speed USB device number 3 using ehci_hcd
[    4.152004] tsc: Refined TSC clocksource calibration: 2394.560 MHz
[    4.154842] Switching to clocksource tsc
[    4.184018] usb 1-1.6: New USB device found, idVendor=04ca, idProduct=2003
[    4.187205] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.190027] usb 1-1.6: Product: BCM20702A0
[    4.193331] usb 1-1.6: Manufacturer: Broadcom Corp
[    4.196206] usb 1-1.6: SerialNumber: 20689D9D9640
[    4.286802] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.291909] usb 2-1.6: new high-speed USB device number 3 using ehci_hcd
[    4.293512] ata3.00: ATAPI: HL-DT-ST BD-RE BT20N, KV01, max UDMA/133
[    4.297566] ata3.00: configured for UDMA/133
[    4.301707] scsi 2:0:0:0: CD-ROM            HL-DT-ST BD-RE BT20N      KV01 PQ: 0 ANSI: 5
[    4.309852] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.312734] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.315918] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    4.316094] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    4.322111] Freeing unused kernel memory: 1036k freed
[    4.325146] Write protecting the kernel read-only data: 12288k
[    4.336298] Freeing unused kernel memory: 1848k freed
[    4.346435] Freeing unused kernel memory: 1412k freed
[    4.384626] usb 2-1.6: New USB device found, idVendor=04f2, idProduct=b2f1
[    4.387606] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.390458] usb 2-1.6: Product: Lenovo EasyCamera
[    4.393298] usb 2-1.6: Manufacturer: Vimicro Corp.
[    4.419689] systemd[1]: systemd 195 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; fedora)
[    4.422887] systemd[1]: Running in initial RAM disk.
[    4.432882] systemd[1]: No hostname configured.
[    4.433976] systemd[1]: Set hostname to <localhost>.
[    4.435156] systemd[1]: Initializing machine ID from random generator.
[    4.456496] systemd[1]: Starting Encrypted Volumes.
[    4.461992] systemd[1]: Reached target Encrypted Volumes.
[    4.463101] systemd[1]: Starting udev Kernel Socket.
[    4.465288] systemd[1]: Listening on udev Kernel Socket.
[    4.466538] systemd[1]: Starting udev Control Socket.
[    4.468835] systemd[1]: Listening on udev Control Socket.
[    4.469869] systemd[1]: Starting Journal Socket.
[    4.472038] systemd[1]: Listening on Journal Socket.
[    4.473074] systemd[1]: Starting dracut cmdline hook...
[    4.496982] systemd[1]: Started Load Kernel Modules.
[    4.500297] systemd[1]: Starting Journal Service...
[    4.533581] systemd[1]: Started Journal Service.
[    4.536349] systemd[1]: Starting Sockets.
[    4.541590] systemd[1]: Reached target Sockets.
[    4.542817] systemd[1]: Starting Swap.
[    4.545175] systemd[1]: Reached target Swap.
[    4.546169] systemd[1]: Starting Local File Systems.
[    4.548200] systemd[1]: Reached target Local File Systems.
[    4.718441] RPC: Registered named UNIX socket transport module.
[    4.720962] RPC: Registered udp transport module.
[    4.722667] RPC: Registered tcp transport module.
[    4.723621] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    4.805892] systemd-udevd[218]: starting version 195
[    5.010253] sdhci: Secure Digital Host Controller Interface driver
[    5.011456] sdhci: Copyright(c) Pierre Ossman
[    5.012789] [drm] Initialized drm 1.1.0 20060810
[    5.015474] sdhci-pci 0000:04:00.0: SDHCI controller found [197b:2392] (rev 30)
[    5.016623] Registered led device: mmc0::
[    5.019366] wmi: Mapper loaded
[    5.025257] [drm:drm_pci_agp_init] *ERROR* Cannot initialize the agpgart module.
[    5.026329] DRM: Fill_in_dev failed.
[    5.032771] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.033897] [drm] nouveau 0000:01:00.0: Detected an NVe0 generation card (0x0e7140a2)
[    5.036785] [drm] nouveau 0000:01:00.0: acceleration disabled by default, pass noaccel=0 to force enable
[    5.037786] checking generic (e0000000 7e9000) vs hw (c0000000 10000000)
[    5.037787] checking generic (e0000000 7e9000) vs hw (d0000000 2000000)
[    5.040575] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
[    5.041729] sdhci-pci 0000:04:00.2: SDHCI controller found [197b:2391] (rev 30)
[    5.042905] sdhci-pci 0000:04:00.2: Refusing to bind to secondary interface.
[    5.043242] [drm] nouveau 0000:01:00.0: Checking PRAMIN for VBIOS
[    5.091289] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.091289] [drm] nouveau 0000:01:00.0: Checking PROM for VBIOS
[    5.091360] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.091360] [drm] nouveau 0000:01:00.0: Checking ACPI for VBIOS
[    5.091361] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.091361] [drm] nouveau 0000:01:00.0: Checking PCIROM for VBIOS
[    5.091362] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.091362] [drm] nouveau 0000:01:00.0: No valid VBIOS image found
[    5.191599] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id: 1087391
[    5.194584] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    5.301546] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    5.302647] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    5.765815] systemd-journald[127]: Received SIGTERM
[    5.823066] type=1404 audit(1361388126.810:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    5.865590] SELinux: 2048 avtab hash slots, 94720 rules.
[    5.875321] SELinux: 2048 avtab hash slots, 94720 rules.
[    4.319206] ACPI: Invalid Power Resource to register!
[    5.958733] SELinux:  9 users, 15 roles, 4367 types, 239 bools
[    5.958735] , 1 sens, 1024 cats
[    5.959691] SELinux:  83 classes, 94720 rules
[    5.962351] SELinux:  Completing initialization.
[    5.962353] SELinux:  Setting up existing superblocks.
[    5.962357] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    5.962360] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[    5.962365] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[    5.962368] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[    5.962373] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.962381] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[    5.962902] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[    5.962904] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[    5.963292] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[    5.963295] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[    5.963297] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[    5.963306] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    5.963309] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[    5.963313] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[    5.963319] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    5.963528] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[    5.963530] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.963533] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.963585] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.963602] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.963604] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.963607] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.963615] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.963619] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.963621] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.963622] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.963624] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.963627] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.963630] SELinux: initialized (dev rpc_pipefs, type rpc_pipefs), uses genfs_contexts
[    5.963636] SELinux: initialized (dev sdb9, type ext4), uses xattr
[    5.980411] type=1403 audit(1361388126.968:3): policy loaded auid=4294967295 ses=4294967295
[    5.990821] systemd[1]: Successfully loaded SELinux policy in 168ms 480us.
[    6.010361] SELinux: initialized (dev efivarfs, type efivarfs), uses genfs_contexts
[    6.024251] systemd[1]: Relabelled /dev and /run in 13ms 457us.
[    6.215799] systemd-readahead[411]: Bumped block_nr parameter of 8:16 to 20480. This is a temporary hack and should be removed one day.
[    6.271167] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
[    6.271631] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.352909] systemd-udevd[419]: starting version 197
[    6.364332] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.456051] mei 0000:00:16.0: setting latency timer to 64
[    6.456108] mei 0000:00:16.0: irq 43 for MSI/MSI-X
[    6.461786] cfg80211: Calling CRDA to update world regulatory domain
[    6.464175] mei 0000:00:16.0: wd: failed to find the client
[    6.470169] input: Ideapad extra buttons as /devices/platform/ideapad/input/input6
[    6.471628] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120711/utaddress-251)
[    6.473064] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.474600] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[    6.476026] Copyright(c) 2003-2012 Intel Corporation
[    6.478006] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    6.479540] iwlwifi 0000:03:00.0: pci_resource_len = 0x00002000
[    6.481073] iwlwifi 0000:03:00.0: pci_resource_base = ffffc9000007c000
[    6.482544] iwlwifi 0000:03:00.0: HW Revision ID = 0xC4
[    6.483985] Linux media interface: v0.10
[    6.484905] iwlwifi 0000:03:00.0: irq 44 for MSI/MSI-X
[    6.485401] Bluetooth: Core ver 2.16
[    6.485416] NET: Registered protocol family 31
[    6.485417] Bluetooth: HCI device and connection manager initialized
[    6.485418] Bluetooth: HCI socket layer initialized
[    6.485418] Bluetooth: L2CAP socket layer initialized
[    6.485422] Bluetooth: SCO socket layer initialized
[    6.487219] EXT4-fs (sdb9): re-mounted. Opts: (null)
[    6.490321] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
[    6.490324] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.490334] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20120711/utaddress-251)
[    6.490337] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20120711/utaddress-251)
[    6.490337] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.490338] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.496811] Linux video capture interface: v2.00
[    6.507068] usbcore: registered new interface driver btusb
[    6.517216] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2f1)
[    6.520504] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input7
[    6.521896] usbcore: registered new interface driver uvcvideo
[    6.521903] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[    6.523148] USB Video Class driver (1.1.1)
[    6.525059] iTCO_vendor_support: vendor-support=0
[    6.527502] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    6.527533] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    6.527760] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.530236] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1
[    6.530881] cfg80211: World regulatory domain updated:
[    6.530882] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    6.530883] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.530884] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.530884] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.530885] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.530885] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.533925] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    6.534360] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    6.534785] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    6.535190] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    6.535948] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    6.536162] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    6.536607] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    6.537033] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.538138] tun: Universal TUN/TAP device driver, 1.6
[    6.538139] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    6.557857] iwldvm: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:d
[    6.558932] iwldvm: Copyright(c) 2003-2012 Intel Corporation
[    6.560051] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
[    6.561287] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[    6.562389] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    6.563508] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[    6.564567] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled
[    6.565617] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 2200 BGN, REV=0x104
[    6.566820] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    6.584351] iwlwifi 0000:03:00.0: device EEPROM VER=0x81c, CALIB=0x6
[    6.585340] iwlwifi 0000:03:00.0: Device SKU: 0x150
[    6.586303] iwlwifi 0000:03:00.0: Valid Tx ant: 0x3, Valid Rx ant: 0x3
[    6.587370] Registered led device: phy0-led
[    6.591439] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    6.595677] cfg80211: Calling CRDA for country: US
[    6.598492] cfg80211: Regulatory domain changed to country: US
[    6.598493] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    6.598495] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.598496] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    6.598498] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.598499] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.598500] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.598502] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    6.598503] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[    6.777151] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[    6.984281] Adding 8044540k swap on /dev/sdb8.  Priority:-1 extents:1 across:8044540k SS
[    7.047945] ALSA sound/pci/hda/patch_realtek.c:1273 SKU: Nid=0x1d sku_cfg=0x4015822d
[    7.047947] ALSA sound/pci/hda/patch_realtek.c:1275 SKU: port_connectivity=0x1
[    7.047948] ALSA sound/pci/hda/patch_realtek.c:1276 SKU: enable_pcbeep=0x1
[    7.047949] ALSA sound/pci/hda/patch_realtek.c:1277 SKU: check_sum=0x00000005
[    7.047950] ALSA sound/pci/hda/patch_realtek.c:1278 SKU: customization=0x00000082
[    7.047951] ALSA sound/pci/hda/patch_realtek.c:1279 SKU: external_amp=0x5
[    7.047952] ALSA sound/pci/hda/patch_realtek.c:1280 SKU: platform_type=0x1
[    7.047952] ALSA sound/pci/hda/patch_realtek.c:1281 SKU: swap=0x0
[    7.047953] ALSA sound/pci/hda/patch_realtek.c:1282 SKU: override=0x1
[    7.047957] ALSA sound/pci/hda/hda_auto_parser.c:322 autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    7.047958] ALSA sound/pci/hda/hda_auto_parser.c:326    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.047959] ALSA sound/pci/hda/hda_auto_parser.c:330    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    7.047960] ALSA sound/pci/hda/hda_auto_parser.c:331    mono: mono_out=0x0
[    7.047961] ALSA sound/pci/hda/hda_auto_parser.c:334    dig-out=0x1e/0x0
[    7.047961] ALSA sound/pci/hda/hda_auto_parser.c:335    inputs:
[    7.047963] ALSA sound/pci/hda/hda_auto_parser.c:339      Internal Mic=0x12
[    7.047964] ALSA sound/pci/hda/hda_auto_parser.c:339      Mic=0x18
[    7.049193] ALSA sound/pci/hda/patch_realtek.c:1336 realtek: No valid SSID, checking pincfg 0x4015822d for NID 0x1d
[    7.049194] ALSA sound/pci/hda/patch_realtek.c:1352 realtek: Enabling init ASM_ID=0x822d CODEC_ID=10ec0269
[    7.061532] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[    7.063624] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    7.063673] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    7.096203] SELinux: initialized (dev sdb2, type vfat), uses genfs_contexts
[    7.189334] EXT4-fs (sdb10): mounted filesystem with ordered data mode. Opts: (null)
[    7.192114] SELinux: initialized (dev sdb10, type ext4), uses xattr
[    7.235381] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
[    7.236502] SELinux: initialized (dev sdb7, type ext4), uses xattr
[    7.300504] SELinux: initialized (dev sdb6, type vfat), uses genfs_contexts
[    7.964651] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    7.965605] Bluetooth: BNEP filters: protocol multicast
[    7.968439] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    7.969974] Bluetooth: RFCOMM TTY layer initialized
[    7.970874] Bluetooth: RFCOMM socket layer initialized
[    7.971724] Bluetooth: RFCOMM ver 1.11
[    7.983995] Ebtables v2.0 registered
[    8.048847] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    8.221742] Loading iSCSI transport class v2.0-870.
[    8.221943] systemd-journald[582]: Received SIGUSR1
[    8.234521] iscsi: registered transport (tcp)
[    8.255323] iscsi: registered transport (iser)
[    8.263676] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[    8.264791] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[    8.275104] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[    8.276044] iscsi: registered transport (cxgb3i)
[    8.276810] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.284238] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    8.291193] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[    8.292083] iscsi: registered transport (cxgb4i)
[    8.299702] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.12 (June 29, 2012)
[    8.543573] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.551007] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    8.628629] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.636367] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Apr 25, 2012)
[    8.636388] iscsi: registered transport (bnx2i)
[    8.642938] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    8.643286] hid-generic 0005:046D:B002.0001: unknown main item tag 0x0
[    8.643328] input: Bluetooth Travel Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/bluetooth/hci0/hci0:11/input11
[    8.643667] hid-generic 0005:046D:B002.0001: input,hidraw0: BLUETOOTH HID v48.09 Mouse [Bluetooth Travel Mouse] on 20:68:9D:9D:96:40
[    8.645880] iscsi: registered transport (be2iscsi)
[    9.088776] wlan0: authenticate with bc:ae:c5:c3:07:c4
[    9.095519] wlan0: send auth to bc:ae:c5:c3:07:c4 (try 1/3)
[    9.097414] wlan0: authenticated
[    9.098548] wlan0: associate with bc:ae:c5:c3:07:c4 (try 1/3)
[    9.102003] wlan0: RX AssocResp from bc:ae:c5:c3:07:c4 (capab=0x411 status=0 aid=1)
[    9.103858] wlan0: associated
[    9.103894] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   16.836897] fuse init (API version 7.20)
[   16.844203] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[   16.857371] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
[   19.590729] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 19:29           ` Chris Li
@ 2013-02-20 19:33             ` Chris Li
  2013-02-20 19:37               ` Chris Li
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-02-20 19:33 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown

On Wed, Feb 20, 2013 at 11:29 AM, Chris Li <lkml@chrisli.org> wrote:
>
> Here it is the dmesg from the FC18 live CD kernel. No black screen.

Sorry please ignore my previous dmesg. It was boot with i915.modeset=0.
I am doing another one without that line.

Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 19:33             ` Chris Li
@ 2013-02-20 19:37               ` Chris Li
  0 siblings, 0 replies; 29+ messages in thread
From: Chris Li @ 2013-02-20 19:37 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown

[-- Attachment #1: Type: text/plain, Size: 504 bytes --]

On Wed, Feb 20, 2013 at 11:33 AM, Chris Li <lkml@chrisli.org> wrote:
> On Wed, Feb 20, 2013 at 11:29 AM, Chris Li <lkml@chrisli.org> wrote:
>>
>> Here it is the dmesg from the FC18 live CD kernel. No black screen.
>
> Sorry please ignore my previous dmesg. It was boot with i915.modeset=0.
> I am doing another one without that line.

This is the kernel dmesg without "i915.modeset=0".
It has the same print out of transfer vgaarb to Nvidia as well.
No black screen on this version of the kernel.

Chris

[-- Attachment #2: dmesg.3.6.10 --]
[-- Type: application/octet-stream, Size: 82090 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.6.10-4.fc18.x86_64 (mockbuild@) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #1 SMP Tue Dec 11 18:01:27 UTC 2012
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.6.10-4.fc18.x86_64 root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] 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-0x00000000b3fecfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] e820: update [mem 0xb3cee018-0xb3d03e57] usable ==> usable
[    0.000000] e820: update [mem 0xb3cdd018-0xb3ced057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040005000-0x00000000b3cdd017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cdd018-0x00000000b3ced057] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3ced058-0x00000000b3cee017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cee018-0x00000000b3d03e57] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3d03e58-0x00000000b3fecfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xbaffe000  ACPI 2.0=0xbaffe014  SMBIOS=0xbaebef98 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000004000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000004000-0x000000000000e000) (0MB)
[    0.000000] efi: mem03: type=3, attr=0xf, range=[0x000000000000e000-0x0000000000010000) (0MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000010000-0x000000000002e000) (0MB)
[    0.000000] efi: mem05: type=3, attr=0xf, range=[0x000000000002e000-0x000000000002f000) (0MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x000000000002f000-0x0000000000030000) (0MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000000030000-0x000000000006f000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem10: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x0000000001000000-0x00000000023c7000) (19MB)
[    0.000000] efi: mem13: type=7, attr=0xf, range=[0x00000000023c7000-0x0000000020000000) (476MB)
[    0.000000] efi: mem14: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000020200000-0x000000003e1e8000) (479MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000003e1e8000-0x0000000040000000) (30MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000040000000-0x0000000040004000) (0MB)
[    0.000000] efi: mem18: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000040005000-0x000000008634e000) (1123MB)
[    0.000000] efi: mem20: type=2, attr=0xf, range=[0x000000008634e000-0x00000000b31c0000) (718MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000b31c0000-0x00000000b31e0000) (0MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000b31e0000-0x00000000b3a7e000) (8MB)
[    0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000b3a7e000-0x00000000b3b4d000) (0MB)
[    0.000000] efi: mem24: type=1, attr=0xf, range=[0x00000000b3b4d000-0x00000000b3c84000) (1MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000b3c84000-0x00000000b3cdd000) (0MB)
[    0.000000] efi: mem26: type=2, attr=0xf, range=[0x00000000b3cdd000-0x00000000b3dd3000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000b3dd3000-0x00000000b3fed000) (2MB)
[    0.000000] efi: mem28: type=0, attr=0xf, range=[0x00000000b3fed000-0x00000000b4d6e000) (13MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000b4d6e000-0x00000000b4db0000) (0MB)
[    0.000000] efi: mem30: type=0, attr=0xf, range=[0x00000000b4db0000-0x00000000b61b0000) (20MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b61b0000-0x00000000b61bd000) (0MB)
[    0.000000] efi: mem32: type=2, attr=0xf, range=[0x00000000b61bd000-0x00000000b61bf000) (0MB)
[    0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b61bf000-0x00000000b6279000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b6279000-0x00000000b81aa000) (31MB)
[    0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b81aa000-0x00000000b81b2000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b81b2000-0x00000000b81b4000) (0MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b81b4000-0x00000000b81b6000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b81b6000-0x00000000b81e6000) (0MB)
[    0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b81e6000-0x00000000b81ec000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b81ec000-0x00000000b81ed000) (0MB)
[    0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b81ed000-0x00000000b81ee000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b81ee000-0x00000000b81f8000) (0MB)
[    0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b81f8000-0x00000000b81f9000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b81f9000-0x00000000b821f000) (0MB)
[    0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b821f000-0x00000000b8221000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b8221000-0x00000000b83a0000) (1MB)
[    0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b83a0000-0x00000000b83a4000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b83a4000-0x00000000b83a7000) (0MB)
[    0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b83a7000-0x00000000b83a8000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b83a8000-0x00000000b83f8000) (0MB)
[    0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b83f8000-0x00000000b8420000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b8420000-0x00000000b859e000) (1MB)
[    0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b859e000-0x00000000b85a0000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b85a0000-0x00000000b85ba000) (0MB)
[    0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b85ba000-0x00000000b85bb000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b85bb000-0x00000000b87e8000) (2MB)
[    0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b87e8000-0x00000000b87f8000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b87f8000-0x00000000ba3bf000) (27MB)
[    0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000ba3bf000-0x00000000ba495000) (0MB)
[    0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000ba495000-0x00000000ba7bf000) (3MB)
[    0.000000] efi: mem61: type=5, attr=0x800000000000000f, range=[0x00000000ba7bf000-0x00000000ba880000) (0MB)
[    0.000000] efi: mem62: type=6, attr=0x800000000000000f, range=[0x00000000ba880000-0x00000000ba881000) (0MB)
[    0.000000] efi: mem63: type=5, attr=0x800000000000000f, range=[0x00000000ba881000-0x00000000ba8b0000) (0MB)
[    0.000000] efi: mem64: type=6, attr=0x800000000000000f, range=[0x00000000ba8b0000-0x00000000ba8b1000) (0MB)
[    0.000000] efi: mem65: type=5, attr=0x800000000000000f, range=[0x00000000ba8b1000-0x00000000ba8b3000) (0MB)
[    0.000000] efi: mem66: type=6, attr=0x800000000000000f, range=[0x00000000ba8b3000-0x00000000ba8b4000) (0MB)
[    0.000000] efi: mem67: type=5, attr=0x800000000000000f, range=[0x00000000ba8b4000-0x00000000ba8cc000) (0MB)
[    0.000000] efi: mem68: type=6, attr=0x800000000000000f, range=[0x00000000ba8cc000-0x00000000ba8cd000) (0MB)
[    0.000000] efi: mem69: type=5, attr=0x800000000000000f, range=[0x00000000ba8cd000-0x00000000ba8d2000) (0MB)
[    0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000ba8d2000-0x00000000ba8d3000) (0MB)
[    0.000000] efi: mem71: type=5, attr=0x800000000000000f, range=[0x00000000ba8d3000-0x00000000ba8e1000) (0MB)
[    0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000ba8e1000-0x00000000ba8e2000) (0MB)
[    0.000000] efi: mem73: type=5, attr=0x800000000000000f, range=[0x00000000ba8e2000-0x00000000ba8f2000) (0MB)
[    0.000000] efi: mem74: type=6, attr=0x800000000000000f, range=[0x00000000ba8f2000-0x00000000ba937000) (0MB)
[    0.000000] efi: mem75: type=5, attr=0x800000000000000f, range=[0x00000000ba937000-0x00000000ba9bf000) (0MB)
[    0.000000] efi: mem76: type=6, attr=0x800000000000000f, range=[0x00000000ba9bf000-0x00000000baabf000) (1MB)
[    0.000000] efi: mem77: type=0, attr=0xf, range=[0x00000000baabf000-0x00000000baebf000) (4MB)
[    0.000000] efi: mem78: type=10, attr=0xf, range=[0x00000000baebf000-0x00000000bafbf000) (1MB)
[    0.000000] efi: mem79: type=9, attr=0xf, range=[0x00000000bafbf000-0x00000000bafff000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000bafff000-0x00000000bb000000) (0MB)
[    0.000000] efi: mem81: type=7, attr=0xf, range=[0x0000000100000000-0x000000023f600000) (5110MB)
[    0.000000] efi: mem82: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem83: type=0, attr=0x0, range=[0x00000000bb000000-0x00000000bfa00000) (74MB)
[    0.000000] efi: mem84: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem85: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem86: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem87: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem88: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem89: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem90: type=11, attr=0x8000000000000000, range=[0x00000000ffb80000-0x0000000100000000) (4MB)
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: LENOVO 20132/INVALID, BIOS 5DCN90WW(V8.01) 10/11/2012
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x23f600 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-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   5 base 100000000 mask F00000000 write-back
[    0.000000]   6 base 200000000 mask FC0000000 write-back
[    0.000000]   7 base 23F600000 mask FFFE00000 uncachable
[    0.000000]   8 base 23F800000 mask FFF800000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [ffff8800000fe1c0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000028000] 28000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xbaffffff]
[    0.000000]  [mem 0x00000000-0xbaffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0xbaffffff @ [mem 0x1fffc000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x23f5fffff]
[    0.000000]  [mem 0x100000000-0x23f5fffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x23f5fffff @ [mem 0xba48f000-0xba494fff]
[    0.000000] RAMDISK: [mem 0x3e1e8000-0x3fffafff]
[    0.000000] ACPI: RSDP 00000000baffe014 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000baffe210 000AC (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 00000000baffa000 0010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DSDT 00000000bafec000 0A638 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000bafbb000 00040
[    0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 00000000baffc000 00236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! 00000000baffb000 000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 00000000baff9000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000baff8000 0008C (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000baff7000 0003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafeb000 006FE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000bafe9000 00028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT 00000000bafe7000 00034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DBGP 00000000bafe6000 00034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 00000000bafe4000 00044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MSDM 00000000bafe3000 00055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe2000 00926 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafdd000 02333 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BGRT 00000000bafe0000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x23f5fffff]
[    0.000000]   NODE_DATA [mem 0x23f5ec000-0x23f5fffff]
[    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236c00000-ffff88023ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x23f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xb3fecfff]
[    0.000000]   node   0: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]   node   0: [mem 0xb61b0000-0xba7befff]
[    0.000000]   node   0: [mem 0xbafff000-0xbaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x23f5fffff]
[    0.000000] On node 0 totalpages: 2062774
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 96 pages reserved
[    0.000000]   DMA zone: 3800 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 16320 pages used for memmap
[    0.000000]   DMA32 zone: 734334 pages, LIFO batch:31
[    0.000000]   Normal zone: 20440 pages used for memmap
[    0.000000]   Normal zone: 1287720 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 0000000000088000 - 00000000000c0000
[    0.000000] PM: Registered nosave memory: 00000000000c0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000b3cdd000 - 00000000b3cde000
[    0.000000] PM: Registered nosave memory: 00000000b3ced000 - 00000000b3cee000
[    0.000000] PM: Registered nosave memory: 00000000b3cee000 - 00000000b3cef000
[    0.000000] PM: Registered nosave memory: 00000000b3d03000 - 00000000b3d04000
[    0.000000] PM: Registered nosave memory: 00000000b3fed000 - 00000000b4d6e000
[    0.000000] PM: Registered nosave memory: 00000000b4db0000 - 00000000b61b0000
[    0.000000] PM: Registered nosave memory: 00000000ba7bf000 - 00000000baebf000
[    0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
[    0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
[    0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
[    0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
[    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[    0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[    0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
[    0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
[    0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023f200000 s84288 r8192 d22208 u262144
[    0.000000] pcpu-alloc: s84288 r8192 d22208 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2025854
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.6.10-4.fc18.x86_64 root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 7933156k/9426944k available (6334k kernel code, 1175848k absent, 317940k reserved, 6870k data, 1036k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:8448 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.001000] tsc: Detected 2394.753 MHz processor
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.50 BogoMIPS (lpj=2394753)
[    0.000008] pid_max: default: 32768 minimum: 301
[    0.024178] Security Framework initialized
[    0.024188] SELinux:  Initializing.
[    0.024197] SELinux:  Starting in permissive mode
[    0.024795] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.026870] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.027770] Mount-cache hash table entries: 256
[    0.027936] Initializing cgroup subsys cpuacct
[    0.027940] Initializing cgroup subsys memory
[    0.027950] Initializing cgroup subsys devices
[    0.027953] Initializing cgroup subsys freezer
[    0.027956] Initializing cgroup subsys net_cls
[    0.027958] Initializing cgroup subsys blkio
[    0.027960] Initializing cgroup subsys perf_event
[    0.027987] CPU: Physical Processor ID: 0
[    0.027989] CPU: Processor Core ID: 0
[    0.027994] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.028380] mce: CPU supports 9 MCE banks
[    0.028394] CPU0: Thermal monitoring enabled (TM1)
[    0.028401] process: using mwait in idle threads
[    0.028406] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift is 0x1
[    0.029527] ACPI: Core revision 20120711
[    0.051562] ftrace: allocating 23489 entries in 92 pages
[    0.062931] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.072921] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz stepping 09
[    0.174104] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[    0.174111] ... version:                3
[    0.174113] ... bit width:              48
[    0.174115] ... generic registers:      4
[    0.174116] ... value mask:             0000ffffffffffff
[    0.174118] ... max period:             000000007fffffff
[    0.174120] ... fixed-purpose events:   3
[    0.174122] ... event mask:             000000070000000f
[    0.174634] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.174728] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.270576] Brought up 8 CPUs
[    0.270581] smpboot: Total of 8 processors activated (38316.04 BogoMIPS)
[    0.277686] devtmpfs: initialized
[    0.277840] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
[    0.278489] atomic64 test passed for x86-64 platform with CX8 and with SSE
[    0.278517] RTC time: 19:33:43, date: 02/20/13
[    0.278557] NET: Registered protocol family 16
[    0.278687] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.278690] ACPI: bus type pci registered
[    0.278752] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.278757] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.287698] PCI: Using configuration type 1 for base access
[    0.288406] bio: create slab <bio-0> at 0
[    0.288469] ACPI: Added _OSI(Module Device)
[    0.288472] ACPI: Added _OSI(Processor Device)
[    0.288474] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.288476] ACPI: Added _OSI(Processor Aggregator Device)
[    0.289906] ACPI: EC: Look up EC in DSDT
[    0.291396] ACPI: Executed 1 blocks of module-level executable AML code
[    0.294235] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.295352] ACPI: SSDT 00000000babae018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.295721] ACPI: Dynamic OEM Table Load:
[    0.295724] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.298145] ACPI: SSDT 00000000babafa98 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.298536] ACPI: Dynamic OEM Table Load:
[    0.298539] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.301023] ACPI: SSDT 00000000babadd98 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.301387] ACPI: Dynamic OEM Table Load:
[    0.301389] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.305080] ACPI: Interpreter enabled
[    0.305083] ACPI: (supports S0 S3 S4 S5)
[    0.305103] ACPI: Using IOAPIC for interrupt routing
[    0.390626] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.390790] ACPI: No dock devices found.
[    0.390794] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.391066] \_SB_.PCI0:_OSC invalid UUID
[    0.391068] _OSC request data:1 8 1f 
[    0.391071] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.391511] PCI host bridge to bus 0000:00
[    0.391515] pci_bus 0000:00: busn_res: [bus 00-3e] is inserted under domain [bus 00-ff]
[    0.391517] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.391520] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.391522] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.391525] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.391528] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
[    0.391537] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.391571] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.391600] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.391618] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.391628] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
[    0.391634] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.391638] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    0.391687] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.391709] pci 0000:00:14.0: reg 10: [mem 0xd3700000-0xd370ffff 64bit]
[    0.391783] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.391806] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.391828] pci 0000:00:16.0: reg 10: [mem 0xd3714000-0xd371400f 64bit]
[    0.391904] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.391939] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.391959] pci 0000:00:1a.0: reg 10: [mem 0xd3719000-0xd37193ff]
[    0.392049] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.392075] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.392090] pci 0000:00:1b.0: reg 10: [mem 0xd3710000-0xd3713fff 64bit]
[    0.392157] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.392181] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.392259] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.392283] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.392360] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.392386] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    0.392465] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.392498] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.392518] pci 0000:00:1d.0: reg 10: [mem 0xd3718000-0xd37183ff]
[    0.392608] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.392634] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    0.392760] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.392778] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    0.392786] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    0.392794] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    0.392803] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    0.392811] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    0.392819] pci 0000:00:1f.2: reg 24: [mem 0xd3717000-0xd37177ff]
[    0.392864] pci 0000:00:1f.2: PME# supported from D3hot
[    0.392883] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.392899] pci 0000:00:1f.3: reg 10: [mem 0xd3715000-0xd37150ff 64bit]
[    0.392919] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    0.392965] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-3e]
[    0.392979] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
[    0.392991] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
[    0.393003] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.393016] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.393024] pci 0000:01:00.0: reg 24: [io  0x3000-0x307f]
[    0.393032] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
[    0.394764] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.394772] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.394776] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.394782] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.394844] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-3e]
[    0.394865] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[    0.394893] pci 0000:02:00.0: reg 10: [mem 0xd3600000-0xd363ffff 64bit]
[    0.394907] pci 0000:02:00.0: reg 18: [io  0x2000-0x207f]
[    0.395036] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.396767] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.396776] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.396783] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.396848] pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-3e]
[    0.396912] pci 0000:03:00.0: [8086:0891] type 00 class 0x028000
[    0.396958] pci 0000:03:00.0: reg 10: [mem 0xd3500000-0xd3501fff 64bit]
[    0.397188] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.398792] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.398811] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.398859] pci_bus 0000:04: busn_res: [bus 04] is inserted under [bus 00-3e]
[    0.398887] pci 0000:04:00.0: [197b:2392] type 00 class 0x088000
[    0.398915] pci 0000:04:00.0: reg 10: [mem 0xd3403000-0xd34030ff]
[    0.399179] pci 0000:04:00.2: [197b:2391] type 00 class 0x080501
[    0.399206] pci 0000:04:00.2: reg 10: [mem 0xd3402000-0xd34020ff]
[    0.399463] pci 0000:04:00.3: [197b:2393] type 00 class 0x088000
[    0.399491] pci 0000:04:00.3: reg 10: [mem 0xd3401000-0xd34010ff]
[    0.399751] pci 0000:04:00.4: [197b:2394] type 00 class 0x088000
[    0.399779] pci 0000:04:00.4: reg 10: [mem 0xd3400000-0xd34000ff]
[    0.401766] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.401779] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.401817] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.401935] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.401958] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.401984] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
[    0.402027] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
[    0.402096] \_SB_.PCI0:_OSC invalid UUID
[    0.402097] _OSC request data:1 1f 1f 
[    0.402100]  pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.402103]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.404642] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.404682] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.404720] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.404762] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.404801] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.404840] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.404878] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.404917] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.404981] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.404989] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    0.404993] vgaarb: loaded
[    0.404994] vgaarb: bridge control possible 0000:01:00.0
[    0.404996] vgaarb: no bridge control possible 0000:00:02.0
[    0.405050] SCSI subsystem initialized
[    0.405053] ACPI: bus type scsi registered
[    0.405074] libata version 3.00 loaded.
[    0.405089] ACPI: bus type usb registered
[    0.405106] usbcore: registered new interface driver usbfs
[    0.405114] usbcore: registered new interface driver hub
[    0.405128] usbcore: registered new device driver usb
[    0.405166] PCI: Using ACPI for IRQ routing
[    0.406691] PCI: pci_cache_line_size set to 64 bytes
[    0.406831] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.406832] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.406833] e820: reserve RAM buffer [mem 0xb3cdd018-0xb3ffffff]
[    0.406835] e820: reserve RAM buffer [mem 0xb3cee018-0xb3ffffff]
[    0.406836] e820: reserve RAM buffer [mem 0xb3fed000-0xb3ffffff]
[    0.406837] e820: reserve RAM buffer [mem 0xb4db0000-0xb7ffffff]
[    0.406838] e820: reserve RAM buffer [mem 0xba7bf000-0xbbffffff]
[    0.406840] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.406841] e820: reserve RAM buffer [mem 0x23f600000-0x23fffffff]
[    0.406911] NetLabel: Initializing
[    0.406914] NetLabel:  domain hash size = 128
[    0.406915] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.406925] NetLabel:  unlabeled traffic allowed by default
[    0.406960] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.406966] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.409983] Switching to clocksource hpet
[    0.414736] pnp: PnP ACPI init
[    0.414748] ACPI: bus type pnp registered
[    0.414991] pnp 00:00: [bus 00-3e]
[    0.414993] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.414995] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.414996] pnp 00:00: [io  0x0d00-0xffff window]
[    0.414998] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.414999] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    0.415001] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    0.415002] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    0.415003] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    0.415005] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    0.415006] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    0.415009] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    0.415010] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    0.415012] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    0.415013] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    0.415014] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    0.415016] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    0.415017] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.415018] pnp 00:00: [mem 0xbfa00000-0xfeafffff window]
[    0.415020] pnp 00:00: [mem 0x00010000-0x0001ffff window]
[    0.415071] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.415081] pnp 00:01: [io  0x0000-0x001f]
[    0.415083] pnp 00:01: [io  0x0081-0x0091]
[    0.415084] pnp 00:01: [io  0x0093-0x009f]
[    0.415085] pnp 00:01: [io  0x00c0-0x00df]
[    0.415087] pnp 00:01: [dma 4]
[    0.415101] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.415107] pnp 00:02: [mem 0xff010000-0xffffffff]
[    0.415120] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[    0.415183] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[    0.415198] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.415205] pnp 00:04: [io  0x00f0]
[    0.415212] pnp 00:04: [irq 13]
[    0.415226] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.415234] pnp 00:05: [io  0x002e-0x002f]
[    0.415236] pnp 00:05: [io  0x004e-0x004f]
[    0.415237] pnp 00:05: [io  0x0061]
[    0.415238] pnp 00:05: [io  0x0063]
[    0.415239] pnp 00:05: [io  0x0065]
[    0.415240] pnp 00:05: [io  0x0067]
[    0.415241] pnp 00:05: [io  0x0070]
[    0.415243] pnp 00:05: [io  0x0080]
[    0.415244] pnp 00:05: [io  0x0092]
[    0.415245] pnp 00:05: [io  0x00b2-0x00b3]
[    0.415246] pnp 00:05: [io  0x0680-0x069f]
[    0.415247] pnp 00:05: [io  0x1100-0x110f]
[    0.415249] pnp 00:05: [io  0xffff]
[    0.415250] pnp 00:05: [io  0xffff]
[    0.415251] pnp 00:05: [io  0x0400-0x0453]
[    0.415252] pnp 00:05: [io  0x0458-0x047f]
[    0.415253] pnp 00:05: [io  0x0500-0x057f]
[    0.415255] pnp 00:05: [io  0x164e-0x164f]
[    0.415256] pnp 00:05: [io  0xfd60-0xfd63]
[    0.415285] system 00:05: [io  0x0680-0x069f] has been reserved
[    0.415289] system 00:05: [io  0x1100-0x110f] has been reserved
[    0.415292] system 00:05: [io  0xffff] has been reserved
[    0.415294] system 00:05: [io  0xffff] has been reserved
[    0.415297] system 00:05: [io  0x0400-0x0453] has been reserved
[    0.415300] system 00:05: [io  0x0458-0x047f] has been reserved
[    0.415302] system 00:05: [io  0x0500-0x057f] has been reserved
[    0.415305] system 00:05: [io  0x164e-0x164f] has been reserved
[    0.415308] system 00:05: [io  0xfd60-0xfd63] has been reserved
[    0.415311] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.415317] pnp 00:06: [io  0x0070-0x0077]
[    0.415322] pnp 00:06: [irq 8]
[    0.415337] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.415356] pnp 00:07: [io  0x0454-0x0457]
[    0.415379] system 00:07: [io  0x0454-0x0457] has been reserved
[    0.415383] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.415390] pnp 00:08: [io  0x0060]
[    0.415392] pnp 00:08: [io  0x0064]
[    0.415397] pnp 00:08: [irq 1]
[    0.415412] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.415456] pnp 00:09: [irq 12]
[    0.415473] pnp 00:09: Plug and Play ACPI device, IDs SYN073d SYN0700 SYN0002 PNP0f13 (active)
[    0.456094] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
[    0.456097] pnp 00:0a: [mem 0xfed10000-0xfed17fff]
[    0.456098] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
[    0.456099] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
[    0.456101] pnp 00:0a: [mem 0xf0000000-0xf3ffffff]
[    0.456102] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
[    0.456103] pnp 00:0a: [mem 0xfed90000-0xfed93fff]
[    0.456104] pnp 00:0a: [mem 0xff000000-0xff000fff]
[    0.456106] pnp 00:0a: [mem 0xff010000-0xffffffff]
[    0.456107] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
[    0.456108] pnp 00:0a: [mem 0xbfa00000-0xbfa00fff]
[    0.456149] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.456154] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.456157] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.456160] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.456162] system 00:0a: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.456165] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.456168] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.456171] system 00:0a: [mem 0xff000000-0xff000fff] has been reserved
[    0.456174] system 00:0a: [mem 0xff010000-0xffffffff] could not be reserved
[    0.456177] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.456180] system 00:0a: [mem 0xbfa00000-0xbfa00fff] has been reserved
[    0.456184] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.456468] pnp 00:0b: [mem 0x20000000-0x201fffff]
[    0.456470] pnp 00:0b: [mem 0x40004000-0x40004fff]
[    0.456514] system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
[    0.456518] system 00:0b: [mem 0x40004000-0x40004fff] has been reserved
[    0.456521] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.456535] pnp: PnP ACPI: found 12 devices
[    0.456537] ACPI: ACPI bus type pnp unregistered
[    0.462542] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.462580] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
[    0.462583] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.462587] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.462590] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.462594] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.462599] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.462603] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.462609] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.462619] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.462625] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.462635] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.462641] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.462677] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.462678] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.462680] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.462681] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.462683] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.462684] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
[    0.462686] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.462687] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.462689] pci_bus 0000:02: resource 1 [mem 0xd3600000-0xd36fffff]
[    0.462690] pci_bus 0000:03: resource 1 [mem 0xd3500000-0xd35fffff]
[    0.462692] pci_bus 0000:04: resource 1 [mem 0xd3400000-0xd34fffff]
[    0.462725] NET: Registered protocol family 2
[    0.463344] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.464376] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.464488] TCP: Hash tables configured (established 524288 bind 65536)
[    0.464502] TCP: reno registered
[    0.464515] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.464541] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.464624] NET: Registered protocol family 1
[    0.464637] pci 0000:00:02.0: Boot video device
[    1.563339] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.661702] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.661886] PCI: CLS 64 bytes, default 64
[    2.661930] Unpacking initramfs...
[    3.148520] Freeing initrd memory: 30796k freed
[    3.152149] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.152156] software IO TLB [mem 0xaf1c0000-0xb31bffff] (64MB) mapped at [ffff8800af1c0000-ffff8800b31bffff]
[    3.152227] Simple Boot Flag at 0x44 set to 0x1
[    3.155025] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    3.155217] Initialise module verification
[    3.155257] audit: initializing netlink socket (disabled)
[    3.155272] type=2000 audit(1361388825.017:1): initialized
[    3.174121] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.175501] VFS: Disk quotas dquot_6.5.2
[    3.175535] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.175858] msgmni has been set to 15696
[    3.175910] SELinux:  Registering netfilter hooks
[    3.176477] alg: No test for stdrng (krng)
[    3.176484] NET: Registered protocol family 38
[    3.176488] Key type asymmetric registered
[    3.176490] Asymmetric key parser 'x509' registered
[    3.176517] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    3.176541] io scheduler noop registered
[    3.176543] io scheduler deadline registered
[    3.176566] io scheduler cfq registered (default)
[    3.176662] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    3.176831] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.176846] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.176848] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.177237] efifb: probing for efifb
[    3.178476] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009b80000, using 8100k, total 8100k
[    3.178479] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    3.178481] efifb: scrolling: redraw
[    3.178483] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.183959] Console: switching to colour frame buffer device 240x67
[    3.189127] fb0: EFI VGA frame buffer device
[    3.189152] intel_idle: MWAIT substates: 0x21120
[    3.189154] intel_idle: v0.4 model 0x3A
[    3.189155] intel_idle: lapic_timer_reliable_states 0xffffffff
[    3.189222] ACPI: AC Adapter [ACAD] (on-line)
[    3.189317] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input0
[    3.189363] ACPI: Power Button [PWRB]
[    3.189403] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0E:00/input/input1
[    3.189447] ACPI: Sleep Button [SLPB]
[    3.189494] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    3.189546] ACPI: Lid Switch [LID0]
[    3.189587] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.189621] ACPI: Power Button [PWRF]
[    3.189803] ACPI: Requesting acpi_cpufreq
[    3.276054] thermal LNXTHERM:00: registered as thermal_zone0
[    3.276083] ACPI: Thermal Zone [TZ00] (50 C)
[    3.276123] GHES: HEST is not enabled!
[    3.276198] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.316717] ACPI: Battery Slot [BAT1] (battery absent)
[    3.316848] Non-volatile memory driver v1.3
[    3.316870] Linux agpgart interface v0.103
[    3.317452] loop: module loaded
[    3.317508] ahci 0000:00:1f.2: version 3.0
[    3.317562] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    3.317587] ahci: SSS flag set, parallel bus scan disabled
[    3.327731] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    3.327787] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.327825] ahci 0000:00:1f.2: setting latency timer to 64
[    3.332011] scsi0 : ahci
[    3.332081] scsi1 : ahci
[    3.332138] scsi2 : ahci
[    3.332193] scsi3 : ahci
[    3.332246] scsi4 : ahci
[    3.332304] scsi5 : ahci
[    3.332341] ata1: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717100 irq 41
[    3.332376] ata2: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717180 irq 41
[    3.332410] ata3: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717200 irq 41
[    3.332443] ata4: DUMMY
[    3.332456] ata5: DUMMY
[    3.332469] ata6: DUMMY
[    3.332534] libphy: Fixed MDIO Bus: probed
[    3.332606] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.332665] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    3.332668] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    3.333977] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.339148] ehci_hcd 0000:00:1a.0: debug port 2
[    3.340415] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    3.340429] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd3719000
[    3.347681] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.348970] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.350225] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.351482] usb usb1: Product: EHCI Host Controller
[    3.352735] usb usb1: Manufacturer: Linux 3.6.10-4.fc18.x86_64 ehci_hcd
[    3.354001] usb usb1: SerialNumber: 0000:00:1a.0
[    3.355341] hub 1-0:1.0: USB hub found
[    3.356590] hub 1-0:1.0: 2 ports detected
[    3.357874] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    3.357877] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    3.359142] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.364287] ehci_hcd 0000:00:1d.0: debug port 2
[    3.365542] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    3.365554] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd3718000
[    3.372643] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.373920] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.375166] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.376405] usb usb2: Product: EHCI Host Controller
[    3.377638] usb usb2: Manufacturer: Linux 3.6.10-4.fc18.x86_64 ehci_hcd
[    3.378867] usb usb2: SerialNumber: 0000:00:1d.0
[    3.380178] hub 2-0:1.0: USB hub found
[    3.381399] hub 2-0:1.0: 2 ports detected
[    3.382651] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.383872] uhci_hcd: USB Universal Host Controller Interface driver
[    3.385126] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    3.385129] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.386374] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.387675] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.387688] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3700000
[    3.388915] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[    3.388959] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    3.390138] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.391299] usb usb3: Product: xHCI Host Controller
[    3.392441] usb usb3: Manufacturer: Linux 3.6.10-4.fc18.x86_64 xhci_hcd
[    3.393586] usb usb3: SerialNumber: 0000:00:14.0
[    3.394770] xHCI xhci_add_endpoint called for root hub
[    3.394771] xHCI xhci_check_bandwidth called for root hub
[    3.394787] hub 3-0:1.0: USB hub found
[    3.395913] hub 3-0:1.0: 4 ports detected
[    3.397072] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.398217] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    3.399364] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    3.400502] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.401635] usb usb4: Product: xHCI Host Controller
[    3.402759] usb usb4: Manufacturer: Linux 3.6.10-4.fc18.x86_64 xhci_hcd
[    3.403893] usb usb4: SerialNumber: 0000:00:14.0
[    3.405074] xHCI xhci_add_endpoint called for root hub
[    3.405075] xHCI xhci_check_bandwidth called for root hub
[    3.405089] hub 4-0:1.0: USB hub found
[    3.406224] hub 4-0:1.0: 4 ports detected
[    3.414628] usbcore: registered new interface driver usbserial
[    3.415755] usbcore: registered new interface driver usbserial_generic
[    3.416866] USB Serial support registered for generic
[    3.417963] usbserial: USB Serial Driver core
[    3.419093] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS1] at 0x60,0x64 irq 1,12
[    3.460191] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.461354] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.462575] mousedev: PS/2 mouse device common for all mice
[    3.463917] rtc_cmos 00:06: RTC can wake from S4
[    3.465204] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    3.466410] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    3.467667] device-mapper: uevent: version 1.0.3
[    3.468905] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: dm-devel@redhat.com
[    3.470277] cpuidle: using governor ladder
[    3.471649] cpuidle: using governor menu
[    3.473225] EFI Variables Facility v0.08 2004-May-17
[    3.496368] usbcore: registered new interface driver usbhid
[    3.497599] usbhid: USB HID core driver
[    3.498885] drop_monitor: Initializing network drop monitor service
[    3.500167] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.501382] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.504994] TCP: cubic registered
[    3.506245] Initializing XFRM netlink socket
[    3.507586] NET: Registered protocol family 10
[    3.508953] mip6: Mobile IPv6
[    3.510190] NET: Registered protocol family 17
[    3.511929] PM: Hibernation image not present or could not be loaded.
[    3.511931] Loading module verification certificates
[    3.513992] MODSIGN: Loaded cert 'Fedora kernel signing key: 7686e1f22bbf511e76885be3fb6c7a462be60dda'
[    3.515294] registered taskstats version 1
[    3.517732]   Magic number: 1:523:597
[    3.520246] rtc_cmos 00:06: setting system clock to 2013-02-20 19:33:46 UTC (1361388826)
[    3.636355] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.639721] ata1.00: ATA-9: SanDisk SSD U100 16GB, 10.52.01, max UDMA/133
[    3.642338] ata1.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    3.645251] ata1.00: configured for UDMA/133
[    3.648255] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SSD U100 10.5 PQ: 0 ANSI: 5
[    3.651300] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.651309] sd 0:0:0:0: [sda] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    3.651383] sd 0:0:0:0: [sda] Write Protect is off
[    3.651386] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.651409] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.659284] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    3.667279]  sda: sda1
[    3.671217] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.773518] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.776241] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.779383] hub 1-1:1.0: USB hub found
[    3.782221] hub 1-1:1.0: 6 ports detected
[    3.887962] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    3.968869] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.971953] ata2.00: ATA-8: PLEXTOR PX-256M3, 1.05, max UDMA/133
[    3.974646] ata2.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    3.977760] ata2.00: configured for UDMA/133
[    3.980890] scsi 1:0:0:0: Direct-Access     ATA      PLEXTOR PX-256M3 1.05 PQ: 0 ANSI: 5
[    3.982179] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    3.982211] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.987571] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    3.990406] sd 1:0:0:0: [sdb] Write Protect is off
[    3.993140] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.993182] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.998327]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10
[    4.000584] sd 1:0:0:0: [sdb] Attached SCSI disk
[    4.004158] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    4.006972] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.010143] hub 2-1:1.0: USB hub found
[    4.013097] hub 2-1:1.0: 6 ports detected
[    4.089799] usb 1-1.6: new full-speed USB device number 3 using ehci_hcd
[    4.151594] tsc: Refined TSC clocksource calibration: 2394.560 MHz
[    4.154420] Switching to clocksource tsc
[    4.181622] usb 1-1.6: New USB device found, idVendor=04ca, idProduct=2003
[    4.184955] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.187761] usb 1-1.6: Product: BCM20702A0
[    4.190591] usb 1-1.6: Manufacturer: Broadcom Corp
[    4.193663] usb 1-1.6: SerialNumber: 20689D9D9640
[    4.286387] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.290485] usb 2-1.6: new high-speed USB device number 3 using ehci_hcd
[    4.293079] ata3.00: ATAPI: HL-DT-ST BD-RE BT20N, KV01, max UDMA/133
[    4.297135] ata3.00: configured for UDMA/133
[    4.303626] scsi 2:0:0:0: CD-ROM            HL-DT-ST BD-RE BT20N      KV01 PQ: 0 ANSI: 5
[    4.312052] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.315155] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.318307] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    4.318572] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    4.325341] Freeing unused kernel memory: 1036k freed
[    4.328403] Write protecting the kernel read-only data: 12288k
[    4.339612] Freeing unused kernel memory: 1848k freed
[    4.349127] Freeing unused kernel memory: 1412k freed
[    4.390191] usb 2-1.6: New USB device found, idVendor=04f2, idProduct=b2f1
[    4.393024] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.395849] usb 2-1.6: Product: Lenovo EasyCamera
[    4.398669] usb 2-1.6: Manufacturer: Vimicro Corp.
[    4.427201] systemd[1]: systemd 195 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ; fedora)
[    4.430369] systemd[1]: Running in initial RAM disk.
[    4.440588] systemd[1]: No hostname configured.
[    4.441635] systemd[1]: Set hostname to <localhost>.
[    4.442784] systemd[1]: Initializing machine ID from random generator.
[    4.463947] systemd[1]: Starting Encrypted Volumes.
[    4.469417] systemd[1]: Reached target Encrypted Volumes.
[    4.470546] systemd[1]: Starting udev Kernel Socket.
[    4.472763] systemd[1]: Listening on udev Kernel Socket.
[    4.473857] systemd[1]: Starting udev Control Socket.
[    4.476070] systemd[1]: Listening on udev Control Socket.
[    4.477128] systemd[1]: Starting Journal Socket.
[    4.479305] systemd[1]: Listening on Journal Socket.
[    4.480346] systemd[1]: Starting dracut cmdline hook...
[    4.503577] systemd[1]: Started Load Kernel Modules.
[    4.506490] systemd[1]: Starting Journal Service...
[    4.532095] systemd[1]: Started Journal Service.
[    4.534987] systemd[1]: Starting Sockets.
[    4.539610] systemd[1]: Reached target Sockets.
[    4.540778] systemd[1]: Starting Swap.
[    4.543191] systemd[1]: Reached target Swap.
[    4.544181] systemd[1]: Starting Local File Systems.
[    4.546206] systemd[1]: Reached target Local File Systems.
[    4.715676] RPC: Registered named UNIX socket transport module.
[    4.718182] RPC: Registered udp transport module.
[    4.720646] RPC: Registered tcp transport module.
[    4.722296] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    4.823536] systemd-udevd[216]: starting version 195
[    5.033576] sdhci: Secure Digital Host Controller Interface driver
[    5.034812] sdhci: Copyright(c) Pierre Ossman
[    5.036967] [drm] Initialized drm 1.1.0 20060810
[    5.038292] sdhci-pci 0000:04:00.0: SDHCI controller found [197b:2392] (rev 30)
[    5.039633] Registered led device: mmc0::
[    5.046209] wmi: Mapper loaded
[    5.054618] pci 0000:00:00.0: Intel Ivybridge Chipset
[    5.055871] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[    5.057791] pci 0000:00:00.0: detected 65536K stolen memory
[    5.058761] checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
[    5.058762] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
[    4.322275] ACPI: Invalid Power Resource to register!
[    5.059675] Console: switching 
[    5.059676] to colour dummy device 80x25
[    5.059748] i915 0000:00:02.0: setting latency timer to 64
[    5.062381] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
[    5.062405] sdhci-pci 0000:04:00.2: SDHCI controller found [197b:2391] (rev 30)
[    5.062435] sdhci-pci 0000:04:00.2: Refusing to bind to secondary interface.
[    5.063186] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.098867] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[    5.098881] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    5.098887] [drm] Driver supports precise vblank timestamp query.
[    5.099016] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    5.099024] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[    5.169698] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id: 1087391
[    5.201954] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    5.279609] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    5.307216] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    5.497800] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    5.569511] fbcon: inteldrmfb (fb0) is primary device
[    5.850103] Console: switching to colour frame buffer device 240x67
[    5.861012] fb0: inteldrmfb frame buffer device
[    5.861013] drm: registered panic notifier
[    5.861368] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.872459] acpi device:3c: registered as cooling_device8
[    5.872736] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    5.872916] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:3a/LNXVIDEO:00/input/input6
[    5.884308] acpi device:48: registered as cooling_device9
[    5.884635] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.884798] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input7
[    5.885136] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    5.885921] [drm] nouveau 0000:01:00.0: Detected an NVe0 generation card (0x0e7140a2)
[    5.891062] [drm] nouveau 0000:01:00.0: acceleration disabled by default, pass noaccel=0 to force enable
[    5.900647] [drm] nouveau 0000:01:00.0: Checking PRAMIN for VBIOS
[    5.948732] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.948761] [drm] nouveau 0000:01:00.0: Checking PROM for VBIOS
[    5.948847] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.948876] [drm] nouveau 0000:01:00.0: Checking ACPI for VBIOS
[    5.948904] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.948932] [drm] nouveau 0000:01:00.0: Checking PCIROM for VBIOS
[    5.948960] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.948988] [drm] nouveau 0000:01:00.0: No valid VBIOS image found
[    6.331263] systemd-journald[126]: Received SIGTERM
[    6.385526] type=1404 audit(1361388829.369:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    6.421892] SELinux: 2048 avtab hash slots, 94720 rules.
[    6.434370] SELinux: 2048 avtab hash slots, 94720 rules.
[    6.526531] SELinux:  9 users, 15 roles, 4367 types, 239 bools, 1 sens, 1024 cats
[    6.526534] SELinux:  83 classes, 94720 rules
[    6.529232] SELinux:  Completing initialization.
[    6.529233] SELinux:  Setting up existing superblocks.
[    6.529238] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    6.529241] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[    6.529247] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[    6.529250] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[    6.529255] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.529275] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[    6.529822] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[    6.529825] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[    6.530208] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[    6.530211] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[    6.530213] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[    6.530222] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.530226] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[    6.530229] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[    6.530235] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    6.530463] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[    6.530464] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.530468] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.530520] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.530538] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.530540] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.530544] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.530552] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.530556] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.530558] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.530560] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.530562] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.530565] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.530568] SELinux: initialized (dev rpc_pipefs, type rpc_pipefs), uses genfs_contexts
[    6.530574] SELinux: initialized (dev sdb9, type ext4), uses xattr
[    6.546584] type=1403 audit(1361388829.530:3): policy loaded auid=4294967295 ses=4294967295
[    6.554977] systemd[1]: Successfully loaded SELinux policy in 170ms 266us.
[    6.570655] SELinux: initialized (dev efivarfs, type efivarfs), uses genfs_contexts
[    6.586166] systemd[1]: Relabelled /dev and /run in 15ms 6us.
[    6.760477] systemd-readahead[409]: Bumped block_nr parameter of 8:16 to 20480. This is a temporary hack and should be removed one day.
[    6.825255] SELinux: initialized (dev autofs, type autofs), uses genfs_contexts
[    6.826782] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.907505] systemd-udevd[418]: starting version 197
[    6.934422] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.002846] input: Ideapad extra buttons as /devices/platform/ideapad/input/input8
[    7.012467] mei 0000:00:16.0: setting latency timer to 64
[    7.012515] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[    7.016862] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
[    7.018318] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.018331] mei 0000:00:16.0: wd: failed to find the client
[    7.021214] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20120711/utaddress-251)
[    7.022709] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20120711/utaddress-251)
[    7.024162] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.025670] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    7.027160] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120711/utaddress-251)
[    7.027483] cfg80211: Calling CRDA to update world regulatory domain
[    7.030174] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.032766] EXT4-fs (sdb9): re-mounted. Opts: (null)
[    7.033789] Linux media interface: v0.10
[    7.037405] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[    7.039034] Copyright(c) 2003-2012 Intel Corporation
[    7.040675] Bluetooth: Core ver 2.16
[    7.040720] iwlwifi 0000:03:00.0: pci_resource_len = 0x00002000
[    7.040721] iwlwifi 0000:03:00.0: pci_resource_base = ffffc900040ec000
[    7.040723] iwlwifi 0000:03:00.0: HW Revision ID = 0xC4
[    7.040843] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
[    7.046854] Linux video capture interface: v2.00
[    7.046931] NET: Registered protocol family 31
[    7.046932] Bluetooth: HCI device and connection manager initialized
[    7.046933] Bluetooth: HCI socket layer initialized
[    7.046934] Bluetooth: L2CAP socket layer initialized
[    7.046942] Bluetooth: SCO socket layer initialized
[    7.055862] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    7.062685] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2f1)
[    7.065385] usbcore: registered new interface driver btusb
[    7.068370] tun: Universal TUN/TAP device driver, 1.6
[    7.068371] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    7.073504] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input9
[    7.075080] usbcore: registered new interface driver uvcvideo
[    7.076596] USB Video Class driver (1.1.1)
[    7.084616] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[    7.088235] iTCO_vendor_support: vendor-support=0
[    7.090587] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    7.090611] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    7.090742] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    7.094531] cfg80211: World regulatory domain updated:
[    7.094532] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.094533] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.094534] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.094535] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.094535] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.094536] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.095511] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    7.095910] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1
[    7.101975] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    7.102545] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    7.103950] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    7.104936] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    7.105204] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    7.105781] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    7.106453] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    7.121699] iwldvm: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:d
[    7.122845] iwldvm: Copyright(c) 2003-2012 Intel Corporation
[    7.124031] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
[    7.125197] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[    7.126353] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    7.127513] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[    7.128675] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled
[    7.129896] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 2200 BGN, REV=0x104
[    7.131160] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    7.148700] iwlwifi 0000:03:00.0: device EEPROM VER=0x81c, CALIB=0x6
[    7.150144] iwlwifi 0000:03:00.0: Device SKU: 0x150
[    7.151479] iwlwifi 0000:03:00.0: Valid Tx ant: 0x3, Valid Rx ant: 0x3
[    7.152851] Registered led device: phy0-led
[    7.158552] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    7.164237] cfg80211: Calling CRDA for country: US
[    7.166676] cfg80211: Regulatory domain changed to country: US
[    7.166677] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.166678] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.166678] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.166679] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.166679] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.166679] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.166680] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.166680] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[    7.268410] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[    7.429109] Adding 8044540k swap on /dev/sdb8.  Priority:-1 extents:1 across:8044540k SS
[    7.492963] SELinux: initialized (dev sdb2, type vfat), uses genfs_contexts
[    7.605629] ALSA sound/pci/hda/patch_realtek.c:1273 SKU: Nid=0x1d sku_cfg=0x4015822d
[    7.605634] ALSA sound/pci/hda/patch_realtek.c:1275 SKU: port_connectivity=0x1
[    7.605636] ALSA sound/pci/hda/patch_realtek.c:1276 SKU: enable_pcbeep=0x1
[    7.605638] ALSA sound/pci/hda/patch_realtek.c:1277 SKU: check_sum=0x00000005
[    7.605641] ALSA sound/pci/hda/patch_realtek.c:1278 SKU: customization=0x00000082
[    7.605643] ALSA sound/pci/hda/patch_realtek.c:1279 SKU: external_amp=0x5
[    7.605645] ALSA sound/pci/hda/patch_realtek.c:1280 SKU: platform_type=0x1
[    7.605647] ALSA sound/pci/hda/patch_realtek.c:1281 SKU: swap=0x0
[    7.605649] ALSA sound/pci/hda/patch_realtek.c:1282 SKU: override=0x1
[    7.605656] ALSA sound/pci/hda/hda_auto_parser.c:322 autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    7.605659] ALSA sound/pci/hda/hda_auto_parser.c:326    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.605662] ALSA sound/pci/hda/hda_auto_parser.c:330    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    7.605673] ALSA sound/pci/hda/hda_auto_parser.c:331    mono: mono_out=0x0
[    7.605674] ALSA sound/pci/hda/hda_auto_parser.c:334    dig-out=0x1e/0x0
[    7.605675] ALSA sound/pci/hda/hda_auto_parser.c:335    inputs:
[    7.605676] ALSA sound/pci/hda/hda_auto_parser.c:339      Internal Mic=0x12
[    7.605677] ALSA sound/pci/hda/hda_auto_parser.c:339      Mic=0x18
[    7.606938] ALSA sound/pci/hda/patch_realtek.c:1336 realtek: No valid SSID, checking pincfg 0x4015822d for NID 0x1d
[    7.606941] ALSA sound/pci/hda/patch_realtek.c:1352 realtek: Enabling init ASM_ID=0x822d CODEC_ID=10ec0269
[    7.618041] EXT4-fs (sdb10): mounted filesystem with ordered data mode. Opts: (null)
[    7.618177] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    7.618505] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    7.618635] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    7.629533] SELinux: initialized (dev sdb10, type ext4), uses xattr
[    7.657872] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
[    7.661611] SELinux: initialized (dev sdb7, type ext4), uses xattr
[    7.713591] SELinux: initialized (dev sdb6, type vfat), uses genfs_contexts
[    8.444855] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.445898] Bluetooth: BNEP filters: protocol multicast
[    8.447877] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    8.452728] Bluetooth: RFCOMM TTY layer initialized
[    8.454504] Bluetooth: RFCOMM socket layer initialized
[    8.456863] Bluetooth: RFCOMM ver 1.11
[    8.464550] Ebtables v2.0 registered
[    8.521179] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    8.689833] Loading iSCSI transport class v2.0-870.
[    8.696452] iscsi: registered transport (tcp)
[    8.721446] iscsi: registered transport (iser)
[    8.730360] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[    8.730362] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[    8.740052] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[    8.740982] iscsi: registered transport (cxgb3i)
[    8.748294] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[    8.750599] iscsi: registered transport (cxgb4i)
[    8.755976] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.12 (June 29, 2012)
[    8.758564] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Apr 25, 2012)
[    8.760271] iscsi: registered transport (bnx2i)
[    8.765797] iscsi: registered transport (be2iscsi)
[    8.786916] systemd-journald[546]: Received SIGUSR1
[    8.802157] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.810946] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    9.068987] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    9.076455] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    9.152166] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    9.547990] wlan0: authenticate with bc:ae:c5:c3:07:c4
[    9.554299] wlan0: send auth to bc:ae:c5:c3:07:c4 (try 1/3)
[    9.556202] wlan0: authenticated
[    9.556391] wlan0: waiting for beacon from bc:ae:c5:c3:07:c4
[    9.578407] wlan0: associate with bc:ae:c5:c3:07:c4 (try 1/3)
[    9.581815] wlan0: RX AssocResp from bc:ae:c5:c3:07:c4 (capab=0x411 status=0 aid=1)
[    9.584614] wlan0: associated
[    9.584669] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   13.604201] nf_conntrack: automatic helper assignment is deprecated and it will be removed soon. Use the iptables CT target to attach helpers instead.
[   14.429240] fuse init (API version 7.20)
[   14.436836] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[   14.452347] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
[   15.174083] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   15.174698] hid-generic 0005:046D:B002.0001: unknown main item tag 0x0
[   15.174853] input: Bluetooth Travel Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/bluetooth/hci0/hci0:11/input13
[   15.175382] hid-generic 0005:046D:B002.0001: input,hidraw0: BLUETOOTH HID v48.09 Mouse [Bluetooth Travel Mouse] on 20:68:9D:9D:96:40
[   18.878929] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 10:57         ` Daniel Vetter
  2013-02-20 19:29           ` Chris Li
@ 2013-02-20 19:45           ` Chris Li
  2013-02-20 20:01             ` Chris Li
  2013-02-20 20:19             ` Daniel Vetter
  1 sibling, 2 replies; 29+ messages in thread
From: Chris Li @ 2013-02-20 19:45 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown

[-- Attachment #1: Type: text/plain, Size: 578 bytes --]

On Wed, Feb 20, 2013 at 2:57 AM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:

> Starts to smell like a bog-standard i915 black screen bug (albeit with
> a strange cause for the regression). Can you please boot the broken
> kernels again with drm.debug=0xe and grab the complete dmesg?
> Depending upon how long it takes for your wifi to get up, you might
> need to extend the log buffer, it dumps a lot.

Hi Daniel,

Here is the dmesg with "drm.debug=0xe". It is from the tip of git
kernel. The computer has the black screen.
Let me know what else do you need.

Thanks

Chris

[-- Attachment #2: dmesg.drm.dbg.3.8.0-rc7 --]
[-- Type: application/octet-stream, Size: 124829 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.8.0-rc7+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #23 SMP Tue Feb 19 19:24:57 PST 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.8.0-rc7+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] 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-0x00000000b3fecfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] e820: update [mem 0xb3cee018-0xb3d03e57] usable ==> usable
[    0.000000] e820: update [mem 0xb3cdd018-0xb3ced057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040005000-0x00000000b3cdd017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cdd018-0x00000000b3ced057] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3ced058-0x00000000b3cee017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cee018-0x00000000b3d03e57] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3d03e58-0x00000000b3fecfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xbaffe000  ACPI 2.0=0xbaffe014  SMBIOS=0xbaebef98 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000004000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000004000-0x000000000000e000) (0MB)
[    0.000000] efi: mem03: type=3, attr=0xf, range=[0x000000000000e000-0x0000000000010000) (0MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000010000-0x000000000002e000) (0MB)
[    0.000000] efi: mem05: type=3, attr=0xf, range=[0x000000000002e000-0x000000000002f000) (0MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x000000000002f000-0x0000000000030000) (0MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000000030000-0x000000000006f000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem10: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x0000000001000000-0x000000000238f000) (19MB)
[    0.000000] efi: mem13: type=7, attr=0xf, range=[0x000000000238f000-0x0000000020000000) (476MB)
[    0.000000] efi: mem14: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000020200000-0x000000003e2b5000) (480MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000003e2b5000-0x0000000040000000) (29MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000040000000-0x0000000040004000) (0MB)
[    0.000000] efi: mem18: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000040005000-0x000000008634e000) (1123MB)
[    0.000000] efi: mem20: type=2, attr=0xf, range=[0x000000008634e000-0x00000000b31c0000) (718MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000b31c0000-0x00000000b31e0000) (0MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000b31e0000-0x00000000b3a7e000) (8MB)
[    0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000b3a7e000-0x00000000b3b4d000) (0MB)
[    0.000000] efi: mem24: type=1, attr=0xf, range=[0x00000000b3b4d000-0x00000000b3c84000) (1MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000b3c84000-0x00000000b3cdd000) (0MB)
[    0.000000] efi: mem26: type=2, attr=0xf, range=[0x00000000b3cdd000-0x00000000b3dd3000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000b3dd3000-0x00000000b3fed000) (2MB)
[    0.000000] efi: mem28: type=0, attr=0xf, range=[0x00000000b3fed000-0x00000000b4d6e000) (13MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000b4d6e000-0x00000000b4db0000) (0MB)
[    0.000000] efi: mem30: type=0, attr=0xf, range=[0x00000000b4db0000-0x00000000b61b0000) (20MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b61b0000-0x00000000b61bd000) (0MB)
[    0.000000] efi: mem32: type=2, attr=0xf, range=[0x00000000b61bd000-0x00000000b61bf000) (0MB)
[    0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b61bf000-0x00000000b6279000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b6279000-0x00000000b81aa000) (31MB)
[    0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b81aa000-0x00000000b81b2000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b81b2000-0x00000000b81b4000) (0MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b81b4000-0x00000000b81b6000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b81b6000-0x00000000b81e6000) (0MB)
[    0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b81e6000-0x00000000b81ec000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b81ec000-0x00000000b81ed000) (0MB)
[    0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b81ed000-0x00000000b81ee000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b81ee000-0x00000000b81f8000) (0MB)
[    0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b81f8000-0x00000000b81f9000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b81f9000-0x00000000b821f000) (0MB)
[    0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b821f000-0x00000000b8221000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b8221000-0x00000000b83a0000) (1MB)
[    0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b83a0000-0x00000000b83a4000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b83a4000-0x00000000b83a7000) (0MB)
[    0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b83a7000-0x00000000b83a8000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b83a8000-0x00000000b83f8000) (0MB)
[    0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b83f8000-0x00000000b8420000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b8420000-0x00000000b859e000) (1MB)
[    0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b859e000-0x00000000b85a0000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b85a0000-0x00000000b85ba000) (0MB)
[    0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b85ba000-0x00000000b85bb000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b85bb000-0x00000000b87e8000) (2MB)
[    0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b87e8000-0x00000000b87f8000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b87f8000-0x00000000ba3bf000) (27MB)
[    0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000ba3bf000-0x00000000ba495000) (0MB)
[    0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000ba495000-0x00000000ba7bf000) (3MB)
[    0.000000] efi: mem61: type=5, attr=0x800000000000000f, range=[0x00000000ba7bf000-0x00000000ba880000) (0MB)
[    0.000000] efi: mem62: type=6, attr=0x800000000000000f, range=[0x00000000ba880000-0x00000000ba881000) (0MB)
[    0.000000] efi: mem63: type=5, attr=0x800000000000000f, range=[0x00000000ba881000-0x00000000ba8b0000) (0MB)
[    0.000000] efi: mem64: type=6, attr=0x800000000000000f, range=[0x00000000ba8b0000-0x00000000ba8b1000) (0MB)
[    0.000000] efi: mem65: type=5, attr=0x800000000000000f, range=[0x00000000ba8b1000-0x00000000ba8b3000) (0MB)
[    0.000000] efi: mem66: type=6, attr=0x800000000000000f, range=[0x00000000ba8b3000-0x00000000ba8b4000) (0MB)
[    0.000000] efi: mem67: type=5, attr=0x800000000000000f, range=[0x00000000ba8b4000-0x00000000ba8cc000) (0MB)
[    0.000000] efi: mem68: type=6, attr=0x800000000000000f, range=[0x00000000ba8cc000-0x00000000ba8cd000) (0MB)
[    0.000000] efi: mem69: type=5, attr=0x800000000000000f, range=[0x00000000ba8cd000-0x00000000ba8d2000) (0MB)
[    0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000ba8d2000-0x00000000ba8d3000) (0MB)
[    0.000000] efi: mem71: type=5, attr=0x800000000000000f, range=[0x00000000ba8d3000-0x00000000ba8e1000) (0MB)
[    0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000ba8e1000-0x00000000ba8e2000) (0MB)
[    0.000000] efi: mem73: type=5, attr=0x800000000000000f, range=[0x00000000ba8e2000-0x00000000ba8f2000) (0MB)
[    0.000000] efi: mem74: type=6, attr=0x800000000000000f, range=[0x00000000ba8f2000-0x00000000ba937000) (0MB)
[    0.000000] efi: mem75: type=5, attr=0x800000000000000f, range=[0x00000000ba937000-0x00000000ba9bf000) (0MB)
[    0.000000] efi: mem76: type=6, attr=0x800000000000000f, range=[0x00000000ba9bf000-0x00000000baabf000) (1MB)
[    0.000000] efi: mem77: type=0, attr=0xf, range=[0x00000000baabf000-0x00000000baebf000) (4MB)
[    0.000000] efi: mem78: type=10, attr=0xf, range=[0x00000000baebf000-0x00000000bafbf000) (1MB)
[    0.000000] efi: mem79: type=9, attr=0xf, range=[0x00000000bafbf000-0x00000000bafff000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000bafff000-0x00000000bb000000) (0MB)
[    0.000000] efi: mem81: type=7, attr=0xf, range=[0x0000000100000000-0x000000023f600000) (5110MB)
[    0.000000] efi: mem82: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem83: type=0, attr=0x0, range=[0x00000000bb000000-0x00000000bfa00000) (74MB)
[    0.000000] efi: mem84: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem85: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem86: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem87: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem88: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem89: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem90: type=11, attr=0x8000000000000000, range=[0x00000000ffb80000-0x0000000100000000) (4MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20132/INVALID, BIOS 5DCN90WW(V8.01) 10/11/2012
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x23f600 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-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   5 base 100000000 mask F00000000 write-back
[    0.000000]   6 base 200000000 mask FC0000000 write-back
[    0.000000]   7 base 23F600000 mask FFFE00000 uncachable
[    0.000000]   8 base 23F800000 mask FFF800000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [ffff8800000fe1c0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000028000] 28000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xbaffffff]
[    0.000000]  [mem 0x00000000-0xbaffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0xbaffffff @ [mem 0x1fffc000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x23f5fffff]
[    0.000000]  [mem 0x100000000-0x23f5fffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x23f5fffff @ [mem 0xba48f000-0xba494fff]
[    0.000000] RAMDISK: [mem 0x3e2b5000-0x3fffafff]
[    0.000000] ACPI: RSDP 00000000baffe014 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000baffe210 000AC (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 00000000baffa000 0010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DSDT 00000000bafec000 0A638 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000bafbb000 00040
[    0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 00000000baffc000 00236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! 00000000baffb000 000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 00000000baff9000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000baff8000 0008C (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000baff7000 0003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafeb000 006FE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000bafe9000 00028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT 00000000bafe7000 00034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DBGP 00000000bafe6000 00034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 00000000bafe4000 00044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MSDM 00000000bafe3000 00055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe2000 00926 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafdd000 02333 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BGRT 00000000bafe0000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x23f5fffff]
[    0.000000]   NODE_DATA [mem 0x23f5ec000-0x23f5fffff]
[    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236c00000-ffff88023ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x23f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xb3fecfff]
[    0.000000]   node   0: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]   node   0: [mem 0xb61b0000-0xba7befff]
[    0.000000]   node   0: [mem 0xbafff000-0xbaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x23f5fffff]
[    0.000000] On node 0 totalpages: 2062774
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 96 pages reserved
[    0.000000]   DMA zone: 3800 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11729 pages used for memmap
[    0.000000]   DMA32 zone: 738925 pages, LIFO batch:31
[    0.000000]   Normal zone: 20440 pages used for memmap
[    0.000000]   Normal zone: 1287720 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 0000000000088000 - 00000000000c0000
[    0.000000] PM: Registered nosave memory: 00000000000c0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000b3cdd000 - 00000000b3cde000
[    0.000000] PM: Registered nosave memory: 00000000b3ced000 - 00000000b3cee000
[    0.000000] PM: Registered nosave memory: 00000000b3cee000 - 00000000b3cef000
[    0.000000] PM: Registered nosave memory: 00000000b3d03000 - 00000000b3d04000
[    0.000000] PM: Registered nosave memory: 00000000b3fed000 - 00000000b4d6e000
[    0.000000] PM: Registered nosave memory: 00000000b4db0000 - 00000000b61b0000
[    0.000000] PM: Registered nosave memory: 00000000ba7bf000 - 00000000baebf000
[    0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
[    0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
[    0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
[    0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
[    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[    0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[    0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
[    0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
[    0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023f200000 s84544 r8192 d21952 u262144
[    0.000000] pcpu-alloc: s84544 r8192 d21952 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2030445
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.8.0-rc7+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 7934180k/9426944k available (6409k kernel code, 1175848k absent, 316916k reserved, 6804k data, 1076k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:8448 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.001000] tsc: Detected 2394.461 MHz processor
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4788.92 BogoMIPS (lpj=2394461)
[    0.000008] pid_max: default: 32768 minimum: 301
[    0.022886] Security Framework initialized
[    0.022896] SELinux:  Initializing.
[    0.022905] SELinux:  Starting in permissive mode
[    0.023490] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.025578] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.026467] Mount-cache hash table entries: 256
[    0.026634] Initializing cgroup subsys cpuacct
[    0.026638] Initializing cgroup subsys memory
[    0.026649] Initializing cgroup subsys devices
[    0.026651] Initializing cgroup subsys freezer
[    0.026654] Initializing cgroup subsys net_cls
[    0.026657] Initializing cgroup subsys blkio
[    0.026659] Initializing cgroup subsys perf_event
[    0.026686] CPU: Physical Processor ID: 0
[    0.026688] CPU: Processor Core ID: 0
[    0.026693] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.027069] mce: CPU supports 9 MCE banks
[    0.027083] CPU0: Thermal monitoring enabled (TM1)
[    0.027090] process: using mwait in idle threads
[    0.027095] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
[    0.027247] Freeing SMP alternatives: 24k freed
[    0.028327] ACPI: Core revision 20121018
[    0.050918] ftrace: allocating 24018 entries in 94 pages
[    0.062610] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.072603] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz (fam: 06, model: 3a, stepping: 09)
[    0.072613] TSC deadline timer enabled
[    0.072617] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[    0.072624] ... version:                3
[    0.072626] ... bit width:              48
[    0.072628] ... generic registers:      4
[    0.072629] ... value mask:             0000ffffffffffff
[    0.072631] ... max period:             000000007fffffff
[    0.072633] ... fixed-purpose events:   3
[    0.072635] ... event mask:             000000070000000f
[    0.087508] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.073765] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.169303] Brought up 8 CPUs
[    0.169309] smpboot: Total of 8 processors activated (38311.37 BogoMIPS)
[    0.176391] devtmpfs: initialized
[    0.176561] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
[    0.177196] atomic64 test passed for x86-64 platform with CX8 and with SSE
[    0.177224] RTC time: 19:37:51, date: 02/20/13
[    0.177262] NET: Registered protocol family 16
[    0.177403] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.177407] ACPI: bus type pci registered
[    0.177454] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.177459] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.186398] PCI: Using configuration type 1 for base access
[    0.187126] bio: create slab <bio-0> at 0
[    0.187190] ACPI: Added _OSI(Module Device)
[    0.187193] ACPI: Added _OSI(Processor Device)
[    0.187195] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.187197] ACPI: Added _OSI(Processor Aggregator Device)
[    0.188628] ACPI: EC: Look up EC in DSDT
[    0.190113] ACPI: Executed 1 blocks of module-level executable AML code
[    0.192975] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.193604] ACPI: SSDT 00000000babae018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.193970] ACPI: Dynamic OEM Table Load:
[    0.193973] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.198396] ACPI: SSDT 00000000babafa98 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.198785] ACPI: Dynamic OEM Table Load:
[    0.198788] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.202288] ACPI: SSDT 00000000babadd98 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.202648] ACPI: Dynamic OEM Table Load:
[    0.202651] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.208391] ACPI: Interpreter enabled
[    0.208396] ACPI: (supports S0 S3 S4 S5)
[    0.208415] ACPI: Using IOAPIC for interrupt routing
[    0.294261] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.294390] ACPI: No dock devices found.
[    0.294395] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.294633] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.294637] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.294822] \_SB_.PCI0:_OSC invalid UUID
[    0.294824] _OSC request data:1 8 1f 
[    0.294863] \_SB_.PCI0:_OSC invalid UUID
[    0.294864] _OSC request data:1 1f 1f 
[    0.294867] pci_root PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.294871] pci_root PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.295324] PCI host bridge to bus 0000:00
[    0.295328] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.295331] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.295334] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.295337] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.295340] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
[    0.295349] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.295384] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.295413] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.295432] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.295442] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
[    0.295447] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.295451] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    0.295502] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.295525] pci 0000:00:14.0: reg 10: [mem 0xd3700000-0xd370ffff 64bit]
[    0.295596] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.295618] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.295638] pci 0000:00:16.0: reg 10: [mem 0xd3714000-0xd371400f 64bit]
[    0.295703] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.295737] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.295758] pci 0000:00:1a.0: reg 10: [mem 0xd3719000-0xd37193ff]
[    0.295849] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.295875] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.295890] pci 0000:00:1b.0: reg 10: [mem 0xd3710000-0xd3713fff 64bit]
[    0.295958] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.295982] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.296060] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.296086] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.296164] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.296191] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    0.296273] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.296308] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.296329] pci 0000:00:1d.0: reg 10: [mem 0xd3718000-0xd37183ff]
[    0.296419] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.296445] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    0.296569] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.296587] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    0.296596] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    0.296604] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    0.296612] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    0.296620] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    0.296628] pci 0000:00:1f.2: reg 24: [mem 0xd3717000-0xd37177ff]
[    0.296673] pci 0000:00:1f.2: PME# supported from D3hot
[    0.296694] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.296710] pci 0000:00:1f.3: reg 10: [mem 0xd3715000-0xd37150ff 64bit]
[    0.296731] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    0.296792] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
[    0.296804] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
[    0.296817] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.296829] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.296837] pci 0000:01:00.0: reg 24: [io  0x3000-0x307f]
[    0.296846] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
[    0.298254] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.298262] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.298266] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.298272] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.298354] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[    0.298382] pci 0000:02:00.0: reg 10: [mem 0xd3600000-0xd363ffff 64bit]
[    0.298396] pci 0000:02:00.0: reg 18: [io  0x2000-0x207f]
[    0.298527] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.300263] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.300273] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.300280] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.300405] pci 0000:03:00.0: [8086:0891] type 00 class 0x028000
[    0.300451] pci 0000:03:00.0: reg 10: [mem 0xd3500000-0xd3501fff 64bit]
[    0.300678] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.302293] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.302311] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.302385] pci 0000:04:00.0: [197b:2392] type 00 class 0x088000
[    0.302413] pci 0000:04:00.0: reg 10: [mem 0xd3403000-0xd34030ff]
[    0.302679] pci 0000:04:00.2: [197b:2391] type 00 class 0x080501
[    0.302707] pci 0000:04:00.2: reg 10: [mem 0xd3402000-0xd34020ff]
[    0.302966] pci 0000:04:00.3: [197b:2393] type 00 class 0x088000
[    0.302994] pci 0000:04:00.3: reg 10: [mem 0xd3401000-0xd34010ff]
[    0.303254] pci 0000:04:00.4: [197b:2394] type 00 class 0x088000
[    0.303281] pci 0000:04:00.4: reg 10: [mem 0xd3400000-0xd34000ff]
[    0.305274] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.305288] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.305343] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.305370] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.305394] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
[    0.305440] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
[    0.305469] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.308201] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.308247] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.308286] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.308326] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.308363] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.308402] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.308439] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.308477] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.308548] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.308554] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    0.308558] vgaarb: loaded
[    0.308559] vgaarb: bridge control possible 0000:01:00.0
[    0.308561] vgaarb: no bridge control possible 0000:00:02.0
[    0.308613] SCSI subsystem initialized
[    0.308615] ACPI: bus type scsi registered
[    0.308638] libata version 3.00 loaded.
[    0.308654] ACPI: bus type usb registered
[    0.308668] usbcore: registered new interface driver usbfs
[    0.308677] usbcore: registered new interface driver hub
[    0.308692] usbcore: registered new device driver usb
[    0.308729] PCI: Using ACPI for IRQ routing
[    0.310256] PCI: pci_cache_line_size set to 64 bytes
[    0.310380] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.310381] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.310382] e820: reserve RAM buffer [mem 0xb3cdd018-0xb3ffffff]
[    0.310384] e820: reserve RAM buffer [mem 0xb3cee018-0xb3ffffff]
[    0.310385] e820: reserve RAM buffer [mem 0xb3fed000-0xb3ffffff]
[    0.310386] e820: reserve RAM buffer [mem 0xb4db0000-0xb7ffffff]
[    0.310387] e820: reserve RAM buffer [mem 0xba7bf000-0xbbffffff]
[    0.310389] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.310390] e820: reserve RAM buffer [mem 0x23f600000-0x23fffffff]
[    0.310455] NetLabel: Initializing
[    0.310458] NetLabel:  domain hash size = 128
[    0.310460] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.310468] NetLabel:  unlabeled traffic allowed by default
[    0.310508] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.310514] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.312527] Switching to clocksource hpet
[    0.316647] pnp: PnP ACPI init
[    0.316659] ACPI: bus type pnp registered
[    0.316683] pnp 00:00: [dma 4]
[    0.316700] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.316716] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.316793] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.316819] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.316851] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.316854] system 00:04: [io  0x1100-0x110f] has been reserved
[    0.316857] system 00:04: [io  0xffff] has been reserved
[    0.316862] system 00:04: [io  0xffff] has been reserved
[    0.316864] system 00:04: [io  0x0400-0x0453] has been reserved
[    0.316867] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.316870] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.316873] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.316876] system 00:04: [io  0xfd60-0xfd63] has been reserved
[    0.316879] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.316899] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.316936] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.316940] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.316968] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.317025] pnp 00:08: Plug and Play ACPI device, IDs SYN073d SYN0700 SYN0002 PNP0f13 (active)
[    0.357635] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.357640] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.357643] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.357646] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.357650] system 00:09: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.357653] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.357656] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.357659] system 00:09: [mem 0xff000000-0xff000fff] has been reserved
[    0.357662] system 00:09: [mem 0xff010000-0xffffffff] could not be reserved
[    0.357665] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.357668] system 00:09: [mem 0xbfa00000-0xbfa00fff] has been reserved
[    0.357672] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.357985] system 00:0a: [mem 0x20000000-0x201fffff] has been reserved
[    0.357989] system 00:0a: [mem 0x40004000-0x40004fff] has been reserved
[    0.357993] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.358009] pnp: PnP ACPI: found 11 devices
[    0.358011] ACPI: ACPI bus type pnp unregistered
[    0.364078] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.364114] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
[    0.364118] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.364121] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.364125] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.364129] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.364134] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.364138] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.364144] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.364154] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.364160] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.364170] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.364176] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.364212] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.364214] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.364216] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.364217] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.364219] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.364220] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
[    0.364222] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.364224] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.364225] pci_bus 0000:02: resource 1 [mem 0xd3600000-0xd36fffff]
[    0.364227] pci_bus 0000:03: resource 1 [mem 0xd3500000-0xd35fffff]
[    0.364228] pci_bus 0000:04: resource 1 [mem 0xd3400000-0xd34fffff]
[    0.364262] NET: Registered protocol family 2
[    0.364433] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.364624] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.364730] TCP: Hash tables configured (established 65536 bind 65536)
[    0.364746] TCP: reno registered
[    0.364760] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.364786] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.364849] NET: Registered protocol family 1
[    0.364860] pci 0000:00:02.0: Boot video device
[    1.463844] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.562207] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.562388] PCI: CLS 64 bytes, default 64
[    2.562426] Unpacking initramfs...
[    3.045205] Freeing initrd memory: 29976k freed
[    3.048768] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.048773] software IO TLB [mem 0xaf1c0000-0xb31c0000] (64MB) mapped at [ffff8800af1c0000-ffff8800b31bffff]
[    3.048820] Simple Boot Flag at 0x44 set to 0x1
[    3.051670] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    3.051914] Initialise module verification
[    3.051949] audit: initializing netlink socket (disabled)
[    3.051959] type=2000 audit(1361389074.008:1): initialized
[    3.074090] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.075279] VFS: Disk quotas dquot_6.5.2
[    3.075313] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.075662] msgmni has been set to 15696
[    3.075710] SELinux:  Registering netfilter hooks
[    3.076267] alg: No test for stdrng (krng)
[    3.076275] NET: Registered protocol family 38
[    3.076279] Key type asymmetric registered
[    3.076281] Asymmetric key parser 'x509' registered
[    3.076309] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    3.076333] io scheduler noop registered
[    3.076335] io scheduler deadline registered
[    3.076344] io scheduler cfq registered (default)
[    3.076451] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    3.076610] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.076623] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.076625] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.077001] efifb: probing for efifb
[    3.078233] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009480000, using 8100k, total 8100k
[    3.078237] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    3.078238] efifb: scrolling: redraw
[    3.078241] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.083740] Console: switching to colour frame buffer device 240x67
[    3.088921] fb0: EFI VGA frame buffer device
[    3.088945] intel_idle: MWAIT substates: 0x21120
[    3.088947] intel_idle: v0.4 model 0x3A
[    3.088948] intel_idle: lapic_timer_reliable_states 0xffffffff
[    3.089022] ACPI: AC Adapter [ACAD] (on-line)
[    3.089116] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input0
[    3.089163] ACPI: Power Button [PWRB]
[    3.089206] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0E:00/input/input1
[    3.089251] ACPI: Sleep Button [SLPB]
[    3.089302] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    3.089355] ACPI: Lid Switch [LID0]
[    3.089396] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.089443] ACPI: Power Button [PWRF]
[    3.089626] ACPI: Requesting acpi_cpufreq
[    3.176459] thermal LNXTHERM:00: registered as thermal_zone0
[    3.176488] ACPI: Thermal Zone [TZ00] (49 C)
[    3.176538] GHES: HEST is not enabled!
[    3.176612] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.217222] ACPI: Battery Slot [BAT1] (battery absent)
[    3.217355] Non-volatile memory driver v1.3
[    3.217377] Linux agpgart interface v0.103
[    3.217978] loop: module loaded
[    3.218033] ahci 0000:00:1f.2: version 3.0
[    3.218084] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    3.218112] ahci: SSS flag set, parallel bus scan disabled
[    3.228237] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    3.228293] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.228331] ahci 0000:00:1f.2: setting latency timer to 64
[    3.232535] scsi0 : ahci
[    3.232607] scsi1 : ahci
[    3.232667] scsi2 : ahci
[    3.232723] scsi3 : ahci
[    3.232777] scsi4 : ahci
[    3.232832] scsi5 : ahci
[    3.232870] ata1: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717100 irq 41
[    3.232905] ata2: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717180 irq 41
[    3.232940] ata3: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717200 irq 41
[    3.232973] ata4: DUMMY
[    3.232986] ata5: DUMMY
[    3.232999] ata6: DUMMY
[    3.233061] libphy: Fixed MDIO Bus: probed
[    3.233127] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.233158] ehci-pci: EHCI PCI platform driver
[    3.234468] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    3.234472] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.235782] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.237077] ehci-pci 0000:00:1a.0: debug port 2
[    3.242239] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.242252] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd3719000
[    3.249187] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.250479] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.251743] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.253010] usb usb1: Product: EHCI Host Controller
[    3.254274] usb usb1: Manufacturer: Linux 3.8.0-rc7+ ehci_hcd
[    3.255538] usb usb1: SerialNumber: 0000:00:1a.0
[    3.256869] hub 1-0:1.0: USB hub found
[    3.258115] hub 1-0:1.0: 2 ports detected
[    3.259431] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    3.259434] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.260711] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.261984] ehci-pci 0000:00:1d.0: debug port 2
[    3.267134] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.267154] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd3718000
[    3.274149] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.275420] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.276660] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.277895] usb usb2: Product: EHCI Host Controller
[    3.279116] usb usb2: Manufacturer: Linux 3.8.0-rc7+ ehci_hcd
[    3.280331] usb usb2: SerialNumber: 0000:00:1d.0
[    3.281613] hub 2-0:1.0: USB hub found
[    3.282820] hub 2-0:1.0: 2 ports detected
[    3.284082] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.285291] uhci_hcd: USB Universal Host Controller Interface driver
[    3.286536] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    3.286539] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.287758] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.289024] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.289036] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3700000
[    3.290238] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[    3.290279] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    3.291425] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.292562] usb usb3: Product: xHCI Host Controller
[    3.293680] usb usb3: Manufacturer: Linux 3.8.0-rc7+ xhci_hcd
[    3.294791] usb usb3: SerialNumber: 0000:00:14.0
[    3.295947] xHCI xhci_add_endpoint called for root hub
[    3.295949] xHCI xhci_check_bandwidth called for root hub
[    3.295968] hub 3-0:1.0: USB hub found
[    3.297078] hub 3-0:1.0: 4 ports detected
[    3.298547] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.299670] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    3.300799] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    3.301909] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.303016] usb usb4: Product: xHCI Host Controller
[    3.304119] usb usb4: Manufacturer: Linux 3.8.0-rc7+ xhci_hcd
[    3.305227] usb usb4: SerialNumber: 0000:00:14.0
[    3.306388] xHCI xhci_add_endpoint called for root hub
[    3.306389] xHCI xhci_check_bandwidth called for root hub
[    3.306404] hub 4-0:1.0: USB hub found
[    3.307512] hub 4-0:1.0: 4 ports detected
[    3.315134] usbcore: registered new interface driver usbserial
[    3.316230] usbcore: registered new interface driver usbserial_generic
[    3.317303] usbserial: USB Serial support registered for generic
[    3.318411] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS1] at 0x60,0x64 irq 1,12
[    3.360068] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.361215] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.362429] mousedev: PS/2 mouse device common for all mice
[    3.363750] rtc_cmos 00:05: RTC can wake from S4
[    3.365014] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    3.366197] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    3.367434] device-mapper: uevent: version 1.0.3
[    3.368649] device-mapper: ioctl: 4.23.1-ioctl (2012-12-18) initialised: dm-devel@redhat.com
[    3.369972] cpuidle: using governor ladder
[    3.371323] cpuidle: using governor menu
[    3.372849] EFI Variables Facility v0.08 2004-May-17
[    3.392583] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.395920] usbcore: registered new interface driver usbhid
[    3.397172] usbhid: USB HID core driver
[    3.398412] drop_monitor: Initializing network drop monitor service
[    3.399694] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.400988] TCP: cubic registered
[    3.402217] Initializing XFRM netlink socket
[    3.403536] NET: Registered protocol family 10
[    3.405140] mip6: Mobile IPv6
[    3.406568] NET: Registered protocol family 17
[    3.408487] PM: Hibernation image not present or could not be loaded.
[    3.408489] Loading module verification certificates
[    3.410918] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: b848057b753beab17f05b3dca255f65e59259035'
[    3.412406] registered taskstats version 1
[    3.414687]   Magic number: 1:76:648
[    3.415952] scsi_host host2: hash matches
[    3.417196] scsi host2: hash matches
[    3.418457] processor LNXCPU:01: hash matches
[    3.419778] rtc_cmos 00:05: setting system clock to 2013-02-20 19:37:54 UTC (1361389074)
[    3.536880] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.539840] ata1.00: ATA-9: SanDisk SSD U100 16GB, 10.52.01, max UDMA/133
[    3.542370] ata1.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    3.545217] ata1.00: configured for UDMA/133
[    3.548057] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SSD U100 10.5 PQ: 0 ANSI: 5
[    3.551010] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.551069] sd 0:0:0:0: [sda] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    3.551799] sd 0:0:0:0: [sda] Write Protect is off
[    3.551801] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.551998] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.562767] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.566110]  sda: sda1
[    3.569147] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.678365] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.681008] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.683989] hub 1-1:1.0: USB hub found
[    3.686846] hub 1-1:1.0: 6 ports detected
[    3.792480] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.865386] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.868406] ata2.00: ATA-8: PLEXTOR PX-256M3, 1.05, max UDMA/133
[    3.871069] ata2.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    3.874124] ata2.00: configured for UDMA/133
[    3.877125] scsi 1:0:0:0: Direct-Access     ATA      PLEXTOR PX-256M3 1.05 PQ: 0 ANSI: 5
[    3.880171] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    3.880219] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.885605] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    3.888409] sd 1:0:0:0: [sdb] Write Protect is off
[    3.891085] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.891126] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.895857]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10
[    3.899694] sd 1:0:0:0: [sdb] Attached SCSI disk
[    3.911037] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    3.913851] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.916973] hub 2-1:1.0: USB hub found
[    3.919851] hub 2-1:1.0: 6 ports detected
[    3.997417] usb 1-1.6: new full-speed USB device number 3 using ehci-pci
[    4.049081] tsc: Refined TSC clocksource calibration: 2394.560 MHz
[    4.051864] Switching to clocksource tsc
[    4.088678] usb 1-1.6: New USB device found, idVendor=04ca, idProduct=2003
[    4.091709] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.094481] usb 1-1.6: Product: BCM20702A0
[    4.097479] usb 1-1.6: Manufacturer: Broadcom Corp
[    4.100251] usb 1-1.6: SerialNumber: 20689D9D9640
[    4.184860] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.191521] ata3.00: ATAPI: HL-DT-ST BD-RE BT20N, KV01, max UDMA/133
[    4.198007] ata3.00: configured for UDMA/133
[    4.198041] usb 2-1.6: new high-speed USB device number 3 using ehci-pci
[    4.207036] scsi 2:0:0:0: CD-ROM            HL-DT-ST BD-RE BT20N      KV01 PQ: 0 ANSI: 5
[    4.215385] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.218454] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.221497] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    4.221651] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    4.228012] Freeing unused kernel memory: 1076k freed
[    4.230977] Write protecting the kernel read-only data: 12288k
[    4.241860] Freeing unused kernel memory: 1772k freed
[    4.252652] Freeing unused kernel memory: 1380k freed
[    4.291376] usb 2-1.6: New USB device found, idVendor=04f2, idProduct=b2f1
[    4.294258] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.297177] usb 2-1.6: Product: Lenovo EasyCamera
[    4.300263] usb 2-1.6: Manufacturer: Vimicro Corp.
[    4.332712] systemd[1]: systemd 197 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    4.335879] systemd[1]: Running in initial RAM disk.
[    4.345920] systemd[1]: Set hostname to <ideapad.lan>.
[    4.363894] systemd[1]: Starting udev Kernel Socket.
[    4.369825] systemd[1]: Listening on udev Kernel Socket.
[    4.372745] systemd[1]: Starting udev Control Socket.
[    4.376793] systemd[1]: Listening on udev Control Socket.
[    4.377879] systemd[1]: Starting Journal Socket.
[    4.380087] systemd[1]: Listening on Journal Socket.
[    4.381143] systemd[1]: Starting dracut cmdline hook...
[    4.403106] systemd[1]: Started Load Kernel Modules.
[    4.405976] systemd[1]: Starting Journal Service...
[    4.431010] systemd[1]: Started Journal Service.
[    4.433936] systemd[1]: Starting Sockets.
[    4.439428] systemd[1]: Reached target Sockets.
[    4.442071] systemd[1]: Starting Swap.
[    4.445799] systemd[1]: Reached target Swap.
[    4.446796] systemd[1]: Starting Local File Systems.
[    4.448847] systemd[1]: Reached target Local File Systems.
[    4.592409] systemd-udevd[169]: starting version 197
[    4.766305] sdhci: Secure Digital Host Controller Interface driver
[    4.767571] sdhci: Copyright(c) Pierre Ossman
[    4.773539] sdhci-pci 0000:04:00.0: SDHCI controller found [197b:2392] (rev 30)
[    4.788659] [drm] Initialized drm 1.1.0 20060810
[    4.797875] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
[    4.798835] sdhci-pci 0000:04:00.2: SDHCI controller found [197b:2391] (rev 30)
[    4.799805] sdhci-pci 0000:04:00.2: Refusing to bind to secondary interface.
[    4.817892] wmi: Mapper loaded
[    4.887933] [drm:i915_dump_device_info], i915 device info: gen=7, pciid=0x0166 flags=is_mobile,need_gfx_hws,is_ivybridge,has_force_wake,has_hotplug,has_bsd_ring,has_blt_ring,has_llc,
[    4.888332] [drm] Memory usable by graphics device = 2048M
[    4.889590] [drm:i915_gem_gtt_init], GMADR size = 256M
[    4.889592] [drm:i915_gem_gtt_init], GTT stolen size = 0M
[    4.889594] checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
[    4.889596] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
[    4.890857] Console: switching to colour dummy device 80x25
[    4.890959] i915 0000:00:02.0: setting latency timer to 64
[    4.936133] [drm:intel_detect_pch], Found PatherPoint PCH
[    4.936214] [drm:intel_opregion_setup], graphic opregion physical addr: 0xbafb3018
[    4.936224] [drm:intel_opregion_setup], Public ACPI methods supported
[    4.936225] [drm:intel_opregion_setup], SWSCI supported
[    4.936226] [drm:intel_opregion_setup], ASLE supported
[    4.936245] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[    4.936250] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    4.936254] [drm] Driver supports precise vblank timestamp query.
[    4.936255] [i915 Hack] enter modeset
[    4.936257] [drm:init_vbt_defaults], Set default to SSC at 100MHz
[    4.936258] [drm:intel_parse_bios], Using VBT from OpRegion: $VBT SNB/IVB-MOBILE d
[    4.936260] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 1 lvds_ssc_freq 120 display_clock_mode 0
[    4.936261] [drm:parse_general_definitions], crt_ddc_bus_pin: 2
[    4.936263] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables:
[    4.936265] [drm:drm_mode_debug_printmodeline], Modeline 0:"1920x1080" 0 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x8 0xa
[    4.936267] [drm:parse_lfp_panel_data], VBT initial LVDS value 30033c
[    4.936268] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables:
[    4.936269] [drm:drm_mode_debug_printmodeline], Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa
[    4.936271] [drm:parse_sdvo_device_mapping], No SDVO device info is found in VBT
[    4.936272] [i915 Hack] after intel_parse_bios
[    4.936283] [i915 Hack] after vga_client_register
[    4.936325] [drm:intel_dsm_detect], VGA switcheroo: detected DSM switching method \_SB_.PCI0.GFX0 handle
[    4.936326] [i915 Hack] after intel_register_dsm_handler
[    4.936328] [i915 Hack] after intel_switchroo_register_client
[    4.936330] [i915 Hack] after i915_gen_init_stolen
[    4.936336] [drm:intel_modeset_init], 3 display pipes available.
[    4.936345] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    4.936347] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[    4.974624] [drm:intel_lvds_init], using preferred mode from EDID: 
[    4.974626] [drm:drm_mode_debug_printmodeline], 
[    4.974629] Modeline 12:"1920x1080" 0 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.974669] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    4.974683] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    4.974700] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus dpb. force bit now 1
[    4.975077] [drm:intel_sdvo_read_byte], i2c transfer returned -6
[    4.975078] [drm:intel_sdvo_init], No SDVO device found on SDVOB
[    4.975093] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus dpb. force bit now 0
[    4.975118] [drm:intel_dp_i2c_init], i2c_init DPDDC-B
[    4.977672] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    4.977673] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    4.980223] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    4.980224] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    4.980250] [drm:ironlake_init_pch_refclk], has_panel 1 has_lvds 1 has_pch_edp 0 has_cpu_edp 0 has_ck505 0
[    4.980253] [drm:ironlake_init_pch_refclk], Using SSC on panel
[    4.980658] [i915 Hack] after intel_modeset_init
[    4.982424] [drm:init_status_page], render ring hws offset: 0x00000000
[    4.982747] [drm:init_status_page], bsd ring hws offset: 0x00022000
[    4.982862] [drm:init_status_page], blitter ring hws offset: 0x00043000
[    4.982988] [drm:create_default_context], Default HW context loaded
[    4.982989] [drm:i915_gem_context_init], HW context support initialized
[    4.982995] [i915 Hack] after i915_gem_init
[    4.983023] [drm:intel_modeset_setup_hw_state], [CRTC:3] hw state readout: enabled
[    4.983024] [drm:intel_modeset_setup_hw_state], [CRTC:5] hw state readout: disabled
[    4.983025] [drm:intel_modeset_setup_hw_state], [CRTC:7] hw state readout: disabled
[    4.983028] [drm:intel_modeset_setup_hw_state], [ENCODER:10:LVDS-10] hw state readout: enabled, pipe=0
[    4.983031] [drm:intel_modeset_setup_hw_state], [ENCODER:16:DAC-16] hw state readout: disabled, pipe=0
[    4.983034] [drm:intel_modeset_setup_hw_state], [ENCODER:17:TMDS-17] hw state readout: disabled, pipe=0
[    4.983037] [drm:intel_modeset_setup_hw_state], [ENCODER:21:TMDS-21] hw state readout: disabled, pipe=0
[    4.983039] [drm:intel_modeset_setup_hw_state], [CONNECTOR:9:LVDS-1] hw state readout: enabled
[    4.983042] [drm:intel_modeset_setup_hw_state], [CONNECTOR:15:VGA-1] hw state readout: disabled
[    4.983045] [drm:intel_modeset_setup_hw_state], [CONNECTOR:18:HDMI-A-1] hw state readout: disabled
[    4.983047] [drm:intel_modeset_setup_hw_state], [CONNECTOR:22:DP-1] hw state readout: disabled
[    4.983051] [drm:intel_connector_check_state], [CONNECTOR:9:LVDS-1]
[    4.983056] [drm:intel_modeset_check_state], [ENCODER:10:LVDS-10]
[    4.983059] [drm:intel_modeset_check_state], [ENCODER:16:DAC-16]
[    4.983061] [drm:intel_modeset_check_state], [ENCODER:17:TMDS-17]
[    4.983063] [drm:intel_modeset_check_state], [ENCODER:21:TMDS-21]
[    4.983065] [drm:intel_modeset_check_state], [CRTC:3]
[    4.983066] [drm:intel_modeset_check_state], [CRTC:5]
[    4.983067] [drm:intel_modeset_check_state], [CRTC:7]
[    4.983071] [drm:intel_crt_reset], pch crt adpa set to 0xf40000
[    4.983072] [i915 Hack] after intel_modeset_gem_init
[    4.983097] [i915 Hack] after drm_irq_install
[    4.983102] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    4.983107] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    4.983109] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.983111] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    4.983113] [drm:intel_ironlake_crt_detect_hotplug], trigger hotplug detect cycle: adpa=0xf40000
[    4.992582] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    4.992584] [drm:intel_crt_detect], CRT not detected via hotplug
[    4.994591] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    4.994594] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    4.994595] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    4.994596] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    4.994965] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    4.994966] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    4.994967] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    4.994968] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    4.994970] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    4.996588] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    4.996591] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    4.996592] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    4.996594] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    4.999148] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    5.003121] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    5.007118] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    5.008556] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    5.008559] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    5.008560] [drm:drm_setup_crtcs], 
[    5.008561] [drm:drm_enable_connectors], connector 9 enabled? yes
[    5.008562] [drm:drm_enable_connectors], connector 15 enabled? no
[    5.008563] [drm:drm_enable_connectors], connector 18 enabled? no
[    5.008564] [drm:drm_enable_connectors], connector 22 enabled? no
[    5.008565] [drm:drm_target_preferred], looking for cmdline mode on connector 9
[    5.008566] [drm:drm_target_preferred], looking for preferred mode on connector 9
[    5.008567] [drm:drm_target_preferred], found mode 1920x1080
[    5.008568] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config
[    5.008569] [drm:drm_setup_crtcs], desired mode 1920x1080 set on crtc 3
[    5.014243] [drm:intelfb_create], allocated 1920x1080 fb: 0x00073000, bo ffff88022c3baa00
[    5.014323] fbcon: inteldrmfb (fb0) is primary device
[    5.014350] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.014351] [drm:intel_set_config_compute_mode_changes], crtc has no fb, full mode set
[    5.014352] [drm:intel_set_config_compute_mode_changes], modes are different, full mode set
[    5.014353] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    5.014355] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.014356] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.014357] [drm:intel_crtc_set_config], attempting to set mode from userspace
[    5.014358] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.014360] [drm:intel_set_mode], set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[    5.014362] [drm:intel_modeset_adjusted_mode], [CRTC:3]
[    5.014363] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.102217] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id: 1087391
[    5.173286] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    5.211143] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    5.224881] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    5.312395] [drm:ivb_modeset_global_resources], disabling fdi C rx
[    5.312403] [drm:ironlake_get_refclk], using SSC reference clock of 120 MHz
[    5.312442] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to LVDS (6)
[    5.312443] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 6)
[    5.312447] [drm:ironlake_crtc_mode_set], Mode for pipe 0:
[    5.312451] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.312454] [drm:intel_get_pch_pll], CRTC:3 allocated PCH PLL c6014
[    5.312455] [drm:intel_get_pch_pll], using pll 0 for pipe 0
[    5.312457] [drm:intel_get_pch_pll], switching PLL c6014 off
[    5.312772] [drm:ironlake_check_fdi_lanes], checking fdi config on pipe 0, lanes 2
[    5.364132] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.364143] [drm:ironlake_update_plane], Writing base 00073000 00000000 0 0 7680
[    5.364151] [drm:intel_crtc_mode_set], [ENCODER:10:LVDS-10] set [MODE:12:1920x1080]
[    5.364154] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    5.364157] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    5.364160] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    5.364162] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    5.364165] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    5.416005] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.467968] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.468131] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR before link train 0x700
[    5.468788] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x700
[    5.468791] [drm:ivb_manual_fdi_link_train], FDI train 1 done, level 0.
[    5.469448] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x600
[    5.469451] [drm:ivb_manual_fdi_link_train], FDI train 2 done, level 0.
[    5.469452] [drm:ivb_manual_fdi_link_train], FDI train done.
[    5.469455] [drm:ironlake_enable_pch_pll], enable PCH PLL c6014 (active 0, on? 0)for crtc 3
[    5.469459] [drm:ironlake_enable_pch_pll], enabling PCH PLL c6014
[    5.665679] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.671653] [drm:intel_connector_check_state], [CONNECTOR:9:LVDS-1]
[    5.671663] [drm:intel_modeset_check_state], [ENCODER:10:LVDS-10]
[    5.671667] [drm:intel_modeset_check_state], [ENCODER:16:DAC-16]
[    5.671670] [drm:intel_modeset_check_state], [ENCODER:17:TMDS-17]
[    5.671674] [drm:intel_modeset_check_state], [ENCODER:21:TMDS-21]
[    5.671677] [drm:intel_modeset_check_state], [CRTC:3]
[    5.671679] [drm:intel_modeset_check_state], [CRTC:5]
[    5.671681] [drm:intel_modeset_check_state], [CRTC:7]
[    5.671686] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    5.671690] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.671692] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    5.671695] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.671702] Console: switching to colour frame buffer device 240x67
[    5.671716] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.671720] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.683066] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    5.683068] i915 0000:00:02.0: registered panic notifier
[    5.683071] [i915 Hack] after intel_fbdev_init
[    5.683072] [i915 Hack] after drm_kms_helper_poll_init
[    5.683073] [i915 Hack] exit mode switch
[    5.683159] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.683440] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.692853] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.692865] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.692870] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.693401] [drm:asle_set_backlight], bclp = 0x80000000
[    5.693408] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.693413] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.693636] acpi device:3c: registered as cooling_device8
[    5.694043] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    5.694241] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:3a/LNXVIDEO:00/input/input6
[    5.712777] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.712783] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.712785] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.712948] [drm:asle_set_backlight], bclp = 0x80000000
[    5.712951] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.712953] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.713014] acpi device:48: registered as cooling_device9
[    5.713127] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.713180] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input7
[    5.713281] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    5.713652] nouveau  [  DEVICE][0000:01:00.0] BOOT0  : 0x0e7140a2
[    5.713688] nouveau  [  DEVICE][0000:01:00.0] Chipset: GK107 (NVE7)
[    5.713722] nouveau  [  DEVICE][0000:01:00.0] Family : NVE0
[    5.716169] nouveau  [   VBIOS][0000:01:00.0] checking PRAMIN for image...
[    5.764283] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.764310] nouveau  [   VBIOS][0000:01:00.0] checking PROM for image...
[    5.764384] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.764406] nouveau  [   VBIOS][0000:01:00.0] checking ACPI for image...
[    5.764434] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.764457] nouveau  [   VBIOS][0000:01:00.0] checking PCIROM for image...
[    5.764481] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.764503] nouveau E[   VBIOS][0000:01:00.0] unable to locate usable image
[    5.764528] nouveau E[  DEVICE][0000:01:00.0] failed to create 0x10000001, -22
[    5.764553] nouveau E[     DRM] failed to create 0x80000080, -22
[    5.764709] nouveau: probe of 0000:01:00.0 failed with error -22
[    6.003429] systemd-journald[125]: Received SIGTERM
[    6.060193] type=1404 audit(1361389077.143:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    6.096346] SELinux: 2048 avtab hash slots, 94720 rules.
[    6.109377] SELinux: 2048 avtab hash slots, 94720 rules.
[    6.198537] SELinux:  9 users, 15 roles, 4367 types, 239 bools, 1 sens, 1024 cats
[    6.198540] SELinux:  83 classes, 94720 rules
[    6.201325] SELinux:  Permission attach_queue in class tun_socket not defined in policy.
[    6.201357] SELinux: the above unknown classes and permissions will be allowed
[    6.201385] SELinux:  Completing initialization.
[    6.201386] SELinux:  Setting up existing superblocks.
[    6.201391] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    6.201394] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[    6.201399] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[    6.201403] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[    6.201408] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.201431] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[    6.201967] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[    6.201970] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[    6.202337] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[    6.202339] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[    6.202341] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[    6.202350] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.202354] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[    6.202358] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[    6.202364] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    6.202546] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[    6.202549] SELinux: initialized (dev efivarfs, type efivarfs), uses genfs_contexts
[    6.202555] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.202560] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.202607] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.202624] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.202626] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.202628] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.202638] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.202643] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.202645] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.202647] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.202648] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.202651] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.202657] SELinux: initialized (dev sdb9, type ext4), uses xattr
[    6.226049] type=1403 audit(1361389077.309:3): policy loaded auid=4294967295 ses=4294967295
[    6.234850] systemd[1]: Successfully loaded SELinux policy in 175ms 490us.
[    6.264114] systemd[1]: Relabelled /dev and /run in 14ms 271us.
[    6.447778] systemd-readahead[307]: Bumped block_nr parameter of 8:16 to 20480. This is a temporary hack and should be removed one day.
[    6.511463] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.569836] systemd-udevd[315]: starting version 197
[    6.587364] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.672738] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20121018/utaddress-251)
[    6.674271] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.676188] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20121018/utaddress-251)
[    6.677816] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.679457] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
[    6.681145] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20121018/utaddress-251)
[    6.682854] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.684585] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
[    6.686911] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20121018/utaddress-251)
[    6.688737] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.690552] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.694835] mei 0000:00:16.0: setting latency timer to 64
[    6.694922] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[    6.695807] input: Ideapad extra buttons as /devices/platform/ideapad/input/input8
[    6.699231] media: Linux media interface: v0.10
[    6.701941] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    6.705169] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    6.706903] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    6.708475] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    6.710245] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    6.712088] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    6.713864] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    6.715251] iTCO_vendor_support: vendor-support=0
[    6.715274] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    6.715321] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.730238] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    6.731649] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    6.733092] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.738529] Linux video capture interface: v2.00
[    6.745895] [drm:intel_enable_rc6], RC6 and deep RC6 enabled
[    6.745898] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    6.777715] Bluetooth: Core ver 2.16
[    6.779451] NET: Registered protocol family 31
[    6.781103] Bluetooth: HCI device and connection manager initialized
[    6.782395] Bluetooth: HCI socket layer initialized
[    6.783668] Bluetooth: L2CAP socket layer initialized
[    6.785127] Bluetooth: SCO socket layer initialized
[    6.791293] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2f1)
[    6.793817] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input9
[    6.795178] usbcore: registered new interface driver uvcvideo
[    6.796463] USB Video Class driver (1.1.1)
[    6.810568] cfg80211: Calling CRDA to update world regulatory domain
[    6.814688] cfg80211: World regulatory domain updated:
[    6.816411] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    6.818110] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.819480] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.820779] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.822026] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.822235] usbcore: registered new interface driver btusb
[    6.824584] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.871226] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[    6.872908] Copyright(c) 2003-2012 Intel Corporation
[    6.874791] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
[    6.875090] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1
[    6.950746] EXT4-fs (sdb9): re-mounted. Opts: (null)
[    6.958476] tun: Universal TUN/TAP device driver, 1.6
[    6.959767] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    7.006258] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[    7.026026] ALSA sound/pci/hda/patch_realtek.c:1241 SKU: Nid=0x1d sku_cfg=0x4015822d
[    7.026028] ALSA sound/pci/hda/patch_realtek.c:1243 SKU: port_connectivity=0x1
[    7.026029] ALSA sound/pci/hda/patch_realtek.c:1244 SKU: enable_pcbeep=0x1
[    7.026030] ALSA sound/pci/hda/patch_realtek.c:1245 SKU: check_sum=0x00000005
[    7.026031] ALSA sound/pci/hda/patch_realtek.c:1246 SKU: customization=0x00000082
[    7.026032] ALSA sound/pci/hda/patch_realtek.c:1247 SKU: external_amp=0x5
[    7.026033] ALSA sound/pci/hda/patch_realtek.c:1248 SKU: platform_type=0x1
[    7.026033] ALSA sound/pci/hda/patch_realtek.c:1249 SKU: swap=0x0
[    7.026034] ALSA sound/pci/hda/patch_realtek.c:1250 SKU: override=0x1
[    7.026038] ALSA sound/pci/hda/hda_auto_parser.c:306 autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    7.026039] ALSA sound/pci/hda/hda_auto_parser.c:310    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.026040] ALSA sound/pci/hda/hda_auto_parser.c:314    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    7.026041] ALSA sound/pci/hda/hda_auto_parser.c:315    mono: mono_out=0x0
[    7.026042] ALSA sound/pci/hda/hda_auto_parser.c:318    dig-out=0x1e/0x0
[    7.026043] ALSA sound/pci/hda/hda_auto_parser.c:319    inputs:
[    7.026044] ALSA sound/pci/hda/hda_auto_parser.c:323      Mic=0x18
[    7.026045] ALSA sound/pci/hda/hda_auto_parser.c:323      Internal Mic=0x12
[    7.027249] ALSA sound/pci/hda/patch_realtek.c:1304 realtek: No valid SSID, checking pincfg 0x4015822d for NID 0x1d
[    7.027250] ALSA sound/pci/hda/patch_realtek.c:1320 realtek: Enabling init ASM_ID=0x822d CODEC_ID=10ec0269
[    7.047465] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    7.050352] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    7.053098] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    7.281996] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
[    7.285498] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[    7.288979] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    7.292838] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[    7.296631] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled
[    7.300385] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 2200 BGN, REV=0x104
[    7.303790] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    7.332564] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    7.336390] cfg80211: Calling CRDA for country: US
[    7.342539] cfg80211: Regulatory domain changed to country: US
[    7.346119] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.349085] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.352211] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.355241] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.358204] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.361105] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.363196] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.365278] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[    7.459152] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[    7.778964] Adding 8044540k swap on /dev/sdb8.  Priority:-1 extents:1 across:8044540k SS
[    7.784596] SELinux: initialized (dev sdb2, type vfat), uses genfs_contexts
[    7.862929] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
[    7.865877] SELinux: initialized (dev sdb7, type ext4), uses xattr
[    7.885484] EXT4-fs (sdb10): mounted filesystem with ordered data mode. Opts: (null)
[    7.888241] SELinux: initialized (dev sdb10, type ext4), uses xattr
[    7.931238] SELinux: initialized (dev sdb6, type vfat), uses genfs_contexts
[    8.569544] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    8.571190] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.572251] Bluetooth: BNEP filters: protocol multicast
[    8.573310] Bluetooth: BNEP socket layer initialized
[    8.589824] Ebtables v2.0 registered
[    8.598754] Bluetooth: RFCOMM TTY layer initialized
[    8.601259] Bluetooth: RFCOMM socket layer initialized
[    8.603175] Bluetooth: RFCOMM ver 1.11
[    8.715526] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    8.900615] Loading iSCSI transport class v2.0-870.
[    8.939264] iscsi: registered transport (tcp)
[    8.984126] systemd-journald[467]: Received SIGUSR1
[    8.993743] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    9.002558] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    9.195754] [drm:i915_driver_open], 
[    9.195776] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    9.195779] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.195781] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    9.195791] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.195792] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    9.195793] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.195797] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.195799] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.195800] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.195801] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.195802] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.195804] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.195805] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.195807] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.195808] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.195809] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.195811] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.195812] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.195813] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.195814] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.195816] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199558] [drm:i915_driver_open], 
[    9.199569] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    9.199572] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199573] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    9.199575] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199576] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    9.199577] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199580] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199581] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199582] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199584] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199585] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199587] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199588] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199589] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199590] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199591] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199593] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199594] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199596] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199597] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199598] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199603] [drm:i915_driver_open], 
[    9.199615] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    9.199617] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199618] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    9.199619] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199620] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    9.199621] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199623] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199624] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199625] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199626] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199627] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199629] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199630] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199632] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199633] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199634] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199636] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199637] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199638] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199639] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199640] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199673] [drm:i915_driver_open], 
[    9.199676] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    9.199678] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199679] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    9.199680] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199681] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    9.199682] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199684] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199685] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199686] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199687] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199688] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199690] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199691] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199693] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199694] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199695] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199697] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199698] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199699] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199700] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199702] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199900] [drm:i915_driver_open], 
[    9.199905] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    9.199907] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199908] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    9.199909] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199910] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    9.199911] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.199913] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199915] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199916] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199917] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199918] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199920] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199921] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199922] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199924] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199925] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199926] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    9.199928] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    9.199929] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    9.199930] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    9.199931] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    9.199936] [drm:i915_driver_open], 
[    9.200065] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    9.200068] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    9.200121] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.200123] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    9.200130] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    9.200131] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    9.200134] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.200243] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.200245] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.200247] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.200248] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.201309] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.201311] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.201312] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.201313] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.201645] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.201646] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.201647] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.201648] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.201652] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.201653] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.201654] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.201655] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.203318] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.203320] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.203321] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.203321] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.203662] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.203663] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.203664] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.203665] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.203683] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.203684] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.206306] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.206308] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.206309] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.206312] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.206313] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.209302] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.209304] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.209305] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.209326] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.209327] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.211858] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.215826] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.219827] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.221284] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    9.221287] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.221308] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.221310] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.223844] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.227805] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.231805] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.233264] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    9.233267] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.233447] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.233449] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    9.233456] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    9.233457] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    9.233460] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.234092] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.234094] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.234096] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.234097] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.235274] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.235277] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.235278] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.235279] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.235621] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.235622] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.235623] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.235624] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.235628] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.235629] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.235631] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.235632] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.237288] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.237299] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.237301] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.237301] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.237633] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.237634] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.237635] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.237636] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.237660] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.237662] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.239259] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.239262] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.239263] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.239267] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.239268] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.241255] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.241258] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.241260] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.241320] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.241321] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.243853] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.247776] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.251770] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.253235] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    9.253238] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.253242] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.253243] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.255775] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.259782] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.263753] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.265217] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    9.265219] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.267484] [drm:asle_set_backlight], bclp = 0x80000000
[    9.267488] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    9.267490] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    9.267707] [drm:asle_set_backlight], bclp = 0x80000000
[    9.267710] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    9.267711] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    9.268389] [drm:drm_mode_addfb], [FB:25]
[    9.268431] [drm:drm_mode_setcrtc], [CRTC:3]
[    9.268434] [drm:drm_mode_setcrtc], [CONNECTOR:9:LVDS-1]
[    9.268435] [drm:intel_crtc_set_config], [CRTC:3] [FB:25] #connectors=1 (x y) (0 0)
[    9.268438] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.272600] [drm:ironlake_update_plane], Writing base 0085C000 00000000 0 0 7680
[    9.276312] [drm:drm_mode_setcrtc], [CRTC:5]
[    9.276317] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    9.276320] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.276322] [drm:drm_mode_setcrtc], [CRTC:7]
[    9.276323] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    9.276324] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.365910] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    9.373432] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    9.420317] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.420326] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    9.420345] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    9.420349] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    9.420357] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.420679] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.420684] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.420689] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.420692] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.421992] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.421999] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.422003] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.422006] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.422349] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.422352] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.422355] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.422358] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.422365] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.422368] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.422372] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.422374] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.424000] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.424008] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.424012] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.424014] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.424355] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.424357] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.424360] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.424363] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.424383] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.424386] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.426001] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.426009] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.426013] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.426023] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.426027] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.428000] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.428008] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.428013] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.428031] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.428036] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.430588] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.434531] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.438547] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.440013] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    9.440023] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.440045] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.440050] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.442597] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.446547] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.450533] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.451989] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    9.451998] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.565760] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    9.581259] iscsi: registered transport (iser)
[    9.596399] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[    9.596403] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[    9.674535] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[    9.674581] iscsi: registered transport (cxgb3i)
[    9.740411] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[    9.740444] iscsi: registered transport (cxgb4i)
[    9.764868] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.16 (Dec 05, 2012)
[    9.788639] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Apr 25, 2012)
[    9.788664] iscsi: registered transport (bnx2i)
[    9.804174] [drm:i915_driver_open], 
[    9.807387] [drm:i915_gem_context_create_ioctl], HW context 1 created
[    9.807860] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[    9.813631] iscsi: registered transport (be2iscsi)
[    9.813635] In beiscsi_module_init, tt=ffffffffa0841000
[    9.843020] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.843026] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    9.843036] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    9.843038] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    9.843043] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.843443] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.843446] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.843450] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.843452] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.845358] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.845362] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.845364] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.845365] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.845698] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.845700] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.845701] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.845702] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.845707] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.845708] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.845710] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.845711] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.848370] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.848377] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.848381] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.848383] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.848727] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.848728] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.848729] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.848731] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.848741] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.848743] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.850369] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.850376] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.850381] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.850394] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.850398] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.852373] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.852382] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.852388] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.852408] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.852412] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.854961] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.858915] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.862891] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.864350] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    9.864357] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.864383] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.864388] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.866932] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.870874] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.874872] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    9.876348] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    9.876357] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[   10.004906] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[   10.008683] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[   10.012671] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[   10.014129] [drm:intel_dp_detect], DPCD: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[   10.016114] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[   10.016118] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[   10.016232] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[   10.016237] [drm:intel_crt_detect], CRT not detected via hotplug
[   10.018120] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   10.018130] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   10.018135] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   10.018138] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   10.018320] wlan0: authenticate with bc:ae:c5:c3:07:c4
[   10.018692] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   10.018696] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   10.018699] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[   10.025023] wlan0: capabilities/regulatory prevented using AP HT/VHT configuration, downgraded
[   10.028828] wlan0: send auth to bc:ae:c5:c3:07:c4 (try 1/3)
[   10.031622] wlan0: authenticated
[   10.032108] wlan0: associate with bc:ae:c5:c3:07:c4 (try 1/3)
[   10.035519] wlan0: RX AssocResp from bc:ae:c5:c3:07:c4 (capab=0x411 status=0 aid=1)
[   10.054762] wlan0: associated
[   10.054821] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   10.458808] [drm:i915_driver_open], 
[   10.461599] [drm:i915_gem_context_create_ioctl], HW context 1 created
[   10.462036] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[   10.463256] [drm:i915_gem_context_create_ioctl], HW context 1 created
[   12.745506] cgroup: libvirtd (1256) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   12.745512] cgroup: "memory" requires setting use_hierarchy to 1 on the root.
[   12.745589] cgroup: libvirtd (1256) created nested cgroup for controller "devices" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   12.745684] cgroup: libvirtd (1256) created nested cgroup for controller "blkio" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   13.145971] [drm:drm_mode_addfb], [FB:26]
[   13.165085] [drm:drm_mode_addfb], [FB:25]
[   13.185148] [drm:drm_mode_addfb], [FB:26]
[   13.215186] [drm:drm_mode_addfb], [FB:25]
[   13.245606] [drm:drm_mode_addfb], [FB:26]
[   13.265382] [drm:drm_mode_addfb], [FB:25]
[   13.282037] [drm:drm_mode_addfb], [FB:26]
[   13.298711] [drm:drm_mode_addfb], [FB:25]
[   13.315406] [drm:drm_mode_addfb], [FB:26]
[   13.332126] [drm:drm_mode_addfb], [FB:25]
[   13.349984] [drm:drm_mode_addfb], [FB:26]
[   14.155867] [drm:drm_mode_addfb], [FB:25]
[   14.166579] [drm:drm_mode_addfb], [FB:26]
[   14.183300] [drm:drm_mode_addfb], [FB:25]
[   14.199995] [drm:drm_mode_addfb], [FB:26]
[   14.216682] [drm:drm_mode_addfb], [FB:25]
[   14.233372] [drm:drm_mode_addfb], [FB:26]
[   14.250062] [drm:drm_mode_addfb], [FB:25]
[   14.266742] [drm:drm_mode_addfb], [FB:26]
[   14.283451] [drm:drm_mode_addfb], [FB:25]
[   14.300137] [drm:drm_mode_addfb], [FB:26]
[   14.316831] [drm:drm_mode_addfb], [FB:25]
[   14.333510] [drm:drm_mode_addfb], [FB:26]
[   14.350212] [drm:drm_mode_addfb], [FB:25]
[   14.366870] [drm:drm_mode_addfb], [FB:26]
[   14.767254] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[   14.767263] Bluetooth: HIDP socket layer initialized
[   14.767807] hid-generic 0005:046D:B002.0001: unknown main item tag 0x0
[   14.767920] input: Bluetooth Travel Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/bluetooth/hci0/hci0:11/input13
[   14.768441] hid-generic 0005:046D:B002.0001: input,hidraw0: BLUETOOTH HID v48.09 Mouse [Bluetooth Travel Mouse] on 20:68:9d:9d:96:40
[   18.590905] fuse init (API version 7.20)
[   18.594550] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[   18.607138] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
[   18.914464] nf_conntrack: automatic helper assignment is deprecated and it will be removed soon. Use the iptables CT target to attach helpers instead.
[   66.315952] [drm:drm_mode_addfb], [FB:25]
[  126.218101] [drm:drm_mode_addfb], [FB:26]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 19:45           ` Chris Li
@ 2013-02-20 20:01             ` Chris Li
  2013-02-20 20:19             ` Daniel Vetter
  1 sibling, 0 replies; 29+ messages in thread
From: Chris Li @ 2013-02-20 20:01 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown

On Wed, Feb 20, 2013 at 11:45 AM, Chris Li <lkml@chrisli.org> wrote:
> Here is the dmesg with "drm.debug=0xe". It is from the tip of git
> kernel. The computer has the black screen.
> Let me know what else do you need.

More probing. When I use type "reboot" via ssh. The machine will
able to exit the black screen  and show normal text based terminal
for the systemd shutdown message.

However, even if I switch the default run level to 3, without starting
X. The black screen still appear. I guess the black screen disappear
when kernel stop using virtual terminal.

I also verify that, in the good 3.6.x kernel. I am able to logout from
X and log back in without trigger black screen of death.

Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 19:45           ` Chris Li
  2013-02-20 20:01             ` Chris Li
@ 2013-02-20 20:19             ` Daniel Vetter
  2013-02-20 20:23               ` Chris Li
  2013-02-20 20:43               ` Chris Li
  1 sibling, 2 replies; 29+ messages in thread
From: Daniel Vetter @ 2013-02-20 20:19 UTC (permalink / raw)
  To: Chris Li; +Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown

On Wed, Feb 20, 2013 at 8:45 PM, Chris Li <lkml@chrisli.org> wrote:
> On Wed, Feb 20, 2013 at 2:57 AM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
>
>> Starts to smell like a bog-standard i915 black screen bug (albeit with
>> a strange cause for the regression). Can you please boot the broken
>> kernels again with drm.debug=0xe and grab the complete dmesg?
>> Depending upon how long it takes for your wifi to get up, you might
>> need to extend the log buffer, it dumps a lot.
>
> Here is the dmesg with "drm.debug=0xe". It is from the tip of git
> kernel. The computer has the black screen.
> Let me know what else do you need.

The debug option did not stick for some reason. Also you're hitting a
bunch of WARNs in our driver self-checks. Iirc those should be fixed
in the latest code. Can you please test with the latest
drm-intel-nightly branch from

http://cgit.freedesktop.org/~danvet/drm-intel

Also can you please attach a dmesg from a working kernel without the
i915.modeset=0 option?

Thanks, Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 20:19             ` Daniel Vetter
@ 2013-02-20 20:23               ` Chris Li
  2013-02-20 20:43               ` Chris Li
  1 sibling, 0 replies; 29+ messages in thread
From: Chris Li @ 2013-02-20 20:23 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown

On Wed, Feb 20, 2013 at 12:19 PM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
> The debug option did not stick for some reason. Also you're hitting a
> bunch of WARNs in our driver self-checks. Iirc those should be fixed
> in the latest code. Can you please test with the latest
> drm-intel-nightly branch from
>
> http://cgit.freedesktop.org/~danvet/drm-intel

Sure, working on that.


>
> Also can you please attach a dmesg from a working kernel without the
> i915.modeset=0 option?

I did in one of my previous email, the attach file is "dmesg.3.6.10".
I just double check it without the "i915.modeset=0".

Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 20:19             ` Daniel Vetter
  2013-02-20 20:23               ` Chris Li
@ 2013-02-20 20:43               ` Chris Li
  2013-02-20 21:04                 ` Chris Li
  1 sibling, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-02-20 20:43 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown

[-- Attachment #1: Type: text/plain, Size: 580 bytes --]

On Wed, Feb 20, 2013 at 12:19 PM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
> The debug option did not stick for some reason. Also you're hitting a
> bunch of WARNs in our driver self-checks. Iirc those should be fixed
> in the latest code. Can you please test with the latest
> drm-intel-nightly branch from
>
> http://cgit.freedesktop.org/~danvet/drm-intel
>

Here it is. See the attached "dmesg.intel-nightly".
I have no idea when the debug optin did not stick. I put it under
grub2-efi.cfg.

I still get black screen on your intel-nightly branch.

Hope that helps.

Chris

[-- Attachment #2: dmesg.intel-nightly --]
[-- Type: application/octet-stream, Size: 114295 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.8.0-rc6+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #24 SMP Wed Feb 20 12:35:09 PST 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.8.0-rc6+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] 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-0x00000000b3fecfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] e820: update [mem 0xb3cee018-0xb3d03e57] usable ==> usable
[    0.000000] e820: update [mem 0xb3cdd018-0xb3ced057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040005000-0x00000000b3cdd017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cdd018-0x00000000b3ced057] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3ced058-0x00000000b3cee017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cee018-0x00000000b3d03e57] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3d03e58-0x00000000b3fecfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xbaffe000  ACPI 2.0=0xbaffe014  SMBIOS=0xbaebef98 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000004000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000004000-0x000000000000e000) (0MB)
[    0.000000] efi: mem03: type=3, attr=0xf, range=[0x000000000000e000-0x0000000000010000) (0MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000010000-0x000000000002e000) (0MB)
[    0.000000] efi: mem05: type=3, attr=0xf, range=[0x000000000002e000-0x000000000002f000) (0MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x000000000002f000-0x0000000000030000) (0MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000000030000-0x000000000006f000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem10: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x0000000001000000-0x000000000238f000) (19MB)
[    0.000000] efi: mem13: type=7, attr=0xf, range=[0x000000000238f000-0x0000000020000000) (476MB)
[    0.000000] efi: mem14: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000020200000-0x000000003e289000) (480MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000003e289000-0x0000000040000000) (29MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000040000000-0x0000000040004000) (0MB)
[    0.000000] efi: mem18: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000040005000-0x000000008634e000) (1123MB)
[    0.000000] efi: mem20: type=2, attr=0xf, range=[0x000000008634e000-0x00000000b31c0000) (718MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000b31c0000-0x00000000b31e0000) (0MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000b31e0000-0x00000000b3a7e000) (8MB)
[    0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000b3a7e000-0x00000000b3b4d000) (0MB)
[    0.000000] efi: mem24: type=1, attr=0xf, range=[0x00000000b3b4d000-0x00000000b3c84000) (1MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000b3c84000-0x00000000b3cdd000) (0MB)
[    0.000000] efi: mem26: type=2, attr=0xf, range=[0x00000000b3cdd000-0x00000000b3dd3000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000b3dd3000-0x00000000b3fed000) (2MB)
[    0.000000] efi: mem28: type=0, attr=0xf, range=[0x00000000b3fed000-0x00000000b4d6e000) (13MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000b4d6e000-0x00000000b4db0000) (0MB)
[    0.000000] efi: mem30: type=0, attr=0xf, range=[0x00000000b4db0000-0x00000000b61b0000) (20MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b61b0000-0x00000000b61bd000) (0MB)
[    0.000000] efi: mem32: type=2, attr=0xf, range=[0x00000000b61bd000-0x00000000b61bf000) (0MB)
[    0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b61bf000-0x00000000b6279000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b6279000-0x00000000b81aa000) (31MB)
[    0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b81aa000-0x00000000b81b2000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b81b2000-0x00000000b81b4000) (0MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b81b4000-0x00000000b81b6000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b81b6000-0x00000000b81e6000) (0MB)
[    0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b81e6000-0x00000000b81ec000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b81ec000-0x00000000b81ed000) (0MB)
[    0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b81ed000-0x00000000b81ee000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b81ee000-0x00000000b81f8000) (0MB)
[    0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b81f8000-0x00000000b81f9000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b81f9000-0x00000000b821f000) (0MB)
[    0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b821f000-0x00000000b8221000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b8221000-0x00000000b83a0000) (1MB)
[    0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b83a0000-0x00000000b83a4000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b83a4000-0x00000000b83a7000) (0MB)
[    0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b83a7000-0x00000000b83a8000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b83a8000-0x00000000b83f8000) (0MB)
[    0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b83f8000-0x00000000b8420000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b8420000-0x00000000b859e000) (1MB)
[    0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b859e000-0x00000000b85a0000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b85a0000-0x00000000b85ba000) (0MB)
[    0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b85ba000-0x00000000b85bb000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b85bb000-0x00000000b87e8000) (2MB)
[    0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b87e8000-0x00000000b87f8000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b87f8000-0x00000000ba3bf000) (27MB)
[    0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000ba3bf000-0x00000000ba495000) (0MB)
[    0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000ba495000-0x00000000ba7bf000) (3MB)
[    0.000000] efi: mem61: type=5, attr=0x800000000000000f, range=[0x00000000ba7bf000-0x00000000ba880000) (0MB)
[    0.000000] efi: mem62: type=6, attr=0x800000000000000f, range=[0x00000000ba880000-0x00000000ba881000) (0MB)
[    0.000000] efi: mem63: type=5, attr=0x800000000000000f, range=[0x00000000ba881000-0x00000000ba8b0000) (0MB)
[    0.000000] efi: mem64: type=6, attr=0x800000000000000f, range=[0x00000000ba8b0000-0x00000000ba8b1000) (0MB)
[    0.000000] efi: mem65: type=5, attr=0x800000000000000f, range=[0x00000000ba8b1000-0x00000000ba8b3000) (0MB)
[    0.000000] efi: mem66: type=6, attr=0x800000000000000f, range=[0x00000000ba8b3000-0x00000000ba8b4000) (0MB)
[    0.000000] efi: mem67: type=5, attr=0x800000000000000f, range=[0x00000000ba8b4000-0x00000000ba8cc000) (0MB)
[    0.000000] efi: mem68: type=6, attr=0x800000000000000f, range=[0x00000000ba8cc000-0x00000000ba8cd000) (0MB)
[    0.000000] efi: mem69: type=5, attr=0x800000000000000f, range=[0x00000000ba8cd000-0x00000000ba8d2000) (0MB)
[    0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000ba8d2000-0x00000000ba8d3000) (0MB)
[    0.000000] efi: mem71: type=5, attr=0x800000000000000f, range=[0x00000000ba8d3000-0x00000000ba8e1000) (0MB)
[    0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000ba8e1000-0x00000000ba8e2000) (0MB)
[    0.000000] efi: mem73: type=5, attr=0x800000000000000f, range=[0x00000000ba8e2000-0x00000000ba8f2000) (0MB)
[    0.000000] efi: mem74: type=6, attr=0x800000000000000f, range=[0x00000000ba8f2000-0x00000000ba937000) (0MB)
[    0.000000] efi: mem75: type=5, attr=0x800000000000000f, range=[0x00000000ba937000-0x00000000ba9bf000) (0MB)
[    0.000000] efi: mem76: type=6, attr=0x800000000000000f, range=[0x00000000ba9bf000-0x00000000baabf000) (1MB)
[    0.000000] efi: mem77: type=0, attr=0xf, range=[0x00000000baabf000-0x00000000baebf000) (4MB)
[    0.000000] efi: mem78: type=10, attr=0xf, range=[0x00000000baebf000-0x00000000bafbf000) (1MB)
[    0.000000] efi: mem79: type=9, attr=0xf, range=[0x00000000bafbf000-0x00000000bafff000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000bafff000-0x00000000bb000000) (0MB)
[    0.000000] efi: mem81: type=7, attr=0xf, range=[0x0000000100000000-0x000000023f600000) (5110MB)
[    0.000000] efi: mem82: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem83: type=0, attr=0x0, range=[0x00000000bb000000-0x00000000bfa00000) (74MB)
[    0.000000] efi: mem84: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem85: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem86: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem87: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem88: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem89: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem90: type=11, attr=0x8000000000000000, range=[0x00000000ffb80000-0x0000000100000000) (4MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20132/INVALID, BIOS 5DCN90WW(V8.01) 10/11/2012
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x23f600 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-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   5 base 100000000 mask F00000000 write-back
[    0.000000]   6 base 200000000 mask FC0000000 write-back
[    0.000000]   7 base 23F600000 mask FFFE00000 uncachable
[    0.000000]   8 base 23F800000 mask FFF800000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [ffff8800000fe1c0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000028000] 28000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xbaffffff]
[    0.000000]  [mem 0x00000000-0xbaffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0xbaffffff @ [mem 0x1fffc000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x23f5fffff]
[    0.000000]  [mem 0x100000000-0x23f5fffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x23f5fffff @ [mem 0xba48f000-0xba494fff]
[    0.000000] RAMDISK: [mem 0x3e289000-0x3fffafff]
[    0.000000] ACPI: RSDP 00000000baffe014 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000baffe210 000AC (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 00000000baffa000 0010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DSDT 00000000bafec000 0A638 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000bafbb000 00040
[    0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 00000000baffc000 00236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! 00000000baffb000 000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 00000000baff9000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000baff8000 0008C (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000baff7000 0003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafeb000 006FE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000bafe9000 00028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT 00000000bafe7000 00034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DBGP 00000000bafe6000 00034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 00000000bafe4000 00044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MSDM 00000000bafe3000 00055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe2000 00926 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafdd000 02333 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BGRT 00000000bafe0000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x23f5fffff]
[    0.000000]   NODE_DATA [mem 0x23f5ec000-0x23f5fffff]
[    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236c00000-ffff88023ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x23f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xb3fecfff]
[    0.000000]   node   0: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]   node   0: [mem 0xb61b0000-0xba7befff]
[    0.000000]   node   0: [mem 0xbafff000-0xbaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x23f5fffff]
[    0.000000] On node 0 totalpages: 2062774
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 96 pages reserved
[    0.000000]   DMA zone: 3800 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11729 pages used for memmap
[    0.000000]   DMA32 zone: 738925 pages, LIFO batch:31
[    0.000000]   Normal zone: 20440 pages used for memmap
[    0.000000]   Normal zone: 1287720 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 0000000000088000 - 00000000000c0000
[    0.000000] PM: Registered nosave memory: 00000000000c0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000b3cdd000 - 00000000b3cde000
[    0.000000] PM: Registered nosave memory: 00000000b3ced000 - 00000000b3cee000
[    0.000000] PM: Registered nosave memory: 00000000b3cee000 - 00000000b3cef000
[    0.000000] PM: Registered nosave memory: 00000000b3d03000 - 00000000b3d04000
[    0.000000] PM: Registered nosave memory: 00000000b3fed000 - 00000000b4d6e000
[    0.000000] PM: Registered nosave memory: 00000000b4db0000 - 00000000b61b0000
[    0.000000] PM: Registered nosave memory: 00000000ba7bf000 - 00000000baebf000
[    0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
[    0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
[    0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
[    0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
[    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[    0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[    0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
[    0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
[    0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023f200000 s84544 r8192 d21952 u262144
[    0.000000] pcpu-alloc: s84544 r8192 d21952 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2030445
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.8.0-rc6+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 7934004k/9426944k available (6409k kernel code, 1175848k absent, 317092k reserved, 6804k data, 1076k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:8448 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.001000] tsc: Detected 2394.457 MHz processor
[    0.000010] Calibrating delay loop (skipped), value calculated using timer frequency.. 4788.91 BogoMIPS (lpj=2394457)
[    0.000016] pid_max: default: 32768 minimum: 301
[    0.022919] Security Framework initialized
[    0.022930] SELinux:  Initializing.
[    0.022939] SELinux:  Starting in permissive mode
[    0.023533] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.025613] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.026512] Mount-cache hash table entries: 256
[    0.026668] Initializing cgroup subsys cpuacct
[    0.026672] Initializing cgroup subsys memory
[    0.026683] Initializing cgroup subsys devices
[    0.026686] Initializing cgroup subsys freezer
[    0.026688] Initializing cgroup subsys net_cls
[    0.026691] Initializing cgroup subsys blkio
[    0.026693] Initializing cgroup subsys perf_event
[    0.026719] CPU: Physical Processor ID: 0
[    0.026721] CPU: Processor Core ID: 0
[    0.026727] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.027112] mce: CPU supports 9 MCE banks
[    0.027126] CPU0: Thermal monitoring enabled (TM1)
[    0.027133] process: using mwait in idle threads
[    0.027138] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
[    0.027292] Freeing SMP alternatives: 24k freed
[    0.028367] ACPI: Core revision 20121018
[    0.051075] ftrace: allocating 24026 entries in 94 pages
[    0.062738] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.072728] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz (fam: 06, model: 3a, stepping: 09)
[    0.072737] TSC deadline timer enabled
[    0.072741] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[    0.072749] ... version:                3
[    0.072751] ... bit width:              48
[    0.072752] ... generic registers:      4
[    0.072754] ... value mask:             0000ffffffffffff
[    0.072756] ... max period:             000000007fffffff
[    0.072758] ... fixed-purpose events:   3
[    0.072760] ... event mask:             000000070000000f
[    0.087634] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.073892] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.169726] Brought up 8 CPUs
[    0.169732] smpboot: Total of 8 processors activated (38311.31 BogoMIPS)
[    0.176812] devtmpfs: initialized
[    0.176982] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
[    0.177618] atomic64 test passed for x86-64 platform with CX8 and with SSE
[    0.177646] RTC time: 20:39:17, date: 02/20/13
[    0.177684] NET: Registered protocol family 16
[    0.177825] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.177828] ACPI: bus type pci registered
[    0.177876] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.177880] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.186874] PCI: Using configuration type 1 for base access
[    0.187610] bio: create slab <bio-0> at 0
[    0.187670] ACPI: Added _OSI(Module Device)
[    0.187673] ACPI: Added _OSI(Processor Device)
[    0.187675] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.187677] ACPI: Added _OSI(Processor Aggregator Device)
[    0.189104] ACPI: EC: Look up EC in DSDT
[    0.190588] ACPI: Executed 1 blocks of module-level executable AML code
[    0.193436] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.194061] ACPI: SSDT 00000000babae018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.194425] ACPI: Dynamic OEM Table Load:
[    0.194428] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.197803] ACPI: SSDT 00000000babafa98 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.198189] ACPI: Dynamic OEM Table Load:
[    0.198192] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.202702] ACPI: SSDT 00000000babadd98 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.203060] ACPI: Dynamic OEM Table Load:
[    0.203062] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.208789] ACPI: Interpreter enabled
[    0.208794] ACPI: (supports S0 S3 S4 S5)
[    0.208812] ACPI: Using IOAPIC for interrupt routing
[    0.294666] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.294788] ACPI: No dock devices found.
[    0.294792] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.295028] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.295032] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.295235] \_SB_.PCI0:_OSC invalid UUID
[    0.295236] _OSC request data:1 8 1f 
[    0.295276] \_SB_.PCI0:_OSC invalid UUID
[    0.295277] _OSC request data:1 1f 1f 
[    0.295280] pci_root PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.295284] pci_root PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.295735] PCI host bridge to bus 0000:00
[    0.295739] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.295742] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.295745] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.295748] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.295751] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
[    0.295760] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.295795] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.295824] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.295843] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.295853] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
[    0.295858] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.295862] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    0.295913] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.295936] pci 0000:00:14.0: reg 10: [mem 0xd3700000-0xd370ffff 64bit]
[    0.296007] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.296031] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.296054] pci 0000:00:16.0: reg 10: [mem 0xd3714000-0xd371400f 64bit]
[    0.296130] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.296165] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.296186] pci 0000:00:1a.0: reg 10: [mem 0xd3719000-0xd37193ff]
[    0.296276] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.296303] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.296317] pci 0000:00:1b.0: reg 10: [mem 0xd3710000-0xd3713fff 64bit]
[    0.296386] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.296409] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.296487] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.296513] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.296590] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.296618] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    0.296699] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.296732] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.296753] pci 0000:00:1d.0: reg 10: [mem 0xd3718000-0xd37183ff]
[    0.296843] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.296870] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    0.296994] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.297012] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    0.297021] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    0.297029] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    0.297037] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    0.297045] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    0.297054] pci 0000:00:1f.2: reg 24: [mem 0xd3717000-0xd37177ff]
[    0.297099] pci 0000:00:1f.2: PME# supported from D3hot
[    0.297120] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.297136] pci 0000:00:1f.3: reg 10: [mem 0xd3715000-0xd37150ff 64bit]
[    0.297157] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    0.297216] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
[    0.297227] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
[    0.297240] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.297252] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.297261] pci 0000:01:00.0: reg 24: [io  0x3000-0x307f]
[    0.297269] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
[    0.298675] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.298683] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.298687] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.298693] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.298775] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[    0.298803] pci 0000:02:00.0: reg 10: [mem 0xd3600000-0xd363ffff 64bit]
[    0.298818] pci 0000:02:00.0: reg 18: [io  0x2000-0x207f]
[    0.298947] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.300684] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.300694] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.300701] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.300828] pci 0000:03:00.0: [8086:0891] type 00 class 0x028000
[    0.300873] pci 0000:03:00.0: reg 10: [mem 0xd3500000-0xd3501fff 64bit]
[    0.301102] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.302714] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.302733] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.302808] pci 0000:04:00.0: [197b:2392] type 00 class 0x088000
[    0.302836] pci 0000:04:00.0: reg 10: [mem 0xd3403000-0xd34030ff]
[    0.303100] pci 0000:04:00.2: [197b:2391] type 00 class 0x080501
[    0.303127] pci 0000:04:00.2: reg 10: [mem 0xd3402000-0xd34020ff]
[    0.303386] pci 0000:04:00.3: [197b:2393] type 00 class 0x088000
[    0.303414] pci 0000:04:00.3: reg 10: [mem 0xd3401000-0xd34010ff]
[    0.303675] pci 0000:04:00.4: [197b:2394] type 00 class 0x088000
[    0.303702] pci 0000:04:00.4: reg 10: [mem 0xd3400000-0xd34000ff]
[    0.305695] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.305709] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.305764] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.305791] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.305816] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
[    0.305863] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
[    0.305893] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.308579] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.308622] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.308665] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.308705] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.308742] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.308780] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.308818] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.308855] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.308927] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.308933] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    0.308937] vgaarb: loaded
[    0.308938] vgaarb: bridge control possible 0000:01:00.0
[    0.308940] vgaarb: no bridge control possible 0000:00:02.0
[    0.308992] SCSI subsystem initialized
[    0.308995] ACPI: bus type scsi registered
[    0.309018] libata version 3.00 loaded.
[    0.309033] ACPI: bus type usb registered
[    0.309048] usbcore: registered new interface driver usbfs
[    0.309056] usbcore: registered new interface driver hub
[    0.309071] usbcore: registered new device driver usb
[    0.309109] PCI: Using ACPI for IRQ routing
[    0.310635] PCI: pci_cache_line_size set to 64 bytes
[    0.310762] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.310764] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.310765] e820: reserve RAM buffer [mem 0xb3cdd018-0xb3ffffff]
[    0.310766] e820: reserve RAM buffer [mem 0xb3cee018-0xb3ffffff]
[    0.310768] e820: reserve RAM buffer [mem 0xb3fed000-0xb3ffffff]
[    0.310769] e820: reserve RAM buffer [mem 0xb4db0000-0xb7ffffff]
[    0.310770] e820: reserve RAM buffer [mem 0xba7bf000-0xbbffffff]
[    0.310771] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.310773] e820: reserve RAM buffer [mem 0x23f600000-0x23fffffff]
[    0.310837] NetLabel: Initializing
[    0.310840] NetLabel:  domain hash size = 128
[    0.310842] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.310850] NetLabel:  unlabeled traffic allowed by default
[    0.310890] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.310896] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.312909] Switching to clocksource hpet
[    0.317033] pnp: PnP ACPI init
[    0.317044] ACPI: bus type pnp registered
[    0.317068] pnp 00:00: [dma 4]
[    0.317084] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.317101] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.317179] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.317206] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.317237] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.317240] system 00:04: [io  0x1100-0x110f] has been reserved
[    0.317243] system 00:04: [io  0xffff] has been reserved
[    0.317248] system 00:04: [io  0xffff] has been reserved
[    0.317251] system 00:04: [io  0x0400-0x0453] has been reserved
[    0.317253] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.317256] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.317259] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.317262] system 00:04: [io  0xfd60-0xfd63] has been reserved
[    0.317265] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.317286] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.317323] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.317327] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.317355] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.317411] pnp 00:08: Plug and Play ACPI device, IDs SYN073d SYN0700 SYN0002 PNP0f13 (active)
[    0.358015] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.358021] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.358024] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.358027] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.358030] system 00:09: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.358033] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.358036] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.358039] system 00:09: [mem 0xff000000-0xff000fff] has been reserved
[    0.358042] system 00:09: [mem 0xff010000-0xffffffff] could not be reserved
[    0.358045] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.358048] system 00:09: [mem 0xbfa00000-0xbfa00fff] has been reserved
[    0.358052] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.358363] system 00:0a: [mem 0x20000000-0x201fffff] has been reserved
[    0.358367] system 00:0a: [mem 0x40004000-0x40004fff] has been reserved
[    0.358370] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.358385] pnp: PnP ACPI: found 11 devices
[    0.358387] ACPI: ACPI bus type pnp unregistered
[    0.364447] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.364483] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
[    0.364487] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.364490] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.364494] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.364498] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.364503] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.364507] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.364513] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.364523] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.364529] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.364539] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.364545] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.364581] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.364583] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.364585] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.364586] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.364588] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.364590] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
[    0.364591] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.364593] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.364594] pci_bus 0000:02: resource 1 [mem 0xd3600000-0xd36fffff]
[    0.364596] pci_bus 0000:03: resource 1 [mem 0xd3500000-0xd35fffff]
[    0.364598] pci_bus 0000:04: resource 1 [mem 0xd3400000-0xd34fffff]
[    0.364631] NET: Registered protocol family 2
[    0.364801] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.364992] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.365099] TCP: Hash tables configured (established 65536 bind 65536)
[    0.365115] TCP: reno registered
[    0.365129] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.365155] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.365219] NET: Registered protocol family 1
[    0.365230] pci 0000:00:02.0: Boot video device
[    1.464226] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.562590] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.562771] PCI: CLS 64 bytes, default 64
[    2.562808] Unpacking initramfs...
[    3.048789] Freeing initrd memory: 30152k freed
[    3.052399] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.052405] software IO TLB [mem 0xaf1c0000-0xb31c0000] (64MB) mapped at [ffff8800af1c0000-ffff8800b31bffff]
[    3.052457] Simple Boot Flag at 0x44 set to 0x1
[    3.055352] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    3.055620] Initialise module verification
[    3.055654] audit: initializing netlink socket (disabled)
[    3.055670] type=2000 audit(1361392760.012:1): initialized
[    3.078046] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.079230] VFS: Disk quotas dquot_6.5.2
[    3.079265] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.079599] msgmni has been set to 15696
[    3.079647] SELinux:  Registering netfilter hooks
[    3.080226] alg: No test for stdrng (krng)
[    3.080234] NET: Registered protocol family 38
[    3.080239] Key type asymmetric registered
[    3.080241] Asymmetric key parser 'x509' registered
[    3.080274] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    3.080299] io scheduler noop registered
[    3.080302] io scheduler deadline registered
[    3.080311] io scheduler cfq registered (default)
[    3.080403] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    3.080562] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.080574] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.080576] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.080964] efifb: probing for efifb
[    3.082199] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009480000, using 8100k, total 8100k
[    3.082203] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    3.082205] efifb: scrolling: redraw
[    3.082207] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.086228] Console: switching to colour frame buffer device 240x67
[    3.090051] fb0: EFI VGA frame buffer device
[    3.090071] intel_idle: MWAIT substates: 0x21120
[    3.090072] intel_idle: v0.4 model 0x3A
[    3.090073] intel_idle: lapic_timer_reliable_states 0xffffffff
[    3.090148] ACPI: AC Adapter [ACAD] (on-line)
[    3.090240] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input0
[    3.090276] ACPI: Power Button [PWRB]
[    3.090314] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0E:00/input/input1
[    3.090349] ACPI: Sleep Button [SLPB]
[    3.090394] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    3.090438] ACPI: Lid Switch [LID0]
[    3.090476] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.090503] ACPI: Power Button [PWRF]
[    3.090678] ACPI: Requesting acpi_cpufreq
[    3.177564] thermal LNXTHERM:00: registered as thermal_zone0
[    3.177586] ACPI: Thermal Zone [TZ00] (52 C)
[    3.177627] GHES: HEST is not enabled!
[    3.177710] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.218623] ACPI: Battery Slot [BAT1] (battery absent)
[    3.218748] Non-volatile memory driver v1.3
[    3.218766] Linux agpgart interface v0.103
[    3.219367] loop: module loaded
[    3.219419] ahci 0000:00:1f.2: version 3.0
[    3.219472] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    3.219498] ahci: SSS flag set, parallel bus scan disabled
[    3.229617] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    3.229664] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.229694] ahci 0000:00:1f.2: setting latency timer to 64
[    3.233925] scsi0 : ahci
[    3.234001] scsi1 : ahci
[    3.234065] scsi2 : ahci
[    3.234121] scsi3 : ahci
[    3.234181] scsi4 : ahci
[    3.234239] scsi5 : ahci
[    3.234278] ata1: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717100 irq 41
[    3.234306] ata2: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717180 irq 41
[    3.234333] ata3: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717200 irq 41
[    3.234358] ata4: DUMMY
[    3.234369] ata5: DUMMY
[    3.234379] ata6: DUMMY
[    3.234446] libphy: Fixed MDIO Bus: probed
[    3.234505] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.234536] ehci-pci: EHCI PCI platform driver
[    3.235629] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    3.235632] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.236727] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.237803] ehci-pci 0000:00:1a.0: debug port 2
[    3.242739] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.242753] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd3719000
[    3.249569] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.250648] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.251694] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.252745] usb usb1: Product: EHCI Host Controller
[    3.253795] usb usb1: Manufacturer: Linux 3.8.0-rc6+ ehci_hcd
[    3.254843] usb usb1: SerialNumber: 0000:00:1a.0
[    3.255964] hub 1-0:1.0: USB hub found
[    3.256993] hub 1-0:1.0: 2 ports detected
[    3.258102] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    3.258106] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.259173] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.260234] ehci-pci 0000:00:1d.0: debug port 2
[    3.265167] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.265178] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd3718000
[    3.271536] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.272606] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.273638] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.274666] usb usb2: Product: EHCI Host Controller
[    3.275687] usb usb2: Manufacturer: Linux 3.8.0-rc6+ ehci_hcd
[    3.276703] usb usb2: SerialNumber: 0000:00:1d.0
[    3.277788] hub 2-0:1.0: USB hub found
[    3.278806] hub 2-0:1.0: 2 ports detected
[    3.279878] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.280900] uhci_hcd: USB Universal Host Controller Interface driver
[    3.281965] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    3.281969] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.283008] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.284091] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.284102] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3700000
[    3.285135] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[    3.285176] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    3.286155] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.287130] usb usb3: Product: xHCI Host Controller
[    3.288097] usb usb3: Manufacturer: Linux 3.8.0-rc6+ xhci_hcd
[    3.289058] usb usb3: SerialNumber: 0000:00:14.0
[    3.290074] xHCI xhci_add_endpoint called for root hub
[    3.290075] xHCI xhci_check_bandwidth called for root hub
[    3.290092] hub 3-0:1.0: USB hub found
[    3.291053] hub 3-0:1.0: 4 ports detected
[    3.292379] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.293372] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    3.294351] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    3.295316] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.296283] usb usb4: Product: xHCI Host Controller
[    3.297243] usb usb4: Manufacturer: Linux 3.8.0-rc6+ xhci_hcd
[    3.298211] usb usb4: SerialNumber: 0000:00:14.0
[    3.299229] xHCI xhci_add_endpoint called for root hub
[    3.299231] xHCI xhci_check_bandwidth called for root hub
[    3.299247] hub 4-0:1.0: USB hub found
[    3.300209] hub 4-0:1.0: 4 ports detected
[    3.307528] usbcore: registered new interface driver usbserial
[    3.308485] usbcore: registered new interface driver usbserial_generic
[    3.309416] usbserial: USB Serial support registered for generic
[    3.310385] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS1] at 0x60,0x64 irq 1,12
[    3.349557] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.350543] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.351593] mousedev: PS/2 mouse device common for all mice
[    3.352762] rtc_cmos 00:05: RTC can wake from S4
[    3.353863] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    3.354889] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    3.355968] device-mapper: uevent: version 1.0.3
[    3.357020] device-mapper: ioctl: 4.23.1-ioctl (2012-12-18) initialised: dm-devel@redhat.com
[    3.358193] cpuidle: using governor ladder
[    3.359376] cpuidle: using governor menu
[    3.360766] EFI Variables Facility v0.08 2004-May-17
[    3.384817] usbcore: registered new interface driver usbhid
[    3.385956] usbhid: USB HID core driver
[    3.386993] drop_monitor: Initializing network drop monitor service
[    3.388079] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.389170] TCP: cubic registered
[    3.390302] Initializing XFRM netlink socket
[    3.391433] NET: Registered protocol family 10
[    3.392587] mip6: Mobile IPv6
[    3.393108] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.395327] NET: Registered protocol family 17
[    3.397353] PM: Hibernation image not present or could not be loaded.
[    3.397355] Loading module verification certificates
[    3.399192] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: b848057b753beab17f05b3dca255f65e59259035'
[    3.400270] registered taskstats version 1
[    3.402059]   Magic number: 1:732:700
[    3.403251] rtc_cmos 00:05: setting system clock to 2013-02-20 20:39:20 UTC (1361392760)
[    3.540209] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.542726] ata1.00: ATA-9: SanDisk SSD U100 16GB, 10.52.01, max UDMA/133
[    3.544930] ata1.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    3.547428] ata1.00: configured for UDMA/133
[    3.549870] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SSD U100 10.5 PQ: 0 ANSI: 5
[    3.552327] sd 0:0:0:0: [sda] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    3.552404] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.557251] sd 0:0:0:0: [sda] Write Protect is off
[    3.559142] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.562032] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.562074] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.574474]  sda: sda1
[    3.577277] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.676596] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.678856] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.681539] hub 1-1:1.0: USB hub found
[    3.684244] hub 1-1:1.0: 6 ports detected
[    3.789802] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.856769] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.859327] ata2.00: ATA-8: PLEXTOR PX-256M3, 1.05, max UDMA/133
[    3.861554] ata2.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    3.864128] ata2.00: configured for UDMA/133
[    3.866730] scsi 1:0:0:0: Direct-Access     ATA      PLEXTOR PX-256M3 1.05 PQ: 0 ANSI: 5
[    3.869339] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    3.869391] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.873953] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    3.876325] sd 1:0:0:0: [sdb] Write Protect is off
[    3.878571] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.878620] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.883217]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10
[    3.886945] sd 1:0:0:0: [sdb] Attached SCSI disk
[    3.906247] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    3.908589] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.911267] hub 2-1:1.0: USB hub found
[    3.913765] hub 2-1:1.0: 6 ports detected
[    3.990824] usb 1-1.6: new full-speed USB device number 3 using ehci-pci
[    4.052464] tsc: Refined TSC clocksource calibration: 2394.560 MHz
[    4.054795] Switching to clocksource tsc
[    4.074503] usb 1-1.6: New USB device found, idVendor=04ca, idProduct=2003
[    4.076872] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.079215] usb 1-1.6: Product: BCM20702A0
[    4.081541] usb 1-1.6: Manufacturer: Broadcom Corp
[    4.083859] usb 1-1.6: SerialNumber: 20689D9D9640
[    4.176254] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.182473] ata3.00: ATAPI: HL-DT-ST BD-RE BT20N, KV01, max UDMA/133
[    4.188510] ata3.00: configured for UDMA/133
[    4.194260] scsi 2:0:0:0: CD-ROM            HL-DT-ST BD-RE BT20N      KV01 PQ: 0 ANSI: 5
[    4.194808] usb 2-1.6: new high-speed USB device number 3 using ehci-pci
[    4.204399] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.206786] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.209502] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    4.209661] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    4.215450] Freeing unused kernel memory: 1076k freed
[    4.218019] Write protecting the kernel read-only data: 12288k
[    4.229071] Freeing unused kernel memory: 1772k freed
[    4.238468] Freeing unused kernel memory: 1380k freed
[    4.278073] usb 2-1.6: New USB device found, idVendor=04f2, idProduct=b2f1
[    4.281009] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.283386] usb 2-1.6: Product: Lenovo EasyCamera
[    4.286357] usb 2-1.6: Manufacturer: Vimicro Corp.
[    4.307127] systemd[1]: systemd 197 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    4.309760] systemd[1]: Running in initial RAM disk.
[    4.319763] systemd[1]: Set hostname to <ideapad.lan>.
[    4.341026] systemd[1]: Starting udev Kernel Socket.
[    4.345974] systemd[1]: Listening on udev Kernel Socket.
[    4.348403] systemd[1]: Starting udev Control Socket.
[    4.355188] systemd[1]: Listening on udev Control Socket.
[    4.356102] systemd[1]: Starting Journal Socket.
[    4.357974] systemd[1]: Listening on Journal Socket.
[    4.358845] systemd[1]: Starting dracut cmdline hook...
[    4.390489] systemd[1]: Started Load Kernel Modules.
[    4.394928] systemd[1]: Starting Journal Service...
[    4.428130] systemd[1]: Started Journal Service.
[    4.430593] systemd[1]: Starting Sockets.
[    4.435139] systemd[1]: Reached target Sockets.
[    4.437304] systemd[1]: Starting Swap.
[    4.441740] systemd[1]: Reached target Swap.
[    4.443977] systemd[1]: Starting Local File Systems.
[    4.446071] systemd[1]: Reached target Local File Systems.
[    4.591510] systemd-udevd[167]: starting version 197
[    4.752006] sdhci: Secure Digital Host Controller Interface driver
[    4.753285] sdhci: Copyright(c) Pierre Ossman
[    4.759794] sdhci-pci 0000:04:00.0: SDHCI controller found [197b:2392] (rev 30)
[    4.783286] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
[    4.785223] sdhci-pci 0000:04:00.2: SDHCI controller found [197b:2391] (rev 30)
[    4.787308] sdhci-pci 0000:04:00.2: Refusing to bind to secondary interface.
[    4.787343] [drm] Initialized drm 1.1.0 20060810
[    4.835564] wmi: Mapper loaded
[    4.954201] [drm:i915_dump_device_info], i915 device info: gen=7, pciid=0x0166 flags=is_mobile,need_gfx_hws,is_ivybridge,has_force_wake,has_hotplug,has_bsd_ring,has_blt_ring,has_llc,
[    4.954646] [drm] Memory usable by graphics device = 2048M
[    4.955913] [drm:i915_gem_gtt_init], GMADR size = 256M
[    4.955915] [drm:i915_gem_gtt_init], GTT stolen size = 0M
[    4.955918] checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
[    4.955921] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
[    4.957196] Console: switching to colour dummy device 80x25
[    4.957301] i915 0000:00:02.0: setting latency timer to 64
[    5.001365] [drm:intel_detect_pch], Found PatherPoint PCH
[    5.001438] [drm:intel_opregion_setup], graphic opregion physical addr: 0xbafb3018
[    5.001447] [drm:intel_opregion_setup], Public ACPI methods supported
[    5.001448] [drm:intel_opregion_setup], SWSCI supported
[    5.001449] [drm:intel_opregion_setup], ASLE supported
[    5.001475] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[    5.001481] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    5.001484] [drm] Driver supports precise vblank timestamp query.
[    5.001486] [drm:init_vbt_defaults], Set default to SSC at 100MHz
[    5.001487] [drm:intel_parse_bios], Using VBT from OpRegion: $VBT SNB/IVB-MOBILE d
[    5.001489] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 1 lvds_ssc_freq 120 display_clock_mode 0
[    5.001490] [drm:parse_general_definitions], crt_ddc_bus_pin: 2
[    5.001492] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables:
[    5.001494] [drm:drm_mode_debug_printmodeline], Modeline 0:"1920x1080" 0 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x8 0xa
[    5.001496] [drm:parse_lfp_panel_data], VBT initial LVDS value 30033c
[    5.001497] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables:
[    5.001498] [drm:drm_mode_debug_printmodeline], Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa
[    5.001500] [drm:parse_sdvo_device_mapping], No SDVO device info is found in VBT
[    5.001541] [drm:intel_dsm_detect], VGA switcheroo: detected DSM switching method \_SB_.PCI0.GFX0 handle
[    5.001543] [drm:i915_gem_init_stolen], found 0 bytes of stolen memory at bba00000
[    5.001569] [drm:intel_modeset_init], 3 display pipes available.
[    5.001579] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    5.001582] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[    5.014536] [drm:intel_lvds_init], using preferred mode from EDID: 
[    5.014538] [drm:drm_mode_debug_printmodeline], 
[    5.014541] Modeline 12:"1920x1080" 0 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.014547] [drm:intel_lvds_init], detected dual-link lvds configuration
[    5.014578] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    5.014596] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    5.014622] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus dpb. force bit now 1
[    5.015004] [drm:intel_sdvo_read_byte], i2c transfer returned -6
[    5.015006] [drm:intel_sdvo_init], No SDVO device found on SDVOB
[    5.015025] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus dpb. force bit now 0
[    5.015069] [drm:intel_dp_i2c_init], i2c_init DPDDC-B
[    5.017509] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7145003f
[    5.017514] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    5.019922] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7145003f
[    5.019926] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    5.019956] [drm:ironlake_init_pch_refclk], has_panel 1 has_lvds 1 has_pch_edp 0 has_cpu_edp 0 has_ck505 0
[    5.019959] [drm:ironlake_init_pch_refclk], Using SSC on panel
[    5.020366] [drm:i915_gem_setup_global_gtt], clearing unused GTT space: [0, 7fdff000]
[    5.022501] [drm:init_status_page], render ring hws offset: 0x00000000
[    5.022809] [drm:init_pipe_control], render ring pipe control offset: 0x00021000
[    5.022815] [drm:init_status_page], bsd ring hws offset: 0x00022000
[    5.022938] [drm:init_status_page], blitter ring hws offset: 0x00043000
[    5.023060] [drm:create_default_context], Default HW context loaded
[    5.023061] [drm:i915_gem_context_init], HW context support initialized
[    5.023092] [drm:intel_modeset_setup_hw_state], [CRTC:3] hw state readout: enabled
[    5.023093] [drm:intel_modeset_setup_hw_state], [CRTC:5] hw state readout: disabled
[    5.023094] [drm:intel_modeset_setup_hw_state], [CRTC:7] hw state readout: disabled
[    5.023097] [drm:intel_modeset_setup_hw_state], [ENCODER:10:LVDS-10] hw state readout: enabled, pipe=0
[    5.023100] [drm:intel_modeset_setup_hw_state], [ENCODER:16:DAC-16] hw state readout: disabled, pipe=0
[    5.023103] [drm:intel_modeset_setup_hw_state], [ENCODER:17:TMDS-17] hw state readout: disabled, pipe=0
[    5.023105] [drm:intel_modeset_setup_hw_state], [ENCODER:21:TMDS-21] hw state readout: disabled, pipe=0
[    5.023108] [drm:intel_modeset_setup_hw_state], [CONNECTOR:9:LVDS-1] hw state readout: enabled
[    5.023111] [drm:intel_modeset_setup_hw_state], [CONNECTOR:15:VGA-1] hw state readout: disabled
[    5.023113] [drm:intel_modeset_setup_hw_state], [CONNECTOR:18:HDMI-A-1] hw state readout: disabled
[    5.023116] [drm:intel_modeset_setup_hw_state], [CONNECTOR:22:DP-1] hw state readout: disabled
[    5.023120] [drm:intel_connector_check_state], [CONNECTOR:9:LVDS-1]
[    5.023124] [drm:intel_modeset_check_state], [ENCODER:10:LVDS-10]
[    5.023127] [drm:intel_modeset_check_state], [ENCODER:16:DAC-16]
[    5.023130] [drm:intel_modeset_check_state], [ENCODER:17:TMDS-17]
[    5.023132] [drm:intel_modeset_check_state], [ENCODER:21:TMDS-21]
[    5.023134] [drm:intel_modeset_check_state], [CRTC:3]
[    5.023135] [drm:intel_modeset_check_state], [CRTC:5]
[    5.023136] [drm:intel_modeset_check_state], [CRTC:7]
[    5.023140] [drm:intel_crt_reset], pch crt adpa set to 0xf40000
[    5.023144] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    5.023150] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    5.023151] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.023153] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    5.023155] [drm:intel_ironlake_crt_detect_hotplug], trigger hotplug detect cycle: adpa=0xf40000
[    5.033628] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    5.033631] [drm:intel_crt_detect], CRT not detected via hotplug
[    5.033787] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    5.033789] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    5.033791] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    5.033792] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    5.034173] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    5.034175] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    5.034176] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    5.034178] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    5.034180] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    5.034184] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    5.034186] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    5.034189] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    5.034191] [drm:drm_setup_crtcs], 
[    5.034222] [drm:drm_enable_connectors], connector 9 enabled? yes
[    5.034224] [drm:drm_enable_connectors], connector 15 enabled? no
[    5.034225] [drm:drm_enable_connectors], connector 18 enabled? no
[    5.034226] [drm:drm_enable_connectors], connector 22 enabled? no
[    5.034227] [drm:drm_target_preferred], looking for cmdline mode on connector 9
[    5.034228] [drm:drm_target_preferred], looking for preferred mode on connector 9
[    5.034229] [drm:drm_target_preferred], found mode 1920x1080
[    5.034230] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config
[    5.034231] [drm:drm_setup_crtcs], desired mode 1920x1080 set on crtc 3
[    5.034234] [drm:i915_gem_object_create_stolen], creating stolen object: size=7e9000
[    5.039879] [drm:intelfb_create], allocated 1920x1080 fb: 0x00073000, bo ffff88022b554c00
[    5.039984] fbcon: inteldrmfb (fb0) is primary device
[    5.040013] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.040015] [drm:intel_set_config_compute_mode_changes], crtc has no fb, full mode set
[    5.040015] [drm:intel_set_config_compute_mode_changes], modes are different, full mode set
[    5.040017] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    5.040019] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.040020] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.040021] [drm:intel_crtc_set_config], attempting to set mode from userspace
[    5.040022] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.040023] [drm:intel_set_mode], set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[    5.040026] [drm:intel_modeset_adjusted_mode], [CRTC:3]
[    5.040027] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.079496] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id: 1087391
[    5.190377] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    5.337764] [drm:ivb_modeset_global_resources], disabling fdi C rx
[    5.337773] [drm:ironlake_get_refclk], using SSC reference clock of 120 MHz
[    5.337809] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to LVDS (6)
[    5.337811] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 6)
[    5.337813] [drm:ironlake_crtc_mode_set], Mode for pipe 0:
[    5.337818] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.337820] [drm:intel_get_pch_pll], CRTC:3 allocated PCH PLL c6014
[    5.337822] [drm:intel_get_pch_pll], using pll 0 for pipe 0
[    5.337823] [drm:intel_get_pch_pll], switching PLL c6014 off
[    5.338137] [drm:ironlake_check_fdi_lanes], checking fdi config on pipe 0, lanes 2
[    5.389477] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.389488] [drm:ironlake_update_plane], Writing base 00073000 00000000 0 0 7680
[    5.389496] [drm:intel_crtc_mode_set], [ENCODER:10:LVDS-10] set [MODE:12:1920x1080]
[    5.389500] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    5.389503] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    5.389505] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    5.389508] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    5.389510] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    5.441362] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.493322] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.493485] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR before link train 0x700
[    5.494141] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x700
[    5.494145] [drm:ivb_manual_fdi_link_train], FDI train 1 done, level 0.
[    5.494802] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x600
[    5.494805] [drm:ivb_manual_fdi_link_train], FDI train 2 done, level 0.
[    5.494806] [drm:ivb_manual_fdi_link_train], FDI train done.
[    5.494809] [drm:ironlake_enable_pch_pll], enable PCH PLL c6014 (active 0, on? 0)for crtc 3
[    5.494812] [drm:ironlake_enable_pch_pll], enabling PCH PLL c6014
[    5.776902] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.776908] [drm:intel_panel_get_backlight], get backlight PWM = 0
[    5.776910] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.780866] [drm:intel_connector_check_state], [CONNECTOR:9:LVDS-1]
[    5.780875] [drm:intel_modeset_check_state], [ENCODER:10:LVDS-10]
[    5.780879] [drm:intel_modeset_check_state], [ENCODER:16:DAC-16]
[    5.780882] [drm:intel_modeset_check_state], [ENCODER:17:TMDS-17]
[    5.780886] [drm:intel_modeset_check_state], [ENCODER:21:TMDS-21]
[    5.780889] [drm:intel_modeset_check_state], [CRTC:3]
[    5.780890] [drm:intel_modeset_check_state], [CRTC:5]
[    5.780892] [drm:intel_modeset_check_state], [CRTC:7]
[    5.780897] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    5.780902] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.780904] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    5.780907] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.780914] Console: switching to colour frame buffer device 240x67
[    5.780928] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.780932] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.789120] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    5.789122] i915 0000:00:02.0: registered panic notifier
[    5.789197] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.789389] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.798985] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.798991] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.798993] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.799187] [drm:asle_set_backlight], bclp = 0x80000000
[    5.799190] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.799192] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.799264] acpi device:3c: registered as cooling_device8
[    5.799372] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    5.799437] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:3a/LNXVIDEO:00/input/input6
[    5.817408] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.817419] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.817424] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.817994] [drm:asle_set_backlight], bclp = 0x80000000
[    5.818004] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.818008] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.818138] acpi device:48: registered as cooling_device9
[    5.818417] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.818537] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input7
[    5.818714] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    5.819865] nouveau  [  DEVICE][0000:01:00.0] BOOT0  : 0x0e7140a2
[    5.819914] nouveau  [  DEVICE][0000:01:00.0] Chipset: GK107 (NVE7)
[    5.819958] nouveau  [  DEVICE][0000:01:00.0] Family : NVE0
[    5.825121] nouveau  [   VBIOS][0000:01:00.0] checking PRAMIN for image...
[    5.873251] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.873328] nouveau  [   VBIOS][0000:01:00.0] checking PROM for image...
[    5.873471] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.873576] nouveau  [   VBIOS][0000:01:00.0] checking ACPI for image...
[    5.873608] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.873650] nouveau  [   VBIOS][0000:01:00.0] checking PCIROM for image...
[    5.873691] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.873722] nouveau E[   VBIOS][0000:01:00.0] unable to locate usable image
[    5.873756] nouveau E[  DEVICE][0000:01:00.0] failed to create 0x10000001, -22
[    5.873791] nouveau E[     DRM] failed to create 0x80000080, -22
[    5.874210] nouveau: probe of 0000:01:00.0 failed with error -22
[    5.876246] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    5.928229] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    5.951795] [drm:i915_driver_open], 
[    5.951822] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.951830] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.951834] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    5.951837] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.951840] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    5.951843] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.951856] [drm:i915_driver_open], 
[    5.951865] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.951869] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.951872] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    5.951875] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.951878] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    5.951880] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.951891] [drm:i915_driver_open], 
[    5.951958] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    5.951968] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    5.951982] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    5.951987] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    5.952003] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    5.952006] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.952013] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    5.959358] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    5.959366] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    5.959372] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    5.959375] [drm:intel_crt_detect], CRT not detected via hotplug
[    5.959559] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    5.959567] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    5.959570] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    5.959572] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    5.959946] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    5.959948] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    5.959951] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    5.959954] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    5.959965] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    5.959969] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    5.959973] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    5.959975] [drm:intel_crt_detect], CRT not detected via hotplug
[    5.960143] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    5.960152] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    5.960156] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    5.960159] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    5.960547] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    5.960551] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    5.960555] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    5.960560] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    5.960576] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    5.960582] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    5.960589] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    5.960595] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    5.960599] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    5.960605] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    5.960612] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    5.960617] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    5.960623] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    5.960628] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    5.960632] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    5.960638] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    5.960674] [drm:drm_mode_addfb], [FB:25]
[    6.199298] systemd-journald[125]: Received SIGTERM
[    6.256938] type=1404 audit(1361392763.356:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    6.299379] SELinux: 2048 avtab hash slots, 94720 rules.
[    6.309759] SELinux: 2048 avtab hash slots, 94720 rules.
[    6.399704] SELinux:  9 users, 15 roles, 4367 types, 239 bools, 1 sens, 1024 cats
[    6.399707] SELinux:  83 classes, 94720 rules
[    6.402558] SELinux:  Permission attach_queue in class tun_socket not defined in policy.
[    6.402583] SELinux: the above unknown classes and permissions will be allowed
[    6.402604] SELinux:  Completing initialization.
[    6.402605] SELinux:  Setting up existing superblocks.
[    6.402609] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    6.402613] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[    6.402619] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[    6.402623] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[    6.402628] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.402649] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[    6.403177] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[    6.403180] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[    6.403545] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[    6.403547] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[    6.403549] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[    6.403558] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.403562] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[    6.403566] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[    6.403573] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    6.403754] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[    6.403756] SELinux: initialized (dev efivarfs, type efivarfs), uses genfs_contexts
[    6.403763] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.403767] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.403815] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.403832] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.403834] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.403837] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.403846] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.403854] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.403857] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.403860] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.403863] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.403866] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    6.403872] SELinux: initialized (dev sdb9, type ext4), uses xattr
[    6.421214] type=1403 audit(1361392763.521:3): policy loaded auid=4294967295 ses=4294967295
[    6.429879] systemd[1]: Successfully loaded SELinux policy in 173ms 649us.
[    6.457162] systemd[1]: Relabelled /dev and /run in 13ms 235us.
[    6.636567] systemd-readahead[307]: Bumped block_nr parameter of 8:16 to 20480. This is a temporary hack and should be removed one day.
[    6.699925] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.744682] [drm:intel_enable_rc6], RC6 and deep RC6 enabled
[    6.744684] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    6.767101] systemd-udevd[315]: starting version 197
[    6.785254] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.871836] input: Ideapad extra buttons as /devices/platform/ideapad/input/input8
[    6.877015] mei 0000:00:16.0: setting latency timer to 64
[    6.877066] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[    6.906734] media: Linux media interface: v0.10
[    6.922301] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    6.928248] Bluetooth: Core ver 2.16
[    6.929645] NET: Registered protocol family 31
[    6.930926] Bluetooth: HCI device and connection manager initialized
[    6.931904] Bluetooth: HCI socket layer initialized
[    6.931938] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    6.931988] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    6.932015] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    6.937171] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    6.938458] Bluetooth: L2CAP socket layer initialized
[    6.939744] Bluetooth: SCO socket layer initialized
[    6.940575] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    6.940599] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    6.940622] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    6.944399] Linux video capture interface: v2.00
[    6.953774] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20121018/utaddress-251)
[    6.955215] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.956635] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
[    6.958097] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20121018/utaddress-251)
[    6.959534] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.960997] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.961136] cfg80211: Calling CRDA to update world regulatory domain
[    6.981870] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20121018/utaddress-251)
[    6.983364] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20121018/utaddress-251)
[    6.984821] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.986283] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.991498] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2f1)
[    6.996219] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input9
[    6.997467] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20121018/utaddress-251)
[    6.997468] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.001538] usbcore: registered new interface driver uvcvideo
[    7.003160] USB Video Class driver (1.1.1)
[    7.006230] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[    7.007802] Copyright(c) 2003-2012 Intel Corporation
[    7.014080] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
[    7.016920] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1
[    7.034731] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[    7.047797] iTCO_vendor_support: vendor-support=0
[    7.051465] ALSA sound/pci/hda/patch_realtek.c:1241 SKU: Nid=0x1d sku_cfg=0x4015822d
[    7.051467] ALSA sound/pci/hda/patch_realtek.c:1243 SKU: port_connectivity=0x1
[    7.051468] ALSA sound/pci/hda/patch_realtek.c:1244 SKU: enable_pcbeep=0x1
[    7.051469] ALSA sound/pci/hda/patch_realtek.c:1245 SKU: check_sum=0x00000005
[    7.051470] ALSA sound/pci/hda/patch_realtek.c:1246 SKU: customization=0x00000082
[    7.051471] ALSA sound/pci/hda/patch_realtek.c:1247 SKU: external_amp=0x5
[    7.051472] ALSA sound/pci/hda/patch_realtek.c:1248 SKU: platform_type=0x1
[    7.051473] ALSA sound/pci/hda/patch_realtek.c:1249 SKU: swap=0x0
[    7.051474] ALSA sound/pci/hda/patch_realtek.c:1250 SKU: override=0x1
[    7.051477] ALSA sound/pci/hda/hda_auto_parser.c:306 autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    7.051478] ALSA sound/pci/hda/hda_auto_parser.c:310    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.051480] ALSA sound/pci/hda/hda_auto_parser.c:314    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    7.051480] ALSA sound/pci/hda/hda_auto_parser.c:315    mono: mono_out=0x0
[    7.051481] ALSA sound/pci/hda/hda_auto_parser.c:318    dig-out=0x1e/0x0
[    7.051482] ALSA sound/pci/hda/hda_auto_parser.c:319    inputs:
[    7.051483] ALSA sound/pci/hda/hda_auto_parser.c:323      Mic=0x18
[    7.051484] ALSA sound/pci/hda/hda_auto_parser.c:323      Internal Mic=0x12
[    7.052688] ALSA sound/pci/hda/patch_realtek.c:1304 realtek: No valid SSID, checking pincfg 0x4015822d for NID 0x1d
[    7.052689] ALSA sound/pci/hda/patch_realtek.c:1320 realtek: Enabling init ASM_ID=0x822d CODEC_ID=10ec0269
[    7.063628] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    7.064831] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    7.065987] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    7.089171] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    7.096329] cfg80211: World regulatory domain updated:
[    7.098051] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.099719] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.101290] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.102644] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    7.103858] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    7.104176] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    7.106108] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.106109] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.108876] EXT4-fs (sdb9): re-mounted. Opts: (null)
[    7.110908] tun: Universal TUN/TAP device driver, 1.6
[    7.112171] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    7.237682] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
[    7.238720] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[    7.239737] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    7.240785] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[    7.241866] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled
[    7.242981] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 2200 BGN, REV=0x104
[    7.244109] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    7.277205] cfg80211: Calling CRDA for country: US
[    7.282460] cfg80211: Regulatory domain changed to country: US
[    7.282461] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    7.282464] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    7.282465] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    7.282467] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.282468] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.282469] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    7.282470] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    7.282472] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[    7.375816] usbcore: registered new interface driver btusb
[    7.384336] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    7.458917] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[    7.620220] Adding 8044540k swap on /dev/sdb8.  Priority:-1 extents:1 across:8044540k SS
[    7.719079] SELinux: initialized (dev sdb2, type vfat), uses genfs_contexts
[    7.940999] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
[    7.942124] SELinux: initialized (dev sdb7, type ext4), uses xattr
[    7.963724] EXT4-fs (sdb10): mounted filesystem with ordered data mode. Opts: (null)
[    7.966004] SELinux: initialized (dev sdb10, type ext4), uses xattr
[    7.996112] SELinux: initialized (dev sdb6, type vfat), uses genfs_contexts
[    8.636305] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    8.637157] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.638026] Bluetooth: BNEP filters: protocol multicast
[    8.638883] Bluetooth: BNEP socket layer initialized
[    8.648901] Ebtables v2.0 registered
[    8.651828] Bluetooth: RFCOMM TTY layer initialized
[    8.653726] Bluetooth: RFCOMM socket layer initialized
[    8.655596] Bluetooth: RFCOMM ver 1.11
[    8.770819] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    8.927148] Loading iSCSI transport class v2.0-870.
[    8.940789] iscsi: registered transport (tcp)
[    9.005348] iscsi: registered transport (iser)
[    9.013989] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[    9.014690] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[    9.050280] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[    9.051430] iscsi: registered transport (cxgb3i)
[    9.056527] systemd-journald[468]: Received SIGUSR1
[    9.078194] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    9.086552] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    9.087764] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[    9.088517] iscsi: registered transport (cxgb4i)
[    9.113760] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.16 (Dec 05, 2012)
[    9.337800] [drm:i915_driver_open], 
[    9.341495] [drm:i915_driver_open], 
[    9.341509] [drm:i915_driver_open], 
[    9.341554] [drm:i915_driver_open], 
[    9.341755] [drm:i915_driver_open], 
[    9.341764] [drm:i915_driver_open], 
[    9.341897] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    9.341899] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    9.341954] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.341956] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    9.341963] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    9.341965] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    9.341967] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.342077] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.342079] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.342081] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.342083] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.342241] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.342245] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.342246] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.342248] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.342590] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.342592] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.342595] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.342597] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.342602] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.342604] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.342607] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.342609] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.342762] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.342764] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.342765] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.342767] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.343100] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.343102] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.343103] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.343105] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.343133] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.343136] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.343139] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.343141] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.343143] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.343145] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.343161] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.343163] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.343166] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.343168] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.343170] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.343172] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.343200] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.343203] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    9.343210] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    9.343211] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    9.343215] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.343820] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.343822] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.343825] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.343827] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.343974] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.343977] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.343979] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.343980] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.344313] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.344315] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.344316] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.344318] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.344322] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.344323] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.344326] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.344327] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.344479] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.344481] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.344483] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.344484] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.344817] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.344818] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.344820] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.344822] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.344845] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.344847] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.344850] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.344852] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.344854] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.344856] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.344869] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.344871] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.344874] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.344876] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.344877] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.344879] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.347189] [drm:asle_set_backlight], bclp = 0x80000000
[    9.347193] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    9.347195] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    9.347524] [drm:asle_set_backlight], bclp = 0x80000000
[    9.347528] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    9.347529] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    9.348397] [drm:drm_mode_addfb], [FB:25]
[    9.348443] [drm:drm_mode_setcrtc], [CRTC:3]
[    9.348446] [drm:drm_mode_setcrtc], [CONNECTOR:9:LVDS-1]
[    9.348448] [drm:intel_crtc_set_config], [CRTC:3] [FB:25] #connectors=1 (x y) (0 0)
[    9.348451] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.353271] [drm:ironlake_update_plane], Writing base 0085C000 00000000 0 0 7680
[    9.368515] [drm:drm_mode_setcrtc], [CRTC:5]
[    9.368518] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    9.368520] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.368523] [drm:drm_mode_setcrtc], [CRTC:7]
[    9.368524] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    9.368525] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    9.451322] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    9.458823] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    9.497335] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.497344] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    9.497361] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    9.497364] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    9.497372] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.497635] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.497640] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.497645] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.497648] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.497810] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.497818] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.497822] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.497824] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.498164] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.498166] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.498169] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.498173] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.498182] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.498186] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.498189] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.498192] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.498371] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.498381] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.498385] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.498388] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.498731] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.498735] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.498749] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.498754] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.498774] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.498780] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.498786] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.498792] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.498797] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.498802] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.498811] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.498815] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.498821] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.498826] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.498831] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.498836] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.652693] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    9.684752] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Apr 25, 2012)
[    9.684776] iscsi: registered transport (bnx2i)
[    9.711569] iscsi: registered transport (be2iscsi)
[    9.711572] In beiscsi_module_init, tt=ffffffffa0836000
[    9.871422] [drm:i915_driver_open], 
[    9.876771] [drm:i915_gem_context_create_ioctl], HW context 1 created
[    9.877805] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[    9.922152] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.922161] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    9.922179] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    9.922183] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    9.922192] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.922566] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.922568] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.922570] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.922572] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.922743] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.922750] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.922754] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.922756] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.923095] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.923099] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.923102] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.923106] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.923115] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.923120] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.923123] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.923126] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.923281] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.923285] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.923288] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.923320] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.923725] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.923728] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.923731] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.923734] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.923752] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.923753] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.923758] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.923759] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.923760] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.923762] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.923765] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.923766] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.923768] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.923769] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.923770] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.923772] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[   10.052498] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[   10.052501] [drm:intel_crt_detect], CRT not detected via hotplug
[   10.052662] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   10.052670] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   10.052673] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   10.052675] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[   10.053014] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   10.053017] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[   10.053020] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[   10.119788] wlan0: authenticate with bc:ae:c5:c3:07:c4
[   10.127437] wlan0: send auth to bc:ae:c5:c3:07:c4 (try 1/3)
[   10.130192] wlan0: authenticated
[   10.131326] wlan0: associate with bc:ae:c5:c3:07:c4 (try 1/3)
[   10.134728] wlan0: RX AssocResp from bc:ae:c5:c3:07:c4 (capab=0x411 status=0 aid=1)
[   10.153590] wlan0: associated
[   10.153630] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   10.449869] [drm:i915_driver_open], 
[   10.452713] [drm:i915_gem_context_create_ioctl], HW context 1 created
[   10.453156] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[   10.454893] [drm:i915_gem_context_create_ioctl], HW context 1 created
[   11.950657] cgroup: libvirtd (1251) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   11.950660] cgroup: "memory" requires setting use_hierarchy to 1 on the root.
[   11.950700] cgroup: libvirtd (1251) created nested cgroup for controller "devices" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   11.950738] cgroup: libvirtd (1251) created nested cgroup for controller "blkio" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   12.968782] [drm:drm_mode_addfb], [FB:26]
[   12.992276] [drm:drm_mode_addfb], [FB:25]
[   13.023592] [drm:drm_mode_addfb], [FB:26]
[   13.040307] [drm:drm_mode_addfb], [FB:25]
[   13.056947] [drm:drm_mode_addfb], [FB:26]
[   13.073672] [drm:drm_mode_addfb], [FB:25]
[   13.113744] [drm:drm_mode_addfb], [FB:26]
[   13.140521] [drm:drm_mode_addfb], [FB:25]
[   13.157178] [drm:drm_mode_addfb], [FB:26]
[   13.173890] [drm:drm_mode_addfb], [FB:25]
[   13.190540] [drm:drm_mode_addfb], [FB:26]
[   13.209401] [drm:drm_mode_addfb], [FB:25]
[   13.980502] [drm:drm_mode_addfb], [FB:26]
[   13.991660] [drm:drm_mode_addfb], [FB:25]
[   14.008382] [drm:drm_mode_addfb], [FB:26]
[   14.025118] [drm:drm_mode_addfb], [FB:25]
[   14.041810] [drm:drm_mode_addfb], [FB:26]
[   14.058474] [drm:drm_mode_addfb], [FB:25]
[   14.075129] [drm:drm_mode_addfb], [FB:26]
[   14.091808] [drm:drm_mode_addfb], [FB:25]
[   14.108505] [drm:drm_mode_addfb], [FB:26]
[   14.125202] [drm:drm_mode_addfb], [FB:25]
[   14.141900] [drm:drm_mode_addfb], [FB:26]
[   14.158575] [drm:drm_mode_addfb], [FB:25]
[   14.175278] [drm:drm_mode_addfb], [FB:26]
[   14.191936] [drm:drm_mode_addfb], [FB:25]
[   17.829827] fuse init (API version 7.20)
[   17.832483] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[   17.856011] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 20:43               ` Chris Li
@ 2013-02-20 21:04                 ` Chris Li
  2013-02-22 22:42                   ` Chris Li
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-02-20 21:04 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown

[-- Attachment #1: Type: text/plain, Size: 201 bytes --]

Here is the dmesg with "drm.debug=0xe" at
80187431762989ebade986468d3c548287a12689

That is the 3.6 kernel, exactly one commit before the ACPI commit
which  triggering the black screen.

Thanks

Chris

[-- Attachment #2: dmesg.drm.debug.3.6.0-rc6 --]
[-- Type: application/octet-stream, Size: 118023 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.6.0-rc6+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #25 SMP Wed Feb 20 12:55:06 PST 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.6.0-rc6+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] 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-0x00000000b3fecfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xbaffe000  ACPI 2.0=0xbaffe014  SMBIOS=0xbaebef98 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000004000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000004000-0x000000000000e000) (0MB)
[    0.000000] efi: mem03: type=3, attr=0xf, range=[0x000000000000e000-0x0000000000010000) (0MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000010000-0x000000000002e000) (0MB)
[    0.000000] efi: mem05: type=3, attr=0xf, range=[0x000000000002e000-0x000000000002f000) (0MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x000000000002f000-0x0000000000030000) (0MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000000030000-0x000000000006f000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem10: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x0000000001000000-0x00000000023c1000) (19MB)
[    0.000000] efi: mem13: type=7, attr=0xf, range=[0x00000000023c1000-0x0000000020000000) (476MB)
[    0.000000] efi: mem14: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000020200000-0x000000003f817000) (502MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000003f817000-0x0000000040000000) (7MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000040000000-0x0000000040004000) (0MB)
[    0.000000] efi: mem18: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000040005000-0x000000008634e000) (1123MB)
[    0.000000] efi: mem20: type=2, attr=0xf, range=[0x000000008634e000-0x00000000b31c0000) (718MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000b31c0000-0x00000000b31e0000) (0MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000b31e0000-0x00000000b3a7e000) (8MB)
[    0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000b3a7e000-0x00000000b3b4d000) (0MB)
[    0.000000] efi: mem24: type=1, attr=0xf, range=[0x00000000b3b4d000-0x00000000b3c84000) (1MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000b3c84000-0x00000000b3d04000) (0MB)
[    0.000000] efi: mem26: type=2, attr=0xf, range=[0x00000000b3d04000-0x00000000b3dd3000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000b3dd3000-0x00000000b3fed000) (2MB)
[    0.000000] efi: mem28: type=0, attr=0xf, range=[0x00000000b3fed000-0x00000000b4d6e000) (13MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000b4d6e000-0x00000000b4db0000) (0MB)
[    0.000000] efi: mem30: type=0, attr=0xf, range=[0x00000000b4db0000-0x00000000b61b0000) (20MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b61b0000-0x00000000b61bd000) (0MB)
[    0.000000] efi: mem32: type=2, attr=0xf, range=[0x00000000b61bd000-0x00000000b61bf000) (0MB)
[    0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b61bf000-0x00000000b6279000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b6279000-0x00000000b81aa000) (31MB)
[    0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b81aa000-0x00000000b81b2000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b81b2000-0x00000000b81b4000) (0MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b81b4000-0x00000000b81b6000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b81b6000-0x00000000b81e6000) (0MB)
[    0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b81e6000-0x00000000b81ec000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b81ec000-0x00000000b81ed000) (0MB)
[    0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b81ed000-0x00000000b81ee000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b81ee000-0x00000000b81f8000) (0MB)
[    0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b81f8000-0x00000000b81f9000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b81f9000-0x00000000b821f000) (0MB)
[    0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b821f000-0x00000000b8221000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b8221000-0x00000000b83a0000) (1MB)
[    0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b83a0000-0x00000000b83a4000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b83a4000-0x00000000b83a7000) (0MB)
[    0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b83a7000-0x00000000b83a8000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b83a8000-0x00000000b83f8000) (0MB)
[    0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b83f8000-0x00000000b8420000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b8420000-0x00000000b859e000) (1MB)
[    0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b859e000-0x00000000b85a0000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b85a0000-0x00000000b85ba000) (0MB)
[    0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b85ba000-0x00000000b85bb000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b85bb000-0x00000000b87e8000) (2MB)
[    0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b87e8000-0x00000000b87f8000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b87f8000-0x00000000ba3bf000) (27MB)
[    0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000ba3bf000-0x00000000ba495000) (0MB)
[    0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000ba495000-0x00000000ba7bf000) (3MB)
[    0.000000] efi: mem61: type=5, attr=0x800000000000000f, range=[0x00000000ba7bf000-0x00000000ba880000) (0MB)
[    0.000000] efi: mem62: type=6, attr=0x800000000000000f, range=[0x00000000ba880000-0x00000000ba881000) (0MB)
[    0.000000] efi: mem63: type=5, attr=0x800000000000000f, range=[0x00000000ba881000-0x00000000ba8b0000) (0MB)
[    0.000000] efi: mem64: type=6, attr=0x800000000000000f, range=[0x00000000ba8b0000-0x00000000ba8b1000) (0MB)
[    0.000000] efi: mem65: type=5, attr=0x800000000000000f, range=[0x00000000ba8b1000-0x00000000ba8b3000) (0MB)
[    0.000000] efi: mem66: type=6, attr=0x800000000000000f, range=[0x00000000ba8b3000-0x00000000ba8b4000) (0MB)
[    0.000000] efi: mem67: type=5, attr=0x800000000000000f, range=[0x00000000ba8b4000-0x00000000ba8cc000) (0MB)
[    0.000000] efi: mem68: type=6, attr=0x800000000000000f, range=[0x00000000ba8cc000-0x00000000ba8cd000) (0MB)
[    0.000000] efi: mem69: type=5, attr=0x800000000000000f, range=[0x00000000ba8cd000-0x00000000ba8d2000) (0MB)
[    0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000ba8d2000-0x00000000ba8d3000) (0MB)
[    0.000000] efi: mem71: type=5, attr=0x800000000000000f, range=[0x00000000ba8d3000-0x00000000ba8e1000) (0MB)
[    0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000ba8e1000-0x00000000ba8e2000) (0MB)
[    0.000000] efi: mem73: type=5, attr=0x800000000000000f, range=[0x00000000ba8e2000-0x00000000ba8f2000) (0MB)
[    0.000000] efi: mem74: type=6, attr=0x800000000000000f, range=[0x00000000ba8f2000-0x00000000ba937000) (0MB)
[    0.000000] efi: mem75: type=5, attr=0x800000000000000f, range=[0x00000000ba937000-0x00000000ba9bf000) (0MB)
[    0.000000] efi: mem76: type=6, attr=0x800000000000000f, range=[0x00000000ba9bf000-0x00000000baabf000) (1MB)
[    0.000000] efi: mem77: type=0, attr=0xf, range=[0x00000000baabf000-0x00000000baebf000) (4MB)
[    0.000000] efi: mem78: type=10, attr=0xf, range=[0x00000000baebf000-0x00000000bafbf000) (1MB)
[    0.000000] efi: mem79: type=9, attr=0xf, range=[0x00000000bafbf000-0x00000000bafff000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000bafff000-0x00000000bb000000) (0MB)
[    0.000000] efi: mem81: type=7, attr=0xf, range=[0x0000000100000000-0x000000023f600000) (5110MB)
[    0.000000] efi: mem82: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem83: type=0, attr=0x0, range=[0x00000000bb000000-0x00000000bfa00000) (74MB)
[    0.000000] efi: mem84: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem85: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem86: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem87: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem88: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem89: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem90: type=11, attr=0x8000000000000000, range=[0x00000000ffb80000-0x0000000100000000) (4MB)
[    0.000000] DMI 2.7 present.
[    0.000000] DMI: LENOVO 20132/INVALID, BIOS 5DCN90WW(V8.01) 10/11/2012
[    0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x23f600 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-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   5 base 100000000 mask F00000000 write-back
[    0.000000]   6 base 200000000 mask FC0000000 write-back
[    0.000000]   7 base 23F600000 mask FFFE00000 uncachable
[    0.000000]   8 base 23F800000 mask FFF800000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [ffff8800000fe1c0]
[    0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
[    0.000000] Base memory trampoline at [ffff880000028000] 28000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0xbaffffff]
[    0.000000]  [mem 0x00000000-0xbaffffff] page 2M
[    0.000000] kernel direct mapping tables up to 0xbaffffff @ [mem 0x1fa24000-0x1fffffff]
[    0.000000] init_memory_mapping: [mem 0x100000000-0x23f5fffff]
[    0.000000]  [mem 0x100000000-0x23f5fffff] page 2M
[    0.000000] kernel direct mapping tables up to 0x23f5fffff @ [mem 0xba48b000-0xba494fff]
[    0.000000] RAMDISK: [mem 0x3f817000-0x3fffafff]
[    0.000000] ACPI: RSDP 00000000baffe014 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000baffe210 000AC (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 00000000baffa000 0010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DSDT 00000000bafec000 0A638 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000bafbb000 00040
[    0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 00000000baffc000 00236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! 00000000baffb000 000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 00000000baff9000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000baff8000 0008C (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000baff7000 0003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafeb000 006FE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000bafe9000 00028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT 00000000bafe7000 00034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DBGP 00000000bafe6000 00034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 00000000bafe4000 00044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MSDM 00000000bafe3000 00055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe2000 00926 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafdd000 02333 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BGRT 00000000bafe0000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x23f5fffff]
[    0.000000]   NODE_DATA [mem 0x23f5ec000-0x23f5fffff]
[    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236c00000-ffff88023ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00010000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x23f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00010000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xb3fecfff]
[    0.000000]   node   0: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]   node   0: [mem 0xb61b0000-0xba7befff]
[    0.000000]   node   0: [mem 0xbafff000-0xbaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x23f5fffff]
[    0.000000] On node 0 totalpages: 2062774
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 96 pages reserved
[    0.000000]   DMA zone: 3800 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 16320 pages used for memmap
[    0.000000]   DMA32 zone: 734334 pages, LIFO batch:31
[    0.000000]   Normal zone: 20440 pages used for memmap
[    0.000000]   Normal zone: 1287720 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 0000000000088000 - 00000000000c0000
[    0.000000] PM: Registered nosave memory: 00000000000c0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000b3fed000 - 00000000b4d6e000
[    0.000000] PM: Registered nosave memory: 00000000b4db0000 - 00000000b61b0000
[    0.000000] PM: Registered nosave memory: 00000000ba7bf000 - 00000000baebf000
[    0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
[    0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
[    0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
[    0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
[    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[    0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[    0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
[    0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
[    0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023f200000 s84288 r8192 d22208 u262144
[    0.000000] pcpu-alloc: s84288 r8192 d22208 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2025854
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.6.0-rc6+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 7956052k/9426944k available (6206k kernel code, 1175848k absent, 295044k reserved, 6989k data, 1024k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:8448 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.001000] tsc: Detected 2394.558 MHz processor
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.11 BogoMIPS (lpj=2394558)
[    0.000008] pid_max: default: 32768 minimum: 301
[    0.024196] Security Framework initialized
[    0.024207] SELinux:  Initializing.
[    0.024216] SELinux:  Starting in permissive mode
[    0.024817] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.026896] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.027796] Mount-cache hash table entries: 256
[    0.027957] Initializing cgroup subsys cpuacct
[    0.027960] Initializing cgroup subsys memory
[    0.027970] Initializing cgroup subsys devices
[    0.027973] Initializing cgroup subsys freezer
[    0.027975] Initializing cgroup subsys net_cls
[    0.027977] Initializing cgroup subsys blkio
[    0.027980] Initializing cgroup subsys perf_event
[    0.028006] CPU: Physical Processor ID: 0
[    0.028008] CPU: Processor Core ID: 0
[    0.028013] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.028385] mce: CPU supports 9 MCE banks
[    0.028399] CPU0: Thermal monitoring enabled (TM1)
[    0.028406] process: using mwait in idle threads
[    0.028411] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift is 0x1
[    0.029526] ACPI: Core revision 20120711
[    0.048911] ftrace: allocating 23176 entries in 91 pages
[    0.059954] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.069943] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz stepping 09
[    0.171536] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
[    0.171543] ... version:                3
[    0.171545] ... bit width:              48
[    0.171546] ... generic registers:      4
[    0.171548] ... value mask:             0000ffffffffffff
[    0.171550] ... max period:             000000007fffffff
[    0.171552] ... fixed-purpose events:   3
[    0.171554] ... event mask:             000000070000000f
[    0.172050] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.172140] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.267978] Brought up 8 CPUs
[    0.267984] smpboot: Total of 8 processors activated (38312.92 BogoMIPS)
[    0.275070] devtmpfs: initialized
[    0.275234] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
[    0.275784] atomic64 test passed for x86-64 platform with CX8 and with SSE
[    0.275812] RTC time: 20:58:23, date: 02/20/13
[    0.275850] NET: Registered protocol family 16
[    0.275986] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.275990] ACPI: bus type pci registered
[    0.276037] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.276041] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.282864] PCI: Using configuration type 1 for base access
[    0.283562] bio: create slab <bio-0> at 0
[    0.283621] ACPI: Added _OSI(Module Device)
[    0.283623] ACPI: Added _OSI(Processor Device)
[    0.283625] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.283628] ACPI: Added _OSI(Processor Aggregator Device)
[    0.285056] ACPI: EC: Look up EC in DSDT
[    0.286546] ACPI: Executed 1 blocks of module-level executable AML code
[    0.289409] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.290512] ACPI: SSDT 00000000babae018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.290883] ACPI: Dynamic OEM Table Load:
[    0.290886] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.293578] ACPI: SSDT 00000000babafa98 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.293970] ACPI: Dynamic OEM Table Load:
[    0.293973] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.296458] ACPI: SSDT 00000000babadd98 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.296822] ACPI: Dynamic OEM Table Load:
[    0.296825] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.300539] ACPI: Interpreter enabled
[    0.300542] ACPI: (supports S0 S3 S4 S5)
[    0.300562] ACPI: Using IOAPIC for interrupt routing
[    0.386113] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.386286] ACPI: No dock devices found.
[    0.386290] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.386569] \_SB_.PCI0:_OSC invalid UUID
[    0.386570] _OSC request data:1 8 1f 
[    0.386574] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.387022] PCI host bridge to bus 0000:00
[    0.387026] pci_bus 0000:00: busn_res: [bus 00-3e] is inserted under domain [bus 00-ff]
[    0.387028] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.387030] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.387033] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.387036] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.387039] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
[    0.387047] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.387081] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.387110] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.387129] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.387138] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
[    0.387144] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.387148] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    0.387201] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.387223] pci 0000:00:14.0: reg 10: [mem 0xd3700000-0xd370ffff 64bit]
[    0.387295] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.387318] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.387340] pci 0000:00:16.0: reg 10: [mem 0xd3714000-0xd371400f 64bit]
[    0.387416] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.387450] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.387471] pci 0000:00:1a.0: reg 10: [mem 0xd3719000-0xd37193ff]
[    0.387563] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.387590] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.387605] pci 0000:00:1b.0: reg 10: [mem 0xd3710000-0xd3713fff 64bit]
[    0.387672] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.387694] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.387772] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.387797] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.387876] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.387902] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    0.387981] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.388014] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.388035] pci 0000:00:1d.0: reg 10: [mem 0xd3718000-0xd37183ff]
[    0.388124] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.388148] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    0.388274] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.388292] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    0.388300] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    0.388308] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    0.388316] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    0.388324] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    0.388332] pci 0000:00:1f.2: reg 24: [mem 0xd3717000-0xd37177ff]
[    0.388376] pci 0000:00:1f.2: PME# supported from D3hot
[    0.388396] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.388411] pci 0000:00:1f.3: reg 10: [mem 0xd3715000-0xd37150ff 64bit]
[    0.388431] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    0.388476] pci_bus 0000:01: busn_res: [bus 01] is inserted under [bus 00-3e]
[    0.388491] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
[    0.388502] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
[    0.388515] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.388527] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.388535] pci 0000:01:00.0: reg 24: [io  0x3000-0x307f]
[    0.388544] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
[    0.390200] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.390207] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.390212] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.390217] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.390280] pci_bus 0000:02: busn_res: [bus 02] is inserted under [bus 00-3e]
[    0.390302] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[    0.390329] pci 0000:02:00.0: reg 10: [mem 0xd3600000-0xd363ffff 64bit]
[    0.390344] pci 0000:02:00.0: reg 18: [io  0x2000-0x207f]
[    0.390472] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.392202] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.392212] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.392219] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.392284] pci_bus 0000:03: busn_res: [bus 03] is inserted under [bus 00-3e]
[    0.392345] pci 0000:03:00.0: [8086:0891] type 00 class 0x028000
[    0.392391] pci 0000:03:00.0: reg 10: [mem 0xd3500000-0xd3501fff 64bit]
[    0.392620] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.394227] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.394246] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.394293] pci_bus 0000:04: busn_res: [bus 04] is inserted under [bus 00-3e]
[    0.394321] pci 0000:04:00.0: [197b:2392] type 00 class 0x088000
[    0.394348] pci 0000:04:00.0: reg 10: [mem 0xd3403000-0xd34030ff]
[    0.394612] pci 0000:04:00.2: [197b:2391] type 00 class 0x080501
[    0.394640] pci 0000:04:00.2: reg 10: [mem 0xd3402000-0xd34020ff]
[    0.394900] pci 0000:04:00.3: [197b:2393] type 00 class 0x088000
[    0.394927] pci 0000:04:00.3: reg 10: [mem 0xd3401000-0xd34010ff]
[    0.395188] pci 0000:04:00.4: [197b:2394] type 00 class 0x088000
[    0.395215] pci 0000:04:00.4: reg 10: [mem 0xd3400000-0xd34000ff]
[    0.397203] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.397216] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.397254] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.397349] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.397372] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.397395] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP04._PRT]
[    0.397437] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
[    0.397507] \_SB_.PCI0:_OSC invalid UUID
[    0.397508] _OSC request data:1 1f 1f 
[    0.397511]  pci0000:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.397514]  pci0000:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.400108] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.400149] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.400190] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.400229] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.400266] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.400305] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.400342] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.400380] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.400445] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.400452] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    0.400456] vgaarb: loaded
[    0.400458] vgaarb: bridge control possible 0000:01:00.0
[    0.400460] vgaarb: no bridge control possible 0000:00:02.0
[    0.400516] SCSI subsystem initialized
[    0.400518] ACPI: bus type scsi registered
[    0.400539] libata version 3.00 loaded.
[    0.400554] ACPI: bus type usb registered
[    0.400567] usbcore: registered new interface driver usbfs
[    0.400575] usbcore: registered new interface driver hub
[    0.400590] usbcore: registered new device driver usb
[    0.400627] PCI: Using ACPI for IRQ routing
[    0.402151] PCI: pci_cache_line_size set to 64 bytes
[    0.402288] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.402289] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.402291] e820: reserve RAM buffer [mem 0xb3fed000-0xb3ffffff]
[    0.402292] e820: reserve RAM buffer [mem 0xb4db0000-0xb7ffffff]
[    0.402293] e820: reserve RAM buffer [mem 0xba7bf000-0xbbffffff]
[    0.402294] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.402296] e820: reserve RAM buffer [mem 0x23f600000-0x23fffffff]
[    0.402367] NetLabel: Initializing
[    0.402370] NetLabel:  domain hash size = 128
[    0.402371] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.402380] NetLabel:  unlabeled traffic allowed by default
[    0.402421] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.402427] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.404441] Switching to clocksource hpet
[    0.409118] pnp: PnP ACPI init
[    0.409132] ACPI: bus type pnp registered
[    0.409377] pnp 00:00: [bus 00-3e]
[    0.409380] pnp 00:00: [io  0x0000-0x0cf7 window]
[    0.409381] pnp 00:00: [io  0x0cf8-0x0cff]
[    0.409383] pnp 00:00: [io  0x0d00-0xffff window]
[    0.409385] pnp 00:00: [mem 0x000a0000-0x000bffff window]
[    0.409386] pnp 00:00: [mem 0x000c0000-0x000c3fff window]
[    0.409387] pnp 00:00: [mem 0x000c4000-0x000c7fff window]
[    0.409389] pnp 00:00: [mem 0x000c8000-0x000cbfff window]
[    0.409390] pnp 00:00: [mem 0x000cc000-0x000cffff window]
[    0.409391] pnp 00:00: [mem 0x000d0000-0x000d3fff window]
[    0.409393] pnp 00:00: [mem 0x000d4000-0x000d7fff window]
[    0.409394] pnp 00:00: [mem 0x000d8000-0x000dbfff window]
[    0.409395] pnp 00:00: [mem 0x000dc000-0x000dffff window]
[    0.409397] pnp 00:00: [mem 0x000e0000-0x000e3fff window]
[    0.409398] pnp 00:00: [mem 0x000e4000-0x000e7fff window]
[    0.409399] pnp 00:00: [mem 0x000e8000-0x000ebfff window]
[    0.409401] pnp 00:00: [mem 0x000ec000-0x000effff window]
[    0.409402] pnp 00:00: [mem 0x000f0000-0x000fffff window]
[    0.409405] pnp 00:00: [mem 0xbfa00000-0xfeafffff window]
[    0.409406] pnp 00:00: [mem 0x00010000-0x0001ffff window]
[    0.409448] pnp 00:00: Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
[    0.409458] pnp 00:01: [io  0x0000-0x001f]
[    0.409459] pnp 00:01: [io  0x0081-0x0091]
[    0.409460] pnp 00:01: [io  0x0093-0x009f]
[    0.409461] pnp 00:01: [io  0x00c0-0x00df]
[    0.409463] pnp 00:01: [dma 4]
[    0.409478] pnp 00:01: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.409484] pnp 00:02: [mem 0xff010000-0xffffffff]
[    0.409504] pnp 00:02: Plug and Play ACPI device, IDs INT0800 (active)
[    0.409566] pnp 00:03: [mem 0xfed00000-0xfed003ff]
[    0.409582] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.409589] pnp 00:04: [io  0x00f0]
[    0.409597] pnp 00:04: [irq 13]
[    0.409610] pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.409617] pnp 00:05: [io  0x002e-0x002f]
[    0.409619] pnp 00:05: [io  0x004e-0x004f]
[    0.409620] pnp 00:05: [io  0x0061]
[    0.409621] pnp 00:05: [io  0x0063]
[    0.409622] pnp 00:05: [io  0x0065]
[    0.409623] pnp 00:05: [io  0x0067]
[    0.409624] pnp 00:05: [io  0x0070]
[    0.409626] pnp 00:05: [io  0x0080]
[    0.409627] pnp 00:05: [io  0x0092]
[    0.409628] pnp 00:05: [io  0x00b2-0x00b3]
[    0.409629] pnp 00:05: [io  0x0680-0x069f]
[    0.409630] pnp 00:05: [io  0x1100-0x110f]
[    0.409632] pnp 00:05: [io  0xffff]
[    0.409633] pnp 00:05: [io  0xffff]
[    0.409634] pnp 00:05: [io  0x0400-0x0453]
[    0.409635] pnp 00:05: [io  0x0458-0x047f]
[    0.409636] pnp 00:05: [io  0x0500-0x057f]
[    0.409638] pnp 00:05: [io  0x164e-0x164f]
[    0.409639] pnp 00:05: [io  0xfd60-0xfd63]
[    0.409670] system 00:05: [io  0x0680-0x069f] has been reserved
[    0.409673] system 00:05: [io  0x1100-0x110f] has been reserved
[    0.409678] system 00:05: [io  0xffff] has been reserved
[    0.409681] system 00:05: [io  0xffff] has been reserved
[    0.409683] system 00:05: [io  0x0400-0x0453] has been reserved
[    0.409686] system 00:05: [io  0x0458-0x047f] has been reserved
[    0.409688] system 00:05: [io  0x0500-0x057f] has been reserved
[    0.409691] system 00:05: [io  0x164e-0x164f] has been reserved
[    0.409694] system 00:05: [io  0xfd60-0xfd63] has been reserved
[    0.409697] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.409703] pnp 00:06: [io  0x0070-0x0077]
[    0.409708] pnp 00:06: [irq 8]
[    0.409722] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.409742] pnp 00:07: [io  0x0454-0x0457]
[    0.409767] system 00:07: [io  0x0454-0x0457] has been reserved
[    0.409771] system 00:07: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.409782] pnp 00:08: [io  0x0060]
[    0.409783] pnp 00:08: [io  0x0064]
[    0.409787] pnp 00:08: [irq 1]
[    0.409802] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.409846] pnp 00:09: [irq 12]
[    0.409865] pnp 00:09: Plug and Play ACPI device, IDs SYN073d SYN0700 SYN0002 PNP0f13 (active)
[    0.450554] pnp 00:0a: [mem 0xfed1c000-0xfed1ffff]
[    0.450557] pnp 00:0a: [mem 0xfed10000-0xfed17fff]
[    0.450558] pnp 00:0a: [mem 0xfed18000-0xfed18fff]
[    0.450560] pnp 00:0a: [mem 0xfed19000-0xfed19fff]
[    0.450561] pnp 00:0a: [mem 0xf0000000-0xf3ffffff]
[    0.450562] pnp 00:0a: [mem 0xfed20000-0xfed3ffff]
[    0.450563] pnp 00:0a: [mem 0xfed90000-0xfed93fff]
[    0.450565] pnp 00:0a: [mem 0xff000000-0xff000fff]
[    0.450566] pnp 00:0a: [mem 0xff010000-0xffffffff]
[    0.450567] pnp 00:0a: [mem 0xfee00000-0xfeefffff]
[    0.450568] pnp 00:0a: [mem 0xbfa00000-0xbfa00fff]
[    0.450610] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.450615] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.450617] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.450620] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.450623] system 00:0a: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.450626] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.450629] system 00:0a: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.450632] system 00:0a: [mem 0xff000000-0xff000fff] has been reserved
[    0.450635] system 00:0a: [mem 0xff010000-0xffffffff] could not be reserved
[    0.450638] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.450641] system 00:0a: [mem 0xbfa00000-0xbfa00fff] has been reserved
[    0.450645] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.450934] pnp 00:0b: [mem 0x20000000-0x201fffff]
[    0.450935] pnp 00:0b: [mem 0x40004000-0x40004fff]
[    0.450980] system 00:0b: [mem 0x20000000-0x201fffff] has been reserved
[    0.450984] system 00:0b: [mem 0x40004000-0x40004fff] has been reserved
[    0.450987] system 00:0b: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.451004] pnp: PnP ACPI: found 12 devices
[    0.451006] ACPI: ACPI bus type pnp unregistered
[    0.457015] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.457052] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
[    0.457055] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.457059] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.457062] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.457066] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.457071] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.457075] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.457081] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.457091] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.457097] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.457107] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.457113] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.457149] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.457151] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.457153] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.457154] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.457156] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.457157] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
[    0.457158] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.457160] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.457161] pci_bus 0000:02: resource 1 [mem 0xd3600000-0xd36fffff]
[    0.457163] pci_bus 0000:03: resource 1 [mem 0xd3500000-0xd35fffff]
[    0.457164] pci_bus 0000:04: resource 1 [mem 0xd3400000-0xd34fffff]
[    0.457197] NET: Registered protocol family 2
[    0.457822] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
[    0.458849] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.458960] TCP: Hash tables configured (established 524288 bind 65536)
[    0.458973] TCP: reno registered
[    0.458987] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.459013] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.459091] NET: Registered protocol family 1
[    0.459104] pci 0000:00:02.0: Boot video device
[    1.557794] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.656159] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.656345] PCI: CLS 64 bytes, default 64
[    2.656390] Unpacking initramfs...
[    2.778231] Freeing initrd memory: 8080k freed
[    2.779161] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    2.779168] software IO TLB [mem 0xaf1c0000-0xb31bffff] (64MB) mapped at [ffff8800af1c0000-ffff8800b31bffff]
[    2.779216] Simple Boot Flag at 0x44 set to 0x1
[    2.781821] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    2.782000] audit: initializing netlink socket (disabled)
[    2.782016] type=2000 audit(1361393904.643:1): initialized
[    2.800546] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    2.801946] VFS: Disk quotas dquot_6.5.2
[    2.801984] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    2.802303] msgmni has been set to 15696
[    2.802351] SELinux:  Registering netfilter hooks
[    2.802855] alg: No test for stdrng (krng)
[    2.802863] NET: Registered protocol family 38
[    2.802891] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    2.802914] io scheduler noop registered
[    2.802916] io scheduler deadline registered
[    2.802959] io scheduler cfq registered (default)
[    2.803052] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    2.803221] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    2.803235] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    2.803238] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    2.803610] efifb: probing for efifb
[    2.805588] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009b80000, using 16200k, total 65472k
[    2.805592] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    2.805594] efifb: scrolling: redraw
[    2.805596] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.811106] Console: switching to colour frame buffer device 240x67
[    2.816285] fb0: EFI VGA frame buffer device
[    2.816310] intel_idle: MWAIT substates: 0x21120
[    2.816312] intel_idle: v0.4 model 0x3A
[    2.816313] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.816386] ACPI: AC Adapter [ACAD] (on-line)
[    2.816478] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input0
[    2.816524] ACPI: Power Button [PWRB]
[    2.816565] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0E:00/input/input1
[    2.816610] ACPI: Sleep Button [SLPB]
[    2.816658] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
[    2.816710] ACPI: Lid Switch [LID0]
[    2.816751] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    2.816785] ACPI: Power Button [PWRF]
[    2.816985] ACPI: Requesting acpi_cpufreq
[    2.903048] thermal LNXTHERM:00: registered as thermal_zone0
[    2.903076] ACPI: Thermal Zone [TZ00] (52 C)
[    2.903117] GHES: HEST is not enabled!
[    2.903187] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    2.943740] ACPI: Battery Slot [BAT1] (battery absent)
[    2.943870] Non-volatile memory driver v1.3
[    2.943891] Linux agpgart interface v0.103
[    2.944486] loop: module loaded
[    2.944542] ahci 0000:00:1f.2: version 3.0
[    2.944596] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    2.944621] ahci: SSS flag set, parallel bus scan disabled
[    2.954737] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    2.954791] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    2.954830] ahci 0000:00:1f.2: setting latency timer to 64
[    2.959030] scsi0 : ahci
[    2.959102] scsi1 : ahci
[    2.959158] scsi2 : ahci
[    2.959216] scsi3 : ahci
[    2.959273] scsi4 : ahci
[    2.959331] scsi5 : ahci
[    2.959372] ata1: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717100 irq 41
[    2.959408] ata2: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717180 irq 41
[    2.959442] ata3: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717200 irq 41
[    2.959475] ata4: DUMMY
[    2.959488] ata5: DUMMY
[    2.959500] ata6: DUMMY
[    2.959568] libphy: Fixed MDIO Bus: probed
[    2.959639] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.959703] ehci_hcd 0000:00:1a.0: setting latency timer to 64
[    2.959707] ehci_hcd 0000:00:1a.0: EHCI Host Controller
[    2.961023] ehci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    2.966194] ehci_hcd 0000:00:1a.0: debug port 2
[    2.967474] ehci_hcd 0000:00:1a.0: cache line size of 64 is not supported
[    2.967486] ehci_hcd 0000:00:1a.0: irq 16, io mem 0xd3719000
[    2.974685] ehci_hcd 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.975992] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.977260] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.978525] usb usb1: Product: EHCI Host Controller
[    2.979779] usb usb1: Manufacturer: Linux 3.6.0-rc6+ ehci_hcd
[    2.981041] usb usb1: SerialNumber: 0000:00:1a.0
[    2.982375] hub 1-0:1.0: USB hub found
[    2.983620] hub 1-0:1.0: 2 ports detected
[    2.984901] ehci_hcd 0000:00:1d.0: setting latency timer to 64
[    2.984904] ehci_hcd 0000:00:1d.0: EHCI Host Controller
[    2.986169] ehci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.991303] ehci_hcd 0000:00:1d.0: debug port 2
[    2.992552] ehci_hcd 0000:00:1d.0: cache line size of 64 is not supported
[    2.992564] ehci_hcd 0000:00:1d.0: irq 23, io mem 0xd3718000
[    2.999648] ehci_hcd 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.000920] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.002161] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.003399] usb usb2: Product: EHCI Host Controller
[    3.004634] usb usb2: Manufacturer: Linux 3.6.0-rc6+ ehci_hcd
[    3.005858] usb usb2: SerialNumber: 0000:00:1d.0
[    3.007143] hub 2-0:1.0: USB hub found
[    3.008353] hub 2-0:1.0: 2 ports detected
[    3.009596] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.010814] uhci_hcd: USB Universal Host Controller Interface driver
[    3.012056] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    3.012059] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.013299] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.014581] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.014594] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3700000
[    3.015817] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[    3.015861] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    3.017029] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.018186] usb usb3: Product: xHCI Host Controller
[    3.019325] usb usb3: Manufacturer: Linux 3.6.0-rc6+ xhci_hcd
[    3.020454] usb usb3: SerialNumber: 0000:00:14.0
[    3.021634] xHCI xhci_add_endpoint called for root hub
[    3.021636] xHCI xhci_check_bandwidth called for root hub
[    3.021653] hub 3-0:1.0: USB hub found
[    3.022765] hub 3-0:1.0: 4 ports detected
[    3.023913] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.025048] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    3.026181] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    3.027302] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.028421] usb usb4: Product: xHCI Host Controller
[    3.029534] usb usb4: Manufacturer: Linux 3.6.0-rc6+ xhci_hcd
[    3.030650] usb usb4: SerialNumber: 0000:00:14.0
[    3.031816] xHCI xhci_add_endpoint called for root hub
[    3.031817] xHCI xhci_check_bandwidth called for root hub
[    3.031833] hub 4-0:1.0: USB hub found
[    3.032948] hub 4-0:1.0: 4 ports detected
[    3.040634] usbcore: registered new interface driver usbserial
[    3.041748] usbcore: registered new interface driver usbserial_generic
[    3.042839] USB Serial support registered for generic
[    3.043913] usbserial: USB Serial Driver core
[    3.045025] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS1] at 0x60,0x64 irq 1,12
[    3.085009] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.086165] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.087382] mousedev: PS/2 mouse device common for all mice
[    3.088691] rtc_cmos 00:06: RTC can wake from S4
[    3.089956] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
[    3.091141] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
[    3.092370] device-mapper: uevent: version 1.0.3
[    3.093587] device-mapper: ioctl: 4.23.0-ioctl (2012-07-25) initialised: dm-devel@redhat.com
[    3.094945] cpuidle: using governor ladder
[    3.096295] cpuidle: using governor menu
[    3.097847] EFI Variables Facility v0.08 2004-May-17
[    3.122284] usbcore: registered new interface driver usbhid
[    3.123489] usbhid: USB HID core driver
[    3.124699] drop_monitor: Initializing network drop monitor service
[    3.125346] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.127188] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.128669] TCP: cubic registered
[    3.129899] Initializing XFRM netlink socket
[    3.131208] NET: Registered protocol family 10
[    3.132562] mip6: Mobile IPv6
[    3.133772] NET: Registered protocol family 17
[    3.135506] PM: Hibernation image not present or could not be loaded.
[    3.135515] registered taskstats version 1
[    3.137419]   Magic number: 1:44:1004
[    3.138665] input input1: hash matches
[    3.139887] rtc_cmos 00:06: hash matches
[    3.141790] rtc_cmos 00:06: setting system clock to 2013-02-20 20:58:26 UTC (1361393906)
[    3.264359] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.267256] ata1.00: ATA-9: SanDisk SSD U100 16GB, 10.52.01, max UDMA/133
[    3.269725] ata1.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    3.272521] ata1.00: configured for UDMA/133
[    3.275347] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SSD U100 10.5 PQ: 0 ANSI: 5
[    3.278116] sd 0:0:0:0: [sda] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    3.278174] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.280754] sd 0:0:0:0: [sda] Write Protect is off
[    3.283224] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.283273] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.287280] usb 1-1: new high-speed USB device number 2 using ehci_hcd
[    3.293171]  sda: sda1
[    3.295439] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.404702] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.407292] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.410192] hub 1-1:1.0: USB hub found
[    3.412945] hub 1-1:1.0: 6 ports detected
[    3.517933] usb 2-1: new high-speed USB device number 2 using ehci_hcd
[    3.582893] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.585872] ata2.00: ATA-8: PLEXTOR PX-256M3, 1.05, max UDMA/133
[    3.588439] ata2.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    3.591345] ata2.00: configured for UDMA/133
[    3.592659] scsi 1:0:0:0: Direct-Access     ATA      PLEXTOR PX-256M3 1.05 PQ: 0 ANSI: 5
[    3.593883] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    3.593891] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.598986] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    3.601667] sd 1:0:0:0: [sdb] Write Protect is off
[    3.604237] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.604264] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.609423]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10
[    3.613511] sd 1:0:0:0: [sdb] Attached SCSI disk
[    3.634358] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    3.637075] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.640098] hub 2-1:1.0: USB hub found
[    3.642955] hub 2-1:1.0: 6 ports detected
[    3.719882] usb 1-1.6: new full-speed USB device number 3 using ehci_hcd
[    3.780603] tsc: Refined TSC clocksource calibration: 2394.560 MHz
[    3.783311] Switching to clocksource tsc
[    3.811176] usb 1-1.6: New USB device found, idVendor=04ca, idProduct=2003
[    3.814445] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.817145] usb 1-1.6: Product: BCM20702A0
[    3.819853] usb 1-1.6: Manufacturer: Broadcom Corp
[    3.822900] usb 1-1.6: SerialNumber: 20689D9D9640
[    3.900369] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.906922] ata3.00: ATAPI: HL-DT-ST BD-RE BT20N, KV01, max UDMA/133
[    3.913807] ata3.00: configured for UDMA/133
[    3.919452] usb 2-1.6: new high-speed USB device number 3 using ehci_hcd
[    3.920113] scsi 2:0:0:0: CD-ROM            HL-DT-ST BD-RE BT20N      KV01 PQ: 0 ANSI: 5
[    3.925224] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.927961] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.930978] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    3.931215] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    3.937094] Freeing unused kernel memory: 1024k freed
[    3.939987] Write protecting the kernel read-only data: 12288k
[    3.951944] Freeing unused kernel memory: 1976k freed
[    3.965590] Freeing unused kernel memory: 1452k freed
[    4.018176] usb 2-1.6: New USB device found, idVendor=04f2, idProduct=b2f1
[    4.020924] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.023659] usb 2-1.6: Product: Lenovo EasyCamera
[    4.026371] usb 2-1.6: Manufacturer: Vimicro Corp.
[    4.062221] systemd[1]: systemd 197 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    4.065286] systemd[1]: Running in initial RAM disk.
[    4.077272] systemd[1]: Set hostname to <ideapad.lan>.
[    4.105995] systemd[1]: Starting udev Kernel Socket.
[    4.114051] systemd[1]: Listening on udev Kernel Socket.
[    4.115161] systemd[1]: Starting udev Control Socket.
[    4.117348] systemd[1]: Listening on udev Control Socket.
[    4.118394] systemd[1]: Starting Journal Socket.
[    4.122159] systemd[1]: Listening on Journal Socket.
[    4.123196] systemd[1]: Starting dracut cmdline hook...
[    4.146747] systemd[1]: Started Load Kernel Modules.
[    4.149576] systemd[1]: Starting Journal Service...
[    4.185087] systemd[1]: Started Journal Service.
[    4.188040] systemd[1]: Starting Sockets.
[    4.193549] systemd[1]: Reached target Sockets.
[    4.196191] systemd[1]: Starting Swap.
[    4.200576] systemd[1]: Reached target Swap.
[    4.201576] systemd[1]: Starting Local File Systems.
[    4.203641] systemd[1]: Reached target Local File Systems.
[    4.387797] systemd-udevd[165]: starting version 197
[    4.568081] sdhci: Secure Digital Host Controller Interface driver
[    4.569315] sdhci: Copyright(c) Pierre Ossman
[    4.570458] [drm] Initialized drm 1.1.0 20060810
[    4.571914] sdhci-pci 0000:04:00.0: SDHCI controller found [197b:2392] (rev 30)
[    4.573216] Registered led device: mmc0::
[    4.575894] pci 0000:00:00.0: Intel Ivybridge Chipset
[    4.577238] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[    4.578642] wmi: Mapper loaded
[    4.580333] pci 0000:00:00.0: detected 65536K stolen memory
[    4.580367] checking generic (e0000000 fd2000) vs hw (e0000000 10000000)
[    4.580368] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
[    3.934203] ACPI: Invalid Power Resource to register!
[    4.583646] Console: switching 
[    4.583648] to colour dummy device 80x25
[    4.583752] i915 0000:00:02.0: setting latency timer to 64
[    4.584441] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    4.595257] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
[    4.595279] sdhci-pci 0000:04:00.2: SDHCI controller found [197b:2391] (rev 30)
[    4.595303] sdhci-pci 0000:04:00.2: Refusing to bind to secondary interface.
[    4.611445] [drm:intel_detect_pch], Found PatherPoint PCH
[    4.611764] [drm:intel_gt_init], Using MT version of forcewake
[    4.611827] [drm:intel_opregion_setup], graphic opregion physical addr: 0xbafb3018
[    4.611869] [drm:intel_opregion_setup], Public ACPI methods supported
[    4.611870] [drm:intel_opregion_setup], SWSCI supported
[    4.611871] [drm:intel_opregion_setup], ASLE supported
[    4.611888] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[    4.611893] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    4.611895] [drm] Driver supports precise vblank timestamp query.
[    4.611897] [drm:init_vbt_defaults], Set default to SSC at 100MHz
[    4.611899] [drm:intel_parse_bios], Using VBT from OpRegion: $VBT SNB/IVB-MOBILE d
[    4.611900] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 1 lvds_ssc_freq 120 display_clock_mode 0
[    4.611902] [drm:parse_general_definitions], crt_ddc_bus_pin: 2
[    4.611904] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables:
[    4.611905] [drm:drm_mode_debug_printmodeline], Modeline 0:"1920x1080" 0 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x8 0xa
[    4.611907] [drm:parse_lfp_panel_data], VBT initial LVDS value 30033c
[    4.611908] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables:
[    4.611909] [drm:drm_mode_debug_printmodeline], Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa
[    4.611911] [drm:parse_sdvo_device_mapping], No SDVO device info is found in VBT
[    4.611949] [drm:intel_dsm_pci_probe], no _DSM method for intel device
[    4.611951] [drm:intel_dsm_detect], VGA switcheroo: detected DSM switching method \_SB_.PCI0.GFX0 handle
[    4.611959] [drm:intel_modeset_init], 3 display pipes available.
[    4.611969] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    4.611971] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[    4.652249] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    4.652266] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    4.652283] [drm:intel_crt_init], pch crt adpa set to 0xf40000
[    4.652659] [drm:intel_sdvo_read_byte], i2c transfer returned -6
[    4.652660] [drm:intel_sdvo_init], No SDVO device found on SDVOB
[    4.652709] [drm:intel_dp_i2c_init], i2c_init DPDDC-B
[    4.655265] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    4.655266] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    4.657820] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    4.657823] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    4.657859] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    4.682983] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    4.753088] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    4.804978] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id: 1087391
[    4.907832] [drm:ironlake_crtc_dpms], crtc 0/0 dpms off
[    4.907844] [drm:i915_get_vblank_timestamp], crtc 0 is disabled
[    4.916029] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    4.957985] [drm:ironlake_crtc_dpms], crtc 1/1 dpms off
[    4.957995] [drm:gm45_get_vblank_counter], trying to get vblank count for disabled pipe B
[    4.957999] [drm:i915_get_vblank_timestamp], crtc 1 is disabled
[    4.958001] [drm:gm45_get_vblank_counter], trying to get vblank count for disabled pipe B
[    4.958441] [drm:ironlake_crtc_dpms], crtc 2/2 dpms off
[    4.958443] [drm:gm45_get_vblank_counter], trying to get vblank count for disabled pipe C
[    4.958446] [drm:i915_get_vblank_timestamp], crtc 2 is disabled
[    4.958448] [drm:gm45_get_vblank_counter], trying to get vblank count for disabled pipe C
[    4.958887] [drm:ironlake_init_pch_refclk], has_panel 1 has_lvds 1 has_pch_edp 0 has_cpu_edp 0 has_ck505 0
[    4.958893] [drm:ironlake_init_pch_refclk], Using SSC on panel
[    5.019310] [drm:init_status_page], render ring hws offset: 0x00000000
[    5.019610] [drm:init_status_page], bsd ring hws offset: 0x00022000
[    5.019809] [drm:init_status_page], blitter ring hws offset: 0x00043000
[    5.019999] [drm:create_default_context], Default HW context loaded
[    5.020002] [drm:i915_gem_context_init], HW context support initialized
[    5.020143] [drm:intel_enable_rc6], RC6 and deep RC6 enabled
[    5.020146] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    5.055720] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.055750] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    5.055768] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    5.055772] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.055777] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    5.055782] [drm:intel_ironlake_crt_detect_hotplug], trigger hotplug detect cycle: adpa=0xf40000
[    5.065664] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    5.065672] [drm:intel_crt_detect], CRT not detected via hotplug
[    5.067572] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    5.067581] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    5.067585] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    5.067958] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    5.067960] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    5.067964] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    5.067969] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    5.068344] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    5.068348] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    5.068351] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1]
[    5.070910] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    5.075106] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    5.079096] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    5.080556] [drm:intel_dp_detect], DPCD: 0000000000000000
[    5.080565] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1] disconnected
[    5.080569] [drm:drm_setup_crtcs], 
[    5.080574] [drm:drm_enable_connectors], connector 9 enabled? yes
[    5.080576] [drm:drm_enable_connectors], connector 15 enabled? no
[    5.080579] [drm:drm_enable_connectors], connector 18 enabled? no
[    5.080581] [drm:drm_enable_connectors], connector 21 enabled? no
[    5.080583] [drm:drm_target_preferred], looking for cmdline mode on connector 9
[    5.080586] [drm:drm_target_preferred], looking for preferred mode on connector 9
[    5.080588] [drm:drm_target_preferred], found mode 1920x1080
[    5.080591] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config
[    5.080595] [drm:drm_setup_crtcs], desired mode 1920x1080 set on crtc 3
[    5.092517] [drm:intelfb_create], allocated 1920x1080 fb: 0x00073000, bo ffff880230c9c800
[    5.092703] fbcon: inteldrmfb (fb0) is primary device
[    5.092779] [drm:drm_crtc_helper_set_config], 
[    5.092782] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.092788] [drm:drm_crtc_helper_set_config], crtc has no fb, full mode set
[    5.092789] [drm:drm_crtc_helper_set_config], modes are different, full mode set
[    5.092793] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    5.092797] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.092799] [drm:drm_crtc_helper_set_config], encoder changed, full mode switch
[    5.092800] [drm:drm_crtc_helper_set_config], crtc changed, full mode switch
[    5.092803] [drm:drm_crtc_helper_set_config], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.092805] [drm:drm_crtc_helper_set_config], attempting to set mode from userspace
[    5.092808] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.092813] [drm:drm_crtc_helper_set_mode], [CRTC:3]
[    5.092816] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.092839] [drm:ironlake_get_refclk], using SSC reference clock of 120 MHz
[    5.092877] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to LVDS (6)
[    5.092879] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 6)
[    5.092883] [drm:ironlake_crtc_mode_set], Mode for pipe 0:
[    5.092886] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    5.092888] [drm:intel_get_pch_pll], CRTC:3 allocated PCH PLL c6014
[    5.092890] [drm:intel_get_pch_pll], using pll 0 for pipe 0
[    5.092891] [drm:intel_get_pch_pll], switching PLL c6014 off
[    5.144533] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.144544] [drm:ironlake_update_plane], Writing base 00073000 00000000 0 0 7680
[    5.144549] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    5.144552] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    5.144554] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    5.144557] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    5.144562] [drm:drm_crtc_helper_set_mode], [ENCODER:10:LVDS-10] set [MODE:12:1920x1080]
[    5.144566] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    5.144568] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    5.144570] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    5.144573] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    5.196432] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.248390] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.249207] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x700
[    5.249209] [drm:ivb_manual_fdi_link_train], FDI train 1 done.
[    5.249866] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x600
[    5.249869] [drm:ivb_manual_fdi_link_train], FDI train 2 done.
[    5.249870] [drm:ivb_manual_fdi_link_train], FDI train done.
[    5.249873] [drm:intel_enable_pch_pll], enable PCH PLL c6014 (active 0, on? 0)for crtc 3
[    5.249875] [drm:intel_enable_pch_pll], enabling PCH PLL c6014
[    5.267859] [drm:intel_prepare_page_flip], preparing flip with no unpin work?
[    5.324275] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.324284] [drm:drm_crtc_helper_set_config], Setting connector DPMS state to on
[    5.324287] [drm:drm_crtc_helper_set_config], 	[CONNECTOR:9:LVDS-1] set DPMS on
[    5.324305] [drm:drm_crtc_helper_set_config], 
[    5.324307] [drm:drm_crtc_helper_set_config], [CRTC:5] [NOFB]
[    5.324317] [drm:drm_crtc_helper_set_config], 
[    5.324318] [drm:drm_crtc_helper_set_config], [CRTC:7] [NOFB]
[    5.324334] Console: switching to colour frame buffer device 240x67
[    5.324348] [drm:drm_crtc_helper_set_config], 
[    5.324351] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.324360] [drm:drm_crtc_helper_set_config], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.335277] fb0: inteldrmfb frame buffer device
[    5.335319] drm: registered panic notifier
[    5.335708] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.341431] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.341442] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.342572] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.342578] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.342710] acpi device:3c: registered as cooling_device8
[    5.342960] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    5.343084] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:3a/LNXVIDEO:00/input/input6
[    5.355298] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.355308] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.356493] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.356497] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.356636] acpi device:48: registered as cooling_device9
[    5.356929] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.357054] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input7
[    5.357336] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    5.358048] [drm] nouveau 0000:01:00.0: nouveau_load:1046 - vendor: 0x10DE device: 0xFD4 class: 0x30000
[    5.358174] [drm] nouveau 0000:01:00.0: Detected an NVe0 generation card (0x0e7140a2)
[    5.362149] [drm] nouveau 0000:01:00.0: nouveau_load:1124 - regs mapped ok at 0xd2000000
[    5.362157] [drm] nouveau 0000:01:00.0: nouveau_load:1141 - crystal freq: 27000KHz
[    5.362159] [drm] nouveau 0000:01:00.0: acceleration disabled by default, pass noaccel=0 to force enable
[    5.369548] [drm] nouveau 0000:01:00.0: Checking PRAMIN for VBIOS
[    5.417624] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.417647] [drm] nouveau 0000:01:00.0: Checking PROM for VBIOS
[    5.417727] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.417748] [drm] nouveau 0000:01:00.0: Checking ACPI for VBIOS
[    5.417776] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.417797] [drm] nouveau 0000:01:00.0: Checking PCIROM for VBIOS
[    5.417817] [drm] nouveau 0000:01:00.0: ... BIOS signature not found
[    5.417837] [drm] nouveau 0000:01:00.0: No valid VBIOS image found
[    5.585206] systemd-journald[123]: Received SIGTERM
[    5.631487] type=1404 audit(1361393908.992:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    5.670751] SELinux: 2048 avtab hash slots, 94720 rules.
[    5.680273] SELinux: 2048 avtab hash slots, 94720 rules.
[    5.758846] SELinux:  9 users, 15 roles, 4367 types, 239 bools, 1 sens, 1024 cats
[    5.758848] SELinux:  83 classes, 94720 rules
[    5.761480] SELinux:  Completing initialization.
[    5.761481] SELinux:  Setting up existing superblocks.
[    5.761486] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    5.761488] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[    5.761493] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[    5.761496] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[    5.761501] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.761526] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[    5.762050] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[    5.762053] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[    5.762425] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[    5.762428] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[    5.762430] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[    5.762438] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    5.762442] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[    5.762445] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[    5.762452] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    5.762635] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[    5.762636] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.762640] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.762687] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    5.762704] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.762706] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.762709] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.762719] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.762722] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.762724] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.762726] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.762728] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.762731] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    5.762736] SELinux: initialized (dev sdb9, type ext4), uses xattr
[    5.789849] type=1403 audit(1361393909.151:3): policy loaded auid=4294967295 ses=4294967295
[    5.798102] systemd[1]: Successfully loaded SELinux policy in 167ms 220us.
[    5.827734] systemd[1]: Relabelled /dev and /run in 14ms 576us.
[    6.004420] systemd-readahead[291]: Bumped block_nr parameter of 8:16 to 20480. This is a temporary hack and should be removed one day.
[    6.064924] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    6.135567] systemd-udevd[300]: starting version 197
[    6.156946] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    6.238178] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120711/utaddress-251)
[    6.238245] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.238292] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20120711/utaddress-251)
[    6.238347] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20120711/utaddress-251)
[    6.238415] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.238456] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.242592] mei 0000:00:16.0: setting latency timer to 64
[    6.242648] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[    6.249182] mei 0000:00:16.0: wd: failed to find the client
[    6.249284] input: Ideapad extra buttons as /devices/platform/ideapad/input/input8
[    6.255528] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120711/utaddress-251)
[    6.255598] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.262812] Linux media interface: v0.10
[    6.266879] EXT4-fs (sdb9): re-mounted. Opts: (null)
[    6.267716] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    6.279189] iTCO_vendor_support: vendor-support=0
[    6.280758] Linux video capture interface: v2.00
[    6.284270] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    6.286403] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    6.288369] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    6.289911] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    6.289960] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    6.290359] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    6.290777] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    6.291114] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    6.291516] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    6.298330] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    6.300297] cfg80211: Calling CRDA to update world regulatory domain
[    6.302619] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.306686] cfg80211: World regulatory domain updated:
[    6.308401] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    6.309766] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.309769] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.309769] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    6.309770] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.309770] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.327978] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[    6.329231] Copyright(c) 2003-2012 Intel Corporation
[    6.330532] iwlwifi 0000:03:00.0: pci_resource_len = 0x00002000
[    6.331863] iwlwifi 0000:03:00.0: pci_resource_base = ffffc900040fc000
[    6.333124] iwlwifi 0000:03:00.0: HW Revision ID = 0xC4
[    6.334498] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
[    6.339371] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1
[    6.346020] tun: Universal TUN/TAP device driver, 1.6
[    6.347818] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    6.351438] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2f1)
[    6.354237] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input9
[    6.355778] usbcore: registered new interface driver uvcvideo
[    6.357008] USB Video Class driver (1.1.1)
[    6.372187] ALSA sound/pci/hda/hda_intel.c:2748 Using COMBO position fix
[    6.372233] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[    6.441794] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[    6.447869] iwldvm: Intel(R) Wireless WiFi Link AGN driver for Linux, in-tree:d
[    6.449988] iwldvm: Copyright(c) 2003-2012 Intel Corporation
[    6.452125] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
[    6.453855] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[    6.455494] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    6.457016] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[    6.458484] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled
[    6.459693] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 2200 BGN, REV=0x104
[    6.461608] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    6.480296] iwlwifi 0000:03:00.0: device EEPROM VER=0x81c, CALIB=0x6
[    6.481561] iwlwifi 0000:03:00.0: Device SKU: 0x150
[    6.482835] iwlwifi 0000:03:00.0: Valid Tx ant: 0x3, Valid Rx ant: 0x3
[    6.484218] Registered led device: phy0-led
[    6.488256] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    6.495295] cfg80211: Calling CRDA for country: US
[    6.500216] cfg80211: Regulatory domain changed to country: US
[    6.503266] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    6.506163] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    6.508939] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    6.511992] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.515190] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.518213] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    6.521132] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    6.523969] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[    6.671403] Adding 8044540k swap on /dev/sdb8.  Priority:-1 extents:1 across:8044540k SS
[    6.777718] SELinux: initialized (dev sdb2, type vfat), uses genfs_contexts
[    6.814704] EXT4-fs (sdb10): mounted filesystem with ordered data mode. Opts: (null)
[    6.817836] SELinux: initialized (dev sdb10, type ext4), uses xattr
[    6.834961] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
[    6.838488] SELinux: initialized (dev sdb7, type ext4), uses xattr
[    6.874963] SELinux: initialized (dev sdb6, type vfat), uses genfs_contexts
[    6.894198] ALSA sound/pci/hda/patch_realtek.c:1271 SKU: Nid=0x1d sku_cfg=0x4015822d
[    6.894202] ALSA sound/pci/hda/patch_realtek.c:1273 SKU: port_connectivity=0x1
[    6.894204] ALSA sound/pci/hda/patch_realtek.c:1274 SKU: enable_pcbeep=0x1
[    6.894206] ALSA sound/pci/hda/patch_realtek.c:1275 SKU: check_sum=0x00000005
[    6.894208] ALSA sound/pci/hda/patch_realtek.c:1276 SKU: customization=0x00000082
[    6.894210] ALSA sound/pci/hda/patch_realtek.c:1277 SKU: external_amp=0x5
[    6.894213] ALSA sound/pci/hda/patch_realtek.c:1278 SKU: platform_type=0x1
[    6.894215] ALSA sound/pci/hda/patch_realtek.c:1279 SKU: swap=0x0
[    6.894216] ALSA sound/pci/hda/patch_realtek.c:1280 SKU: override=0x1
[    6.894223] ALSA sound/pci/hda/hda_auto_parser.c:322 autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    6.894225] ALSA sound/pci/hda/hda_auto_parser.c:326    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    6.894228] ALSA sound/pci/hda/hda_auto_parser.c:330    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    6.894230] ALSA sound/pci/hda/hda_auto_parser.c:331    mono: mono_out=0x0
[    6.894232] ALSA sound/pci/hda/hda_auto_parser.c:334    dig-out=0x1e/0x0
[    6.894234] ALSA sound/pci/hda/hda_auto_parser.c:335    inputs:
[    6.894236] ALSA sound/pci/hda/hda_auto_parser.c:339      Internal Mic=0x12
[    6.894239] ALSA sound/pci/hda/hda_auto_parser.c:339      Mic=0x18
[    6.895442] ALSA sound/pci/hda/patch_realtek.c:1334 realtek: No valid SSID, checking pincfg 0x4015822d for NID 0x1d
[    6.895445] ALSA sound/pci/hda/patch_realtek.c:1350 realtek: Enabling init ASM_ID=0x822d CODEC_ID=10ec0269
[    6.906782] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    6.910037] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    6.912941] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    7.538543] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    7.557503] Ebtables v2.0 registered
[    7.625093] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    7.801816] systemd-journald[428]: Received SIGUSR1
[    7.829259] Loading iSCSI transport class v2.0-870.
[    7.838517] iscsi: registered transport (tcp)
[    7.878758] iscsi: registered transport (iser)
[    7.886217] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[    7.887478] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[    7.909723] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[    7.912554] iscsi: registered transport (cxgb3i)
[    7.934417] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[    7.937332] iscsi: registered transport (cxgb4i)
[    7.950241] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.12 (June 29, 2012)
[    7.956671] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Apr 25, 2012)
[    7.957889] iscsi: registered transport (bnx2i)
[    7.970391] iscsi: registered transport (be2iscsi)
[    8.028558] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.037514] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    8.078079] Bluetooth: Core ver 2.16
[    8.079195] NET: Registered protocol family 31
[    8.080290] Bluetooth: HCI device and connection manager initialized
[    8.081387] Bluetooth: HCI socket layer initialized
[    8.081732] [drm:i915_driver_open], 
[    8.081753] [drm:drm_crtc_helper_set_config], 
[    8.081754] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    8.081758] [drm:drm_crtc_helper_set_config], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.081759] [drm:drm_crtc_helper_set_config], 
[    8.081760] [drm:drm_crtc_helper_set_config], [CRTC:5] [NOFB]
[    8.081820] [drm:drm_crtc_helper_set_config], 
[    8.081820] [drm:drm_crtc_helper_set_config], [CRTC:7] [NOFB]
[    8.081899] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.081906] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.081910] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.081915] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.081938] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.081947] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.081950] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.081954] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.081982] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.081990] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.081994] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.081998] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.082439] Bluetooth: L2CAP socket layer initialized
[    8.083509] Bluetooth: SCO socket layer initialized
[    8.088304] [drm:i915_driver_open], 
[    8.088315] [drm:drm_crtc_helper_set_config], 
[    8.088316] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    8.088321] [drm:drm_crtc_helper_set_config], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.088322] [drm:drm_crtc_helper_set_config], 
[    8.088323] [drm:drm_crtc_helper_set_config], [CRTC:5] [NOFB]
[    8.088372] [drm:drm_crtc_helper_set_config], 
[    8.088373] [drm:drm_crtc_helper_set_config], [CRTC:7] [NOFB]
[    8.088435] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.088441] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.088444] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.088448] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.088474] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.088481] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.088484] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.088488] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.088511] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.088518] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.088521] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.088524] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.088532] [drm:i915_driver_open], 
[    8.088546] [drm:drm_crtc_helper_set_config], 
[    8.088546] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    8.088549] [drm:drm_crtc_helper_set_config], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.088550] [drm:drm_crtc_helper_set_config], 
[    8.088551] [drm:drm_crtc_helper_set_config], [CRTC:5] [NOFB]
[    8.088596] [drm:drm_crtc_helper_set_config], 
[    8.088597] [drm:drm_crtc_helper_set_config], [CRTC:7] [NOFB]
[    8.088660] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.088667] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.088672] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.088675] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.088699] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.088707] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.088711] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.088715] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.088745] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.088753] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.088757] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.088761] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.088800] [drm:i915_driver_open], 
[    8.088804] [drm:drm_crtc_helper_set_config], 
[    8.088804] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    8.088807] [drm:drm_crtc_helper_set_config], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.088808] [drm:drm_crtc_helper_set_config], 
[    8.088809] [drm:drm_crtc_helper_set_config], [CRTC:5] [NOFB]
[    8.088866] [drm:drm_crtc_helper_set_config], 
[    8.088866] [drm:drm_crtc_helper_set_config], [CRTC:7] [NOFB]
[    8.088943] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.088951] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.088955] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.088959] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.088978] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.088987] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.088991] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.088994] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.089017] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.089024] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.089027] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.089031] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.089329] [drm:i915_driver_open], 
[    8.089338] [drm:drm_crtc_helper_set_config], 
[    8.089339] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    8.089343] [drm:drm_crtc_helper_set_config], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.089345] [drm:drm_crtc_helper_set_config], 
[    8.089346] [drm:drm_crtc_helper_set_config], [CRTC:5] [NOFB]
[    8.089393] [drm:drm_crtc_helper_set_config], 
[    8.089394] [drm:drm_crtc_helper_set_config], [CRTC:7] [NOFB]
[    8.089469] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.089475] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.089479] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.089482] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.089510] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.089518] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.089521] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.089525] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.089549] [drm:sandybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    8.089558] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    8.089562] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    8.089565] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    8.089576] [drm:i915_driver_open], 
[    8.089697] [drm:i915_getparam], Unknown parameter 21
[    8.089785] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    8.089788] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    8.089887] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.089889] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.089899] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.089901] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.089905] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.090074] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.090076] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.090080] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.090082] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.090555] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.090557] Bluetooth: BNEP filters: protocol multicast
[    8.092059] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.092063] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.092065] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.092883] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.092885] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.092888] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.092895] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.092898] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.092902] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.092904] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.094081] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.094083] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.094085] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.094462] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.094463] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.094464] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.094493] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.094495] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.094858] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.094860] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.094861] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.094862] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.095233] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.095235] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.095258] [drm:drm_mode_getconnector], [CONNECTOR:21:?]
[    8.095260] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1]
[    8.097811] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.101664] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.105602] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.107038] [drm:intel_dp_detect], DPCD: 0000000000000000
[    8.107041] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1] disconnected
[    8.107046] [drm:drm_mode_getconnector], [CONNECTOR:21:?]
[    8.107047] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1]
[    8.109596] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.113581] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.117572] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.119019] [drm:intel_dp_detect], DPCD: 0000000000000000
[    8.119022] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1] disconnected
[    8.119189] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.119191] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.119198] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.119200] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.119202] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.119864] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.119866] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.119869] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.119870] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.121020] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.121023] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.121024] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.121384] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.121385] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.121386] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.121390] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.121391] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.121394] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.121395] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.123010] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.123013] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.123014] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.123373] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.123374] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.123375] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.123434] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.123436] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.123800] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.123801] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.123803] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.123804] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.124169] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.124170] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.124189] [drm:drm_mode_getconnector], [CONNECTOR:21:?]
[    8.124190] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1]
[    8.126738] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.130544] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.134545] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.136001] [drm:intel_dp_detect], DPCD: 0000000000000000
[    8.136010] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1] disconnected
[    8.136022] [drm:drm_mode_getconnector], [CONNECTOR:21:?]
[    8.136026] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1]
[    8.138578] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.142573] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.146681] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.148025] [drm:intel_dp_detect], DPCD: 0000000000000000
[    8.148038] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1] disconnected
[    8.154523] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    8.154532] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    8.155673] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    8.155679] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    8.157661] [drm:drm_mode_addfb], [FB:25]
[    8.157744] [drm:drm_mode_setcrtc], [CRTC:3]
[    8.157749] [drm:drm_mode_setcrtc], [CONNECTOR:9:LVDS-1]
[    8.157753] [drm:drm_crtc_helper_set_config], 
[    8.157755] [drm:drm_crtc_helper_set_config], [CRTC:3] [FB:25] #connectors=1 (x y) (0 0)
[    8.157764] [drm:drm_crtc_helper_set_config], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.170211] [drm:ironlake_update_plane], Writing base 0085C000 00000000 0 0 7680
[    8.171955] [drm:intel_prepare_page_flip], preparing flip with no unpin work?
[    8.172042] [drm:drm_mode_setcrtc], [CRTC:5]
[    8.172044] [drm:drm_crtc_helper_set_config], 
[    8.172046] [drm:drm_crtc_helper_set_config], [CRTC:5] [NOFB]
[    8.172059] [drm:drm_mode_setcrtc], [CRTC:7]
[    8.172060] [drm:drm_crtc_helper_set_config], 
[    8.172060] [drm:drm_crtc_helper_set_config], [CRTC:7] [NOFB]
[    8.300237] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.307731] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    8.314774] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.314781] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.314800] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.314804] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.314812] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.315076] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.315080] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.315085] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.315088] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.316769] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.316780] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.316784] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.317155] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.317157] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.317163] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.317180] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.317185] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.317190] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.317193] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.318767] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.318778] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.318782] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.319155] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.319157] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.319163] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.319198] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.319203] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.319576] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.319580] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.319585] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.319588] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.319989] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.319998] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.320011] [drm:drm_mode_getconnector], [CONNECTOR:21:?]
[    8.320015] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1]
[    8.322572] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.326364] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.330263] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.331702] [drm:intel_dp_detect], DPCD: 0000000000000000
[    8.331711] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1] disconnected
[    8.331728] [drm:drm_mode_getconnector], [CONNECTOR:21:?]
[    8.331734] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1]
[    8.334291] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.338267] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.342321] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.343728] [drm:intel_dp_detect], DPCD: 0000000000000000
[    8.343738] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1] disconnected
[    8.349675] [drm:intel_crtc_cursor_set], 
[    8.388223] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    8.744920] [drm:i915_driver_open], 
[    8.750593] [drm:i915_gem_context_create_ioctl], HW context 1 created
[    8.752226] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[    8.806918] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.806927] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.806946] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.806949] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.806958] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.807711] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.807716] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.807722] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.807725] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.808999] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.809006] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.809011] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.809400] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.809403] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.809407] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.809416] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.809419] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.809423] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.809425] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.810994] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.810998] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.811001] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.811368] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.811370] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.811373] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.811388] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.811392] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.811764] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.811767] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.811771] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.811774] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.812162] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.812166] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.812174] [drm:drm_mode_getconnector], [CONNECTOR:21:?]
[    8.812177] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1]
[    8.814733] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.818557] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.822542] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.823977] [drm:intel_dp_detect], DPCD: 0000000000000000
[    8.823987] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1] disconnected
[    8.824004] [drm:drm_mode_getconnector], [CONNECTOR:21:?]
[    8.824008] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1]
[    8.826563] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.830527] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.834523] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.835964] [drm:intel_dp_detect], DPCD: 0000000000000000
[    8.835973] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:21:DP-1] disconnected
[    8.839848] wlan0: authenticate with bc:ae:c5:c3:07:c4
[    8.847350] wlan0: send auth to bc:ae:c5:c3:07:c4 (try 1/3)
[    8.849238] wlan0: authenticated
[    8.849472] wlan0: waiting for beacon from bc:ae:c5:c3:07:c4
[    8.868922] wlan0: associate with bc:ae:c5:c3:07:c4 (try 1/3)
[    8.872366] wlan0: RX AssocResp from bc:ae:c5:c3:07:c4 (capab=0x411 status=0 aid=1)
[    8.874152] wlan0: associated
[    8.874177] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[    8.969326] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.973332] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.977303] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[    8.978799] [drm:intel_dp_detect], DPCD: 0000000000000000
[    8.979231] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.979267] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.979268] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.980753] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.980761] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.980764] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.981143] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.981144] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.374151] [drm:i915_driver_open], 
[    9.376628] [drm:i915_gem_context_create_ioctl], HW context 1 created
[    9.377038] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[    9.378378] [drm:i915_gem_context_create_ioctl], HW context 1 created
[   11.922314] [drm:drm_mode_addfb], [FB:26]
[   11.946702] [drm:drm_mode_addfb], [FB:25]
[   11.977488] [drm:drm_mode_addfb], [FB:26]
[   12.000356] [drm:drm_mode_addfb], [FB:25]
[   12.057817] [drm:drm_mode_addfb], [FB:26]
[   12.077702] [drm:drm_mode_addfb], [FB:25]
[   12.094401] [drm:drm_mode_addfb], [FB:26]
[   12.111113] [drm:drm_mode_addfb], [FB:25]
[   12.127758] [drm:drm_mode_addfb], [FB:26]
[   12.144451] [drm:drm_mode_addfb], [FB:25]
[   12.161103] [drm:drm_mode_addfb], [FB:26]
[   12.901324] [drm:drm_mode_addfb], [FB:25]
[   12.912180] [drm:drm_mode_addfb], [FB:26]
[   12.928961] [drm:drm_mode_addfb], [FB:25]
[   12.945609] [drm:drm_mode_addfb], [FB:26]
[   12.962270] [drm:drm_mode_addfb], [FB:25]
[   12.978965] [drm:drm_mode_addfb], [FB:26]
[   12.995651] [drm:drm_mode_addfb], [FB:25]
[   13.012349] [drm:drm_mode_addfb], [FB:26]
[   13.029043] [drm:drm_mode_addfb], [FB:25]
[   13.045772] [drm:drm_mode_addfb], [FB:26]
[   13.062413] [drm:drm_mode_addfb], [FB:25]
[   13.079104] [drm:drm_mode_addfb], [FB:26]
[   13.095806] [drm:drm_mode_addfb], [FB:25]
[   13.112478] [drm:drm_mode_addfb], [FB:26]
[   13.566450] fuse init (API version 7.20)
[   13.570510] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[   13.589878] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
[   15.351396] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[   15.351405] [drm:intel_crt_detect], CRT not detected via hotplug
[   15.353319] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[   15.353328] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   15.353332] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[   15.353704] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[   15.353707] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[   15.353710] [drm:output_poll_execute], [CONNECTOR:15:VGA-1] status updated from 2 to 2
[   15.354084] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[   15.354087] [drm:output_poll_execute], [CONNECTOR:18:HDMI-A-1] status updated from 2 to 2
[   15.356646] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[   15.360842] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[   15.364839] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x5145003f
[   15.366328] [drm:intel_dp_detect], DPCD: 0000000000000000
[   15.366338] [drm:output_poll_execute], [CONNECTOR:21:DP-1] status updated from 2 to 2
[   37.132180] [drm:drm_mode_addfb], [FB:25]

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-20 21:04                 ` Chris Li
@ 2013-02-22 22:42                   ` Chris Li
  2013-03-04 17:11                     ` Chris Li
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-02-22 22:42 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown

Ping. Any update for this black screen problem?

Chris

On Wed, Feb 20, 2013 at 1:04 PM, Chris Li <lkml@chrisli.org> wrote:
> Here is the dmesg with "drm.debug=0xe" at
> 80187431762989ebade986468d3c548287a12689
>
> That is the 3.6 kernel, exactly one commit before the ACPI commit
> which  triggering the black screen.
>
> Thanks
>
> Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-02-22 22:42                   ` Chris Li
@ 2013-03-04 17:11                     ` Chris Li
  2013-03-04 17:49                       ` Daniel Vetter
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-03-04 17:11 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown,
	Linus Torvalds

Ping,

To recap, the black screen first show up after the ACPI change to use widows 8
string. The i915_setmode function did not crash. The printk output
from that function seems the same as the one that is in 3.6 kernel.
I also include the 3.6 and 3.7 kernel dmesg. The black screen is 100%
reproducible.

Any suggestion how to further debug this i9515 black screen problem?
I really want to get it fixed.

Thanks

Chris

On Fri, Feb 22, 2013 at 2:42 PM, Chris Li <lkml@chrisli.org> wrote:
> Ping. Any update for this black screen problem?
>
> Chris
>
> On Wed, Feb 20, 2013 at 1:04 PM, Chris Li <lkml@chrisli.org> wrote:
>> Here is the dmesg with "drm.debug=0xe" at
>> 80187431762989ebade986468d3c548287a12689
>>
>> That is the 3.6 kernel, exactly one commit before the ACPI commit
>> which  triggering the black screen.
>>
>> Thanks
>>
>> Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-03-04 17:11                     ` Chris Li
@ 2013-03-04 17:49                       ` Daniel Vetter
  2013-03-04 17:50                         ` Daniel Vetter
  0 siblings, 1 reply; 29+ messages in thread
From: Daniel Vetter @ 2013-03-04 17:49 UTC (permalink / raw)
  To: Chris Li
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown,
	Linus Torvalds

On Mon, Mar 4, 2013 at 6:11 PM, Chris Li <lkml@chrisli.org> wrote:
> To recap, the black screen first show up after the ACPI change to use widows 8
> string. The i915_setmode function did not crash. The printk output
> from that function seems the same as the one that is in 3.6 kernel.
> I also include the 3.6 and 3.7 kernel dmesg. The black screen is 100%
> reproducible.
>
> Any suggestion how to further debug this i9515 black screen problem?
> I really want to get it fixed.

Sorry for missing out on this one, I'll add a few more mailing lists to.

Backlight issues themselves are usually a pain. I've looked through
your debug dmesg and there doesn't seem to be anything bad going on.

Two things to test:
- Can you please check whether any of the backlight drivers in
/sys/class/backlight does anything? You need to frob the brightness
file. Please also list all the drivers you have.
- Please grab the lates git of intel-gpu-tools and attach the output
of intel_reg_dumper for both a working and a broken kernel. The git
tree is at:

http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/

Since backlight bugs usually take a lot of poking to figure out it
might be good to keep things together in a bugzilla report.
bugs.freedesktop.org, DRI -> DRM (Intel) is the preferred location,
please file a report there and attach the dump files (and the debug
dmesg logs we've gathered already).

Thanks, Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-03-04 17:49                       ` Daniel Vetter
@ 2013-03-04 17:50                         ` Daniel Vetter
  2013-03-04 23:16                           ` Chris Li
  0 siblings, 1 reply; 29+ messages in thread
From: Daniel Vetter @ 2013-03-04 17:50 UTC (permalink / raw)
  To: Chris Li
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown,
	Linus Torvalds, intel-gfx

Meh, forgotten to actually cc more lists ...
-Daniel

On Mon, Mar 4, 2013 at 6:49 PM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
> On Mon, Mar 4, 2013 at 6:11 PM, Chris Li <lkml@chrisli.org> wrote:
>> To recap, the black screen first show up after the ACPI change to use widows 8
>> string. The i915_setmode function did not crash. The printk output
>> from that function seems the same as the one that is in 3.6 kernel.
>> I also include the 3.6 and 3.7 kernel dmesg. The black screen is 100%
>> reproducible.
>>
>> Any suggestion how to further debug this i9515 black screen problem?
>> I really want to get it fixed.
>
> Sorry for missing out on this one, I'll add a few more mailing lists to.
>
> Backlight issues themselves are usually a pain. I've looked through
> your debug dmesg and there doesn't seem to be anything bad going on.
>
> Two things to test:
> - Can you please check whether any of the backlight drivers in
> /sys/class/backlight does anything? You need to frob the brightness
> file. Please also list all the drivers you have.
> - Please grab the lates git of intel-gpu-tools and attach the output
> of intel_reg_dumper for both a working and a broken kernel. The git
> tree is at:
>
> http://cgit.freedesktop.org/xorg/app/intel-gpu-tools/
>
> Since backlight bugs usually take a lot of poking to figure out it
> might be good to keep things together in a bugzilla report.
> bugs.freedesktop.org, DRI -> DRM (Intel) is the preferred location,
> please file a report there and attach the dump files (and the debug
> dmesg logs we've gathered already).
>
> Thanks, Daniel
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch



-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-03-04 17:50                         ` Daniel Vetter
@ 2013-03-04 23:16                           ` Chris Li
  2013-03-04 23:33                             ` Chris Li
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-03-04 23:16 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown,
	Linus Torvalds, intel-gfx

[-- Attachment #1: Type: text/plain, Size: 1123 bytes --]

Thanks Daniel

I am recompiling the kernel.
I will also open a bug in bugzilla when I collect all the relative information.


Chris

On Mon, Mar 4, 2013 at 9:50 AM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
>> Two things to test:
>> - Can you please check whether any of the backlight drivers in
>> /sys/class/backlight does anything? You need to frob the brightness
>> file. Please also list all the drivers you have.

 This is the good one before
the acpi change.

lrwxrwxrwx. 1 root root 0 Mar  4 15:05 acpi_video0 ->
../../devices/pci0000:00/0000:00:01.0/0000:01:00.0/backlight/acpi_video0
lrwxrwxrwx. 1 root root 0 Mar  4 15:05 acpi_video1 ->
../../devices/pci0000:00/0000:00:02.0/backlight/acpi_video1
lrwxrwxrwx. 1 root root 0 Mar  4 15:05 intel_backlight ->
../../devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight

The brightness,actual_brightness and max_brightness are all
4648.


>> - Please grab the lates git of intel-gpu-tools and attach the output
>> of intel_reg_dumper for both a working and a broken kernel. The git
>> tree is at:

I attach the reg dump file here.

Thanks

Chris

[-- Attachment #2: intel-reg-dump.good --]
[-- Type: application/octet-stream, Size: 14955 bytes --]

                    PGETBL_CTL: 0x00000000
               GEN6_INSTDONE_1: 0xfffffffe
               GEN6_INSTDONE_2: 0x00000000
                  CPU_VGACNTRL: 0x80000000 (disabled)
    DIGITAL_PORT_HOTPLUG_CNTRL: 0x00000000
                     RR_HW_CTL: 0x00000000 (low 0, high 0)
                FDI_PLL_BIOS_0: 0x00000000
                FDI_PLL_BIOS_1: 0x00000000
                FDI_PLL_BIOS_2: 0x00000000
       DISPLAY_PORT_PLL_BIOS_0: 0x00000000
       DISPLAY_PORT_PLL_BIOS_1: 0x00000000
       DISPLAY_PORT_PLL_BIOS_2: 0x00000000
              FDI_PLL_FREQ_CTL: 0x00000000
                     PIPEACONF: 0xc0000050 (enabled, active, pf-pd, rotate 0, 6bpc)
                      HTOTAL_A: 0x081f077f (1920 active, 2080 total)
                      HBLANK_A: 0x081f077f (1920 start, 2080 end)
                       HSYNC_A: 0x07cf07af (1968 start, 2000 end)
                      VTOTAL_A: 0x04560437 (1080 active, 1111 total)
                      VBLANK_A: 0x04560437 (1080 start, 1111 end)
                       VSYNC_A: 0x043f043a (1083 start, 1088 end)
                  VSYNCSHIFT_A: 0x00000000
                      PIPEASRC: 0x077f0437 (1920, 1080)
                 PIPEA_DATA_M1: 0x7e260a48 (TU 64, val 0x260a48 2493000)
                 PIPEA_DATA_N1: 0x0041eb00 (val 0x41eb00 4320000)
                 PIPEA_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                 PIPEA_DATA_N2: 0x00000000 (val 0x0 0)
                 PIPEA_LINK_M1: 0x00021d04 (val 0x21d04 138500)
                 PIPEA_LINK_N1: 0x00041eb0 (val 0x41eb0 270000)
                 PIPEA_LINK_M2: 0x00000000 (val 0x0 0)
                 PIPEA_LINK_N2: 0x00000000 (val 0x0 0)
                      DSPACNTR: 0xd8004400 (enabled)
                      DSPABASE: 0x00000000
                    DSPASTRIDE: 0x00001e00 (120)
                      DSPASURF: 0x02976008
                   DSPATILEOFF: 0x00000000 (0, 0)
                     PIPEBCONF: 0x00000000 (disabled, inactive, pf-pd, rotate 0, 8bpc)
                      HTOTAL_B: 0x00000000 (1 active, 1 total)
                      HBLANK_B: 0x00000000 (1 start, 1 end)
                       HSYNC_B: 0x00000000 (1 start, 1 end)
                      VTOTAL_B: 0x00000000 (1 active, 1 total)
                      VBLANK_B: 0x00000000 (1 start, 1 end)
                       VSYNC_B: 0x00000000 (1 start, 1 end)
                  VSYNCSHIFT_B: 0x00000000
                      PIPEBSRC: 0x00000000 (1, 1)
                 PIPEB_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                 PIPEB_DATA_N1: 0x00000000 (val 0x0 0)
                 PIPEB_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                 PIPEB_DATA_N2: 0x00000000 (val 0x0 0)
                 PIPEB_LINK_M1: 0x00000000 (val 0x0 0)
                 PIPEB_LINK_N1: 0x00000000 (val 0x0 0)
                 PIPEB_LINK_M2: 0x00000000 (val 0x0 0)
                 PIPEB_LINK_N2: 0x00000000 (val 0x0 0)
                      DSPBCNTR: 0x00004000 (disabled)
                      DSPBBASE: 0x00000000
                    DSPBSTRIDE: 0x00000000 (0)
                      DSPBSURF: 0x00000000
                   DSPBTILEOFF: 0x00000000 (0, 0)
                     PIPECCONF: 0x00000000 (disabled, inactive, pf-pd, rotate 0, 8bpc)
                      HTOTAL_C: 0x00000000 (1 active, 1 total)
                      HBLANK_C: 0x00000000 (1 start, 1 end)
                       HSYNC_C: 0x00000000 (1 start, 1 end)
                      VTOTAL_C: 0x00000000 (1 active, 1 total)
                      VBLANK_C: 0x00000000 (1 start, 1 end)
                       VSYNC_C: 0x00000000 (1 start, 1 end)
                  VSYNCSHIFT_C: 0x00000000
                      PIPECSRC: 0x00000000 (1, 1)
                 PIPEC_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                 PIPEC_DATA_N1: 0x00000000 (val 0x0 0)
                 PIPEC_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                 PIPEC_DATA_N2: 0x00000000 (val 0x0 0)
                 PIPEC_LINK_M1: 0x00000000 (val 0x0 0)
                 PIPEC_LINK_N1: 0x00000000 (val 0x0 0)
                 PIPEC_LINK_M2: 0x00000000 (val 0x0 0)
                 PIPEC_LINK_N2: 0x00000000 (val 0x0 0)
                      DSPCCNTR: 0x00004000 (disabled)
                      DSPCBASE: 0x00000000
                    DSPCSTRIDE: 0x00000000 (0)
                      DSPCSURF: 0x00000000
                   DSPCTILEOFF: 0x00000000 (0, 0)
                     PFA_CTL_1: 0x00000000 (disable, auto_scale yes, auto_scale_cal no, v_filter enable, vadapt disable, mode least, filter_sel programmed,chroma pre-filter disable, vert3tap auto, v_inter_invert field 1)
                     PFA_CTL_2: 0x00007de4 (vscale 0.983521)
                     PFA_CTL_3: 0x00003ef2 (vscale initial phase 0.491760)
                     PFA_CTL_4: 0x00007c40 (hscale 0.970703)
                   PFA_WIN_POS: 0x00000000 (0, 0)
                  PFA_WIN_SIZE: 0x00000000 (0, 0)
                     PFB_CTL_1: 0x00000000 (disable, auto_scale yes, auto_scale_cal no, v_filter enable, vadapt disable, mode least, filter_sel programmed,chroma pre-filter disable, vert3tap auto, v_inter_invert field 1)
                     PFB_CTL_2: 0x00007de4 (vscale 0.983521)
                     PFB_CTL_3: 0x00003ef2 (vscale initial phase 0.491760)
                     PFB_CTL_4: 0x00007c40 (hscale 0.970703)
                   PFB_WIN_POS: 0x00000000 (0, 0)
                  PFB_WIN_SIZE: 0x00000000 (0, 0)
                     PFC_CTL_1: 0x00000000 (disable, auto_scale yes, auto_scale_cal no, v_filter enable, vadapt disable, mode least, filter_sel programmed,chroma pre-filter disable, vert3tap auto, v_inter_invert field 1)
                     PFC_CTL_2: 0x00007de4 (vscale 0.983521)
                     PFC_CTL_3: 0x00003ef2 (vscale initial phase 0.491760)
                     PFC_CTL_4: 0x00007c40 (hscale 0.970703)
                   PFC_WIN_POS: 0x00000000 (0, 0)
                  PFC_WIN_SIZE: 0x00000000 (0, 0)
              PCH_DREF_CONTROL: 0x00001402 (cpu source disable, ssc_source enable, nonspread_source enable, superspread_source disable, ssc4_mode downspread, ssc1 enable, ssc4 disable)
               PCH_RAWCLK_FREQ: 0x0000007d (FDL_TP1 timer 0.5us, FDL_TP2 timer 1.5us, freq 125)
              PCH_DPLL_TMR_CFG: 0x0271186a
                PCH_SSC4_PARMS: 0x01204860
            PCH_SSC4_AUX_PARMS: 0x000029c5
                  PCH_DPLL_SEL: 0x00000008 (TransA DPLL enable (DPLL A), TransB DPLL disable (DPLL (null)))
           PCH_DPLL_ANALOG_CTL: 0x00008000
                    PCH_DPLL_A: 0x89046004 (enable, sdvo high speed no, mode LVDS, p2 Div 7, FPA0 P1 3, FPA1 P1 3, refclk SSC, sdvo/hdmi mul 1)
                    PCH_DPLL_B: 0x04800080 (disable, sdvo high speed no, mode (null), p2 (null), FPA0 P1 8, FPA1 P1 8, refclk default 120Mhz, sdvo/hdmi mul 1)
                      PCH_FPA0: 0x00021005 (n = 2, m1 = 16, m2 = 5)
                      PCH_FPA1: 0x00021005 (n = 2, m1 = 16, m2 = 5)
                      PCH_FPB0: 0x00030d07 (n = 3, m1 = 13, m2 = 7)
                      PCH_FPB1: 0x00030d07 (n = 3, m1 = 13, m2 = 7)
                TRANS_HTOTAL_A: 0x081f077f (1920 active, 2080 total)
                TRANS_HBLANK_A: 0x081f077f (1920 start, 2080 end)
                 TRANS_HSYNC_A: 0x07cf07af (1968 start, 2000 end)
                TRANS_VTOTAL_A: 0x04560437 (1080 active, 1111 total)
                TRANS_VBLANK_A: 0x04560437 (1080 start, 1111 end)
                 TRANS_VSYNC_A: 0x043f043a (1083 start, 1088 end)
            TRANS_VSYNCSHIFT_A: 0x00000000
                TRANSA_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                TRANSA_DATA_N1: 0x00000000 (val 0x0 0)
                TRANSA_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                TRANSA_DATA_N2: 0x00000000 (val 0x0 0)
             TRANSA_DP_LINK_M1: 0x00000000 (val 0x0 0)
             TRANSA_DP_LINK_N1: 0x00000000 (val 0x0 0)
             TRANSA_DP_LINK_M2: 0x00000000 (val 0x0 0)
             TRANSA_DP_LINK_N2: 0x00000000 (val 0x0 0)
                TRANS_HTOTAL_B: 0x00000000 (1 active, 1 total)
                TRANS_HBLANK_B: 0x00000000 (1 start, 1 end)
                 TRANS_HSYNC_B: 0x00000000 (1 start, 1 end)
                TRANS_VTOTAL_B: 0x00000000 (1 active, 1 total)
                TRANS_VBLANK_B: 0x00000000 (1 start, 1 end)
                 TRANS_VSYNC_B: 0x00000000 (1 start, 1 end)
            TRANS_VSYNCSHIFT_B: 0x00000000
                TRANSB_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                TRANSB_DATA_N1: 0x00000000 (val 0x0 0)
                TRANSB_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                TRANSB_DATA_N2: 0x00000000 (val 0x0 0)
             TRANSB_DP_LINK_M1: 0x00000000 (val 0x0 0)
             TRANSB_DP_LINK_N1: 0x00000000 (val 0x0 0)
             TRANSB_DP_LINK_M2: 0x00000000 (val 0x0 0)
             TRANSB_DP_LINK_N2: 0x00000000 (val 0x0 0)
                TRANS_HTOTAL_C: 0x00000000 (1 active, 1 total)
                TRANS_HBLANK_C: 0x00000000 (1 start, 1 end)
                 TRANS_HSYNC_C: 0x00000000 (1 start, 1 end)
                TRANS_VTOTAL_C: 0x00000000 (1 active, 1 total)
                TRANS_VBLANK_C: 0x00000000 (1 start, 1 end)
                 TRANS_VSYNC_C: 0x00000000 (1 start, 1 end)
            TRANS_VSYNCSHIFT_C: 0x00000000
                TRANSC_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                TRANSC_DATA_N1: 0x00000000 (val 0x0 0)
                TRANSC_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                TRANSC_DATA_N2: 0x00000000 (val 0x0 0)
             TRANSC_DP_LINK_M1: 0x00000000 (val 0x0 0)
             TRANSC_DP_LINK_N1: 0x00000000 (val 0x0 0)
             TRANSC_DP_LINK_M2: 0x00000000 (val 0x0 0)
             TRANSC_DP_LINK_N2: 0x00000000 (val 0x0 0)
                    TRANSACONF: 0xc0000000 (enable, active, progressive)
                    TRANSBCONF: 0x00000000 (disable, inactive, progressive)
                    TRANSCCONF: 0x00000000 (disable, inactive, progressive)
                   FDI_TXA_CTL: 0x800c4b00 (enable, train pattern pattern_1, voltage swing 0.4V,pre-emphasis 0dB, port width X2, enhanced framing enable, FDI PLL enable, scrambing enable, master mode disable)
                   FDI_TXB_CTL: 0x00040000 (disable, train pattern pattern_1, voltage swing 0.4V,pre-emphasis 0dB, port width X1, enhanced framing enable, FDI PLL disable, scrambing enable, master mode disable)
                   FDI_TXC_CTL: 0x00040000 (disable, train pattern pattern_1, voltage swing 0.4V,pre-emphasis 0dB, port width X1, enhanced framing enable, FDI PLL disable, scrambing enable, master mode disable)
                   FDI_RXA_CTL: 0x8c0a2b50 (enable, train pattern not train, port width X2, 6bpc,link_reverse_strap_overwrite no, dmi_link_reverse no, FDI PLL enable,FS ecc enable, FE ecc disable, FS err report enable, FE err report enable,scrambing enable, enhanced framing enable, PCDClk)
                   FDI_RXB_CTL: 0x00000040 (disable, train pattern pattern_1, port width X1, 8bpc,link_reverse_strap_overwrite no, dmi_link_reverse no, FDI PLL disable,FS ecc disable, FE ecc disable, FS err report disable, FE err report disable,scrambing enable, enhanced framing enable, RawClk)
                   FDI_RXC_CTL: 0x00000040 (disable, train pattern pattern_1, port width X1, 8bpc,link_reverse_strap_overwrite no, dmi_link_reverse no, FDI PLL disable,FS ecc disable, FE ecc disable, FS err report disable, FE err report disable,scrambing enable, enhanced framing enable, RawClk)
                  DPAFE_BMFUNC: 0x0001d233
             DPAFE_DL_IREFCAL0: 0x00d22bdc
             DPAFE_DL_IREFCAL1: 0x00d22bdc
              DPAFE_DP_IREFCAL: 0x80d2218c
             PCH_DSPCLK_GATE_D: 0x10000000
              PCH_DSP_CHICKEN1: 0xa0000000
              PCH_DSP_CHICKEN2: 0x00000000
              PCH_DSP_CHICKEN3: 0x00000024
                  FDI_RXA_MISC: 0x00200090 (FDI Delay 144)
                  FDI_RXB_MISC: 0x00200090 (FDI Delay 144)
                  FDI_RXC_MISC: 0x00200090 (FDI Delay 144)
               FDI_RXA_TUSIZE1: 0x7e000000
               FDI_RXA_TUSIZE2: 0x7e000000
               FDI_RXB_TUSIZE1: 0x7e000000
               FDI_RXB_TUSIZE2: 0x7e000000
               FDI_RXC_TUSIZE1: 0x7e000000
               FDI_RXC_TUSIZE2: 0x7e000000
                 FDI_PLL_CTL_1: 0x7e000000
                 FDI_PLL_CTL_2: 0x7e000000
                   FDI_RXA_IIR: 0x00000000
                   FDI_RXA_IMR: 0x000008ff
                   FDI_RXB_IIR: 0x00000000
                   FDI_RXB_IMR: 0x000008ff
                      PCH_ADPA: 0x00f40000 (disabled, transcoder A, -hsync, -vsync)
                         HDMIB: 0x0000001c (disabled pipe A 8bpc SDVO DVI audio disabled +vsync +hsync detected)
                         HDMIC: 0x00000018 (disabled pipe A 8bpc SDVO DVI audio disabled +vsync +hsync non-detected)
                         HDMID: 0x00000018 (disabled pipe A 8bpc SDVO DVI audio disabled +vsync +hsync non-detected)
                      PCH_LVDS: 0x8030033e (enabled, pipe A, 18 bit, 2 channels)
                     CPU_eDP_A: 0x00000018
                      PCH_DP_B: 0x00000004
                      PCH_DP_C: 0x00000000
                      PCH_DP_D: 0x00000000
                TRANS_DP_CTL_A: 0x60000418 (disable port none 6bpc +vsync +hsync)
                TRANS_DP_CTL_B: 0x60000018 (disable port none 8bpc +vsync +hsync)
                TRANS_DP_CTL_C: 0x60000018 (disable port none 8bpc +vsync +hsync)
              BLC_PWM_CPU_CTL2: 0x80000000
               BLC_PWM_CPU_CTL: 0x00001228
              BLC_PWM_PCH_CTL1: 0x80000000
              BLC_PWM_PCH_CTL2: 0x12281228
                 PCH_PP_STATUS: 0xc0000008 (on, ready, sequencing idle)
                PCH_PP_CONTROL: 0xabcd0003 (blacklight disabled, power down on reset, panel on)
              PCH_PP_ON_DELAYS: 0x019007d0
             PCH_PP_OFF_DELAYS: 0x00c808fc
                PCH_PP_DIVISOR: 0x00186905
                      PORT_DBG: 0x00007007 (HW DRRS off)
            RC6_RESIDENCY_TIME: 0x004f107f
           RC6p_RESIDENCY_TIME: 0x15c77804
          RC6pp_RESIDENCY_TIME: 0x00000000
               GEN6_RP_CONTROL: 0x00000d91 (enabled)
                 GEN6_RPNSWREQ: 0x0e000000
          GEN6_RP_DOWN_TIMEOUT: 0x000f4240
      GEN6_RP_INTERRUPT_LIMITS: 0x17000000
          GEN6_RP_UP_THRESHOLD: 0x0000e808
                 GEN6_RP_UP_EI: 0x000101d0
               GEN6_RP_DOWN_EI: 0x00055730
        GEN6_RP_IDLE_HYSTERSIS: 0x0000000a
                 GEN6_RC_STATE: 0x00000000
               GEN6_RC_CONTROL: 0x88060000
      GEN6_RC1_WAKE_RATE_LIMIT: 0x03e80000
      GEN6_RC6_WAKE_RATE_LIMIT: 0x0028001e
   GEN6_RC_EVALUATION_INTERVAL: 0x0001e848
        GEN6_RC_IDLE_HYSTERSIS: 0x00000019
                 GEN6_RC_SLEEP: 0x00000000
           GEN6_RC1e_THRESHOLD: 0x000003e8
            GEN6_RC6_THRESHOLD: 0x0000c350
            GEN6_RC_VIDEO_FREQ: 0x18000000
                    GEN6_PMIER: 0x00000070
                    GEN6_PMIMR: 0x00000000
                GEN6_PMINTRMSK: 0x00000000

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: i915 black screen introduced by ACPI changes
  2013-03-04 23:16                           ` Chris Li
@ 2013-03-04 23:33                             ` Chris Li
  2013-03-11 13:16                               ` [Intel-gfx] " Jani Nikula
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-03-04 23:33 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Jesse Barnes, linux-kernel, robert.moore, feng.tang, len.brown,
	Linus Torvalds, intel-gfx

[-- Attachment #1: Type: text/plain, Size: 955 bytes --]

On Mon, Mar 4, 2013 at 3:16 PM, Chris Li <lkml@chrisli.org> wrote:
>>> Two things to test:
>>> - Can you please check whether any of the backlight drivers in
>>> /sys/class/backlight does anything? You need to frob the brightness
>>> file. Please also list all the drivers you have.

This is the kernel with the ACPI change causing the black screen.

lrwxrwxrwx. 1 root root 0 Mar  4 15:20 acpi_video0 ->
../../devices/pci0000:00/0000:00:01.0/0000:01:00.0/backlight/acpi_video0
lrwxrwxrwx. 1 root root 0 Mar  4 15:20 acpi_video1 ->
../../devices/pci0000:00/0000:00:02.0/backlight/acpi_video1
lrwxrwxrwx. 1 root root 0 Mar  4 15:20 intel_backlight ->
../../devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight

Here is the interesting part. The brightness and max_brightness is all
set to 4648,
However, the actual brightness is 0. The bl_power is also 0. I think
you are on to some thing.

I attach the reg dump as intel-reg-bad.

Chris

[-- Attachment #2: intel-reg-bad --]
[-- Type: application/octet-stream, Size: 14955 bytes --]

                    PGETBL_CTL: 0x00000000
               GEN6_INSTDONE_1: 0xfffffffe
               GEN6_INSTDONE_2: 0x00000000
                  CPU_VGACNTRL: 0x80000000 (disabled)
    DIGITAL_PORT_HOTPLUG_CNTRL: 0x00000000
                     RR_HW_CTL: 0x00000000 (low 0, high 0)
                FDI_PLL_BIOS_0: 0x00000000
                FDI_PLL_BIOS_1: 0x00000000
                FDI_PLL_BIOS_2: 0x00000000
       DISPLAY_PORT_PLL_BIOS_0: 0x00000000
       DISPLAY_PORT_PLL_BIOS_1: 0x00000000
       DISPLAY_PORT_PLL_BIOS_2: 0x00000000
              FDI_PLL_FREQ_CTL: 0x00000000
                     PIPEACONF: 0xc0000050 (enabled, active, pf-pd, rotate 0, 6bpc)
                      HTOTAL_A: 0x081f077f (1920 active, 2080 total)
                      HBLANK_A: 0x081f077f (1920 start, 2080 end)
                       HSYNC_A: 0x07cf07af (1968 start, 2000 end)
                      VTOTAL_A: 0x04560437 (1080 active, 1111 total)
                      VBLANK_A: 0x04560437 (1080 start, 1111 end)
                       VSYNC_A: 0x043f043a (1083 start, 1088 end)
                  VSYNCSHIFT_A: 0x00000000
                      PIPEASRC: 0x077f0437 (1920, 1080)
                 PIPEA_DATA_M1: 0x7e260a48 (TU 64, val 0x260a48 2493000)
                 PIPEA_DATA_N1: 0x0041eb00 (val 0x41eb00 4320000)
                 PIPEA_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                 PIPEA_DATA_N2: 0x00000000 (val 0x0 0)
                 PIPEA_LINK_M1: 0x00021d04 (val 0x21d04 138500)
                 PIPEA_LINK_N1: 0x00041eb0 (val 0x41eb0 270000)
                 PIPEA_LINK_M2: 0x00000000 (val 0x0 0)
                 PIPEA_LINK_N2: 0x00000000 (val 0x0 0)
                      DSPACNTR: 0xd8004400 (enabled)
                      DSPABASE: 0x00000000
                    DSPASTRIDE: 0x00001e00 (120)
                      DSPASURF: 0x053de008
                   DSPATILEOFF: 0x00000000 (0, 0)
                     PIPEBCONF: 0x00000000 (disabled, inactive, pf-pd, rotate 0, 8bpc)
                      HTOTAL_B: 0x00000000 (1 active, 1 total)
                      HBLANK_B: 0x00000000 (1 start, 1 end)
                       HSYNC_B: 0x00000000 (1 start, 1 end)
                      VTOTAL_B: 0x00000000 (1 active, 1 total)
                      VBLANK_B: 0x00000000 (1 start, 1 end)
                       VSYNC_B: 0x00000000 (1 start, 1 end)
                  VSYNCSHIFT_B: 0x00000000
                      PIPEBSRC: 0x00000000 (1, 1)
                 PIPEB_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                 PIPEB_DATA_N1: 0x00000000 (val 0x0 0)
                 PIPEB_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                 PIPEB_DATA_N2: 0x00000000 (val 0x0 0)
                 PIPEB_LINK_M1: 0x00000000 (val 0x0 0)
                 PIPEB_LINK_N1: 0x00000000 (val 0x0 0)
                 PIPEB_LINK_M2: 0x00000000 (val 0x0 0)
                 PIPEB_LINK_N2: 0x00000000 (val 0x0 0)
                      DSPBCNTR: 0x00004000 (disabled)
                      DSPBBASE: 0x00000000
                    DSPBSTRIDE: 0x00000000 (0)
                      DSPBSURF: 0x00000000
                   DSPBTILEOFF: 0x00000000 (0, 0)
                     PIPECCONF: 0x00000000 (disabled, inactive, pf-pd, rotate 0, 8bpc)
                      HTOTAL_C: 0x00000000 (1 active, 1 total)
                      HBLANK_C: 0x00000000 (1 start, 1 end)
                       HSYNC_C: 0x00000000 (1 start, 1 end)
                      VTOTAL_C: 0x00000000 (1 active, 1 total)
                      VBLANK_C: 0x00000000 (1 start, 1 end)
                       VSYNC_C: 0x00000000 (1 start, 1 end)
                  VSYNCSHIFT_C: 0x00000000
                      PIPECSRC: 0x00000000 (1, 1)
                 PIPEC_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                 PIPEC_DATA_N1: 0x00000000 (val 0x0 0)
                 PIPEC_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                 PIPEC_DATA_N2: 0x00000000 (val 0x0 0)
                 PIPEC_LINK_M1: 0x00000000 (val 0x0 0)
                 PIPEC_LINK_N1: 0x00000000 (val 0x0 0)
                 PIPEC_LINK_M2: 0x00000000 (val 0x0 0)
                 PIPEC_LINK_N2: 0x00000000 (val 0x0 0)
                      DSPCCNTR: 0x00004000 (disabled)
                      DSPCBASE: 0x00000000
                    DSPCSTRIDE: 0x00000000 (0)
                      DSPCSURF: 0x00000000
                   DSPCTILEOFF: 0x00000000 (0, 0)
                     PFA_CTL_1: 0x00000000 (disable, auto_scale yes, auto_scale_cal no, v_filter enable, vadapt disable, mode least, filter_sel programmed,chroma pre-filter disable, vert3tap auto, v_inter_invert field 1)
                     PFA_CTL_2: 0x00007de4 (vscale 0.983521)
                     PFA_CTL_3: 0x00003ef2 (vscale initial phase 0.491760)
                     PFA_CTL_4: 0x00007c40 (hscale 0.970703)
                   PFA_WIN_POS: 0x00000000 (0, 0)
                  PFA_WIN_SIZE: 0x00000000 (0, 0)
                     PFB_CTL_1: 0x00000000 (disable, auto_scale yes, auto_scale_cal no, v_filter enable, vadapt disable, mode least, filter_sel programmed,chroma pre-filter disable, vert3tap auto, v_inter_invert field 1)
                     PFB_CTL_2: 0x00007de4 (vscale 0.983521)
                     PFB_CTL_3: 0x00003ef2 (vscale initial phase 0.491760)
                     PFB_CTL_4: 0x00007c40 (hscale 0.970703)
                   PFB_WIN_POS: 0x00000000 (0, 0)
                  PFB_WIN_SIZE: 0x00000000 (0, 0)
                     PFC_CTL_1: 0x00000000 (disable, auto_scale yes, auto_scale_cal no, v_filter enable, vadapt disable, mode least, filter_sel programmed,chroma pre-filter disable, vert3tap auto, v_inter_invert field 1)
                     PFC_CTL_2: 0x00007de4 (vscale 0.983521)
                     PFC_CTL_3: 0x00003ef2 (vscale initial phase 0.491760)
                     PFC_CTL_4: 0x00007c40 (hscale 0.970703)
                   PFC_WIN_POS: 0x00000000 (0, 0)
                  PFC_WIN_SIZE: 0x00000000 (0, 0)
              PCH_DREF_CONTROL: 0x00001402 (cpu source disable, ssc_source enable, nonspread_source enable, superspread_source disable, ssc4_mode downspread, ssc1 enable, ssc4 disable)
               PCH_RAWCLK_FREQ: 0x0000007d (FDL_TP1 timer 0.5us, FDL_TP2 timer 1.5us, freq 125)
              PCH_DPLL_TMR_CFG: 0x0271186a
                PCH_SSC4_PARMS: 0x01204860
            PCH_SSC4_AUX_PARMS: 0x000029c5
                  PCH_DPLL_SEL: 0x00000008 (TransA DPLL enable (DPLL A), TransB DPLL disable (DPLL (null)))
           PCH_DPLL_ANALOG_CTL: 0x00008000
                    PCH_DPLL_A: 0x89046004 (enable, sdvo high speed no, mode LVDS, p2 Div 7, FPA0 P1 3, FPA1 P1 3, refclk SSC, sdvo/hdmi mul 1)
                    PCH_DPLL_B: 0x04800080 (disable, sdvo high speed no, mode (null), p2 (null), FPA0 P1 8, FPA1 P1 8, refclk default 120Mhz, sdvo/hdmi mul 1)
                      PCH_FPA0: 0x00021005 (n = 2, m1 = 16, m2 = 5)
                      PCH_FPA1: 0x00021005 (n = 2, m1 = 16, m2 = 5)
                      PCH_FPB0: 0x00030d07 (n = 3, m1 = 13, m2 = 7)
                      PCH_FPB1: 0x00030d07 (n = 3, m1 = 13, m2 = 7)
                TRANS_HTOTAL_A: 0x081f077f (1920 active, 2080 total)
                TRANS_HBLANK_A: 0x081f077f (1920 start, 2080 end)
                 TRANS_HSYNC_A: 0x07cf07af (1968 start, 2000 end)
                TRANS_VTOTAL_A: 0x04560437 (1080 active, 1111 total)
                TRANS_VBLANK_A: 0x04560437 (1080 start, 1111 end)
                 TRANS_VSYNC_A: 0x043f043a (1083 start, 1088 end)
            TRANS_VSYNCSHIFT_A: 0x00000000
                TRANSA_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                TRANSA_DATA_N1: 0x00000000 (val 0x0 0)
                TRANSA_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                TRANSA_DATA_N2: 0x00000000 (val 0x0 0)
             TRANSA_DP_LINK_M1: 0x00000000 (val 0x0 0)
             TRANSA_DP_LINK_N1: 0x00000000 (val 0x0 0)
             TRANSA_DP_LINK_M2: 0x00000000 (val 0x0 0)
             TRANSA_DP_LINK_N2: 0x00000000 (val 0x0 0)
                TRANS_HTOTAL_B: 0x00000000 (1 active, 1 total)
                TRANS_HBLANK_B: 0x00000000 (1 start, 1 end)
                 TRANS_HSYNC_B: 0x00000000 (1 start, 1 end)
                TRANS_VTOTAL_B: 0x00000000 (1 active, 1 total)
                TRANS_VBLANK_B: 0x00000000 (1 start, 1 end)
                 TRANS_VSYNC_B: 0x00000000 (1 start, 1 end)
            TRANS_VSYNCSHIFT_B: 0x00000000
                TRANSB_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                TRANSB_DATA_N1: 0x00000000 (val 0x0 0)
                TRANSB_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                TRANSB_DATA_N2: 0x00000000 (val 0x0 0)
             TRANSB_DP_LINK_M1: 0x00000000 (val 0x0 0)
             TRANSB_DP_LINK_N1: 0x00000000 (val 0x0 0)
             TRANSB_DP_LINK_M2: 0x00000000 (val 0x0 0)
             TRANSB_DP_LINK_N2: 0x00000000 (val 0x0 0)
                TRANS_HTOTAL_C: 0x00000000 (1 active, 1 total)
                TRANS_HBLANK_C: 0x00000000 (1 start, 1 end)
                 TRANS_HSYNC_C: 0x00000000 (1 start, 1 end)
                TRANS_VTOTAL_C: 0x00000000 (1 active, 1 total)
                TRANS_VBLANK_C: 0x00000000 (1 start, 1 end)
                 TRANS_VSYNC_C: 0x00000000 (1 start, 1 end)
            TRANS_VSYNCSHIFT_C: 0x00000000
                TRANSC_DATA_M1: 0x00000000 (TU 1, val 0x0 0)
                TRANSC_DATA_N1: 0x00000000 (val 0x0 0)
                TRANSC_DATA_M2: 0x00000000 (TU 1, val 0x0 0)
                TRANSC_DATA_N2: 0x00000000 (val 0x0 0)
             TRANSC_DP_LINK_M1: 0x00000000 (val 0x0 0)
             TRANSC_DP_LINK_N1: 0x00000000 (val 0x0 0)
             TRANSC_DP_LINK_M2: 0x00000000 (val 0x0 0)
             TRANSC_DP_LINK_N2: 0x00000000 (val 0x0 0)
                    TRANSACONF: 0xc0000000 (enable, active, progressive)
                    TRANSBCONF: 0x00000000 (disable, inactive, progressive)
                    TRANSCCONF: 0x00000000 (disable, inactive, progressive)
                   FDI_TXA_CTL: 0x800c4b00 (enable, train pattern pattern_1, voltage swing 0.4V,pre-emphasis 0dB, port width X2, enhanced framing enable, FDI PLL enable, scrambing enable, master mode disable)
                   FDI_TXB_CTL: 0x00040000 (disable, train pattern pattern_1, voltage swing 0.4V,pre-emphasis 0dB, port width X1, enhanced framing enable, FDI PLL disable, scrambing enable, master mode disable)
                   FDI_TXC_CTL: 0x00040000 (disable, train pattern pattern_1, voltage swing 0.4V,pre-emphasis 0dB, port width X1, enhanced framing enable, FDI PLL disable, scrambing enable, master mode disable)
                   FDI_RXA_CTL: 0x8c0a2b50 (enable, train pattern not train, port width X2, 6bpc,link_reverse_strap_overwrite no, dmi_link_reverse no, FDI PLL enable,FS ecc enable, FE ecc disable, FS err report enable, FE err report enable,scrambing enable, enhanced framing enable, PCDClk)
                   FDI_RXB_CTL: 0x00000040 (disable, train pattern pattern_1, port width X1, 8bpc,link_reverse_strap_overwrite no, dmi_link_reverse no, FDI PLL disable,FS ecc disable, FE ecc disable, FS err report disable, FE err report disable,scrambing enable, enhanced framing enable, RawClk)
                   FDI_RXC_CTL: 0x00000040 (disable, train pattern pattern_1, port width X1, 8bpc,link_reverse_strap_overwrite no, dmi_link_reverse no, FDI PLL disable,FS ecc disable, FE ecc disable, FS err report disable, FE err report disable,scrambing enable, enhanced framing enable, RawClk)
                  DPAFE_BMFUNC: 0x0001d233
             DPAFE_DL_IREFCAL0: 0x00d22bdc
             DPAFE_DL_IREFCAL1: 0x00d22bdc
              DPAFE_DP_IREFCAL: 0x80d2218c
             PCH_DSPCLK_GATE_D: 0x10000000
              PCH_DSP_CHICKEN1: 0xa0000000
              PCH_DSP_CHICKEN2: 0x00000000
              PCH_DSP_CHICKEN3: 0x00000024
                  FDI_RXA_MISC: 0x00200090 (FDI Delay 144)
                  FDI_RXB_MISC: 0x00200090 (FDI Delay 144)
                  FDI_RXC_MISC: 0x00200090 (FDI Delay 144)
               FDI_RXA_TUSIZE1: 0x7e000000
               FDI_RXA_TUSIZE2: 0x7e000000
               FDI_RXB_TUSIZE1: 0x7e000000
               FDI_RXB_TUSIZE2: 0x7e000000
               FDI_RXC_TUSIZE1: 0x7e000000
               FDI_RXC_TUSIZE2: 0x7e000000
                 FDI_PLL_CTL_1: 0x7e000000
                 FDI_PLL_CTL_2: 0x7e000000
                   FDI_RXA_IIR: 0x00000000
                   FDI_RXA_IMR: 0x000008ff
                   FDI_RXB_IIR: 0x00000000
                   FDI_RXB_IMR: 0x000008ff
                      PCH_ADPA: 0x00f40000 (disabled, transcoder A, -hsync, -vsync)
                         HDMIB: 0x0000001c (disabled pipe A 8bpc SDVO DVI audio disabled +vsync +hsync detected)
                         HDMIC: 0x00000018 (disabled pipe A 8bpc SDVO DVI audio disabled +vsync +hsync non-detected)
                         HDMID: 0x00000018 (disabled pipe A 8bpc SDVO DVI audio disabled +vsync +hsync non-detected)
                      PCH_LVDS: 0x8030033e (enabled, pipe A, 18 bit, 2 channels)
                     CPU_eDP_A: 0x00000018
                      PCH_DP_B: 0x00000004
                      PCH_DP_C: 0x00000000
                      PCH_DP_D: 0x00000000
                TRANS_DP_CTL_A: 0x60000418 (disable port none 6bpc +vsync +hsync)
                TRANS_DP_CTL_B: 0x60000018 (disable port none 8bpc +vsync +hsync)
                TRANS_DP_CTL_C: 0x60000018 (disable port none 8bpc +vsync +hsync)
              BLC_PWM_CPU_CTL2: 0x80000000
               BLC_PWM_CPU_CTL: 0x00000000
              BLC_PWM_PCH_CTL1: 0x80000000
              BLC_PWM_PCH_CTL2: 0x12281228
                 PCH_PP_STATUS: 0xc0000008 (on, ready, sequencing idle)
                PCH_PP_CONTROL: 0xabcd0003 (blacklight disabled, power down on reset, panel on)
              PCH_PP_ON_DELAYS: 0x019007d0
             PCH_PP_OFF_DELAYS: 0x00c808fc
                PCH_PP_DIVISOR: 0x00186905
                      PORT_DBG: 0x00007007 (HW DRRS off)
            RC6_RESIDENCY_TIME: 0x00100a15
           RC6p_RESIDENCY_TIME: 0x171567b0
          RC6pp_RESIDENCY_TIME: 0x00000000
               GEN6_RP_CONTROL: 0x00000d91 (enabled)
                 GEN6_RPNSWREQ: 0x0e000000
          GEN6_RP_DOWN_TIMEOUT: 0x000f4240
      GEN6_RP_INTERRUPT_LIMITS: 0x17000000
          GEN6_RP_UP_THRESHOLD: 0x0000e808
                 GEN6_RP_UP_EI: 0x000101d0
               GEN6_RP_DOWN_EI: 0x00055730
        GEN6_RP_IDLE_HYSTERSIS: 0x0000000a
                 GEN6_RC_STATE: 0x00000000
               GEN6_RC_CONTROL: 0x88060000
      GEN6_RC1_WAKE_RATE_LIMIT: 0x03e80000
      GEN6_RC6_WAKE_RATE_LIMIT: 0x0028001e
   GEN6_RC_EVALUATION_INTERVAL: 0x0001e848
        GEN6_RC_IDLE_HYSTERSIS: 0x00000019
                 GEN6_RC_SLEEP: 0x00000000
           GEN6_RC1e_THRESHOLD: 0x000003e8
            GEN6_RC6_THRESHOLD: 0x0000c350
            GEN6_RC_VIDEO_FREQ: 0x18000000
                    GEN6_PMIER: 0x00000070
                    GEN6_PMIMR: 0x00000000
                GEN6_PMINTRMSK: 0x00000000

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: [Intel-gfx] i915 black screen introduced by ACPI changes
  2013-03-04 23:33                             ` Chris Li
@ 2013-03-11 13:16                               ` Jani Nikula
  2013-03-14 20:10                                 ` Chris Li
  0 siblings, 1 reply; 29+ messages in thread
From: Jani Nikula @ 2013-03-11 13:16 UTC (permalink / raw)
  To: Chris Li, Daniel Vetter
  Cc: len.brown, feng.tang, intel-gfx, linux-kernel, robert.moore,
	Linus Torvalds

On Tue, 05 Mar 2013, Chris Li <lkml@chrisli.org> wrote:
> On Mon, Mar 4, 2013 at 3:16 PM, Chris Li <lkml@chrisli.org> wrote:
>>>> Two things to test:
>>>> - Can you please check whether any of the backlight drivers in
>>>> /sys/class/backlight does anything? You need to frob the brightness
>>>> file. Please also list all the drivers you have.
>
> This is the kernel with the ACPI change causing the black screen.
>
> lrwxrwxrwx. 1 root root 0 Mar  4 15:20 acpi_video0 ->
> ../../devices/pci0000:00/0000:00:01.0/0000:01:00.0/backlight/acpi_video0
> lrwxrwxrwx. 1 root root 0 Mar  4 15:20 acpi_video1 ->
> ../../devices/pci0000:00/0000:00:02.0/backlight/acpi_video1
> lrwxrwxrwx. 1 root root 0 Mar  4 15:20 intel_backlight ->
> ../../devices/pci0000:00/0000:00:02.0/drm/card0/card0-LVDS-1/intel_backlight
>
> Here is the interesting part. The brightness and max_brightness is all
> set to 4648,
> However, the actual brightness is 0. The bl_power is also 0. I think
> you are on to some thing.

Hi Chris -

Interesting snippets from your dmesgs:

1) good

[    0.000000] Linux version 3.6.0-rc6+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #25 SMP Wed Feb 20 12:55:06 PST 2013
...
[    5.341431] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.341442] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.342572] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.342578] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648

2) bad

[    0.000000] Linux version 3.8.0-rc7+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #23 SMP Tue Feb 19 19:24:57 PST 2013
...
[    5.692853] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.692865] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.692870] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.693401] [drm:asle_set_backlight], bclp = 0x80000000
[    5.693408] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.693413] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0

(We've added another debug print to asle_set_backlight.)

For some reason we get two asle requests in a row. In the good kernel
it's the same request twice, in the bad kernel the second requests is
for 0 backlight. The register dumps seem to confirm this.

Please try a recent kernel, with and without the the bisected bad commit

commit a57f7f9175b8ccbc9df83ac13860488913115de4
Author: Bob Moore <robert.moore@intel.com>
Date:   Fri Aug 17 10:55:02 2012 +0800

    ACPICA: Add Windows8/Server2012 string for _OSI method.

reverted. Is the difference the same? Check reg dumps and dmesgs with
drm.debug=0xe.


Thanks,
Jani.

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: [Intel-gfx] i915 black screen introduced by ACPI changes
  2013-03-11 13:16                               ` [Intel-gfx] " Jani Nikula
@ 2013-03-14 20:10                                 ` Chris Li
  2013-03-14 20:49                                   ` Chris Li
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-03-14 20:10 UTC (permalink / raw)
  To: Jani Nikula
  Cc: Daniel Vetter, len.brown, feng.tang, intel-gfx, linux-kernel,
	robert.moore, Linus Torvalds

On Mon, Mar 11, 2013 at 6:16 AM, Jani Nikula
<jani.nikula@linux.intel.com> wrote:
> Interesting snippets from your dmesgs:
>
> 1) good
>
> [    0.000000] Linux version 3.6.0-rc6+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #25 SMP Wed Feb 20 12:55:06 PST 2013
> ...
> [    5.341431] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
> [    5.341442] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
> [    5.342572] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
> [    5.342578] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
>
> 2) bad
>
> [    0.000000] Linux version 3.8.0-rc7+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #23 SMP Tue Feb 19 19:24:57 PST 2013
> ...
> [    5.692853] [drm:asle_set_backlight], bclp = 0x800000ff
> [    5.692865] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
> [    5.692870] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
> [    5.693401] [drm:asle_set_backlight], bclp = 0x80000000
> [    5.693408] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
> [    5.693413] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
>
> (We've added another debug print to asle_set_backlight.)
>
> For some reason we get two asle requests in a row. In the good kernel
> it's the same request twice, in the bad kernel the second requests is
> for 0 backlight. The register dumps seem to confirm this.
>
> Please try a recent kernel, with and without the the bisected bad commit

Hi, I did try the tip of Linus git tree. However I can't make the kernel
boot regardless bad commit or not. The kernel just hang there after grub2
load the kernel and initram image. It looks like a different problem than the
intel black screen because it don't even get to the point show any console
print out.

I will try the intel branch instead.

Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: [Intel-gfx] i915 black screen introduced by ACPI changes
  2013-03-14 20:10                                 ` Chris Li
@ 2013-03-14 20:49                                   ` Chris Li
  2013-03-15  7:29                                     ` Jani Nikula
  0 siblings, 1 reply; 29+ messages in thread
From: Chris Li @ 2013-03-14 20:49 UTC (permalink / raw)
  To: Jani Nikula
  Cc: Daniel Vetter, len.brown, feng.tang, intel-gfx, linux-kernel,
	robert.moore, Linus Torvalds

[-- Attachment #1: Type: text/plain, Size: 471 bytes --]

On Thu, Mar 14, 2013 at 1:10 PM, Chris Li <lkml@chrisli.org> wrote:

>>
>> Please try a recent kernel, with and without the the bisected bad commit
>
> I will try the intel branch instead.

Hi, I attach the two demsg and with and without the bad commit
on the intel nightly branch. Without the bad commit it actually works.
However, on the tip of intel nightly. the moeset work around does not work
there any more.

Let me know if you need any thing else from me.

Chris

[-- Attachment #2: intel-nightly --]
[-- Type: application/octet-stream, Size: 125960 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.9.0-rc2intel-night+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #47 SMP Thu Mar 14 13:25:19 PDT 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.9.0-rc2intel-night+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] 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-0x00000000b3fecfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] e820: update [mem 0xb3cee018-0xb3d03e57] usable ==> usable
[    0.000000] e820: update [mem 0xb3cdd018-0xb3ced057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040005000-0x00000000b3cdd017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cdd018-0x00000000b3ced057] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3ced058-0x00000000b3cee017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cee018-0x00000000b3d03e57] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3d03e58-0x00000000b3fecfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xbaffe000  ACPI 2.0=0xbaffe014  SMBIOS=0xbaebef98 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000004000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000004000-0x000000000000e000) (0MB)
[    0.000000] efi: mem03: type=3, attr=0xf, range=[0x000000000000e000-0x0000000000010000) (0MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000010000-0x000000000002e000) (0MB)
[    0.000000] efi: mem05: type=3, attr=0xf, range=[0x000000000002e000-0x000000000002f000) (0MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x000000000002f000-0x0000000000030000) (0MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000000030000-0x000000000006f000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem10: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x0000000001000000-0x00000000023e4000) (19MB)
[    0.000000] efi: mem13: type=7, attr=0xf, range=[0x00000000023e4000-0x0000000020000000) (476MB)
[    0.000000] efi: mem14: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000020200000-0x000000003e133000) (479MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000003e133000-0x0000000040000000) (30MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000040000000-0x0000000040004000) (0MB)
[    0.000000] efi: mem18: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000040005000-0x000000008634e000) (1123MB)
[    0.000000] efi: mem20: type=2, attr=0xf, range=[0x000000008634e000-0x00000000b31c0000) (718MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000b31c0000-0x00000000b31e0000) (0MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000b31e0000-0x00000000b3a7e000) (8MB)
[    0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000b3a7e000-0x00000000b3b4d000) (0MB)
[    0.000000] efi: mem24: type=1, attr=0xf, range=[0x00000000b3b4d000-0x00000000b3c84000) (1MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000b3c84000-0x00000000b3cdd000) (0MB)
[    0.000000] efi: mem26: type=2, attr=0xf, range=[0x00000000b3cdd000-0x00000000b3dd3000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000b3dd3000-0x00000000b3fed000) (2MB)
[    0.000000] efi: mem28: type=0, attr=0xf, range=[0x00000000b3fed000-0x00000000b4d6e000) (13MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000b4d6e000-0x00000000b4db0000) (0MB)
[    0.000000] efi: mem30: type=0, attr=0xf, range=[0x00000000b4db0000-0x00000000b61b0000) (20MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b61b0000-0x00000000b61bd000) (0MB)
[    0.000000] efi: mem32: type=2, attr=0xf, range=[0x00000000b61bd000-0x00000000b61bf000) (0MB)
[    0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b61bf000-0x00000000b6279000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b6279000-0x00000000b81aa000) (31MB)
[    0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b81aa000-0x00000000b81b2000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b81b2000-0x00000000b81b4000) (0MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b81b4000-0x00000000b81b6000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b81b6000-0x00000000b81e6000) (0MB)
[    0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b81e6000-0x00000000b81ec000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b81ec000-0x00000000b81ed000) (0MB)
[    0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b81ed000-0x00000000b81ee000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b81ee000-0x00000000b81f8000) (0MB)
[    0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b81f8000-0x00000000b81f9000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b81f9000-0x00000000b821f000) (0MB)
[    0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b821f000-0x00000000b8221000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b8221000-0x00000000b83a0000) (1MB)
[    0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b83a0000-0x00000000b83a4000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b83a4000-0x00000000b83a7000) (0MB)
[    0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b83a7000-0x00000000b83a8000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b83a8000-0x00000000b83f8000) (0MB)
[    0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b83f8000-0x00000000b8420000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b8420000-0x00000000b859e000) (1MB)
[    0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b859e000-0x00000000b85a0000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b85a0000-0x00000000b85ba000) (0MB)
[    0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b85ba000-0x00000000b85bb000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b85bb000-0x00000000b87e8000) (2MB)
[    0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b87e8000-0x00000000b87f8000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b87f8000-0x00000000ba3bf000) (27MB)
[    0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000ba3bf000-0x00000000ba495000) (0MB)
[    0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000ba495000-0x00000000ba7bf000) (3MB)
[    0.000000] efi: mem61: type=5, attr=0x800000000000000f, range=[0x00000000ba7bf000-0x00000000ba880000) (0MB)
[    0.000000] efi: mem62: type=6, attr=0x800000000000000f, range=[0x00000000ba880000-0x00000000ba881000) (0MB)
[    0.000000] efi: mem63: type=5, attr=0x800000000000000f, range=[0x00000000ba881000-0x00000000ba8b0000) (0MB)
[    0.000000] efi: mem64: type=6, attr=0x800000000000000f, range=[0x00000000ba8b0000-0x00000000ba8b1000) (0MB)
[    0.000000] efi: mem65: type=5, attr=0x800000000000000f, range=[0x00000000ba8b1000-0x00000000ba8b3000) (0MB)
[    0.000000] efi: mem66: type=6, attr=0x800000000000000f, range=[0x00000000ba8b3000-0x00000000ba8b4000) (0MB)
[    0.000000] efi: mem67: type=5, attr=0x800000000000000f, range=[0x00000000ba8b4000-0x00000000ba8cc000) (0MB)
[    0.000000] efi: mem68: type=6, attr=0x800000000000000f, range=[0x00000000ba8cc000-0x00000000ba8cd000) (0MB)
[    0.000000] efi: mem69: type=5, attr=0x800000000000000f, range=[0x00000000ba8cd000-0x00000000ba8d2000) (0MB)
[    0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000ba8d2000-0x00000000ba8d3000) (0MB)
[    0.000000] efi: mem71: type=5, attr=0x800000000000000f, range=[0x00000000ba8d3000-0x00000000ba8e1000) (0MB)
[    0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000ba8e1000-0x00000000ba8e2000) (0MB)
[    0.000000] efi: mem73: type=5, attr=0x800000000000000f, range=[0x00000000ba8e2000-0x00000000ba8f2000) (0MB)
[    0.000000] efi: mem74: type=6, attr=0x800000000000000f, range=[0x00000000ba8f2000-0x00000000ba937000) (0MB)
[    0.000000] efi: mem75: type=5, attr=0x800000000000000f, range=[0x00000000ba937000-0x00000000ba9bf000) (0MB)
[    0.000000] efi: mem76: type=6, attr=0x800000000000000f, range=[0x00000000ba9bf000-0x00000000baabf000) (1MB)
[    0.000000] efi: mem77: type=0, attr=0xf, range=[0x00000000baabf000-0x00000000baebf000) (4MB)
[    0.000000] efi: mem78: type=10, attr=0xf, range=[0x00000000baebf000-0x00000000bafbf000) (1MB)
[    0.000000] efi: mem79: type=9, attr=0xf, range=[0x00000000bafbf000-0x00000000bafff000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000bafff000-0x00000000bb000000) (0MB)
[    0.000000] efi: mem81: type=7, attr=0xf, range=[0x0000000100000000-0x000000023f600000) (5110MB)
[    0.000000] efi: mem82: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem83: type=0, attr=0x0, range=[0x00000000bb000000-0x00000000bfa00000) (74MB)
[    0.000000] efi: mem84: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem85: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem86: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem87: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem88: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem89: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem90: type=11, attr=0x8000000000000000, range=[0x00000000ffb80000-0x0000000100000000) (4MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20132/INVALID, BIOS 5DCN90WW(V8.01) 10/11/2012
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x23f600 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-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   5 base 100000000 mask F00000000 write-back
[    0.000000]   6 base 200000000 mask FC0000000 write-back
[    0.000000]   7 base 23F600000 mask FFFE00000 uncachable
[    0.000000]   8 base 23F800000 mask FFF800000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [ffff8800000fe1c0]
[    0.000000] Base memory trampoline at [ffff880000028000] 28000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fc3000, 0x01fc3fff] PGTABLE
[    0.000000] BRK [0x01fc4000, 0x01fc4fff] PGTABLE
[    0.000000] BRK [0x01fc5000, 0x01fc5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x23f400000-0x23f5fffff]
[    0.000000]  [mem 0x23f400000-0x23f5fffff] page 2M
[    0.000000] BRK [0x01fc6000, 0x01fc6fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x23c000000-0x23f3fffff]
[    0.000000]  [mem 0x23c000000-0x23f3fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
[    0.000000]  [mem 0x200000000-0x23bffffff] 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 [0x01fc7000, 0x01fc7fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x40005000-0xb3fecfff]
[    0.000000]  [mem 0x40005000-0x401fffff] page 4k
[    0.000000]  [mem 0x40200000-0xb3dfffff] page 2M
[    0.000000]  [mem 0xb3e00000-0xb3fecfff] page 4k
[    0.000000] init_memory_mapping: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]  [mem 0xb4d6e000-0xb4daffff] page 4k
[    0.000000] init_memory_mapping: [mem 0xb61b0000-0xba7befff]
[    0.000000]  [mem 0xb61b0000-0xb61fffff] page 4k
[    0.000000]  [mem 0xb6200000-0xba5fffff] page 2M
[    0.000000]  [mem 0xba600000-0xba7befff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbafff000-0xbaffffff]
[    0.000000]  [mem 0xbafff000-0xbaffffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
[    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
[    0.000000] RAMDISK: [mem 0x3e133000-0x3fffafff]
[    0.000000] ACPI: RSDP 00000000baffe014 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000baffe210 000AC (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 00000000baffa000 0010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DSDT 00000000bafec000 0A638 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000bafbb000 00040
[    0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 00000000baffc000 00236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! 00000000baffb000 000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 00000000baff9000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000baff8000 0008C (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000baff7000 0003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafeb000 006FE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000bafe9000 00028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT 00000000bafe7000 00034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DBGP 00000000bafe6000 00034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 00000000bafe4000 00044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MSDM 00000000bafe3000 00055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe2000 00926 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafdd000 02333 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BGRT 00000000bafe0000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x23f5fffff]
[    0.000000]   NODE_DATA [mem 0x23f5e1000-0x23f5f4fff]
[    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236c00000-ffff88023ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x23f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xb3fecfff]
[    0.000000]   node   0: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]   node   0: [mem 0xb61b0000-0xba7befff]
[    0.000000]   node   0: [mem 0xbafff000-0xbaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x23f5fffff]
[    0.000000] On node 0 totalpages: 2062789
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 111 pages reserved
[    0.000000]   DMA zone: 3975 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11729 pages used for memmap
[    0.000000]   DMA32 zone: 750654 pages, LIFO batch:31
[    0.000000]   Normal zone: 20440 pages used for memmap
[    0.000000]   Normal zone: 1308160 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 0000000000088000 - 00000000000c0000
[    0.000000] PM: Registered nosave memory: 00000000000c0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000b3cdd000 - 00000000b3cde000
[    0.000000] PM: Registered nosave memory: 00000000b3ced000 - 00000000b3cee000
[    0.000000] PM: Registered nosave memory: 00000000b3cee000 - 00000000b3cef000
[    0.000000] PM: Registered nosave memory: 00000000b3d03000 - 00000000b3d04000
[    0.000000] PM: Registered nosave memory: 00000000b3fed000 - 00000000b4d6e000
[    0.000000] PM: Registered nosave memory: 00000000b4db0000 - 00000000b61b0000
[    0.000000] PM: Registered nosave memory: 00000000ba7bf000 - 00000000baebf000
[    0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
[    0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
[    0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
[    0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
[    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[    0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[    0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
[    0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
[    0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023f200000 s85120 r8192 d21376 u262144
[    0.000000] pcpu-alloc: s85120 r8192 d21376 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2030445
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.9.0-rc2intel-night+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 7932280k/9426944k available (6486k kernel code, 1175788k absent, 318876k reserved, 6749k data, 1348k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:8448 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.001000] tsc: Detected 2394.524 MHz processor
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4789.04 BogoMIPS (lpj=2394524)
[    0.000007] pid_max: default: 32768 minimum: 301
[    0.000024] init_memory_mapping: [mem 0xba7bf000-0xba87ffff]
[    0.000027]  [mem 0xba7bf000-0xba87ffff] page 4k
[    0.000043] init_memory_mapping: [mem 0xba880000-0xba880fff]
[    0.000045]  [mem 0xba880000-0xba880fff] page 4k
[    0.000052] init_memory_mapping: [mem 0xba881000-0xba8affff]
[    0.000055]  [mem 0xba881000-0xba8affff] page 4k
[    0.000062] init_memory_mapping: [mem 0xba8b0000-0xba8b0fff]
[    0.000065]  [mem 0xba8b0000-0xba8b0fff] page 4k
[    0.000071] init_memory_mapping: [mem 0xba8b1000-0xba8b2fff]
[    0.000074]  [mem 0xba8b1000-0xba8b2fff] page 4k
[    0.000081] init_memory_mapping: [mem 0xba8b3000-0xba8b3fff]
[    0.000083]  [mem 0xba8b3000-0xba8b3fff] page 4k
[    0.000090] init_memory_mapping: [mem 0xba8b4000-0xba8cbfff]
[    0.000092]  [mem 0xba8b4000-0xba8cbfff] page 4k
[    0.000099] init_memory_mapping: [mem 0xba8cc000-0xba8ccfff]
[    0.000102]  [mem 0xba8cc000-0xba8ccfff] page 4k
[    0.000109] init_memory_mapping: [mem 0xba8cd000-0xba8d1fff]
[    0.000111]  [mem 0xba8cd000-0xba8d1fff] page 4k
[    0.000118] init_memory_mapping: [mem 0xba8d2000-0xba8d2fff]
[    0.000120]  [mem 0xba8d2000-0xba8d2fff] page 4k
[    0.000127] init_memory_mapping: [mem 0xba8d3000-0xba8e0fff]
[    0.000129]  [mem 0xba8d3000-0xba8e0fff] page 4k
[    0.000136] init_memory_mapping: [mem 0xba8e1000-0xba8e1fff]
[    0.000139]  [mem 0xba8e1000-0xba8e1fff] page 4k
[    0.000145] init_memory_mapping: [mem 0xba8e2000-0xba8f1fff]
[    0.000148]  [mem 0xba8e2000-0xba8f1fff] page 4k
[    0.000154] init_memory_mapping: [mem 0xba8f2000-0xba936fff]
[    0.000157]  [mem 0xba8f2000-0xba936fff] page 4k
[    0.000164] init_memory_mapping: [mem 0xba937000-0xba9befff]
[    0.000167]  [mem 0xba937000-0xba9befff] page 4k
[    0.000175] init_memory_mapping: [mem 0xba9bf000-0xbaabefff]
[    0.000177]  [mem 0xba9bf000-0xbaabefff] page 4k
[    0.022423] Security Framework initialized
[    0.022433] SELinux:  Initializing.
[    0.022442] SELinux:  Starting in permissive mode
[    0.023023] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.025095] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.025998] Mount-cache hash table entries: 256
[    0.026157] Initializing cgroup subsys cpuacct
[    0.026161] Initializing cgroup subsys memory
[    0.026168] Initializing cgroup subsys devices
[    0.026171] Initializing cgroup subsys freezer
[    0.026173] Initializing cgroup subsys net_cls
[    0.026176] Initializing cgroup subsys blkio
[    0.026179] Initializing cgroup subsys perf_event
[    0.026205] CPU: Physical Processor ID: 0
[    0.026207] CPU: Processor Core ID: 0
[    0.026212] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.026599] mce: CPU supports 9 MCE banks
[    0.026613] CPU0: Thermal monitoring enabled (TM1)
[    0.026622] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
[    0.026739] Freeing SMP alternatives: 24k freed
[    0.027814] ACPI: Core revision 20130117
[    0.033885] ACPI: All ACPI Tables successfully acquired
[    0.051717] ftrace: allocating 24238 entries in 95 pages
[    0.063425] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.073442] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz (fam: 06, model: 3a, stepping: 09)
[    0.073451] TSC deadline timer enabled
[    0.073460] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[    0.073468] ... version:                3
[    0.073470] ... bit width:              48
[    0.073471] ... generic registers:      4
[    0.073473] ... value mask:             0000ffffffffffff
[    0.073475] ... max period:             000000007fffffff
[    0.073477] ... fixed-purpose events:   3
[    0.073479] ... event mask:             000000070000000f
[    0.088395] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.074625] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.170715] Brought up 8 CPUs
[    0.170721] smpboot: Total of 8 processors activated (38312.38 BogoMIPS)
[    0.177897] devtmpfs: initialized
[    0.178072] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
[    0.178714] atomic64 test passed for x86-64 platform with CX8 and with SSE
[    0.178742] RTC time: 20:45:20, date: 03/14/13
[    0.178782] NET: Registered protocol family 16
[    0.178906] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.178910] ACPI: bus type PCI registered
[    0.178952] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.178957] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.187501] PCI: Using configuration type 1 for base access
[    0.188243] bio: create slab <bio-0> at 0
[    0.188307] ACPI: Added _OSI(Module Device)
[    0.188309] ACPI: Added _OSI(Processor Device)
[    0.188311] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.188314] ACPI: Added _OSI(Processor Aggregator Device)
[    0.189750] ACPI: EC: Look up EC in DSDT
[    0.191225] ACPI: Executed 1 blocks of module-level executable AML code
[    0.193880] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.194286] ACPI: SSDT 00000000babae018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.194652] ACPI: Dynamic OEM Table Load:
[    0.194654] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.198929] ACPI: SSDT 00000000babafa98 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.199316] ACPI: Dynamic OEM Table Load:
[    0.199319] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.203835] ACPI: SSDT 00000000babadd98 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.204193] ACPI: Dynamic OEM Table Load:
[    0.204196] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.209968] ACPI: Interpreter enabled
[    0.209976] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130117/hwxface-568)
[    0.209983] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130117/hwxface-568)
[    0.209997] ACPI: (supports S0 S3 S4 S5)
[    0.209999] ACPI: Using IOAPIC for interrupt routing
[    0.210021] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.337473] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.337580] \_SB_.PCI0:_OSC invalid UUID
[    0.337581] _OSC request data:1 8 1f 
[    0.337621] \_SB_.PCI0:_OSC invalid UUID
[    0.337622] _OSC request data:1 1f 1f 
[    0.337625] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.337628] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.338079] PCI host bridge to bus 0000:00
[    0.338082] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.338086] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.338088] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.338091] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.338094] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
[    0.338103] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.338182] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.338212] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.338242] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.338274] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.338284] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
[    0.338289] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.338294] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    0.338382] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.338405] pci 0000:00:14.0: reg 10: [mem 0xd3700000-0xd370ffff 64bit]
[    0.338476] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.338496] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.338528] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.338552] pci 0000:00:16.0: reg 10: [mem 0xd3714000-0xd371400f 64bit]
[    0.338628] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.338702] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.338723] pci 0000:00:1a.0: reg 10: [mem 0xd3719000-0xd37193ff]
[    0.338813] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.338853] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.338887] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.338902] pci 0000:00:1b.0: reg 10: [mem 0xd3710000-0xd3713fff 64bit]
[    0.338971] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.338996] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.339025] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.339104] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.339156] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.339238] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.339290] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    0.339368] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.339428] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.339449] pci 0000:00:1d.0: reg 10: [mem 0xd3718000-0xd37183ff]
[    0.339540] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.339579] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.339612] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    0.339757] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.339775] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    0.339782] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    0.339790] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    0.339798] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    0.339806] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    0.339814] pci 0000:00:1f.2: reg 24: [mem 0xd3717000-0xd37177ff]
[    0.339858] pci 0000:00:1f.2: PME# supported from D3hot
[    0.339909] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.339924] pci 0000:00:1f.3: reg 10: [mem 0xd3715000-0xd37150ff 64bit]
[    0.339946] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    0.340045] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
[    0.340057] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
[    0.340069] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.340082] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.340091] pci 0000:01:00.0: reg 24: [io  0x3000-0x307f]
[    0.340099] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
[    0.340160] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.342192] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.342200] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.342204] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.342211] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.342304] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[    0.342331] pci 0000:02:00.0: reg 10: [mem 0xd3600000-0xd363ffff 64bit]
[    0.342346] pci 0000:02:00.0: reg 18: [io  0x2000-0x207f]
[    0.342475] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.342528] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.344208] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.344218] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.344225] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.344362] pci 0000:03:00.0: [8086:0891] type 00 class 0x028000
[    0.344409] pci 0000:03:00.0: reg 10: [mem 0xd3500000-0xd3501fff 64bit]
[    0.344637] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.344683] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.346241] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.346261] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.346345] pci 0000:04:00.0: [197b:2392] type 00 class 0x088000
[    0.346374] pci 0000:04:00.0: reg 10: [mem 0xd3403000-0xd34030ff]
[    0.346630] pci 0000:04:00.0: System wakeup disabled by ACPI
[    0.346679] pci 0000:04:00.2: [197b:2391] type 00 class 0x080501
[    0.346707] pci 0000:04:00.2: reg 10: [mem 0xd3402000-0xd34020ff]
[    0.346987] pci 0000:04:00.3: [197b:2393] type 00 class 0x088000
[    0.347015] pci 0000:04:00.3: reg 10: [mem 0xd3401000-0xd34010ff]
[    0.347295] pci 0000:04:00.4: [197b:2394] type 00 class 0x088000
[    0.347323] pci 0000:04:00.4: reg 10: [mem 0xd3400000-0xd34000ff]
[    0.349232] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.349247] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.349283] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.390742] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.390791] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.390838] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.390885] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.390931] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.390977] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.391024] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.391070] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.391284] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.391291] acpi root: \_SB_.PCI0 notify handler is installed
[    0.391350] Found 1 acpi root devices
[    0.391378] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.391506] ACPI: No dock devices found.
[    0.391558] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.391565] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    0.391568] vgaarb: loaded
[    0.391570] vgaarb: bridge control possible 0000:01:00.0
[    0.391572] vgaarb: no bridge control possible 0000:00:02.0
[    0.391623] SCSI subsystem initialized
[    0.391626] ACPI: bus type ATA registered
[    0.391650] libata version 3.00 loaded.
[    0.391666] ACPI: bus type USB registered
[    0.391680] usbcore: registered new interface driver usbfs
[    0.391687] usbcore: registered new interface driver hub
[    0.391704] usbcore: registered new device driver usb
[    0.391741] PCI: Using ACPI for IRQ routing
[    0.393270] PCI: pci_cache_line_size set to 64 bytes
[    0.393384] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.393386] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.393387] e820: reserve RAM buffer [mem 0xb3cdd018-0xb3ffffff]
[    0.393389] e820: reserve RAM buffer [mem 0xb3cee018-0xb3ffffff]
[    0.393390] e820: reserve RAM buffer [mem 0xb3fed000-0xb3ffffff]
[    0.393391] e820: reserve RAM buffer [mem 0xb4db0000-0xb7ffffff]
[    0.393392] e820: reserve RAM buffer [mem 0xba7bf000-0xbbffffff]
[    0.393394] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.393395] e820: reserve RAM buffer [mem 0x23f600000-0x23fffffff]
[    0.393459] NetLabel: Initializing
[    0.393461] NetLabel:  domain hash size = 128
[    0.393463] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.393471] NetLabel:  unlabeled traffic allowed by default
[    0.393511] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.393518] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.395535] Switching to clocksource hpet
[    0.399687] pnp: PnP ACPI init
[    0.399701] ACPI: bus type PNP registered
[    0.399726] pnp 00:00: [dma 4]
[    0.399741] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.399760] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.399839] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.399864] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.399896] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.399900] system 00:04: [io  0x1100-0x110f] has been reserved
[    0.399903] system 00:04: [io  0xffff] has been reserved
[    0.399905] system 00:04: [io  0xffff] has been reserved
[    0.399908] system 00:04: [io  0x0400-0x0453] has been reserved
[    0.399911] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.399914] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.399917] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.399919] system 00:04: [io  0xfd60-0xfd63] has been reserved
[    0.399923] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.399943] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.399979] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.399984] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.400013] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.400070] pnp 00:08: Plug and Play ACPI device, IDs SYN073d SYN0700 SYN0002 PNP0f13 (active)
[    0.440750] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.440755] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.440759] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.440762] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.440765] system 00:09: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.440768] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.440771] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.440774] system 00:09: [mem 0xff000000-0xff000fff] has been reserved
[    0.440777] system 00:09: [mem 0xff010000-0xffffffff] could not be reserved
[    0.440780] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.440783] system 00:09: [mem 0xbfa00000-0xbfa00fff] has been reserved
[    0.440787] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.441102] system 00:0a: [mem 0x20000000-0x201fffff] has been reserved
[    0.441106] system 00:0a: [mem 0x40004000-0x40004fff] has been reserved
[    0.441109] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.441125] pnp: PnP ACPI: found 11 devices
[    0.441127] ACPI: bus type PNP unregistered
[    0.447322] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.447358] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
[    0.447361] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.447365] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.447368] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.447372] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.447377] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.447381] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.447387] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.447397] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.447403] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.447413] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.447419] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.447585] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.447587] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.447588] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.447590] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.447599] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.447600] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
[    0.447602] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.447604] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.447605] pci_bus 0000:02: resource 1 [mem 0xd3600000-0xd36fffff]
[    0.447607] pci_bus 0000:03: resource 1 [mem 0xd3500000-0xd35fffff]
[    0.447608] pci_bus 0000:04: resource 1 [mem 0xd3400000-0xd34fffff]
[    0.447643] NET: Registered protocol family 2
[    0.447833] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.448016] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.448122] TCP: Hash tables configured (established 65536 bind 65536)
[    0.448137] TCP: reno registered
[    0.448150] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.448177] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.448243] NET: Registered protocol family 1
[    0.448254] pci 0000:00:02.0: Boot video device
[    1.549551] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.650487] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.650698] PCI: CLS 64 bytes, default 64
[    2.650737] Unpacking initramfs...
[    3.160809] Freeing initrd memory: 31520k freed
[    3.164717] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.164725] software IO TLB [mem 0xaf1c0000-0xb31c0000] (64MB) mapped at [ffff8800af1c0000-ffff8800b31bffff]
[    3.164777] Simple Boot Flag at 0x44 set to 0x1
[    3.167539] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    3.167770] Initialise module verification
[    3.167803] audit: initializing netlink socket (disabled)
[    3.167813] type=2000 audit(1363293922.116:1): initialized
[    3.191638] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.192843] VFS: Disk quotas dquot_6.5.2
[    3.192890] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.193249] msgmni has been set to 15696
[    3.193302] SELinux:  Registering netfilter hooks
[    3.193888] alg: No test for stdrng (krng)
[    3.193898] NET: Registered protocol family 38
[    3.193903] Key type asymmetric registered
[    3.193905] Asymmetric key parser 'x509' registered
[    3.193956] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    3.193984] io scheduler noop registered
[    3.193987] io scheduler deadline registered
[    3.193996] io scheduler cfq registered (default)
[    3.194088] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    3.194247] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.194259] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.194262] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.194505] efifb: probing for efifb
[    3.195632] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009480000, using 8100k, total 8100k
[    3.195636] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    3.195638] efifb: scrolling: redraw
[    3.195640] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.199693] Console: switching to colour frame buffer device 240x67
[    3.203528] fb0: EFI VGA frame buffer device
[    3.203548] intel_idle: MWAIT substates: 0x21120
[    3.203550] intel_idle: v0.4 model 0x3A
[    3.203551] intel_idle: lapic_timer_reliable_states 0xffffffff
[    3.203634] ACPI: AC Adapter [ACAD] (on-line)
[    3.203723] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input0
[    3.203759] ACPI: Power Button [PWRB]
[    3.203798] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0E:00/input/input1
[    3.203832] ACPI: Sleep Button [SLPB]
[    3.203877] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    3.203923] ACPI: Lid Switch [LID0]
[    3.203983] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.204010] ACPI: Power Button [PWRF]
[    3.204087] ACPI: Requesting acpi_cpufreq
[    3.249085] thermal LNXTHERM:00: registered as thermal_zone0
[    3.249108] ACPI: Thermal Zone [TZ00] (57 C)
[    3.249145] GHES: HEST is not enabled!
[    3.249218] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.292110] ACPI: Battery Slot [BAT1] (battery present)
[    3.292234] Non-volatile memory driver v1.3
[    3.292253] Linux agpgart interface v0.103
[    3.292856] loop: module loaded
[    3.292911] ahci 0000:00:1f.2: version 3.0
[    3.292993] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    3.293027] ahci: SSS flag set, parallel bus scan disabled
[    3.304053] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    3.304083] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.304113] ahci 0000:00:1f.2: setting latency timer to 64
[    3.308322] scsi0 : ahci
[    3.308393] scsi1 : ahci
[    3.308450] scsi2 : ahci
[    3.308504] scsi3 : ahci
[    3.308558] scsi4 : ahci
[    3.308612] scsi5 : ahci
[    3.308646] ata1: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717100 irq 41
[    3.308674] ata2: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717180 irq 41
[    3.308701] ata3: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717200 irq 41
[    3.308726] ata4: DUMMY
[    3.308737] ata5: DUMMY
[    3.308747] ata6: DUMMY
[    3.308810] libphy: Fixed MDIO Bus: probed
[    3.308873] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.308901] ehci-pci: EHCI PCI platform driver
[    3.310037] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    3.310041] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.311142] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.312216] ehci-pci 0000:00:1a.0: debug port 2
[    3.317166] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.317182] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd3719000
[    3.324053] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.325108] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.326155] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.327206] usb usb1: Product: EHCI Host Controller
[    3.328255] usb usb1: Manufacturer: Linux 3.9.0-rc2intel-night+ ehci_hcd
[    3.329313] usb usb1: SerialNumber: 0000:00:1a.0
[    3.330436] hub 1-0:1.0: USB hub found
[    3.331473] hub 1-0:1.0: 2 ports detected
[    3.332617] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    3.332620] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.333697] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.334765] ehci-pci 0000:00:1d.0: debug port 2
[    3.339706] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.339718] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd3718000
[    3.346072] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.347119] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.348162] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.349203] usb usb2: Product: EHCI Host Controller
[    3.350230] usb usb2: Manufacturer: Linux 3.9.0-rc2intel-night+ ehci_hcd
[    3.351262] usb usb2: SerialNumber: 0000:00:1d.0
[    3.352359] hub 2-0:1.0: USB hub found
[    3.353391] hub 2-0:1.0: 2 ports detected
[    3.354471] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.355500] uhci_hcd: USB Universal Host Controller Interface driver
[    3.356602] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    3.356605] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.357655] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.358754] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.358766] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3700000
[    3.359811] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[    3.359852] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    3.360847] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.361835] usb usb3: Product: xHCI Host Controller
[    3.362809] usb usb3: Manufacturer: Linux 3.9.0-rc2intel-night+ xhci_hcd
[    3.363789] usb usb3: SerialNumber: 0000:00:14.0
[    3.364811] xHCI xhci_add_endpoint called for root hub
[    3.364812] xHCI xhci_check_bandwidth called for root hub
[    3.364830] hub 3-0:1.0: USB hub found
[    3.365809] hub 3-0:1.0: 4 ports detected
[    3.367005] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.368008] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    3.369008] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    3.369988] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.370962] usb usb4: Product: xHCI Host Controller
[    3.371935] usb usb4: Manufacturer: Linux 3.9.0-rc2intel-night+ xhci_hcd
[    3.372915] usb usb4: SerialNumber: 0000:00:14.0
[    3.373944] xHCI xhci_add_endpoint called for root hub
[    3.373945] xHCI xhci_check_bandwidth called for root hub
[    3.373960] hub 4-0:1.0: USB hub found
[    3.374944] hub 4-0:1.0: 4 ports detected
[    3.382121] usbcore: registered new interface driver usbserial
[    3.383096] usbcore: registered new interface driver usbserial_generic
[    3.384043] usbserial: USB Serial support registered for generic
[    3.385025] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS1] at 0x60,0x64 irq 1,12
[    3.425972] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.426977] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.428050] mousedev: PS/2 mouse device common for all mice
[    3.429215] rtc_cmos 00:05: RTC can wake from S4
[    3.430336] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    3.431380] rtc_cmos 00:05: alarms up to one month, 242 bytes nvram, hpet irqs
[    3.432464] device-mapper: uevent: version 1.0.3
[    3.433543] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
[    3.434750] cpuidle: using governor ladder
[    3.435989] cpuidle: using governor menu
[    3.437320] EFI Variables Facility v0.08 2004-May-17
[    3.449211] hidraw: raw HID events driver (C) Jiri Kosina
[    3.450341] usbcore: registered new interface driver usbhid
[    3.451391] usbhid: USB HID core driver
[    3.452452] drop_monitor: Initializing network drop monitor service
[    3.453560] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.455012] TCP: cubic registered
[    3.456061] Initializing XFRM netlink socket
[    3.457200] NET: Registered protocol family 10
[    3.458374] mip6: Mobile IPv6
[    3.459589] NET: Registered protocol family 17
[    3.460969] PM: Hibernation image not present or could not be loaded.
[    3.460970] Loading module verification certificates
[    3.462806] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: b848057b753beab17f05b3dca255f65e59259035'
[    3.463880] registered taskstats version 1
[    3.464983] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.468238]   Magic number: 5:391:801
[    3.615382] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.617957] ata1.00: ATA-9: SanDisk SSD U100 16GB, 10.52.01, max UDMA/133
[    3.620116] ata1.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    3.622573] ata1.00: configured for UDMA/133
[    3.625057] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SSD U100 10.5 PQ: 0 ANSI: 5
[    3.626043] sd 0:0:0:0: [sda] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    3.626092] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.627829] sd 0:0:0:0: [sda] Write Protect is off
[    3.628684] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.628696] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.637222]  sda: sda1
[    3.638950] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.639246] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.756944] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.759206] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.761863] hub 1-1:1.0: USB hub found
[    3.764163] hub 1-1:1.0: 6 ports detected
[    3.869586] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.930650] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.933205] ata2.00: ATA-8: PLEXTOR PX-256M3, 1.05, max UDMA/133
[    3.935433] ata2.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    3.937974] ata2.00: configured for UDMA/133
[    3.940518] scsi 1:0:0:0: Direct-Access     ATA      PLEXTOR PX-256M3 1.05 PQ: 0 ANSI: 5
[    3.943067] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    3.943144] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.947626] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    3.949985] sd 1:0:0:0: [sdb] Write Protect is off
[    3.952225] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.952295] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.955498]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10
[    3.957103] sd 1:0:0:0: [sdb] Attached SCSI disk
[    3.986138] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    3.988469] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.991189] hub 2-1:1.0: USB hub found
[    3.993658] hub 2-1:1.0: 6 ports detected
[    4.059942] usb 1-1.6: new full-speed USB device number 3 using ehci-pci
[    4.150359] usb 1-1.6: New USB device found, idVendor=04ca, idProduct=2003
[    4.152932] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.155218] usb 1-1.6: Product: BCM20702A0
[    4.157787] usb 1-1.6: Manufacturer: Broadcom Corp
[    4.161253] usb 1-1.6: SerialNumber: 20689D9D9640
[    4.166937] tsc: Refined TSC clocksource calibration: 2394.560 MHz
[    4.167837] Switching to clocksource tsc
[    4.249368] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.255388] ata3.00: ATAPI: HL-DT-ST BD-RE BT20N, KV01, max UDMA/133
[    4.262473] ata3.00: configured for UDMA/133
[    4.268458] scsi 2:0:0:0: CD-ROM            HL-DT-ST BD-RE BT20N      KV01 PQ: 0 ANSI: 5
[    4.270982] usb 2-1.6: new high-speed USB device number 3 using ehci-pci
[    4.276000] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.278363] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.280965] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    4.281124] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    4.285134] Freeing unused kernel memory: 1348k freed
[    4.287724] Write protecting the kernel read-only data: 12288k
[    4.296226] Freeing unused kernel memory: 1696k freed
[    4.299197] Freeing unused kernel memory: 1348k freed
[    4.304633] systemd[1]: systemd 197 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    4.306207] systemd[1]: Running in initial RAM disk.
[    4.310773] systemd[1]: Set hostname to <ideapad.lan>.
[    4.316637] systemd[1]: Starting udev Kernel Socket.
[    4.319183] systemd[1]: Listening on udev Kernel Socket.
[    4.320438] systemd[1]: Starting udev Control Socket.
[    4.322979] systemd[1]: Listening on udev Control Socket.
[    4.324197] systemd[1]: Starting Journal Socket.
[    4.327103] systemd[1]: Listening on Journal Socket.
[    4.328458] systemd[1]: Starting dracut cmdline hook...
[    4.333122] systemd[1]: Started Load Kernel Modules.
[    4.334837] systemd[1]: Starting Journal Service...
[    4.342292] systemd[1]: Started Journal Service.
[    4.345284] systemd[1]: Starting Sockets.
[    4.347100] systemd[1]: Reached target Sockets.
[    4.347959] systemd[1]: Starting Swap.
[    4.349702] systemd[1]: Reached target Swap.
[    4.350584] systemd[1]: Starting Local File Systems.
[    4.352412] systemd[1]: Reached target Local File Systems.
[    4.366656] usb 2-1.6: New USB device found, idVendor=04f2, idProduct=b2f1
[    4.367990] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.368843] usb 2-1.6: Product: Lenovo EasyCamera
[    4.369718] usb 2-1.6: Manufacturer: Vimicro Corp.
[    4.392735] systemd-udevd[164]: starting version 197
[    4.471976] sdhci: Secure Digital Host Controller Interface driver
[    4.473019] sdhci: Copyright(c) Pierre Ossman
[    4.477054] sdhci-pci 0000:04:00.0: SDHCI controller found [197b:2392] (rev 30)
[    4.501391] [drm] Initialized drm 1.1.0 20060810
[    4.502050] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
[    4.502070] sdhci-pci 0000:04:00.2: SDHCI controller found [197b:2391] (rev 30)
[    4.502118] sdhci-pci 0000:04:00.2: Refusing to bind to secondary interface.
[    4.535824] wmi: Mapper loaded
[    4.605344] [drm:i915_dump_device_info], i915 device info: gen=7, pciid=0x0166 flags=is_mobile,need_gfx_hws,is_ivybridge,has_force_wake,has_hotplug,has_bsd_ring,has_blt_ring,has_llc,
[    4.605643] [drm] Memory usable by graphics device = 2048M
[    4.606423] [drm:i915_gem_gtt_init], GMADR size = 256M
[    4.606425] [drm:i915_gem_gtt_init], GTT stolen size = 0M
[    4.606427] checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
[    4.606428] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
[    4.607214] Console: switching to colour dummy device 80x25
[    4.607280] i915 0000:00:02.0: setting latency timer to 64
[    4.637034] [drm:intel_detect_pch], Found PatherPoint PCH
[    4.637096] [drm:intel_opregion_setup], graphic opregion physical addr: 0xbafb3018
[    4.637104] [drm:intel_opregion_setup], Public ACPI methods supported
[    4.637105] [drm:intel_opregion_setup], SWSCI supported
[    4.637105] [drm:intel_opregion_setup], ASLE supported
[    4.637132] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[    4.637137] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    4.637140] [drm] Driver supports precise vblank timestamp query.
[    4.637142] [drm:init_vbt_defaults], Set default to SSC at 100MHz
[    4.637143] [drm:intel_parse_bios], Using VBT from OpRegion: $VBT SNB/IVB-MOBILE d
[    4.637144] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 1 lvds_ssc_freq 120 display_clock_mode 0
[    4.637146] [drm:parse_general_definitions], crt_ddc_bus_pin: 2
[    4.637148] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables:
[    4.637149] [drm:drm_mode_debug_printmodeline], Modeline 0:"1920x1080" 0 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x8 0xa
[    4.637151] [drm:parse_lfp_panel_data], VBT initial LVDS value 30033c
[    4.637153] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables:
[    4.637153] [drm:drm_mode_debug_printmodeline], Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa
[    4.637162] [drm:parse_sdvo_device_mapping], No SDVO device info is found in VBT
[    4.637223] [drm:intel_dsm_detect], VGA switcheroo: detected DSM switching method \_SB_.PCI0.PEG0.PEGP handle
[    4.637226] [drm:i915_gem_init_stolen], found 0 bytes of stolen memory at bba00000
[    4.637249] [drm:intel_modeset_init], 3 display pipes available.
[    4.637259] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    4.637262] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[    4.650274] [drm:intel_lvds_init], using preferred mode from EDID: 
[    4.650276] [drm:drm_mode_debug_printmodeline], 
[    4.650280] Modeline 12:"1920x1080" 0 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.650286] [drm:intel_lvds_init], detected dual-link lvds configuration
[    4.650331] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    4.650349] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    4.650372] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus dpb. force bit now 1
[    4.650759] [drm:intel_sdvo_read_byte], i2c transfer returned -6
[    4.650761] [drm:intel_sdvo_init], No SDVO device found on SDVOB
[    4.650781] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus dpb. force bit now 0
[    4.650823] [drm:intel_dp_i2c_init], i2c_init DPDDC-B
[    4.655829] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7145003f
[    4.655834] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    4.658268] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7145003f
[    4.658273] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    4.658301] [drm:ironlake_init_pch_refclk], has_panel 1 has_lvds 1 has_pch_edp 0 has_cpu_edp 0 has_ck505 0
[    4.658305] [drm:ironlake_init_pch_refclk], Using SSC on panel
[    4.658713] [drm:i915_gem_setup_global_gtt], clearing unused GTT space: [0, 7fdff000]
[    4.661255] [drm:init_status_page], render ring hws offset: 0x00000000
[    4.661561] [drm:init_pipe_control], render ring pipe control offset: 0x00021000
[    4.661568] [drm:init_status_page], bsd ring hws offset: 0x00022000
[    4.661687] [drm:init_status_page], blitter ring hws offset: 0x00043000
[    4.661812] [drm:create_default_context], Default HW context loaded
[    4.661813] [drm:i915_gem_context_init], HW context support initialized
[    4.661849] [drm:intel_modeset_setup_hw_state], [CRTC:3] hw state readout: enabled
[    4.661851] [drm:intel_modeset_setup_hw_state], [CRTC:5] hw state readout: disabled
[    4.661853] [drm:intel_modeset_setup_hw_state], [CRTC:7] hw state readout: disabled
[    4.661856] [drm:intel_modeset_setup_hw_state], [ENCODER:10:LVDS-10] hw state readout: enabled, pipe=0
[    4.661860] [drm:intel_modeset_setup_hw_state], [ENCODER:16:DAC-16] hw state readout: disabled, pipe=0
[    4.661864] [drm:intel_modeset_setup_hw_state], [ENCODER:17:TMDS-17] hw state readout: disabled, pipe=0
[    4.661868] [drm:intel_modeset_setup_hw_state], [ENCODER:21:TMDS-21] hw state readout: disabled, pipe=0
[    4.661871] [drm:intel_modeset_setup_hw_state], [CONNECTOR:9:LVDS-1] hw state readout: enabled
[    4.661875] [drm:intel_modeset_setup_hw_state], [CONNECTOR:15:VGA-1] hw state readout: disabled
[    4.661878] [drm:intel_modeset_setup_hw_state], [CONNECTOR:18:HDMI-A-1] hw state readout: disabled
[    4.661882] [drm:intel_modeset_setup_hw_state], [CONNECTOR:22:DP-1] hw state readout: disabled
[    4.661887] [drm:intel_connector_check_state], [CONNECTOR:9:LVDS-1]
[    4.661892] [drm:intel_modeset_check_state], [ENCODER:10:LVDS-10]
[    4.661896] [drm:intel_modeset_check_state], [ENCODER:16:DAC-16]
[    4.661899] [drm:intel_modeset_check_state], [ENCODER:17:TMDS-17]
[    4.661903] [drm:intel_modeset_check_state], [ENCODER:21:TMDS-21]
[    4.661906] [drm:intel_modeset_check_state], [CRTC:3]
[    4.661907] [drm:intel_modeset_check_state], [CRTC:5]
[    4.661909] [drm:intel_modeset_check_state], [CRTC:7]
[    4.661914] [drm:intel_crt_reset], pch crt adpa set to 0xf40000
[    4.661919] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    4.661928] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    4.661930] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.661933] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    4.661937] [drm:intel_ironlake_crt_detect_hotplug], trigger hotplug detect cycle: adpa=0xf40000
[    4.671209] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    4.671212] [drm:intel_crt_detect], CRT not detected via hotplug
[    4.671368] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    4.671371] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    4.671373] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    4.671374] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    4.671736] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    4.671738] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    4.671740] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    4.671742] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    4.671744] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    4.671900] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    4.671902] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    4.671904] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    4.671906] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    4.671910] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    4.671911] [drm:drm_setup_crtcs], 
[    4.671913] [drm:drm_enable_connectors], connector 9 enabled? yes
[    4.671914] [drm:drm_enable_connectors], connector 15 enabled? no
[    4.671916] [drm:drm_enable_connectors], connector 18 enabled? no
[    4.671917] [drm:drm_enable_connectors], connector 22 enabled? no
[    4.671919] [drm:drm_target_preferred], looking for cmdline mode on connector 9
[    4.671920] [drm:drm_target_preferred], looking for preferred mode on connector 9
[    4.671921] [drm:drm_target_preferred], found mode 1920x1080
[    4.671923] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config
[    4.671925] [drm:drm_setup_crtcs], desired mode 1920x1080 set on crtc 3
[    4.671928] [drm:i915_gem_object_create_stolen], creating stolen object: size=7e9000
[    4.678631] [drm:intelfb_create], allocated 1920x1080 fb: 0x00073000, bo ffff88022abe6c00
[    4.678735] fbcon: inteldrmfb (fb0) is primary device
[    4.678770] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    4.678772] [drm:intel_set_config_compute_mode_changes], crtc has no fb, full mode set
[    4.678773] [drm:intel_set_config_compute_mode_changes], modes are different, full mode set
[    4.678776] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    4.678779] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.678781] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    4.678782] [drm:intel_crtc_set_config], attempting to set mode from userspace
[    4.678785] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.678786] [drm:intel_set_mode], set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[    4.678789] [drm:intel_modeset_adjusted_mode], [CRTC:3]
[    4.678791] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    4.841445] mmc0: new SDHC card at address e624
[    4.846850] mmcblk0: mmc0:e624 SU04G 3.69 GiB 
[    4.847835] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEG0.PEGP handle
[    4.862570]  mmcblk0: p1
[    4.980737] [drm:ivb_modeset_global_resources], disabling fdi C rx
[    4.980746] [drm:ironlake_get_refclk], using SSC reference clock of 120 MHz
[    4.980782] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to LVDS (6)
[    4.980784] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 6)
[    4.980787] [drm:ironlake_crtc_mode_set], Mode for pipe 0:
[    4.980792] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.980794] [drm:intel_get_pch_pll], CRTC:3 allocated PCH PLL c6014
[    4.980795] [drm:intel_get_pch_pll], using pll 0 for pipe 0
[    4.980797] [drm:intel_get_pch_pll], switching PLL c6014 off
[    4.981115] [drm:ironlake_check_fdi_lanes], checking fdi config on pipe 0, lanes 2
[    5.032568] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.032578] [drm:ironlake_update_plane], Writing base 00073000 00000000 0 0 7680
[    5.032586] [drm:intel_crtc_mode_set], [ENCODER:10:LVDS-10] set [MODE:12:1920x1080]
[    5.032590] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    5.032593] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    5.032595] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    5.032598] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    5.032600] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    5.083574] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.134661] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.134823] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR before link train 0x700
[    5.135481] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x700
[    5.135484] [drm:ivb_manual_fdi_link_train], FDI train 1 done, level 0.
[    5.136142] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x600
[    5.136144] [drm:ivb_manual_fdi_link_train], FDI train 2 done, level 0.
[    5.136146] [drm:ivb_manual_fdi_link_train], FDI train done.
[    5.136148] [drm:ironlake_enable_pch_pll], enable PCH PLL c6014 (active 0, on? 0)for crtc 3
[    5.136152] [drm:ironlake_enable_pch_pll], enabling PCH PLL c6014
[    5.186866] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id: 1087391
[    5.300882] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    5.381907] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.381913] [drm:intel_panel_get_backlight], get backlight PWM = 0
[    5.381915] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.389913] [drm:intel_connector_check_state], [CONNECTOR:9:LVDS-1]
[    5.389922] [drm:intel_modeset_check_state], [ENCODER:10:LVDS-10]
[    5.389926] [drm:intel_modeset_check_state], [ENCODER:16:DAC-16]
[    5.389930] [drm:intel_modeset_check_state], [ENCODER:17:TMDS-17]
[    5.389934] [drm:intel_modeset_check_state], [ENCODER:21:TMDS-21]
[    5.389937] [drm:intel_modeset_check_state], [CRTC:3]
[    5.389939] [drm:intel_modeset_check_state], [CRTC:5]
[    5.389940] [drm:intel_modeset_check_state], [CRTC:7]
[    5.389946] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    5.389951] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.389953] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    5.389956] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.389963] Console: switching to colour frame buffer device 240x67
[    5.389978] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.389982] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.398322] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    5.398324] i915 0000:00:02.0: registered panic notifier
[    5.398392] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.398785] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.411061] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.411076] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.411080] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.411520] [drm:asle_set_backlight], bclp = 0x80000000
[    5.411529] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.411534] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.411746] acpi device:3c: registered as cooling_device8
[    5.412245] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    5.412389] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:3a/LNXVIDEO:00/input/input6
[    5.426228] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.426242] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.426247] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.426620] [drm:asle_set_backlight], bclp = 0x80000000
[    5.426629] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.426633] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    5.426779] acpi device:48: registered as cooling_device9
[    5.427400] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.427594] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input7
[    5.427809] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    5.428847] nouveau  [  DEVICE][0000:01:00.0] BOOT0  : 0x0e7140a2
[    5.428901] nouveau  [  DEVICE][0000:01:00.0] Chipset: GK107 (NVE7)
[    5.428944] nouveau  [  DEVICE][0000:01:00.0] Family : NVE0
[    5.433788] nouveau  [   VBIOS][0000:01:00.0] checking PRAMIN for image...
[    5.482031] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.482034] nouveau  [   VBIOS][0000:01:00.0] checking PROM for image...
[    5.482095] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.482098] nouveau  [   VBIOS][0000:01:00.0] checking ACPI for image...
[    5.760543] [drm:intel_enable_rc6], RC6 and deep RC6 enabled
[    5.760552] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    6.587267] nouveau  [   VBIOS][0000:01:00.0] ... appears to be valid
[    6.587326] nouveau  [   VBIOS][0000:01:00.0] using image from ACPI
[    6.587650] nouveau  [   VBIOS][0000:01:00.0] BIT signature found
[    6.587695] nouveau  [   VBIOS][0000:01:00.0] version 80.07.3c.00.16
[    6.588251] nouveau  [ DEVINIT][0000:01:00.0] adaptor not initialised
[    6.588303] nouveau  [   VBIOS][0000:01:00.0] running init tables
[    6.886926] nouveau  [     PFB][0000:01:00.0] RAM type: GDDR5
[    6.886946] nouveau  [     PFB][0000:01:00.0] RAM size: 2048 MiB
[    6.886971] nouveau  [     PFB][0000:01:00.0]    ZCOMP: 0 tags
[    6.916189] nouveau  [  PTHERM][0000:01:00.0] FAN control: none / external
[    6.916213] nouveau  [  PTHERM][0000:01:00.0] Thermal management: disabled
[    6.916232] nouveau  [  PTHERM][0000:01:00.0] programmed thresholds [ 90(3), 95(3), 105(5), 135(5) ]
[    6.941906] vga_switcheroo: enabled
[    6.942048] [TTM] Zone  kernel: Available graphics memory: 4020438 kiB
[    6.942066] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    6.943007] [TTM] Initializing pool allocator
[    6.943936] [TTM] Initializing DMA pool allocator
[    6.951380] nouveau  [     DRM] VRAM: 2048 MiB
[    6.952349] nouveau  [     DRM] GART: 512 MiB
[    6.953296] nouveau  [     DRM] Pointer to BIT loadval table invalid
[    6.954255] nouveau  [     DRM] TMDS table version 2.0
[    6.955207] nouveau  [     DRM] DCB version 4.0
[    6.956149] nouveau  [     DRM] DCB outp 00: 02001300 00000000
[    6.957082] nouveau  [     DRM] DCB conn 01: 00000100
[    6.959321] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    6.960250] [drm] No driver support for vblank timestamp query.
[    6.961182] nouveau  [     DRM] ACPI backlight interface available, not registering our own
[    6.962111] nouveau W[     DRM] voltage table 0x50 unknown
[    6.963032] nouveau  [     DRM] 3 available performance level(s)
[    6.963956] nouveau  [     DRM] 1: core 202MHz shader 405MHz memory 405MHz voltage 370mV
[    6.964877] nouveau  [     DRM] 2: core 400MHz shader 800MHz memory 1080MHz voltage 370mV
[    6.965794] nouveau  [     DRM] 4: core 1250MHz shader 2500MHz memory 1080MHz voltage 370mV
[    6.966715] nouveau  [     DRM] c:
[    6.977880] nouveau  [     DRM] MM: using COPY for buffer copies
[    6.978799] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    6.980048] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    6.980051] nouveau 0000:01:00.0: No connectors reported connected with modes
[    6.980955] [drm:drm_setup_crtcs], 
[    6.980956] [drm:drm_enable_connectors], connector 17 enabled? no
[    6.980957] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config
[    6.980958] [drm] Cannot find any crtc or sizes - going 1024x768
[    7.010611] nouveau  [     DRM] allocated 1024x768 fb: 0x80000, bo ffff88022befc400
[    7.011645] nouveau 0000:01:00.0: fb1: nouveaufb frame buffer device
[    7.012571] [drm] Initialized nouveau 1.1.0 20120801 for 0000:01:00.0 on minor 1
[    7.013544] [drm:i915_driver_open], 
[    7.013566] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    7.013571] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.013573] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    7.013575] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.013577] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    7.013578] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.013603] [drm:i915_driver_open], 
[    7.013619] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    7.013621] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.013623] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    7.013624] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.013627] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    7.013628] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.013636] [drm:i915_driver_open], 
[    7.013673] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    7.013675] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    7.013684] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    7.013686] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    7.013693] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    7.013695] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    7.013698] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    7.016789] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    7.016794] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    7.016798] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    7.016799] [drm:intel_crt_detect], CRT not detected via hotplug
[    7.016961] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    7.016963] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    7.016964] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    7.016965] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    7.017331] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    7.017332] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    7.017333] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    7.017335] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    7.017346] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    7.017348] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    7.017351] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    7.017352] [drm:intel_crt_detect], CRT not detected via hotplug
[    7.017515] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    7.017520] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    7.017521] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    7.017523] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    7.017887] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    7.017889] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    7.017891] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    7.017893] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    7.017899] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    7.017901] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    7.018056] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    7.018059] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    7.018061] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    7.018064] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    7.018066] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    7.018228] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    7.018231] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    7.018233] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    7.018238] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    7.018241] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    7.018244] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    7.018245] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    7.018246] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    7.018249] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    7.018263] [drm:drm_mode_addfb], [FB:25]
[    7.028741] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    7.080153] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    7.144286] systemd-journald[123]: Received SIGTERM
[    7.204309] type=1404 audit(1363293926.149:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    7.246166] SELinux: 2048 avtab hash slots, 94945 rules.
[    7.263269] SELinux: 2048 avtab hash slots, 94945 rules.
[    7.347379] SELinux:  9 users, 15 roles, 4377 types, 240 bools, 1 sens, 1024 cats
[    7.347382] SELinux:  83 classes, 94945 rules
[    7.350135] SELinux:  Permission attach_queue in class tun_socket not defined in policy.
[    7.351007] SELinux: the above unknown classes and permissions will be allowed
[    7.351875] SELinux:  Completing initialization.
[    7.351876] SELinux:  Setting up existing superblocks.
[    7.351881] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    7.351884] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[    7.351889] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[    7.351893] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[    7.351899] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.351922] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[    7.352462] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[    7.352464] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[    7.352838] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[    7.352841] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[    7.352843] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[    7.352852] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    7.352857] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[    7.352861] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[    7.352868] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    7.353050] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[    7.353052] SELinux: initialized (dev efivarfs, type efivarfs), uses genfs_contexts
[    7.353059] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.353063] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.353116] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.353135] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.353137] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.353140] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.353149] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.353153] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.353155] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.353157] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.353158] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.353162] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.353168] SELinux: initialized (dev sdb9, type ext4), uses xattr
[    7.369896] type=1403 audit(1363293926.315:3): policy loaded auid=4294967295 ses=4294967295
[    7.376087] systemd[1]: Successfully loaded SELinux policy in 173ms 307us.
[    7.406273] systemd[1]: Relabelled /dev and /run in 16ms 967us.
[    7.543001] systemd-readahead[303]: Bumped block_nr parameter of 8:16 to 20480. This is a temporary hack and should be removed one day.
[    7.554508] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    7.568085] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.578145] systemd-udevd[311]: starting version 197
[    7.586319] EXT4-fs (sdb9): re-mounted. Opts: (null)
[    7.600144] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[    7.646806] input: Ideapad extra buttons as /devices/platform/ideapad/input/input8
[    7.654353] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130117/utaddress-251)
[    7.655572] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.657095] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130117/utaddress-251)
[    7.658925] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130117/utaddress-251)
[    7.660532] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.662194] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    7.662770] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130117/utaddress-251)
[    7.662774] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130117/utaddress-251)
[    7.662777] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.662778] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    7.676308] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    7.677758] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    7.678982] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    7.680351] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    7.681759] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    7.681844] mei 0000:00:16.0: setting latency timer to 64
[    7.681899] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[    7.683974] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    7.685300] media: Linux media interface: v0.10
[    7.685313] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    7.685414] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    7.687968] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130117/utaddress-251)
[    7.687969] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.705367] iTCO_vendor_support: vendor-support=0
[    7.721238] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    7.733361] Linux video capture interface: v2.00
[    7.734916] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    7.739053] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    7.770244] Bluetooth: Core ver 2.16
[    7.771794] tun: Universal TUN/TAP device driver, 1.6
[    7.772116] NET: Registered protocol family 31
[    7.772117] Bluetooth: HCI device and connection manager initialized
[    7.772165] Bluetooth: HCI socket layer initialized
[    7.772166] Bluetooth: L2CAP socket layer initialized
[    7.772171] Bluetooth: SCO socket layer initialized
[    7.780717] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    7.782315] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2f1)
[    7.784105] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input9
[    7.785179] usbcore: registered new interface driver uvcvideo
[    7.786161] USB Video Class driver (1.1.1)
[    7.797381] usbcore: registered new interface driver btusb
[    7.831703] cfg80211: Calling CRDA to update world regulatory domain
[    7.914482] Adding 8044540k swap on /dev/sdb8.  Priority:-1 extents:1 across:8044540k SS
[    7.924812] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    7.924824] SELinux: initialized (dev mmcblk0p1, type vfat), uses genfs_contexts
[    7.931909] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[    7.932961] Copyright(c) 2003-2013 Intel Corporation
[    7.933714] SELinux: initialized (dev sdb2, type vfat), uses genfs_contexts
[    7.934342] iwlwifi 0000:03:00.0: irq 45 for MSI/MSI-X
[    7.938098] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1
[    8.004804] cfg80211: World regulatory domain updated:
[    8.005896] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    8.006976] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.008062] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.009131] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.010163] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.011185] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.012377] snd_hda_intel 0000:00:1b.0: irq 46 for MSI/MSI-X
[    8.028060] ALSA sound/pci/hda/patch_realtek.c:394 SKU: Nid=0x1d sku_cfg=0x4015822d
[    8.028063] ALSA sound/pci/hda/patch_realtek.c:396 SKU: port_connectivity=0x1
[    8.028064] ALSA sound/pci/hda/patch_realtek.c:397 SKU: enable_pcbeep=0x1
[    8.028066] ALSA sound/pci/hda/patch_realtek.c:398 SKU: check_sum=0x00000005
[    8.028067] ALSA sound/pci/hda/patch_realtek.c:399 SKU: customization=0x00000082
[    8.028068] ALSA sound/pci/hda/patch_realtek.c:400 SKU: external_amp=0x5
[    8.028068] ALSA sound/pci/hda/patch_realtek.c:401 SKU: platform_type=0x1
[    8.028069] ALSA sound/pci/hda/patch_realtek.c:402 SKU: swap=0x0
[    8.028070] ALSA sound/pci/hda/patch_realtek.c:403 SKU: override=0x1
[    8.028284] ALSA sound/pci/hda/hda_auto_parser.c:335 autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    8.028285] ALSA sound/pci/hda/hda_auto_parser.c:339    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    8.028286] ALSA sound/pci/hda/hda_auto_parser.c:343    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    8.028287] ALSA sound/pci/hda/hda_auto_parser.c:344    mono: mono_out=0x0
[    8.028288] ALSA sound/pci/hda/hda_auto_parser.c:347    dig-out=0x1e/0x0
[    8.028289] ALSA sound/pci/hda/hda_auto_parser.c:348    inputs:
[    8.028290] ALSA sound/pci/hda/hda_auto_parser.c:352      Mic=0x18
[    8.028291] ALSA sound/pci/hda/hda_auto_parser.c:352      Internal Mic=0x12
[    8.028292] ALSA sound/pci/hda/patch_realtek.c:466 realtek: No valid SSID, checking pincfg 0x4015822d for NID 0x1d
[    8.028293] ALSA sound/pci/hda/patch_realtek.c:482 realtek: Enabling init ASM_ID=0x822d CODEC_ID=10ec0269
[    8.042144] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    8.043262] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    8.044301] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    8.057430] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
[    8.057582] SELinux: initialized (dev sdb7, type ext4), uses xattr
[    8.062344] EXT4-fs (sdb10): mounted filesystem with ordered data mode. Opts: (null)
[    8.062349] SELinux: initialized (dev sdb10, type ext4), uses xattr
[    8.075152] FAT-fs (sdb6): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    8.076192] SELinux: initialized (dev sdb6, type vfat), uses genfs_contexts
[    8.172074] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
[    8.173101] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[    8.174117] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    8.175123] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[    8.176120] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled
[    8.177112] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 2200 BGN, REV=0x104
[    8.178164] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.201468] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    8.202696] cfg80211: Calling CRDA for country: US
[    8.204959] cfg80211: Regulatory domain changed to country: US
[    8.206346] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    8.207470] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.208936] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.210083] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.211085] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.212080] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.213065] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.214051] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[    8.252827] systemd-journald[332]: Received SIGUSR1
[    8.341199] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.341200] Bluetooth: BNEP filters: protocol multicast
[    8.341206] Bluetooth: BNEP socket layer initialized
[    8.365865] Bluetooth: RFCOMM TTY layer initialized
[    8.365880] Bluetooth: RFCOMM socket layer initialized
[    8.365880] Bluetooth: RFCOMM ver 1.11
[    8.409959] Loading iSCSI transport class v2.0-870.
[    8.429177] iscsi: registered transport (tcp)
[    8.438727] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    8.441568] [drm:i915_driver_open], 
[    8.446922] [drm:i915_driver_open], 
[    8.446935] [drm:i915_driver_open], 
[    8.446984] [drm:i915_driver_open], 
[    8.446992] [drm:i915_driver_open], 
[    8.447092] [drm:i915_driver_open], 
[    8.447341] [drm:i915_driver_open], 
[    8.449532] [drm:i915_driver_open], 
[    8.449713] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    8.449718] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    8.449960] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.449963] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.449972] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.449974] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.449979] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.450146] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.450149] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.450152] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.450154] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.450311] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.450314] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.450315] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.450316] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.450653] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.450655] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.450657] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.450659] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.450665] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.450667] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.450669] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.450671] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.450828] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.450831] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.450833] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.450834] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.451164] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.451166] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.451168] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.451170] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.451202] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.451204] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.451362] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.451365] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.451367] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.451370] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.451372] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.451527] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.451530] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.451532] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.451564] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.451566] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.451569] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.451571] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.451573] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.451575] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.451612] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.451614] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.451622] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.451624] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.451628] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.452260] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.452263] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.452265] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.452267] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.452423] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.452432] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.452440] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.452442] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.452779] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.452780] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.452781] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.452783] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.452786] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.452788] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.452790] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.452792] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.452946] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.452948] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.452949] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.452951] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.453282] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.453283] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.453284] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.453285] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.453305] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.453307] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.453458] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.453462] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.453465] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.453470] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.453473] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.453628] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.453630] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.453631] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.453652] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.453653] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.453655] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.453657] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.453658] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.453659] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.454058] [drm:i915_driver_open], 
[    8.454068] [drm:i915_driver_open], 
[    8.454216] [drm:drm_mode_getresources], CRTC[4] CONNECTORS[1] ENCODERS[1]
[    8.454219] [drm:drm_mode_getresources], CRTC[4] CONNECTORS[1] ENCODERS[1]
[    8.457301] [drm:drm_mode_getconnector], [CONNECTOR:17:?]
[    8.457305] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    8.458562] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    8.458567] [drm:drm_mode_getconnector], [CONNECTOR:17:?]
[    8.458569] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    8.459813] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    8.459873] [drm:drm_mode_getconnector], [CONNECTOR:17:?]
[    8.459875] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    8.461120] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    8.461124] [drm:drm_mode_getconnector], [CONNECTOR:17:?]
[    8.461126] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    8.462373] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    8.464145] Ebtables v2.0 registered
[    8.468291] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.476130] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    8.479439] [drm:asle_set_backlight], bclp = 0x80000000
[    8.479444] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    8.479446] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    8.479557] [drm:asle_set_backlight], bclp = 0x80000000
[    8.479560] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    8.479561] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    8.480169] [drm:drm_mode_addfb], [FB:25]
[    8.480207] [drm:drm_mode_setcrtc], [CRTC:3]
[    8.480210] [drm:drm_mode_setcrtc], [CONNECTOR:9:LVDS-1]
[    8.480212] [drm:intel_crtc_set_config], [CRTC:3] [FB:25] #connectors=1 (x y) (0 0)
[    8.480216] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.484418] [drm:ironlake_update_plane], Writing base 0085C000 00000000 0 0 7680
[    8.501501] [drm:drm_mode_setcrtc], [CRTC:5]
[    8.501505] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    8.501508] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.501510] [drm:drm_mode_setcrtc], [CRTC:7]
[    8.501511] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    8.501512] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.625199] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.625204] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.625212] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.625213] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.625216] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.625350] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.625352] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.625354] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.625355] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.625507] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.625510] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.625511] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.625512] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.626320] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.626321] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.626322] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.626323] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.626327] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.626328] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.626330] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.626331] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.626538] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.626540] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.626540] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.626541] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.627107] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.627108] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.627109] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.627110] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.627115] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.627116] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.627276] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.627280] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.627283] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.627288] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.627290] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.627449] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.627452] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.627455] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.627467] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.627470] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.627475] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.627478] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.627481] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.627484] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.824187] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.831696] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    8.921337] [drm:i915_driver_open], 
[    8.927619] [drm:i915_gem_context_create_ioctl], HW context 1 created
[    8.928659] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[    8.956542] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.956549] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.956560] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.956562] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.956568] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.957028] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.957032] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.957036] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.957038] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.957202] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.957220] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.957222] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.957224] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.957557] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.957559] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.957561] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.957563] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.957570] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.957572] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.957575] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.957577] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.957727] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.957729] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.957731] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.957732] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.958079] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.958081] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.958083] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.958085] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.958096] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.958098] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.958250] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.958253] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.958255] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.958259] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.958261] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.958416] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.958420] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.958422] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.958427] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.958430] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.958433] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.958436] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.958438] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.958441] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.000412] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    9.025193] iscsi: registered transport (iser)
[    9.052036] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[    9.052042] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[    9.073967] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.073972] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.074027] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.074029] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.074178] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.074181] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.074182] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.074184] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.074522] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.074523] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.074525] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.074687] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    9.115932] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[    9.115963] iscsi: registered transport (cxgb3i)
[    9.149704] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[    9.149726] iscsi: registered transport (cxgb4i)
[    9.171409] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.16 (Dec 05, 2012)
[    9.186791] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Apr 25, 2012)
[    9.186813] iscsi: registered transport (bnx2i)
[    9.220480] iscsi: registered transport (be2iscsi)
[    9.220483] In beiscsi_module_init, tt=ffffffffa081f000
[    9.404279] [drm:i915_driver_open], 
[    9.406492] [drm:i915_gem_context_create_ioctl], HW context 1 created
[    9.406843] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[    9.408432] [drm:i915_gem_context_create_ioctl], HW context 1 created
[    9.570377] wlan0: authenticate with 00:14:bf:74:d1:31
[    9.577431] wlan0: send auth to 00:14:bf:74:d1:31 (try 1/3)
[    9.579434] wlan0: authenticated
[    9.579615] iwlwifi 0000:03:00.0 wlan0: disabling HT as WMM/QoS is not supported by the AP
[    9.579619] iwlwifi 0000:03:00.0 wlan0: disabling VHT as WMM/QoS is not supported by the AP
[    9.580392] wlan0: associate with 00:14:bf:74:d1:31 (try 1/3)
[    9.584252] wlan0: RX AssocResp from 00:14:bf:74:d1:31 (capab=0x431 status=0 aid=6)
[    9.586600] wlan0: associated
[    9.586628] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   10.965969] Bridge firewalling registered
[   10.999741] device virbr0-nic entered promiscuous mode
[   11.677365] [drm:drm_mode_addfb], [FB:26]
[   11.696019] [drm:drm_mode_addfb], [FB:25]
[   11.713736] [drm:drm_mode_addfb], [FB:26]
[   11.728931] [drm:drm_mode_addfb], [FB:25]
[   11.758969] [drm:drm_mode_addfb], [FB:26]
[   11.779125] [drm:drm_mode_addfb], [FB:25]
[   11.795858] [drm:drm_mode_addfb], [FB:26]
[   11.812594] [drm:drm_mode_addfb], [FB:25]
[   11.829384] [drm:drm_mode_addfb], [FB:26]
[   11.846033] [drm:drm_mode_addfb], [FB:25]
[   11.862791] [drm:drm_mode_addfb], [FB:26]
[   11.879500] [drm:drm_mode_addfb], [FB:25]
[   12.195060] virbr0: topology change detected, propagating
[   12.195065] virbr0: port 1(virbr0-nic) entered forwarding state
[   12.195085] virbr0: port 1(virbr0-nic) entered forwarding state
[   12.209944] virbr0: port 1(virbr0-nic) entered disabled state
[   12.632894] cgroup: libvirtd (1315) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   12.632900] cgroup: "memory" requires setting use_hierarchy to 1 on the root.
[   12.632985] cgroup: libvirtd (1315) created nested cgroup for controller "devices" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   12.633155] cgroup: libvirtd (1315) created nested cgroup for controller "blkio" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   12.686317] [drm:drm_mode_addfb], [FB:26]
[   12.699301] [drm:drm_mode_addfb], [FB:25]
[   12.716033] [drm:drm_mode_addfb], [FB:26]
[   12.732708] [drm:drm_mode_addfb], [FB:25]
[   12.749458] [drm:drm_mode_addfb], [FB:26]
[   12.766180] [drm:drm_mode_addfb], [FB:25]
[   12.782897] [drm:drm_mode_addfb], [FB:26]
[   12.799626] [drm:drm_mode_addfb], [FB:25]
[   12.816356] [drm:drm_mode_addfb], [FB:26]
[   12.833099] [drm:drm_mode_addfb], [FB:25]
[   12.849835] [drm:drm_mode_addfb], [FB:26]
[   12.866544] [drm:drm_mode_addfb], [FB:25]
[   12.883286] [drm:drm_mode_addfb], [FB:26]
[   12.900016] [drm:drm_mode_addfb], [FB:25]
[   12.989134] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[   12.989183] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[   12.997367] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[   12.997858] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[   14.114090] fuse init (API version 7.21)
[   14.116490] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[   14.119432] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
[   16.074401] Adjusting tsc more than 11% (7792756 vs 7777090)
[   16.895822] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   26.599601] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   36.605453] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   40.657202] [drm:drm_mode_addfb], [FB:26]
[   46.628958] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2

[-- Attachment #3: intel-nightly-win8-acpi-revert --]
[-- Type: application/octet-stream, Size: 129284 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 3.9.0-rc2intel-night-acpi-revert+ (chrisl@ideapad.lan) (gcc version 4.7.2 20121109 (Red Hat 4.7.2-8) (GCC) ) #48 SMP Thu Mar 14 13:35:36 PDT 2013
[    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.9.0-rc2intel-night-acpi-revert+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000088000-0x00000000000bffff] 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-0x00000000b3fecfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] BIOS-e820: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] 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 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] e820: update [mem 0xb3cee018-0xb3d03e57] usable ==> usable
[    0.000000] e820: update [mem 0xb3cdd018-0xb3ced057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x0000000000087fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000000088000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] reserve setup_data: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000040005000-0x00000000b3cdd017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cdd018-0x00000000b3ced057] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3ced058-0x00000000b3cee017] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3cee018-0x00000000b3d03e57] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3d03e58-0x00000000b3fecfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b3fed000-0x00000000b4d6dfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b4d6e000-0x00000000b4daffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000b4db0000-0x00000000b61affff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000b61b0000-0x00000000ba7befff] usable
[    0.000000] reserve setup_data: [mem 0x00000000ba7bf000-0x00000000baebefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000023f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by INSYDE Corp.
[    0.000000] efi:  ACPI=0xbaffe000  ACPI 2.0=0xbaffe014  SMBIOS=0xbaebef98 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000001000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000001000-0x0000000000004000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x0000000000004000-0x000000000000e000) (0MB)
[    0.000000] efi: mem03: type=3, attr=0xf, range=[0x000000000000e000-0x0000000000010000) (0MB)
[    0.000000] efi: mem04: type=7, attr=0xf, range=[0x0000000000010000-0x000000000002e000) (0MB)
[    0.000000] efi: mem05: type=3, attr=0xf, range=[0x000000000002e000-0x000000000002f000) (0MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x000000000002f000-0x0000000000030000) (0MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000000030000-0x000000000006f000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x000000000006f000-0x0000000000070000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000000070000-0x0000000000088000) (0MB)
[    0.000000] efi: mem10: type=6, attr=0x800000000000000f, range=[0x0000000000088000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem11: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem12: type=2, attr=0xf, range=[0x0000000001000000-0x00000000023e4000) (19MB)
[    0.000000] efi: mem13: type=7, attr=0xf, range=[0x00000000023e4000-0x0000000020000000) (476MB)
[    0.000000] efi: mem14: type=0, attr=0xf, range=[0x0000000020000000-0x0000000020200000) (2MB)
[    0.000000] efi: mem15: type=7, attr=0xf, range=[0x0000000020200000-0x000000003e133000) (479MB)
[    0.000000] efi: mem16: type=2, attr=0xf, range=[0x000000003e133000-0x0000000040000000) (30MB)
[    0.000000] efi: mem17: type=7, attr=0xf, range=[0x0000000040000000-0x0000000040004000) (0MB)
[    0.000000] efi: mem18: type=0, attr=0xf, range=[0x0000000040004000-0x0000000040005000) (0MB)
[    0.000000] efi: mem19: type=7, attr=0xf, range=[0x0000000040005000-0x000000008634e000) (1123MB)
[    0.000000] efi: mem20: type=2, attr=0xf, range=[0x000000008634e000-0x00000000b31c0000) (718MB)
[    0.000000] efi: mem21: type=4, attr=0xf, range=[0x00000000b31c0000-0x00000000b31e0000) (0MB)
[    0.000000] efi: mem22: type=7, attr=0xf, range=[0x00000000b31e0000-0x00000000b3a7e000) (8MB)
[    0.000000] efi: mem23: type=2, attr=0xf, range=[0x00000000b3a7e000-0x00000000b3b4d000) (0MB)
[    0.000000] efi: mem24: type=1, attr=0xf, range=[0x00000000b3b4d000-0x00000000b3c84000) (1MB)
[    0.000000] efi: mem25: type=7, attr=0xf, range=[0x00000000b3c84000-0x00000000b3cdd000) (0MB)
[    0.000000] efi: mem26: type=2, attr=0xf, range=[0x00000000b3cdd000-0x00000000b3dd3000) (0MB)
[    0.000000] efi: mem27: type=4, attr=0xf, range=[0x00000000b3dd3000-0x00000000b3fed000) (2MB)
[    0.000000] efi: mem28: type=0, attr=0xf, range=[0x00000000b3fed000-0x00000000b4d6e000) (13MB)
[    0.000000] efi: mem29: type=4, attr=0xf, range=[0x00000000b4d6e000-0x00000000b4db0000) (0MB)
[    0.000000] efi: mem30: type=0, attr=0xf, range=[0x00000000b4db0000-0x00000000b61b0000) (20MB)
[    0.000000] efi: mem31: type=7, attr=0xf, range=[0x00000000b61b0000-0x00000000b61bd000) (0MB)
[    0.000000] efi: mem32: type=2, attr=0xf, range=[0x00000000b61bd000-0x00000000b61bf000) (0MB)
[    0.000000] efi: mem33: type=7, attr=0xf, range=[0x00000000b61bf000-0x00000000b6279000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x00000000b6279000-0x00000000b81aa000) (31MB)
[    0.000000] efi: mem35: type=7, attr=0xf, range=[0x00000000b81aa000-0x00000000b81b2000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x00000000b81b2000-0x00000000b81b4000) (0MB)
[    0.000000] efi: mem37: type=7, attr=0xf, range=[0x00000000b81b4000-0x00000000b81b6000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x00000000b81b6000-0x00000000b81e6000) (0MB)
[    0.000000] efi: mem39: type=7, attr=0xf, range=[0x00000000b81e6000-0x00000000b81ec000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x00000000b81ec000-0x00000000b81ed000) (0MB)
[    0.000000] efi: mem41: type=7, attr=0xf, range=[0x00000000b81ed000-0x00000000b81ee000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x00000000b81ee000-0x00000000b81f8000) (0MB)
[    0.000000] efi: mem43: type=7, attr=0xf, range=[0x00000000b81f8000-0x00000000b81f9000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x00000000b81f9000-0x00000000b821f000) (0MB)
[    0.000000] efi: mem45: type=7, attr=0xf, range=[0x00000000b821f000-0x00000000b8221000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x00000000b8221000-0x00000000b83a0000) (1MB)
[    0.000000] efi: mem47: type=7, attr=0xf, range=[0x00000000b83a0000-0x00000000b83a4000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x00000000b83a4000-0x00000000b83a7000) (0MB)
[    0.000000] efi: mem49: type=7, attr=0xf, range=[0x00000000b83a7000-0x00000000b83a8000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x00000000b83a8000-0x00000000b83f8000) (0MB)
[    0.000000] efi: mem51: type=7, attr=0xf, range=[0x00000000b83f8000-0x00000000b8420000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x00000000b8420000-0x00000000b859e000) (1MB)
[    0.000000] efi: mem53: type=7, attr=0xf, range=[0x00000000b859e000-0x00000000b85a0000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x00000000b85a0000-0x00000000b85ba000) (0MB)
[    0.000000] efi: mem55: type=7, attr=0xf, range=[0x00000000b85ba000-0x00000000b85bb000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x00000000b85bb000-0x00000000b87e8000) (2MB)
[    0.000000] efi: mem57: type=7, attr=0xf, range=[0x00000000b87e8000-0x00000000b87f8000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x00000000b87f8000-0x00000000ba3bf000) (27MB)
[    0.000000] efi: mem59: type=7, attr=0xf, range=[0x00000000ba3bf000-0x00000000ba495000) (0MB)
[    0.000000] efi: mem60: type=3, attr=0xf, range=[0x00000000ba495000-0x00000000ba7bf000) (3MB)
[    0.000000] efi: mem61: type=5, attr=0x800000000000000f, range=[0x00000000ba7bf000-0x00000000ba880000) (0MB)
[    0.000000] efi: mem62: type=6, attr=0x800000000000000f, range=[0x00000000ba880000-0x00000000ba881000) (0MB)
[    0.000000] efi: mem63: type=5, attr=0x800000000000000f, range=[0x00000000ba881000-0x00000000ba8b0000) (0MB)
[    0.000000] efi: mem64: type=6, attr=0x800000000000000f, range=[0x00000000ba8b0000-0x00000000ba8b1000) (0MB)
[    0.000000] efi: mem65: type=5, attr=0x800000000000000f, range=[0x00000000ba8b1000-0x00000000ba8b3000) (0MB)
[    0.000000] efi: mem66: type=6, attr=0x800000000000000f, range=[0x00000000ba8b3000-0x00000000ba8b4000) (0MB)
[    0.000000] efi: mem67: type=5, attr=0x800000000000000f, range=[0x00000000ba8b4000-0x00000000ba8cc000) (0MB)
[    0.000000] efi: mem68: type=6, attr=0x800000000000000f, range=[0x00000000ba8cc000-0x00000000ba8cd000) (0MB)
[    0.000000] efi: mem69: type=5, attr=0x800000000000000f, range=[0x00000000ba8cd000-0x00000000ba8d2000) (0MB)
[    0.000000] efi: mem70: type=6, attr=0x800000000000000f, range=[0x00000000ba8d2000-0x00000000ba8d3000) (0MB)
[    0.000000] efi: mem71: type=5, attr=0x800000000000000f, range=[0x00000000ba8d3000-0x00000000ba8e1000) (0MB)
[    0.000000] efi: mem72: type=6, attr=0x800000000000000f, range=[0x00000000ba8e1000-0x00000000ba8e2000) (0MB)
[    0.000000] efi: mem73: type=5, attr=0x800000000000000f, range=[0x00000000ba8e2000-0x00000000ba8f2000) (0MB)
[    0.000000] efi: mem74: type=6, attr=0x800000000000000f, range=[0x00000000ba8f2000-0x00000000ba937000) (0MB)
[    0.000000] efi: mem75: type=5, attr=0x800000000000000f, range=[0x00000000ba937000-0x00000000ba9bf000) (0MB)
[    0.000000] efi: mem76: type=6, attr=0x800000000000000f, range=[0x00000000ba9bf000-0x00000000baabf000) (1MB)
[    0.000000] efi: mem77: type=0, attr=0xf, range=[0x00000000baabf000-0x00000000baebf000) (4MB)
[    0.000000] efi: mem78: type=10, attr=0xf, range=[0x00000000baebf000-0x00000000bafbf000) (1MB)
[    0.000000] efi: mem79: type=9, attr=0xf, range=[0x00000000bafbf000-0x00000000bafff000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000bafff000-0x00000000bb000000) (0MB)
[    0.000000] efi: mem81: type=7, attr=0xf, range=[0x0000000100000000-0x000000023f600000) (5110MB)
[    0.000000] efi: mem82: type=0, attr=0x0, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem83: type=0, attr=0x0, range=[0x00000000bb000000-0x00000000bfa00000) (74MB)
[    0.000000] efi: mem84: type=11, attr=0x8000000000000001, range=[0x00000000f0000000-0x00000000f4000000) (64MB)
[    0.000000] efi: mem85: type=11, attr=0x8000000000000001, range=[0x00000000feb00000-0x00000000feb04000) (0MB)
[    0.000000] efi: mem86: type=11, attr=0x8000000000000001, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem87: type=11, attr=0x8000000000000001, range=[0x00000000fed10000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem88: type=11, attr=0x8000000000000001, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem89: type=11, attr=0x8000000000000001, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem90: type=11, attr=0x8000000000000000, range=[0x00000000ffb80000-0x0000000100000000) (4MB)
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: LENOVO 20132/INVALID, BIOS 5DCN90WW(V8.01) 10/11/2012
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x23f600 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-E7FFF write-protect
[    0.000000]   E8000-EFFFF write-combining
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F80000000 write-back
[    0.000000]   1 base 080000000 mask FC0000000 write-back
[    0.000000]   2 base 0BB000000 mask FFF000000 uncachable
[    0.000000]   3 base 0BC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0FF800000 mask FFF800000 write-protect
[    0.000000]   5 base 100000000 mask F00000000 write-back
[    0.000000]   6 base 200000000 mask FC0000000 write-back
[    0.000000]   7 base 23F600000 mask FFFE00000 uncachable
[    0.000000]   8 base 23F800000 mask FFF800000 uncachable
[    0.000000]   9 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fe1c0-0x000fe1cf] mapped at [ffff8800000fe1c0]
[    0.000000] Base memory trampoline at [ffff880000028000] 28000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fc3000, 0x01fc3fff] PGTABLE
[    0.000000] BRK [0x01fc4000, 0x01fc4fff] PGTABLE
[    0.000000] BRK [0x01fc5000, 0x01fc5fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x23f400000-0x23f5fffff]
[    0.000000]  [mem 0x23f400000-0x23f5fffff] page 2M
[    0.000000] BRK [0x01fc6000, 0x01fc6fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x23c000000-0x23f3fffff]
[    0.000000]  [mem 0x23c000000-0x23f3fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
[    0.000000]  [mem 0x200000000-0x23bffffff] 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 [0x01fc7000, 0x01fc7fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x40005000-0xb3fecfff]
[    0.000000]  [mem 0x40005000-0x401fffff] page 4k
[    0.000000]  [mem 0x40200000-0xb3dfffff] page 2M
[    0.000000]  [mem 0xb3e00000-0xb3fecfff] page 4k
[    0.000000] init_memory_mapping: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]  [mem 0xb4d6e000-0xb4daffff] page 4k
[    0.000000] init_memory_mapping: [mem 0xb61b0000-0xba7befff]
[    0.000000]  [mem 0xb61b0000-0xb61fffff] page 4k
[    0.000000]  [mem 0xb6200000-0xba5fffff] page 2M
[    0.000000]  [mem 0xba600000-0xba7befff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbafff000-0xbaffffff]
[    0.000000]  [mem 0xbafff000-0xbaffffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
[    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
[    0.000000] RAMDISK: [mem 0x3e133000-0x3fffafff]
[    0.000000] ACPI: RSDP 00000000baffe014 00024 (v02 LENOVO)
[    0.000000] ACPI: XSDT 00000000baffe210 000AC (v01 LENOVO CB-01    00000001      01000013)
[    0.000000] ACPI: FACP 00000000baffa000 0010C (v05 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DSDT 00000000bafec000 0A638 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FACS 00000000bafbb000 00040
[    0.000000] ACPI: SLIC 00000000baffd000 00176 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: UEFI 00000000baffc000 00236 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASF! 00000000baffb000 000A5 (v32 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: HPET 00000000baff9000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: APIC 00000000baff8000 0008C (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MCFG 00000000baff7000 0003C (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafeb000 006FE (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BOOT 00000000bafe9000 00028 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: ASPT 00000000bafe7000 00034 (v07 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: DBGP 00000000bafe6000 00034 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: FPDT 00000000bafe4000 00044 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: MSDM 00000000bafe3000 00055 (v03 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe2000 00926 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: SSDT 00000000bafdd000 02333 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: BGRT 00000000bafe0000 00038 (v01 LENOVO CB-01    00000001 ACPI 00040000)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x23f5fffff]
[    0.000000]   NODE_DATA [mem 0x23f5e1000-0x23f5f4fff]
[    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880236c00000-ffff88023ebfffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x23f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x00087fff]
[    0.000000]   node   0: [mem 0x00100000-0x1fffffff]
[    0.000000]   node   0: [mem 0x20200000-0x40003fff]
[    0.000000]   node   0: [mem 0x40005000-0xb3fecfff]
[    0.000000]   node   0: [mem 0xb4d6e000-0xb4daffff]
[    0.000000]   node   0: [mem 0xb61b0000-0xba7befff]
[    0.000000]   node   0: [mem 0xbafff000-0xbaffffff]
[    0.000000]   node   0: [mem 0x100000000-0x23f5fffff]
[    0.000000] On node 0 totalpages: 2062789
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 111 pages reserved
[    0.000000]   DMA zone: 3975 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 11729 pages used for memmap
[    0.000000]   DMA32 zone: 750654 pages, LIFO batch:31
[    0.000000]   Normal zone: 20440 pages used for memmap
[    0.000000]   Normal zone: 1308160 pages, LIFO batch:31
[    0.000000] tboot: non-0 tboot_addr but it is not of type E820_RESERVED
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
[    0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: 0000000000088000 - 00000000000c0000
[    0.000000] PM: Registered nosave memory: 00000000000c0000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
[    0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
[    0.000000] PM: Registered nosave memory: 00000000b3cdd000 - 00000000b3cde000
[    0.000000] PM: Registered nosave memory: 00000000b3ced000 - 00000000b3cee000
[    0.000000] PM: Registered nosave memory: 00000000b3cee000 - 00000000b3cef000
[    0.000000] PM: Registered nosave memory: 00000000b3d03000 - 00000000b3d04000
[    0.000000] PM: Registered nosave memory: 00000000b3fed000 - 00000000b4d6e000
[    0.000000] PM: Registered nosave memory: 00000000b4db0000 - 00000000b61b0000
[    0.000000] PM: Registered nosave memory: 00000000ba7bf000 - 00000000baebf000
[    0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
[    0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
[    0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
[    0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
[    0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
[    0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
[    0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
[    0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
[    0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
[    0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
[    0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
[    0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
[    0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
[    0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
[    0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
[    0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
[    0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
[    0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:8 nr_node_ids:1
[    0.000000] PERCPU: Embedded 28 pages/cpu @ffff88023f200000 s85120 r8192 d21376 u262144
[    0.000000] pcpu-alloc: s85120 r8192 d21376 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2030445
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.9.0-rc2intel-night-acpi-revert+ root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0 rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] __ex_table already sorted, skipping sort
[    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Memory: 7932280k/9426944k available (6486k kernel code, 1175788k absent, 318876k reserved, 6749k data, 1348k init)
[    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] NR_IRQS:8448 nr_irqs:744 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 33554432 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.001000] tsc: Detected 2394.405 MHz processor
[    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4788.81 BogoMIPS (lpj=2394405)
[    0.000008] pid_max: default: 32768 minimum: 301
[    0.000024] init_memory_mapping: [mem 0xba7bf000-0xba87ffff]
[    0.000028]  [mem 0xba7bf000-0xba87ffff] page 4k
[    0.000043] init_memory_mapping: [mem 0xba880000-0xba880fff]
[    0.000046]  [mem 0xba880000-0xba880fff] page 4k
[    0.000052] init_memory_mapping: [mem 0xba881000-0xba8affff]
[    0.000055]  [mem 0xba881000-0xba8affff] page 4k
[    0.000062] init_memory_mapping: [mem 0xba8b0000-0xba8b0fff]
[    0.000065]  [mem 0xba8b0000-0xba8b0fff] page 4k
[    0.000072] init_memory_mapping: [mem 0xba8b1000-0xba8b2fff]
[    0.000074]  [mem 0xba8b1000-0xba8b2fff] page 4k
[    0.000081] init_memory_mapping: [mem 0xba8b3000-0xba8b3fff]
[    0.000083]  [mem 0xba8b3000-0xba8b3fff] page 4k
[    0.000090] init_memory_mapping: [mem 0xba8b4000-0xba8cbfff]
[    0.000093]  [mem 0xba8b4000-0xba8cbfff] page 4k
[    0.000099] init_memory_mapping: [mem 0xba8cc000-0xba8ccfff]
[    0.000102]  [mem 0xba8cc000-0xba8ccfff] page 4k
[    0.000108] init_memory_mapping: [mem 0xba8cd000-0xba8d1fff]
[    0.000111]  [mem 0xba8cd000-0xba8d1fff] page 4k
[    0.000117] init_memory_mapping: [mem 0xba8d2000-0xba8d2fff]
[    0.000120]  [mem 0xba8d2000-0xba8d2fff] page 4k
[    0.000126] init_memory_mapping: [mem 0xba8d3000-0xba8e0fff]
[    0.000129]  [mem 0xba8d3000-0xba8e0fff] page 4k
[    0.000136] init_memory_mapping: [mem 0xba8e1000-0xba8e1fff]
[    0.000138]  [mem 0xba8e1000-0xba8e1fff] page 4k
[    0.000144] init_memory_mapping: [mem 0xba8e2000-0xba8f1fff]
[    0.000147]  [mem 0xba8e2000-0xba8f1fff] page 4k
[    0.000154] init_memory_mapping: [mem 0xba8f2000-0xba936fff]
[    0.000156]  [mem 0xba8f2000-0xba936fff] page 4k
[    0.000163] init_memory_mapping: [mem 0xba937000-0xba9befff]
[    0.000166]  [mem 0xba937000-0xba9befff] page 4k
[    0.000174] init_memory_mapping: [mem 0xba9bf000-0xbaabefff]
[    0.000177]  [mem 0xba9bf000-0xbaabefff] page 4k
[    0.022380] Security Framework initialized
[    0.022390] SELinux:  Initializing.
[    0.022399] SELinux:  Starting in permissive mode
[    0.022997] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.025069] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.025972] Mount-cache hash table entries: 256
[    0.026132] Initializing cgroup subsys cpuacct
[    0.026135] Initializing cgroup subsys memory
[    0.026143] Initializing cgroup subsys devices
[    0.026146] Initializing cgroup subsys freezer
[    0.026149] Initializing cgroup subsys net_cls
[    0.026151] Initializing cgroup subsys blkio
[    0.026154] Initializing cgroup subsys perf_event
[    0.026180] CPU: Physical Processor ID: 0
[    0.026183] CPU: Processor Core ID: 0
[    0.026188] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.026562] mce: CPU supports 9 MCE banks
[    0.026576] CPU0: Thermal monitoring enabled (TM1)
[    0.026588] Last level iTLB entries: 4KB 512, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32
tlb_flushall_shift: 1
[    0.026716] Freeing SMP alternatives: 24k freed
[    0.027785] ACPI: Core revision 20130117
[    0.033860] ACPI: All ACPI Tables successfully acquired
[    0.049873] ftrace: allocating 24238 entries in 95 pages
[    0.061593] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.071606] smpboot: CPU0: Intel(R) Core(TM) i7-3630QM CPU @ 2.40GHz (fam: 06, model: 3a, stepping: 09)
[    0.071616] TSC deadline timer enabled
[    0.071624] Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, Intel PMU driver.
[    0.071632] ... version:                3
[    0.071633] ... bit width:              48
[    0.071635] ... generic registers:      4
[    0.071637] ... value mask:             0000ffffffffffff
[    0.071639] ... max period:             000000007fffffff
[    0.071641] ... fixed-purpose events:   3
[    0.071643] ... event mask:             000000070000000f
[    0.086557] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.072788] smpboot: Booting Node   0, Processors  #1 #2 #3 #4 #5 #6 #7 OK
[    0.168871] Brought up 8 CPUs
[    0.168877] smpboot: Total of 8 processors activated (38310.48 BogoMIPS)
[    0.176044] devtmpfs: initialized
[    0.176219] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
[    0.176860] atomic64 test passed for x86-64 platform with CX8 and with SSE
[    0.176889] RTC time: 20:40:56, date: 03/14/13
[    0.176928] NET: Registered protocol family 16
[    0.177053] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.177057] ACPI: bus type PCI registered
[    0.177099] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[    0.177104] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[    0.185646] PCI: Using configuration type 1 for base access
[    0.186388] bio: create slab <bio-0> at 0
[    0.186453] ACPI: Added _OSI(Module Device)
[    0.186455] ACPI: Added _OSI(Processor Device)
[    0.186457] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.186460] ACPI: Added _OSI(Processor Aggregator Device)
[    0.187896] ACPI: EC: Look up EC in DSDT
[    0.189371] ACPI: Executed 1 blocks of module-level executable AML code
[    0.192016] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.192722] ACPI: SSDT 00000000babae018 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.193091] ACPI: Dynamic OEM Table Load:
[    0.193094] ACPI: SSDT           (null) 0083B (v01  PmRef  Cpu0Cst 00003001 INTL 20120518)
[    0.198080] ACPI: SSDT 00000000babafa98 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.198467] ACPI: Dynamic OEM Table Load:
[    0.198469] ACPI: SSDT           (null) 00303 (v01  PmRef    ApIst 00003000 INTL 20120518)
[    0.202981] ACPI: SSDT 00000000babadd98 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.203341] ACPI: Dynamic OEM Table Load:
[    0.203343] ACPI: SSDT           (null) 00119 (v01  PmRef    ApCst 00003000 INTL 20120518)
[    0.209100] ACPI: Interpreter enabled
[    0.209107] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20130117/hwxface-568)
[    0.209114] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20130117/hwxface-568)
[    0.209128] ACPI: (supports S0 S3 S4 S5)
[    0.209131] ACPI: Using IOAPIC for interrupt routing
[    0.209152] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.336589] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.336631] \_SB_.PCI0:_OSC invalid UUID
[    0.336632] _OSC request data:1 8 1f 
[    0.336668] \_SB_.PCI0:_OSC invalid UUID
[    0.336669] _OSC request data:1 1f 1f 
[    0.336672] acpi PNP0A08:00: ACPI _OSC support notification failed, disabling PCIe ASPM
[    0.336676] acpi PNP0A08:00: Unable to request _OSC control (_OSC support mask: 0x08)
[    0.337126] PCI host bridge to bus 0000:00
[    0.337130] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.337133] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.337135] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.337138] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.337141] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff]
[    0.337150] pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
[    0.337227] pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
[    0.337257] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.337287] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.337323] pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
[    0.337333] pci 0000:00:02.0: reg 10: [mem 0xd3000000-0xd33fffff 64bit]
[    0.337338] pci 0000:00:02.0: reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.337343] pci 0000:00:02.0: reg 20: [io  0x4000-0x403f]
[    0.337432] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.337455] pci 0000:00:14.0: reg 10: [mem 0xd3700000-0xd370ffff 64bit]
[    0.337526] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.337546] pci 0000:00:14.0: System wakeup disabled by ACPI
[    0.337579] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.337603] pci 0000:00:16.0: reg 10: [mem 0xd3714000-0xd371400f 64bit]
[    0.337680] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.337753] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.337774] pci 0000:00:1a.0: reg 10: [mem 0xd3719000-0xd37193ff]
[    0.337865] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.337904] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.337937] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.337952] pci 0000:00:1b.0: reg 10: [mem 0xd3710000-0xd3713fff 64bit]
[    0.338021] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.338044] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.338074] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.338151] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.338202] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[    0.338282] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.338338] pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
[    0.338417] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.338478] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.338500] pci 0000:00:1d.0: reg 10: [mem 0xd3718000-0xd37183ff]
[    0.338591] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.338628] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.338661] pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
[    0.338805] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[    0.338824] pci 0000:00:1f.2: reg 10: [io  0x4088-0x408f]
[    0.338832] pci 0000:00:1f.2: reg 14: [io  0x4094-0x4097]
[    0.338840] pci 0000:00:1f.2: reg 18: [io  0x4080-0x4087]
[    0.338848] pci 0000:00:1f.2: reg 1c: [io  0x4090-0x4093]
[    0.338857] pci 0000:00:1f.2: reg 20: [io  0x4060-0x407f]
[    0.338864] pci 0000:00:1f.2: reg 24: [mem 0xd3717000-0xd37177ff]
[    0.338910] pci 0000:00:1f.2: PME# supported from D3hot
[    0.338963] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.338979] pci 0000:00:1f.3: reg 10: [mem 0xd3715000-0xd37150ff 64bit]
[    0.339000] pci 0000:00:1f.3: reg 20: [io  0x4040-0x405f]
[    0.339100] pci 0000:01:00.0: [10de:0fd4] type 00 class 0x030000
[    0.339112] pci 0000:01:00.0: reg 10: [mem 0xd2000000-0xd2ffffff]
[    0.339124] pci 0000:01:00.0: reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.339137] pci 0000:01:00.0: reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.339145] pci 0000:01:00.0: reg 24: [io  0x3000-0x307f]
[    0.339154] pci 0000:01:00.0: reg 30: [mem 0xfff80000-0xffffffff pref]
[    0.339215] pci 0000:01:00.0: System wakeup disabled by ACPI
[    0.340326] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.340333] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.340338] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.340344] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.340437] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[    0.340465] pci 0000:02:00.0: reg 10: [mem 0xd3600000-0xd363ffff 64bit]
[    0.340480] pci 0000:02:00.0: reg 18: [io  0x2000-0x207f]
[    0.340611] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.340665] pci 0000:02:00.0: System wakeup disabled by ACPI
[    0.342341] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.342352] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.342359] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.342492] pci 0000:03:00.0: [8086:0891] type 00 class 0x028000
[    0.342538] pci 0000:03:00.0: reg 10: [mem 0xd3500000-0xd3501fff 64bit]
[    0.342766] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.342812] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.344376] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.344394] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.344477] pci 0000:04:00.0: [197b:2392] type 00 class 0x088000
[    0.344504] pci 0000:04:00.0: reg 10: [mem 0xd3403000-0xd34030ff]
[    0.344762] pci 0000:04:00.0: System wakeup disabled by ACPI
[    0.344811] pci 0000:04:00.2: [197b:2391] type 00 class 0x080501
[    0.344839] pci 0000:04:00.2: reg 10: [mem 0xd3402000-0xd34020ff]
[    0.345116] pci 0000:04:00.3: [197b:2393] type 00 class 0x088000
[    0.345144] pci 0000:04:00.3: reg 10: [mem 0xd3401000-0xd34010ff]
[    0.345426] pci 0000:04:00.4: [197b:2394] type 00 class 0x088000
[    0.345453] pci 0000:04:00.4: reg 10: [mem 0xd3400000-0xd34000ff]
[    0.347365] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.347380] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.347417] ACPI _OSC control for PCIe not granted, disabling ASPM
[    0.388873] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.388924] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.388971] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.389018] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.389064] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.389111] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.389157] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
[    0.389203] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.389423] ACPI: Enabled 4 GPEs in block 00 to 3F
[    0.389430] acpi root: \_SB_.PCI0 notify handler is installed
[    0.389489] Found 1 acpi root devices
[    0.389518] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.389643] ACPI: No dock devices found.
[    0.389693] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.389699] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
[    0.389702] vgaarb: loaded
[    0.389704] vgaarb: bridge control possible 0000:01:00.0
[    0.389706] vgaarb: no bridge control possible 0000:00:02.0
[    0.389760] SCSI subsystem initialized
[    0.389763] ACPI: bus type ATA registered
[    0.389787] libata version 3.00 loaded.
[    0.389805] ACPI: bus type USB registered
[    0.389817] usbcore: registered new interface driver usbfs
[    0.389824] usbcore: registered new interface driver hub
[    0.389841] usbcore: registered new device driver usb
[    0.389879] PCI: Using ACPI for IRQ routing
[    0.391407] PCI: pci_cache_line_size set to 64 bytes
[    0.391520] e820: reserve RAM buffer [mem 0x00088000-0x0008ffff]
[    0.391522] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.391523] e820: reserve RAM buffer [mem 0xb3cdd018-0xb3ffffff]
[    0.391524] e820: reserve RAM buffer [mem 0xb3cee018-0xb3ffffff]
[    0.391525] e820: reserve RAM buffer [mem 0xb3fed000-0xb3ffffff]
[    0.391526] e820: reserve RAM buffer [mem 0xb4db0000-0xb7ffffff]
[    0.391528] e820: reserve RAM buffer [mem 0xba7bf000-0xbbffffff]
[    0.391529] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.391530] e820: reserve RAM buffer [mem 0x23f600000-0x23fffffff]
[    0.391595] NetLabel: Initializing
[    0.391597] NetLabel:  domain hash size = 128
[    0.391599] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.391607] NetLabel:  unlabeled traffic allowed by default
[    0.391648] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.391654] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.393671] Switching to clocksource hpet
[    0.397822] pnp: PnP ACPI init
[    0.397834] ACPI: bus type PNP registered
[    0.397860] pnp 00:00: [dma 4]
[    0.397877] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.397894] pnp 00:01: Plug and Play ACPI device, IDs INT0800 (active)
[    0.397975] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
[    0.397998] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.398032] system 00:04: [io  0x0680-0x069f] has been reserved
[    0.398035] system 00:04: [io  0x1100-0x110f] has been reserved
[    0.398038] system 00:04: [io  0xffff] has been reserved
[    0.398041] system 00:04: [io  0xffff] has been reserved
[    0.398044] system 00:04: [io  0x0400-0x0453] has been reserved
[    0.398047] system 00:04: [io  0x0458-0x047f] has been reserved
[    0.398049] system 00:04: [io  0x0500-0x057f] has been reserved
[    0.398052] system 00:04: [io  0x164e-0x164f] has been reserved
[    0.398055] system 00:04: [io  0xfd60-0xfd63] has been reserved
[    0.398059] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.398077] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.398115] system 00:06: [io  0x0454-0x0457] has been reserved
[    0.398119] system 00:06: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.398142] pnp 00:07: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.398197] pnp 00:08: Plug and Play ACPI device, IDs SYN073d SYN0700 SYN0002 PNP0f13 (active)
[    0.438884] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.438890] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.438893] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.438896] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.438899] system 00:09: [mem 0xf0000000-0xf3ffffff] has been reserved
[    0.438902] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.438905] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.438908] system 00:09: [mem 0xff000000-0xff000fff] has been reserved
[    0.438912] system 00:09: [mem 0xff010000-0xffffffff] could not be reserved
[    0.438915] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.438918] system 00:09: [mem 0xbfa00000-0xbfa00fff] has been reserved
[    0.438922] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.439236] system 00:0a: [mem 0x20000000-0x201fffff] has been reserved
[    0.439239] system 00:0a: [mem 0x40004000-0x40004fff] has been reserved
[    0.439243] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.439259] pnp: PnP ACPI: found 11 devices
[    0.439261] ACPI: bus type PNP unregistered
[    0.445457] pci 0000:01:00.0: no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
[    0.445494] pci 0000:01:00.0: BAR 6: can't assign mem pref (size 0x80000)
[    0.445497] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.445501] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.445504] pci 0000:00:01.0:   bridge window [mem 0xd2000000-0xd2ffffff]
[    0.445508] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.445513] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.445517] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.445523] pci 0000:00:1c.0:   bridge window [mem 0xd3600000-0xd36fffff]
[    0.445533] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.445539] pci 0000:00:1c.1:   bridge window [mem 0xd3500000-0xd35fffff]
[    0.445549] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.445556] pci 0000:00:1c.3:   bridge window [mem 0xd3400000-0xd34fffff]
[    0.445721] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.445723] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.445724] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.445726] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff]
[    0.445735] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.445736] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd2ffffff]
[    0.445738] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.445740] pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
[    0.445741] pci_bus 0000:02: resource 1 [mem 0xd3600000-0xd36fffff]
[    0.445743] pci_bus 0000:03: resource 1 [mem 0xd3500000-0xd35fffff]
[    0.445744] pci_bus 0000:04: resource 1 [mem 0xd3400000-0xd34fffff]
[    0.445779] NET: Registered protocol family 2
[    0.445969] TCP established hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.446152] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.446258] TCP: Hash tables configured (established 65536 bind 65536)
[    0.446274] TCP: reno registered
[    0.446287] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.446313] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.446379] NET: Registered protocol family 1
[    0.446391] pci 0000:00:02.0: Boot video device
[    1.547686] pci 0000:00:1a.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.648622] pci 0000:00:1d.0: EHCI: BIOS handoff failed (BIOS bug?) 01010001
[    2.648834] PCI: CLS 64 bytes, default 64
[    2.648872] Unpacking initramfs...
[    3.158799] Freeing initrd memory: 31520k freed
[    3.162706] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    3.162714] software IO TLB [mem 0xaf1c0000-0xb31c0000] (64MB) mapped at [ffff8800af1c0000-ffff8800b31bffff]
[    3.162764] Simple Boot Flag at 0x44 set to 0x1
[    3.165469] alg: No test for __gcm-aes-aesni (__driver-gcm-aes-aesni)
[    3.165696] Initialise module verification
[    3.165729] audit: initializing netlink socket (disabled)
[    3.165739] type=2000 audit(1363293659.114:1): initialized
[    3.189562] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    3.190752] VFS: Disk quotas dquot_6.5.2
[    3.190788] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    3.191138] msgmni has been set to 15696
[    3.191187] SELinux:  Registering netfilter hooks
[    3.191756] alg: No test for stdrng (krng)
[    3.191764] NET: Registered protocol family 38
[    3.191768] Key type asymmetric registered
[    3.191770] Asymmetric key parser 'x509' registered
[    3.191798] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    3.191824] io scheduler noop registered
[    3.191826] io scheduler deadline registered
[    3.191834] io scheduler cfq registered (default)
[    3.191925] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    3.192102] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    3.192115] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    3.192117] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    3.192364] efifb: probing for efifb
[    3.193489] efifb: framebuffer at 0xe0000000, mapped to 0xffffc90009480000, using 8100k, total 8100k
[    3.193493] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    3.193495] efifb: scrolling: redraw
[    3.193497] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    3.197540] Console: switching to colour frame buffer device 240x67
[    3.201378] fb0: EFI VGA frame buffer device
[    3.201398] intel_idle: MWAIT substates: 0x21120
[    3.201399] intel_idle: v0.4 model 0x3A
[    3.201400] intel_idle: lapic_timer_reliable_states 0xffffffff
[    3.201485] ACPI: AC Adapter [ACAD] (on-line)
[    3.201576] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0C:00/input/input0
[    3.201612] ACPI: Power Button [PWRB]
[    3.201650] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/PNP0C0E:00/input/input1
[    3.201684] ACPI: Sleep Button [SLPB]
[    3.201733] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    3.201780] ACPI: Lid Switch [LID0]
[    3.201818] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    3.201844] ACPI: Power Button [PWRF]
[    3.201921] ACPI: Requesting acpi_cpufreq
[    3.247150] thermal LNXTHERM:00: registered as thermal_zone0
[    3.247173] ACPI: Thermal Zone [TZ00] (59 C)
[    3.247212] GHES: HEST is not enabled!
[    3.247281] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    3.289296] ACPI: Battery Slot [BAT1] (battery present)
[    3.289419] Non-volatile memory driver v1.3
[    3.289437] Linux agpgart interface v0.103
[    3.290046] loop: module loaded
[    3.290101] ahci 0000:00:1f.2: version 3.0
[    3.290196] ahci 0000:00:1f.2: irq 41 for MSI/MSI-X
[    3.290223] ahci: SSS flag set, parallel bus scan disabled
[    3.301188] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[    3.301218] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst 
[    3.301248] ahci 0000:00:1f.2: setting latency timer to 64
[    3.305456] scsi0 : ahci
[    3.305528] scsi1 : ahci
[    3.305584] scsi2 : ahci
[    3.305639] scsi3 : ahci
[    3.305694] scsi4 : ahci
[    3.305748] scsi5 : ahci
[    3.305783] ata1: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717100 irq 41
[    3.305811] ata2: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717180 irq 41
[    3.305837] ata3: SATA max UDMA/133 abar m2048@0xd3717000 port 0xd3717200 irq 41
[    3.305863] ata4: DUMMY
[    3.305873] ata5: DUMMY
[    3.305883] ata6: DUMMY
[    3.305945] libphy: Fixed MDIO Bus: probed
[    3.306003] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.306027] ehci-pci: EHCI PCI platform driver
[    3.307146] ehci-pci 0000:00:1a.0: setting latency timer to 64
[    3.307150] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.308236] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.309299] ehci-pci 0000:00:1a.0: debug port 2
[    3.314252] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.314265] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd3719000
[    3.321187] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.322234] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.323275] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.324320] usb usb1: Product: EHCI Host Controller
[    3.325365] usb usb1: Manufacturer: Linux 3.9.0-rc2intel-night-acpi-revert+ ehci_hcd
[    3.326421] usb usb1: SerialNumber: 0000:00:1a.0
[    3.327548] hub 1-0:1.0: USB hub found
[    3.328587] hub 1-0:1.0: 2 ports detected
[    3.329733] ehci-pci 0000:00:1d.0: setting latency timer to 64
[    3.329737] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.330818] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.331881] ehci-pci 0000:00:1d.0: debug port 2
[    3.336825] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.336838] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd3718000
[    3.343206] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.344254] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.345297] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.346339] usb usb2: Product: EHCI Host Controller
[    3.347371] usb usb2: Manufacturer: Linux 3.9.0-rc2intel-night-acpi-revert+ ehci_hcd
[    3.348411] usb usb2: SerialNumber: 0000:00:1d.0
[    3.349518] hub 2-0:1.0: USB hub found
[    3.350559] hub 2-0:1.0: 2 ports detected
[    3.351651] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.352696] uhci_hcd: USB Universal Host Controller Interface driver
[    3.353810] xhci_hcd 0000:00:14.0: setting latency timer to 64
[    3.353814] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.354885] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.355996] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    3.356009] xhci_hcd 0000:00:14.0: irq 21, io mem 0xd3700000
[    3.357066] xhci_hcd 0000:00:14.0: irq 42 for MSI/MSI-X
[    3.357108] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    3.358113] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.359114] usb usb3: Product: xHCI Host Controller
[    3.360107] usb usb3: Manufacturer: Linux 3.9.0-rc2intel-night-acpi-revert+ xhci_hcd
[    3.361105] usb usb3: SerialNumber: 0000:00:14.0
[    3.362155] xHCI xhci_add_endpoint called for root hub
[    3.362157] xHCI xhci_check_bandwidth called for root hub
[    3.362173] hub 3-0:1.0: USB hub found
[    3.363175] hub 3-0:1.0: 4 ports detected
[    3.364408] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.365433] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    3.366456] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    3.367456] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.368458] usb usb4: Product: xHCI Host Controller
[    3.369454] usb usb4: Manufacturer: Linux 3.9.0-rc2intel-night-acpi-revert+ xhci_hcd
[    3.370467] usb usb4: SerialNumber: 0000:00:14.0
[    3.371532] xHCI xhci_add_endpoint called for root hub
[    3.371534] xHCI xhci_check_bandwidth called for root hub
[    3.371550] hub 4-0:1.0: USB hub found
[    3.372564] hub 4-0:1.0: 4 ports detected
[    3.380257] usbcore: registered new interface driver usbserial
[    3.381265] usbcore: registered new interface driver usbserial_generic
[    3.382251] usbserial: USB Serial support registered for generic
[    3.383270] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS1] at 0x60,0x64 irq 1,12
[    3.422450] serio: i8042 KBD port at 0x60,0x64 irq 1
[    3.423491] serio: i8042 AUX port at 0x60,0x64 irq 12
[    3.424582] mousedev: PS/2 mouse device common for all mice
[    3.425790] rtc_cmos 00:05: RTC can wake from S4
[    3.426964] rtc_cmos 00:05: rtc core: registered rtc_cmos as rtc0
[    3.428041] rtc_cmos 00:05: alarms up to one month, 242 bytes nvram, hpet irqs
[    3.429153] device-mapper: uevent: version 1.0.3
[    3.430263] device-mapper: ioctl: 4.24.0-ioctl (2013-01-15) initialised: dm-devel@redhat.com
[    3.431488] cpuidle: using governor ladder
[    3.432759] cpuidle: using governor menu
[    3.434099] EFI Variables Facility v0.08 2004-May-17
[    3.445588] hidraw: raw HID events driver (C) Jiri Kosina
[    3.446712] usbcore: registered new interface driver usbhid
[    3.447888] usbhid: USB HID core driver
[    3.448975] drop_monitor: Initializing network drop monitor service
[    3.450140] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.451342] TCP: cubic registered
[    3.452427] Initializing XFRM netlink socket
[    3.453580] NET: Registered protocol family 10
[    3.454773] mip6: Mobile IPv6
[    3.455945] NET: Registered protocol family 17
[    3.457258] PM: Hibernation image not present or could not be loaded.
[    3.457259] Loading module verification certificates
[    3.458142] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.460944] MODSIGN: Loaded cert 'Magrathea: Glacier signing key: b848057b753beab17f05b3dca255f65e59259035'
[    3.462182] registered taskstats version 1
[    3.464104]   Magic number: 5:288:700
[    3.613637] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.616180] ata1.00: ATA-9: SanDisk SSD U100 16GB, 10.52.01, max UDMA/133
[    3.618343] ata1.00: 31277232 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    3.621718] ata1.00: configured for UDMA/133
[    3.625477] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SSD U100 10.5 PQ: 0 ANSI: 5
[    3.627978] sd 0:0:0:0: [sda] 31277232 512-byte logical blocks: (16.0 GB/14.9 GiB)
[    3.628489] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.631523] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    3.637088] sd 0:0:0:0: [sda] Write Protect is off
[    3.637926] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.637936] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.646625]  sda: sda1
[    3.649345] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.746024] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    3.748266] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.750953] hub 1-1:1.0: USB hub found
[    3.753244] hub 1-1:1.0: 6 ports detected
[    3.858701] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    3.933828] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    3.936390] ata2.00: ATA-8: PLEXTOR PX-256M3, 1.05, max UDMA/133
[    3.938597] ata2.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
[    3.941105] ata2.00: configured for UDMA/133
[    3.943595] scsi 1:0:0:0: Direct-Access     ATA      PLEXTOR PX-256M3 1.05 PQ: 0 ANSI: 5
[    3.946105] sd 1:0:0:0: [sdb] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[    3.946184] sd 1:0:0:0: Attached scsi generic sg1 type 0
[    3.950599] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    3.952981] sd 1:0:0:0: [sdb] Write Protect is off
[    3.953927] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    3.953941] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.956494]  sdb: sdb1 sdb2 sdb3 sdb4 sdb5 sdb6 sdb7 sdb8 sdb9 sdb10
[    3.957860] sd 1:0:0:0: [sdb] Attached SCSI disk
[    3.975344] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    3.977628] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.980387] hub 2-1:1.0: USB hub found
[    3.982865] hub 2-1:1.0: 6 ports detected
[    4.060016] usb 1-1.6: new full-speed USB device number 3 using ehci-pci
[    4.141084] usb 1-1.6: New USB device found, idVendor=04ca, idProduct=2003
[    4.144244] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.146481] usb 1-1.6: Product: BCM20702A0
[    4.148720] usb 1-1.6: Manufacturer: Broadcom Corp
[    4.151469] usb 1-1.6: SerialNumber: 20689D9D9640
[    4.164996] tsc: Refined TSC clocksource calibration: 2394.560 MHz
[    4.165922] Switching to clocksource tsc
[    4.253070] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    4.259065] ata3.00: ATAPI: HL-DT-ST BD-RE BT20N, KV01, max UDMA/133
[    4.260168] usb 2-1.6: new high-speed USB device number 3 using ehci-pci
[    4.269499] ata3.00: configured for UDMA/133
[    4.274024] scsi 2:0:0:0: CD-ROM            HL-DT-ST BD-RE BT20N      KV01 PQ: 0 ANSI: 5
[    4.280212] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.281150] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.282233] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    4.282367] sr 2:0:0:0: Attached scsi generic sg2 type 5
[    4.285958] Freeing unused kernel memory: 1348k freed
[    4.287609] Write protecting the kernel read-only data: 12288k
[    4.293389] Freeing unused kernel memory: 1696k freed
[    4.301004] Freeing unused kernel memory: 1348k freed
[    4.310544] systemd[1]: systemd 197 running in system mode. (+PAM +LIBWRAP +AUDIT +SELINUX +IMA +SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ)
[    4.313079] systemd[1]: Running in initial RAM disk.
[    4.318647] systemd[1]: Set hostname to <ideapad.lan>.
[    4.323676] systemd[1]: Starting udev Kernel Socket.
[    4.325624] systemd[1]: Listening on udev Kernel Socket.
[    4.326577] systemd[1]: Starting udev Control Socket.
[    4.328506] systemd[1]: Listening on udev Control Socket.
[    4.329432] systemd[1]: Starting Journal Socket.
[    4.331391] systemd[1]: Listening on Journal Socket.
[    4.332299] systemd[1]: Starting dracut cmdline hook...
[    4.334520] systemd[1]: Started Load Kernel Modules.
[    4.335613] systemd[1]: Starting Journal Service...
[    4.339360] systemd[1]: Started Journal Service.
[    4.340781] systemd[1]: Starting Sockets.
[    4.342584] systemd[1]: Reached target Sockets.
[    4.343441] systemd[1]: Starting Swap.
[    4.345527] systemd[1]: Reached target Swap.
[    4.346366] systemd[1]: Starting Local File Systems.
[    4.348099] systemd[1]: Reached target Local File Systems.
[    4.354723] usb 2-1.6: New USB device found, idVendor=04f2, idProduct=b2f1
[    4.356010] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.356932] usb 2-1.6: Product: Lenovo EasyCamera
[    4.357760] usb 2-1.6: Manufacturer: Vimicro Corp.
[    4.388409] systemd-udevd[164]: starting version 197
[    4.462884] sdhci: Secure Digital Host Controller Interface driver
[    4.463667] sdhci: Copyright(c) Pierre Ossman
[    4.469848] sdhci-pci 0000:04:00.0: SDHCI controller found [197b:2392] (rev 30)
[    4.493186] mmc0: SDHCI controller on PCI [0000:04:00.0] using DMA
[    4.493979] sdhci-pci 0000:04:00.2: SDHCI controller found [197b:2391] (rev 30)
[    4.494789] sdhci-pci 0000:04:00.2: Refusing to bind to secondary interface.
[    4.506022] [drm] Initialized drm 1.1.0 20060810
[    4.538961] wmi: Mapper loaded
[    4.608727] [drm:i915_dump_device_info], i915 device info: gen=7, pciid=0x0166 flags=is_mobile,need_gfx_hws,is_ivybridge,has_force_wake,has_hotplug,has_bsd_ring,has_blt_ring,has_llc,
[    4.609098] [drm] Memory usable by graphics device = 2048M
[    4.610345] [drm:i915_gem_gtt_init], GMADR size = 256M
[    4.610347] [drm:i915_gem_gtt_init], GTT stolen size = 0M
[    4.610349] checking generic (e0000000 7e9000) vs hw (e0000000 10000000)
[    4.610351] fb: conflicting fb hw usage inteldrmfb vs EFI VGA - removing generic driver
[    4.611784] Console: switching to colour dummy device 80x25
[    4.611887] i915 0000:00:02.0: setting latency timer to 64
[    4.651885] [drm:intel_detect_pch], Found PatherPoint PCH
[    4.651981] [drm:intel_opregion_setup], graphic opregion physical addr: 0xbafb3018
[    4.651993] [drm:intel_opregion_setup], Public ACPI methods supported
[    4.651994] [drm:intel_opregion_setup], SWSCI supported
[    4.651995] [drm:intel_opregion_setup], ASLE supported
[    4.652024] i915 0000:00:02.0: irq 43 for MSI/MSI-X
[    4.652030] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    4.652033] [drm] Driver supports precise vblank timestamp query.
[    4.652035] [drm:init_vbt_defaults], Set default to SSC at 100MHz
[    4.652037] [drm:intel_parse_bios], Using VBT from OpRegion: $VBT SNB/IVB-MOBILE d
[    4.652038] [drm:parse_general_features], BDB_GENERAL_FEATURES int_tv_support 0 int_crt_support 1 lvds_use_ssc 1 lvds_ssc_freq 120 display_clock_mode 0
[    4.652039] [drm:parse_general_definitions], crt_ddc_bus_pin: 2
[    4.652042] [drm:parse_lfp_panel_data], Found panel mode in BIOS VBT tables:
[    4.652043] [drm:drm_mode_debug_printmodeline], Modeline 0:"1920x1080" 0 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x8 0xa
[    4.652045] [drm:parse_lfp_panel_data], VBT initial LVDS value 30033c
[    4.652046] [drm:parse_sdvo_panel_data], Found SDVO panel mode in BIOS VBT tables:
[    4.652047] [drm:drm_mode_debug_printmodeline], Modeline 0:"1600x1200" 0 162000 1600 1664 1856 2160 1200 1201 1204 1250 0x8 0xa
[    4.652049] [drm:parse_sdvo_device_mapping], No SDVO device info is found in VBT
[    4.652110] [drm:intel_dsm_detect], VGA switcheroo: detected DSM switching method \_SB_.PCI0.PEG0.PEGP handle
[    4.652113] [drm:i915_gem_init_stolen], found 0 bytes of stolen memory at bba00000
[    4.652135] [drm:intel_modeset_init], 3 display pipes available.
[    4.652145] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    4.652148] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
[    4.665150] [drm:intel_lvds_init], using preferred mode from EDID: 
[    4.665152] [drm:drm_mode_debug_printmodeline], 
[    4.665155] Modeline 12:"1920x1080" 0 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.665160] [drm:intel_lvds_init], detected dual-link lvds configuration
[    4.665191] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    4.665209] [drm:intel_panel_get_backlight], get backlight PWM = 4648
[    4.665232] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus dpb. force bit now 1
[    4.665635] [drm:intel_sdvo_read_byte], i2c transfer returned -6
[    4.665636] [drm:intel_sdvo_init], No SDVO device found on SDVOB
[    4.667639] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus dpb. force bit now 0
[    4.667687] [drm:intel_dp_i2c_init], i2c_init DPDDC-B
[    4.670128] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7145003f
[    4.670132] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    4.672552] [drm:intel_dp_aux_ch], dp_aux_ch timeout status 0x7145003f
[    4.676169] [drm:intel_dp_i2c_aux_ch], aux_ch failed -110
[    4.676202] [drm:ironlake_init_pch_refclk], has_panel 1 has_lvds 1 has_pch_edp 0 has_cpu_edp 0 has_ck505 0
[    4.676205] [drm:ironlake_init_pch_refclk], Using SSC on panel
[    4.676616] [drm:i915_gem_setup_global_gtt], clearing unused GTT space: [0, 7fdff000]
[    4.679049] [drm:init_status_page], render ring hws offset: 0x00000000
[    4.679373] [drm:init_pipe_control], render ring pipe control offset: 0x00021000
[    4.679382] [drm:init_status_page], bsd ring hws offset: 0x00022000
[    4.679512] [drm:init_status_page], blitter ring hws offset: 0x00043000
[    4.679636] [drm:create_default_context], Default HW context loaded
[    4.679637] [drm:i915_gem_context_init], HW context support initialized
[    4.679670] [drm:intel_modeset_setup_hw_state], [CRTC:3] hw state readout: enabled
[    4.679672] [drm:intel_modeset_setup_hw_state], [CRTC:5] hw state readout: disabled
[    4.679673] [drm:intel_modeset_setup_hw_state], [CRTC:7] hw state readout: disabled
[    4.679677] [drm:intel_modeset_setup_hw_state], [ENCODER:10:LVDS-10] hw state readout: enabled, pipe=0
[    4.679681] [drm:intel_modeset_setup_hw_state], [ENCODER:16:DAC-16] hw state readout: disabled, pipe=0
[    4.679684] [drm:intel_modeset_setup_hw_state], [ENCODER:17:TMDS-17] hw state readout: disabled, pipe=0
[    4.679688] [drm:intel_modeset_setup_hw_state], [ENCODER:21:TMDS-21] hw state readout: disabled, pipe=0
[    4.679692] [drm:intel_modeset_setup_hw_state], [CONNECTOR:9:LVDS-1] hw state readout: enabled
[    4.679695] [drm:intel_modeset_setup_hw_state], [CONNECTOR:15:VGA-1] hw state readout: disabled
[    4.679699] [drm:intel_modeset_setup_hw_state], [CONNECTOR:18:HDMI-A-1] hw state readout: disabled
[    4.679702] [drm:intel_modeset_setup_hw_state], [CONNECTOR:22:DP-1] hw state readout: disabled
[    4.679707] [drm:intel_connector_check_state], [CONNECTOR:9:LVDS-1]
[    4.679712] [drm:intel_modeset_check_state], [ENCODER:10:LVDS-10]
[    4.679716] [drm:intel_modeset_check_state], [ENCODER:16:DAC-16]
[    4.679719] [drm:intel_modeset_check_state], [ENCODER:17:TMDS-17]
[    4.679722] [drm:intel_modeset_check_state], [ENCODER:21:TMDS-21]
[    4.679725] [drm:intel_modeset_check_state], [CRTC:3]
[    4.679727] [drm:intel_modeset_check_state], [CRTC:5]
[    4.679729] [drm:intel_modeset_check_state], [CRTC:7]
[    4.679733] [drm:intel_crt_reset], pch crt adpa set to 0xf40000
[    4.679740] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    4.679746] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    4.679748] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.679751] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    4.679755] [drm:intel_ironlake_crt_detect_hotplug], trigger hotplug detect cycle: adpa=0xf40000
[    4.688392] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    4.688394] [drm:intel_crt_detect], CRT not detected via hotplug
[    4.688552] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    4.688555] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    4.688557] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    4.688558] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    4.688921] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    4.688922] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    4.688924] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    4.688926] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    4.688928] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    4.689084] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    4.689086] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    4.689088] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    4.689090] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    4.689093] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    4.689095] [drm:drm_setup_crtcs], 
[    4.689097] [drm:drm_enable_connectors], connector 9 enabled? yes
[    4.689098] [drm:drm_enable_connectors], connector 15 enabled? no
[    4.689100] [drm:drm_enable_connectors], connector 18 enabled? no
[    4.689101] [drm:drm_enable_connectors], connector 22 enabled? no
[    4.689102] [drm:drm_target_preferred], looking for cmdline mode on connector 9
[    4.689104] [drm:drm_target_preferred], looking for preferred mode on connector 9
[    4.689105] [drm:drm_target_preferred], found mode 1920x1080
[    4.689107] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config
[    4.689109] [drm:drm_setup_crtcs], desired mode 1920x1080 set on crtc 3
[    4.689112] [drm:i915_gem_object_create_stolen], creating stolen object: size=7e9000
[    4.695790] [drm:intelfb_create], allocated 1920x1080 fb: 0x00073000, bo ffff88022b7cec00
[    4.695881] fbcon: inteldrmfb (fb0) is primary device
[    4.695915] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    4.695917] [drm:intel_set_config_compute_mode_changes], crtc has no fb, full mode set
[    4.695918] [drm:intel_set_config_compute_mode_changes], modes are different, full mode set
[    4.695921] [drm:drm_mode_debug_printmodeline], Modeline 0:"" 0 0 0 0 0 0 0 0 0 0 0x0 0x0
[    4.695924] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.695926] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    4.695927] [drm:intel_crtc_set_config], attempting to set mode from userspace
[    4.695929] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.695931] [drm:intel_set_mode], set mode pipe masks: modeset: 1, prepare: 1, disable: 0
[    4.695934] [drm:intel_modeset_adjusted_mode], [CRTC:3]
[    4.695935] [drm:intel_panel_actually_set_backlight], set backlight PWM = 0
[    4.834578] mmc0: new SDHC card at address e624
[    4.839943] mmcblk0: mmc0:e624 SU04G 3.69 GiB 
[    4.855642]  mmcblk0: p1
[    4.872851] VGA switcheroo: detected Optimus DSM method \_SB_.PCI0.PEG0.PEGP handle
[    4.988880] [drm:ivb_modeset_global_resources], disabling fdi C rx
[    4.988888] [drm:ironlake_get_refclk], using SSC reference clock of 120 MHz
[    4.988924] [drm:intel_choose_pipe_bpp_dither], clamping display bpc (was -1) to LVDS (6)
[    4.988926] [drm:intel_choose_pipe_bpp_dither], setting pipe bpc to 8 (max display bpc 6)
[    4.988929] [drm:ironlake_crtc_mode_set], Mode for pipe 0:
[    4.988934] [drm:drm_mode_debug_printmodeline], Modeline 12:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    4.988936] [drm:intel_get_pch_pll], CRTC:3 allocated PCH PLL c6014
[    4.988937] [drm:intel_get_pch_pll], using pll 0 for pipe 0
[    4.988939] [drm:intel_get_pch_pll], switching PLL c6014 off
[    4.989253] [drm:ironlake_check_fdi_lanes], checking fdi config on pipe 0, lanes 2
[    5.039712] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.039728] [drm:ironlake_update_plane], Writing base 00073000 00000000 0 0 7680
[    5.039736] [drm:intel_crtc_mode_set], [ENCODER:10:LVDS-10] set [MODE:12:1920x1080]
[    5.039741] [drm:ivybridge_update_wm], FIFO watermarks For pipe A - plane 13, cursor: 6
[    5.039743] [drm:ironlake_check_srwm], watermark 1: display plane 20, fbc lines 3, cursor 6
[    5.039746] [drm:ironlake_check_srwm], watermark 2: display plane 72, fbc lines 3, cursor 6
[    5.039748] [drm:ironlake_check_srwm], watermark 3: display plane 141, fbc lines 4, cursor 10
[    5.039751] [drm:ironlake_check_srwm], watermark 3: display plane 279, fbc lines 5, cursor 14
[    5.091717] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.143799] [drm:ironlake_wait_for_vblank], vblank wait timed out
[    5.143962] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR before link train 0x700
[    5.144621] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x700
[    5.144624] [drm:ivb_manual_fdi_link_train], FDI train 1 done, level 0.
[    5.145282] [drm:ivb_manual_fdi_link_train], FDI_RX_IIR 0x600
[    5.145285] [drm:ivb_manual_fdi_link_train], FDI train 2 done, level 0.
[    5.145286] [drm:ivb_manual_fdi_link_train], FDI train done.
[    5.145289] [drm:ironlake_enable_pch_pll], enable PCH PLL c6014 (active 0, on? 0)for crtc 3
[    5.145292] [drm:ironlake_enable_pch_pll], enabling PCH PLL c6014
[    5.148317] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x123c00, board id: 1800, fw id: 1087391
[    5.262866] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[    5.416054] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.416061] [drm:intel_panel_get_backlight], get backlight PWM = 0
[    5.416063] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.432095] [drm:intel_connector_check_state], [CONNECTOR:9:LVDS-1]
[    5.432104] [drm:intel_modeset_check_state], [ENCODER:10:LVDS-10]
[    5.432108] [drm:intel_modeset_check_state], [ENCODER:16:DAC-16]
[    5.432112] [drm:intel_modeset_check_state], [ENCODER:17:TMDS-17]
[    5.432115] [drm:intel_modeset_check_state], [ENCODER:21:TMDS-21]
[    5.432118] [drm:intel_modeset_check_state], [CRTC:3]
[    5.432120] [drm:intel_modeset_check_state], [CRTC:5]
[    5.432122] [drm:intel_modeset_check_state], [CRTC:7]
[    5.432127] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    5.432132] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.432135] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    5.432137] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.432145] Console: switching to colour frame buffer device 240x67
[    5.432160] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    5.432164] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    5.440547] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    5.440549] i915 0000:00:02.0: registered panic notifier
[    5.440606] nouveau 0000:01:00.0: enabling device (0006 -> 0007)
[    5.441057] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    5.453203] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.453217] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.453222] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.454220] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.454229] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.454233] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.454453] acpi device:3b: registered as cooling_device8
[    5.454916] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    5.455118] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:39/LNXVIDEO:00/input/input6
[    5.463935] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.463949] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.463955] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.464948] [drm:asle_set_backlight], bclp = 0x800000ff
[    5.464957] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    5.464961] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    5.465187] acpi device:47: registered as cooling_device9
[    5.465557] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    5.465690] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input7
[    5.465903] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
[    5.466795] nouveau  [  DEVICE][0000:01:00.0] BOOT0  : 0x0e7140a2
[    5.466849] nouveau  [  DEVICE][0000:01:00.0] Chipset: GK107 (NVE7)
[    5.466893] nouveau  [  DEVICE][0000:01:00.0] Family : NVE0
[    5.471664] nouveau  [   VBIOS][0000:01:00.0] checking PRAMIN for image...
[    5.519890] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.519970] nouveau  [   VBIOS][0000:01:00.0] checking PROM for image...
[    5.520126] nouveau  [   VBIOS][0000:01:00.0] ... signature not found
[    5.520160] nouveau  [   VBIOS][0000:01:00.0] checking ACPI for image...
[    5.756723] [drm:intel_enable_rc6], RC6 and deep RC6 enabled
[    5.756731] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
[    6.629388] nouveau  [   VBIOS][0000:01:00.0] ... appears to be valid
[    6.629446] nouveau  [   VBIOS][0000:01:00.0] using image from ACPI
[    6.629770] nouveau  [   VBIOS][0000:01:00.0] BIT signature found
[    6.629816] nouveau  [   VBIOS][0000:01:00.0] version 80.07.3c.00.16
[    6.630275] nouveau  [ DEVINIT][0000:01:00.0] adaptor not initialised
[    6.630328] nouveau  [   VBIOS][0000:01:00.0] running init tables
[    6.928688] nouveau  [     PFB][0000:01:00.0] RAM type: GDDR5
[    6.928706] nouveau  [     PFB][0000:01:00.0] RAM size: 2048 MiB
[    6.928722] nouveau  [     PFB][0000:01:00.0]    ZCOMP: 0 tags
[    6.957670] nouveau  [  PTHERM][0000:01:00.0] FAN control: none / external
[    6.957694] nouveau  [  PTHERM][0000:01:00.0] Thermal management: disabled
[    6.957715] nouveau  [  PTHERM][0000:01:00.0] programmed thresholds [ 90(3), 95(3), 105(5), 135(5) ]
[    6.983426] vga_switcheroo: enabled
[    6.983598] [TTM] Zone  kernel: Available graphics memory: 4020438 kiB
[    6.983620] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    6.984628] [TTM] Initializing pool allocator
[    6.985539] [TTM] Initializing DMA pool allocator
[    6.990422] nouveau  [     DRM] VRAM: 2048 MiB
[    6.991323] nouveau  [     DRM] GART: 512 MiB
[    6.992230] nouveau  [     DRM] Pointer to BIT loadval table invalid
[    6.993112] nouveau  [     DRM] TMDS table version 2.0
[    6.994011] nouveau  [     DRM] DCB version 4.0
[    6.994905] nouveau  [     DRM] DCB outp 00: 02001300 00000000
[    6.995791] nouveau  [     DRM] DCB conn 01: 00000100
[    6.998025] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
[    6.998960] [drm] No driver support for vblank timestamp query.
[    6.999880] nouveau  [     DRM] ACPI backlight interface available, not registering our own
[    7.000795] nouveau W[     DRM] voltage table 0x50 unknown
[    7.001695] nouveau  [     DRM] 3 available performance level(s)
[    7.002581] nouveau  [     DRM] 1: core 202MHz shader 405MHz memory 405MHz voltage 370mV
[    7.003473] nouveau  [     DRM] 2: core 400MHz shader 800MHz memory 1080MHz voltage 370mV
[    7.004368] nouveau  [     DRM] 4: core 1250MHz shader 2500MHz memory 1080MHz voltage 370mV
[    7.005256] nouveau  [     DRM] c:
[    7.017100] nouveau  [     DRM] MM: using COPY for buffer copies
[    7.018234] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    7.019477] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    7.019480] nouveau 0000:01:00.0: No connectors reported connected with modes
[    7.020367] [drm:drm_setup_crtcs], 
[    7.020369] [drm:drm_enable_connectors], connector 17 enabled? no
[    7.020371] [drm:drm_setup_crtcs], picking CRTCs for 8192x8192 config
[    7.020373] [drm] Cannot find any crtc or sizes - going 1024x768
[    7.051261] nouveau  [     DRM] allocated 1024x768 fb: 0x80000, bo ffff88022a72e000
[    7.052275] nouveau 0000:01:00.0: fb1: nouveaufb frame buffer device
[    7.053192] [drm] Initialized nouveau 1.1.0 20120801 for 0000:01:00.0 on minor 1
[    7.054127] [drm:i915_driver_open], 
[    7.054145] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    7.054149] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.054151] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    7.054152] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.054153] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    7.054154] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.054169] [drm:i915_driver_open], 
[    7.054174] [drm:intel_crtc_set_config], [CRTC:3] [FB:24] #connectors=1 (x y) (0 0)
[    7.054176] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.054177] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    7.054178] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.054179] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    7.054180] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    7.054186] [drm:i915_driver_open], 
[    7.054225] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    7.054228] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    7.054236] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    7.054238] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    7.054244] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    7.054246] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    7.054249] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    7.057391] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    7.057395] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    7.057398] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    7.057400] [drm:intel_crt_detect], CRT not detected via hotplug
[    7.057561] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    7.057565] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    7.057567] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    7.057569] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    7.057935] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    7.057936] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    7.057938] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    7.057939] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    7.057943] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    7.057945] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    7.057947] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    7.057948] [drm:intel_crt_detect], CRT not detected via hotplug
[    7.058106] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    7.058110] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    7.058112] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    7.058113] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    7.058501] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    7.058503] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    7.058505] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    7.058507] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    7.058513] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    7.058515] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    7.058673] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    7.058677] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    7.058679] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    7.058685] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    7.058687] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    7.058841] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    7.058843] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    7.058844] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    7.058848] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    7.058849] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    7.058853] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    7.058854] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    7.058855] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    7.058857] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    7.058870] [drm:drm_mode_addfb], [FB:25]
[    7.067021] EXT4-fs (sdb9): INFO: recovery required on readonly filesystem
[    7.067958] EXT4-fs (sdb9): write access will be enabled during recovery
[    7.167134] EXT4-fs (sdb9): recovery complete
[    7.170291] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    7.231205] EXT4-fs (sdb9): mounted filesystem with ordered data mode. Opts: (null)
[    7.298071] systemd-journald[123]: Received SIGTERM
[    7.362344] type=1404 audit(1363293663.307:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295
[    7.402921] SELinux: 2048 avtab hash slots, 94945 rules.
[    7.422227] SELinux: 2048 avtab hash slots, 94945 rules.
[    7.507346] SELinux:  9 users, 15 roles, 4377 types, 240 bools, 1 sens, 1024 cats
[    7.507349] SELinux:  83 classes, 94945 rules
[    7.510192] SELinux:  Permission attach_queue in class tun_socket not defined in policy.
[    7.511068] SELinux: the above unknown classes and permissions will be allowed
[    7.511933] SELinux:  Completing initialization.
[    7.511934] SELinux:  Setting up existing superblocks.
[    7.511939] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    7.511942] SELinux: initialized (dev rootfs, type rootfs), uses genfs_contexts
[    7.511948] SELinux: initialized (dev bdev, type bdev), uses genfs_contexts
[    7.511952] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[    7.511956] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.511981] SELinux: initialized (dev devtmpfs, type devtmpfs), uses transition SIDs
[    7.512530] SELinux: initialized (dev sockfs, type sockfs), uses task SIDs
[    7.512533] SELinux: initialized (dev debugfs, type debugfs), uses genfs_contexts
[    7.512926] SELinux: initialized (dev pipefs, type pipefs), uses task SIDs
[    7.512928] SELinux: initialized (dev anon_inodefs, type anon_inodefs), uses genfs_contexts
[    7.512930] SELinux: initialized (dev devpts, type devpts), uses transition SIDs
[    7.512940] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    7.512944] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[    7.512948] SELinux: initialized (dev selinuxfs, type selinuxfs), uses genfs_contexts
[    7.512954] SELinux: initialized (dev sysfs, type sysfs), uses genfs_contexts
[    7.513136] SELinux: initialized (dev securityfs, type securityfs), uses genfs_contexts
[    7.513139] SELinux: initialized (dev efivarfs, type efivarfs), uses genfs_contexts
[    7.513146] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.513150] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.513203] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.513221] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.513223] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.513226] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.513234] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.513238] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.513240] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.513242] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.513243] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.513247] SELinux: initialized (dev cgroup, type cgroup), uses genfs_contexts
[    7.513252] SELinux: initialized (dev sdb9, type ext4), uses xattr
[    7.530126] type=1403 audit(1363293663.475:3): policy loaded auid=4294967295 ses=4294967295
[    7.536498] systemd[1]: Successfully loaded SELinux policy in 175ms 684us.
[    7.575667] systemd[1]: Relabelled /dev and /run in 21ms 589us.
[    7.711367] systemd-readahead[307]: Bumped block_nr parameter of 8:16 to 20480. This is a temporary hack and should be removed one day.
[    7.725139] SELinux: initialized (dev hugetlbfs, type hugetlbfs), uses transition SIDs
[    7.735299] SELinux: initialized (dev tmpfs, type tmpfs), uses transition SIDs
[    7.741589] EXT4-fs (sdb9): re-mounted. Opts: (null)
[    7.745648] systemd-udevd[316]: starting version 197
[    7.790195] SELinux: initialized (dev configfs, type configfs), uses genfs_contexts
[    7.869653] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20130117/utaddress-251)
[    7.871156] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.873935] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x15
[    7.879028] mei 0000:00:16.0: setting latency timer to 64
[    7.879089] mei 0000:00:16.0: irq 44 for MSI/MSI-X
[    7.880667] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x15
[    7.882321] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x15
[    7.883855] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x15
[    7.885195] microcode: CPU4 sig=0x306a9, pf=0x10, revision=0x15
[    7.886356] microcode: CPU5 sig=0x306a9, pf=0x10, revision=0x15
[    7.887645] microcode: CPU6 sig=0x306a9, pf=0x10, revision=0x15
[    7.888936] input: Ideapad extra buttons as /devices/platform/ideapad/input/input8
[    7.889071] microcode: CPU7 sig=0x306a9, pf=0x10, revision=0x15
[    7.889127] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    7.892931] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20130117/utaddress-251)
[    7.893732] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.894559] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20130117/utaddress-251)
[    7.895427] ACPI Warning: 0x0000000000000530-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130117/utaddress-251)
[    7.896502] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.898123] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \GPIO 1 (20130117/utaddress-251)
[    7.900060] ACPI Warning: 0x0000000000000500-0x000000000000052f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20130117/utaddress-251)
[    7.901385] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    7.902350] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    7.907841] iTCO_vendor_support: vendor-support=0
[    7.928734] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.10
[    7.930329] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
[    7.931641] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    7.932943] tun: Universal TUN/TAP device driver, 1.6
[    7.934504] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    7.971335] media: Linux media interface: v0.10
[    7.984058] cfg80211: Calling CRDA to update world regulatory domain
[    7.991195] Linux video capture interface: v2.00
[    7.999950] cfg80211: World regulatory domain updated:
[    8.000937] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    8.001867] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.002791] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.003702] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[    8.004594] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.005481] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.053000] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2f1)
[    8.055399] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/input/input9
[    8.056962] usbcore: registered new interface driver uvcvideo
[    8.058449] USB Video Class driver (1.1.1)
[    8.067002] Bluetooth: Core ver 2.16
[    8.068191] NET: Registered protocol family 31
[    8.068315] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
[    8.069265] Bluetooth: HCI device and connection manager initialized
[    8.070636] Bluetooth: HCI socket layer initialized
[    8.071572] Bluetooth: L2CAP socket layer initialized
[    8.072527] Bluetooth: SCO socket layer initialized
[    8.074903] Intel(R) Wireless WiFi driver for Linux, in-tree:d
[    8.075842] Copyright(c) 2003-2013 Intel Corporation
[    8.077001] iwlwifi 0000:03:00.0: irq 46 for MSI/MSI-X
[    8.111504] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1
[    8.124870] usbcore: registered new interface driver btusb
[    8.127858] ALSA sound/pci/hda/patch_realtek.c:394 SKU: Nid=0x1d sku_cfg=0x4015822d
[    8.127861] ALSA sound/pci/hda/patch_realtek.c:396 SKU: port_connectivity=0x1
[    8.127863] ALSA sound/pci/hda/patch_realtek.c:397 SKU: enable_pcbeep=0x1
[    8.127864] ALSA sound/pci/hda/patch_realtek.c:398 SKU: check_sum=0x00000005
[    8.127866] ALSA sound/pci/hda/patch_realtek.c:399 SKU: customization=0x00000082
[    8.127867] ALSA sound/pci/hda/patch_realtek.c:400 SKU: external_amp=0x5
[    8.127869] ALSA sound/pci/hda/patch_realtek.c:401 SKU: platform_type=0x1
[    8.127870] ALSA sound/pci/hda/patch_realtek.c:402 SKU: swap=0x0
[    8.127871] ALSA sound/pci/hda/patch_realtek.c:403 SKU: override=0x1
[    8.128087] ALSA sound/pci/hda/hda_auto_parser.c:335 autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    8.128088] ALSA sound/pci/hda/hda_auto_parser.c:339    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    8.128090] ALSA sound/pci/hda/hda_auto_parser.c:343    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    8.128090] ALSA sound/pci/hda/hda_auto_parser.c:344    mono: mono_out=0x0
[    8.128091] ALSA sound/pci/hda/hda_auto_parser.c:347    dig-out=0x1e/0x0
[    8.128092] ALSA sound/pci/hda/hda_auto_parser.c:348    inputs:
[    8.128094] ALSA sound/pci/hda/hda_auto_parser.c:352      Mic=0x18
[    8.128095] ALSA sound/pci/hda/hda_auto_parser.c:352      Internal Mic=0x12
[    8.128096] ALSA sound/pci/hda/patch_realtek.c:466 realtek: No valid SSID, checking pincfg 0x4015822d for NID 0x1d
[    8.128097] ALSA sound/pci/hda/patch_realtek.c:482 realtek: Enabling init ASM_ID=0x822d CODEC_ID=10ec0269
[    8.144719] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    8.145837] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    8.147676] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[    8.198107] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    8.199698] SELinux: initialized (dev mmcblk0p1, type vfat), uses genfs_contexts
[    8.214788] SELinux: initialized (dev sdb2, type vfat), uses genfs_contexts
[    8.219520] Adding 8044540k swap on /dev/sdb8.  Priority:-1 extents:1 across:8044540k SS
[    8.253923] EXT4-fs (sdb7): mounted filesystem with ordered data mode. Opts: (null)
[    8.255149] SELinux: initialized (dev sdb7, type ext4), uses xattr
[    8.262851] FAT-fs (sdb6): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    8.263885] SELinux: initialized (dev sdb6, type vfat), uses genfs_contexts
[    8.330190] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG enabled
[    8.331198] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[    8.332189] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[    8.333214] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TESTMODE disabled
[    8.334446] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_P2P disabled
[    8.335431] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 2200 BGN, REV=0x104
[    8.335495] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.341676] EXT4-fs (sdb10): mounted filesystem with ordered data mode. Opts: (null)
[    8.342658] SELinux: initialized (dev sdb10, type ext4), uses xattr
[    8.358197] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[    8.359472] cfg80211: Calling CRDA for country: US
[    8.363455] cfg80211: Regulatory domain changed to country: US
[    8.363456] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[    8.363457] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2700 mBm)
[    8.363458] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 1700 mBm)
[    8.363459] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.363460] cfg80211:   (5490000 KHz - 5600000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.363461] cfg80211:   (5650000 KHz - 5710000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[    8.363462] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 3000 mBm)
[    8.363472] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
[    8.416729] systemd-journald[333]: Received SIGUSR1
[    8.506374] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.506375] Bluetooth: BNEP filters: protocol multicast
[    8.506382] Bluetooth: BNEP socket layer initialized
[    8.527819] Bluetooth: RFCOMM TTY layer initialized
[    8.527827] Bluetooth: RFCOMM socket layer initialized
[    8.527828] Bluetooth: RFCOMM ver 1.11
[    8.579387] Loading iSCSI transport class v2.0-870.
[    8.602398] [drm:i915_driver_open], 
[    8.603575] iscsi: registered transport (tcp)
[    8.609882] ip6_tables: (C) 2000-2006 Netfilter Core Team
[    8.611318] [drm:i915_driver_open], 
[    8.611331] [drm:i915_driver_open], 
[    8.611387] [drm:i915_driver_open], 
[    8.611395] [drm:i915_driver_open], 
[    8.611502] [drm:i915_driver_open], 
[    8.611746] [drm:i915_driver_open], 
[    8.611755] [drm:i915_driver_open], 
[    8.611901] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    8.611904] [drm:drm_mode_getresources], CRTC[3] CONNECTORS[4] ENCODERS[4]
[    8.611964] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.611966] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.611973] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.611974] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.611977] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.612098] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.612100] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.612102] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.612103] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.612262] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.612266] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.612268] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.612270] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.612600] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.612602] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.612603] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.612605] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.612610] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.612612] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.612614] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.612616] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.612772] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.612775] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.612776] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.612777] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.613114] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.613115] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.613116] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.613117] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.613144] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.613146] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.613304] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.613306] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.613308] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.613311] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.613312] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.613467] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.613469] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.613470] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.613494] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.613495] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.613497] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.613499] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.613500] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.613501] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.613527] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.613529] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.613534] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.613535] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.613538] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.614102] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.614104] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.614106] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.614107] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.614259] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.614262] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.614263] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.614264] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.614598] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.614599] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.614600] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.614601] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.614605] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.614606] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.614607] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.614608] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.614763] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.614766] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.614767] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.614769] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.615106] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.615107] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.615108] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.615110] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.615130] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.615131] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.615280] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.615282] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.615283] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.615286] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.615287] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.615434] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.615435] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.615436] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.615450] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.615452] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.615454] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.615455] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.615456] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.615458] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.615928] [drm:i915_driver_open], 
[    8.615939] [drm:i915_driver_open], 
[    8.616067] [drm:drm_mode_getresources], CRTC[4] CONNECTORS[1] ENCODERS[1]
[    8.616070] [drm:drm_mode_getresources], CRTC[4] CONNECTORS[1] ENCODERS[1]
[    8.629331] [drm:drm_mode_getconnector], [CONNECTOR:17:?]
[    8.629335] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    8.630602] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    8.630608] [drm:drm_mode_getconnector], [CONNECTOR:17:?]
[    8.630609] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    8.631851] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    8.631955] [drm:drm_mode_getconnector], [CONNECTOR:17:?]
[    8.631958] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    8.633207] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    8.633214] [drm:drm_mode_getconnector], [CONNECTOR:17:?]
[    8.633216] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2]
[    8.634463] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:17:VGA-2] disconnected
[    8.643015] Ebtables v2.0 registered
[    8.644535] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    8.646908] [drm:asle_set_backlight], bclp = 0x800000ff
[    8.646912] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    8.646914] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    8.648256] [drm:asle_set_backlight], bclp = 0x800000ff
[    8.648259] [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
[    8.648260] [drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
[    8.652367] [drm:drm_mode_addfb], [FB:25]
[    8.652404] [drm:drm_mode_setcrtc], [CRTC:3]
[    8.652407] [drm:drm_mode_setcrtc], [CONNECTOR:9:LVDS-1]
[    8.652409] [drm:intel_crtc_set_config], [CRTC:3] [FB:25] #connectors=1 (x y) (0 0)
[    8.652411] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.652418] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    8.656228] [drm:ironlake_update_plane], Writing base 0085C000 00000000 0 0 7680
[    8.661785] [drm:drm_mode_setcrtc], [CRTC:5]
[    8.661789] [drm:intel_crtc_set_config], [CRTC:5] [NOFB]
[    8.661793] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.661796] [drm:drm_mode_setcrtc], [CRTC:7]
[    8.661797] [drm:intel_crtc_set_config], [CRTC:7] [NOFB]
[    8.661799] [drm:intel_modeset_stage_output_state], [CONNECTOR:9:LVDS-1] to [CRTC:3]
[    8.822447] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.822452] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    8.822459] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    8.822461] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    8.822464] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    8.822581] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.822583] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.822585] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.822587] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.822737] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.822739] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.822740] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.822741] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.823078] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.823079] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.823081] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.823082] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.823086] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    8.823087] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    8.823088] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    8.823096] [drm:intel_crt_detect], CRT not detected via hotplug
[    8.823244] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    8.823246] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.823247] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    8.823248] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    8.823577] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    8.823578] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    8.823579] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    8.823580] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    8.823584] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.823586] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.823736] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.823739] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.823741] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.823744] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    8.823746] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    8.823902] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    8.823905] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    8.823907] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    8.823916] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.823918] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.823921] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.823924] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    8.823926] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    8.823928] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    8.997847] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
[    9.005385] iwlwifi 0000:03:00.0: Radio type=0x2-0x0-0x0
[    9.168966] [drm:i915_driver_open], 
[    9.174321] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[    9.183141] [drm:i915_gem_context_create_ioctl], HW context 1 created
[    9.184515] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[    9.195642] iscsi: registered transport (iser)
[    9.214655] libcxgbi:libcxgbi_init_module: tag itt 0x1fff, 13 bits, age 0xf, 4 bits.
[    9.214659] libcxgbi:ddp_setup_host_page_size: system PAGE 4096, ddp idx 0.
[    9.236403] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[    9.239780] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.239784] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1]
[    9.239792] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:9:LVDS-1] probed modes :
[    9.239793] [drm:drm_mode_debug_printmodeline], Modeline 23:"1920x1080" 60 138500 1920 1968 2000 2080 1080 1083 1088 1111 0x48 0xa
[    9.239797] [drm:drm_mode_getconnector], [CONNECTOR:9:?]
[    9.240115] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.240117] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.240120] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.240121] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.240278] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.240280] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.240281] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.240282] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.240617] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.240620] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.240621] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.240623] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.240628] [drm:drm_mode_getconnector], [CONNECTOR:15:?]
[    9.240630] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1]
[    9.240632] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.240633] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.240783] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.240786] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.240787] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.240788] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.241122] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.241123] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.241124] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.241125] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:15:VGA-1] disconnected
[    9.241133] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.241134] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.241282] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.241284] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.241285] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.241288] [drm:drm_mode_getconnector], [CONNECTOR:18:?]
[    9.241289] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1]
[    9.241436] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.241438] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.241439] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:18:HDMI-A-1] disconnected
[    9.241443] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.241444] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.241446] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.241448] [drm:drm_mode_getconnector], [CONNECTOR:22:?]
[    9.241449] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1]
[    9.241450] [drm:drm_helper_probe_single_connector_modes], [CONNECTOR:22:DP-1] disconnected
[    9.270271] Chelsio T3 iSCSI Driver cxgb3i v2.0.0 (Jun. 2010)
[    9.270294] iscsi: registered transport (cxgb3i)
[    9.313909] Chelsio T4 iSCSI Driver cxgb4i v0.9.1 (Aug. 2010)
[    9.313937] iscsi: registered transport (cxgb4i)
[    9.341761] cnic: Broadcom NetXtreme II CNIC Driver cnic v2.5.16 (Dec 05, 2012)
[    9.356505] Broadcom NetXtreme II iSCSI Driver bnx2i v2.7.2.2 (Apr 25, 2012)
[    9.356529] iscsi: registered transport (bnx2i)
[    9.360817] [drm:gmbus_xfer], GMBUS [i915 gmbus dpb] NAK for addr: 0050 r(1)
[    9.360821] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus dpb
[    9.360860] [drm:intel_ironlake_crt_detect_hotplug], ironlake hotplug adpa=0xf40000, result 0
[    9.360862] [drm:intel_crt_detect], CRT not detected via hotplug
[    9.361017] [drm:gmbus_xfer], GMBUS [i915 gmbus vga] NAK for addr: 0050 r(1)
[    9.361020] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.361021] [drm:intel_crt_get_edid], CRT GMBUS EDID read failed, retry using GPIO bit-banging
[    9.361022] [drm:intel_gmbus_force_bit], enabling bit-banging on i915 gmbus vga. force bit now 1
[    9.361355] [drm:drm_do_probe_ddc_edid], drm: skipping non-existent adapter i915 gmbus vga
[    9.361356] [drm:intel_gmbus_force_bit], disabling bit-banging on i915 gmbus vga. force bit now 0
[    9.361359] [drm:intel_crt_detect_ddc], CRT not detected via DDC:0x50 [no valid EDID found]
[    9.384224] iscsi: registered transport (be2iscsi)
[    9.384229] In beiscsi_module_init, tt=ffffffffa081e000
[    9.652262] wlan0: authenticate with bc:ae:c5:c3:07:c4
[    9.661043] wlan0: send auth to bc:ae:c5:c3:07:c4 (try 1/3)
[    9.663845] wlan0: authenticated
[    9.664063] wlan0: waiting for beacon from bc:ae:c5:c3:07:c4
[    9.743653] wlan0: associate with bc:ae:c5:c3:07:c4 (try 1/3)
[    9.754116] wlan0: RX AssocResp from bc:ae:c5:c3:07:c4 (capab=0x411 status=0 aid=2)
[    9.770168] [drm:i915_driver_open], 
[    9.772728] [drm:i915_gem_context_create_ioctl], HW context 1 created
[    9.773079] [drm:i915_gem_context_destroy_ioctl], HW context 1 destroyed
[    9.773267] wlan0: associated
[    9.773291] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[    9.774787] [drm:i915_gem_context_create_ioctl], HW context 1 created
[   11.802473] Bridge firewalling registered
[   11.846563] device virbr0-nic entered promiscuous mode
[   12.259872] [drm:drm_mode_addfb], [FB:26]
[   12.290164] [drm:drm_mode_addfb], [FB:25]
[   12.306870] [drm:drm_mode_addfb], [FB:26]
[   12.346735] [drm:drm_mode_addfb], [FB:25]
[   12.373791] [drm:drm_mode_addfb], [FB:26]
[   12.390535] [drm:drm_mode_addfb], [FB:25]
[   12.407323] [drm:drm_mode_addfb], [FB:26]
[   12.423992] [drm:drm_mode_addfb], [FB:25]
[   12.440721] [drm:drm_mode_addfb], [FB:26]
[   12.457463] [drm:drm_mode_addfb], [FB:25]
[   13.100248] virbr0: topology change detected, propagating
[   13.100257] virbr0: port 1(virbr0-nic) entered forwarding state
[   13.100290] virbr0: port 1(virbr0-nic) entered forwarding state
[   13.120450] virbr0: port 1(virbr0-nic) entered disabled state
[   13.264475] [drm:drm_mode_addfb], [FB:26]
[   13.277246] [drm:drm_mode_addfb], [FB:25]
[   13.293930] [drm:drm_mode_addfb], [FB:26]
[   13.310660] [drm:drm_mode_addfb], [FB:25]
[   13.327406] [drm:drm_mode_addfb], [FB:26]
[   13.344136] [drm:drm_mode_addfb], [FB:25]
[   13.360848] [drm:drm_mode_addfb], [FB:26]
[   13.377601] [drm:drm_mode_addfb], [FB:25]
[   13.394300] [drm:drm_mode_addfb], [FB:26]
[   13.411030] [drm:drm_mode_addfb], [FB:25]
[   13.427776] [drm:drm_mode_addfb], [FB:26]
[   13.444502] [drm:drm_mode_addfb], [FB:25]
[   13.461273] [drm:drm_mode_addfb], [FB:26]
[   13.477981] [drm:drm_mode_addfb], [FB:25]
[   13.565758] cgroup: libvirtd (1323) created nested cgroup for controller "memory" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   13.565764] cgroup: "memory" requires setting use_hierarchy to 1 on the root.
[   13.565852] cgroup: libvirtd (1323) created nested cgroup for controller "devices" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   13.565974] cgroup: libvirtd (1323) created nested cgroup for controller "blkio" which has incomplete hierarchy support. Nested cgroups may change behavior in the future.
[   13.908808] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[   13.908854] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[   13.918746] SELinux: initialized (dev mqueue, type mqueue), uses transition SIDs
[   13.919248] SELinux: initialized (dev proc, type proc), uses genfs_contexts
[   14.663671] [drm:drm_mode_addfb], [FB:26]
[   14.693201] [drm:drm_mode_addfb], [FB:25]
[   15.150501] [drm:drm_mode_addfb], [FB:26]
[   15.167669] [drm:drm_mode_addfb], [FB:25]
[   15.523325] [drm:drm_mode_addfb], [FB:26]
[   15.770706] [drm:drm_mode_addfb], [FB:25]
[   15.961779] [drm:drm_mode_addfb], [FB:26]
[   15.970715] [drm:drm_mode_addfb], [FB:25]
[   15.987464] [drm:drm_mode_addfb], [FB:26]
[   16.004223] [drm:drm_mode_addfb], [FB:25]
[   16.020997] [drm:drm_mode_addfb], [FB:26]
[   16.037732] [drm:drm_mode_addfb], [FB:25]
[   16.054465] [drm:drm_mode_addfb], [FB:26]
[   16.071192] [drm:drm_mode_addfb], [FB:25]
[   16.087921] [drm:drm_mode_addfb], [FB:26]
[   16.104655] [drm:drm_mode_addfb], [FB:25]
[   16.121382] [drm:drm_mode_addfb], [FB:26]
[   16.138051] [drm:drm_mode_addfb], [FB:25]
[   16.154772] [drm:drm_mode_addfb], [FB:26]
[   16.177447] [drm:drm_mode_addfb], [FB:25]
[   16.205007] [drm:drm_mode_addfb], [FB:26]
[   16.221749] [drm:drm_mode_addfb], [FB:25]
[   16.238405] [drm:drm_mode_addfb], [FB:26]
[   16.255216] [drm:drm_mode_addfb], [FB:25]
[   16.271950] [drm:drm_mode_addfb], [FB:26]
[   16.288630] [drm:drm_mode_addfb], [FB:25]
[   16.305409] [drm:drm_mode_addfb], [FB:26]
[   16.335632] [drm:drm_mode_addfb], [FB:25]
[   16.357791] [drm:drm_mode_addfb], [FB:26]
[   16.419065] [drm:drm_mode_addfb], [FB:25]
[   16.424764] [drm:drm_mode_addfb], [FB:26]
[   16.439160] [drm:drm_mode_addfb], [FB:25]
[   16.455976] [drm:drm_mode_addfb], [FB:26]
[   16.472710] [drm:drm_mode_addfb], [FB:25]
[   16.489570] [drm:drm_mode_addfb], [FB:26]
[   16.506165] [drm:drm_mode_addfb], [FB:25]
[   16.522848] [drm:drm_mode_addfb], [FB:26]
[   16.539611] [drm:drm_mode_addfb], [FB:25]
[   16.556357] [drm:drm_mode_addfb], [FB:26]
[   16.573063] [drm:drm_mode_addfb], [FB:25]
[   16.589748] [drm:drm_mode_addfb], [FB:26]
[   17.023307] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   18.047803] fuse init (API version 7.21)
[   18.056514] SELinux: initialized (dev fusectl, type fusectl), uses genfs_contexts
[   18.059633] SELinux: initialized (dev fuse, type fuse), uses genfs_contexts
[   18.109594] [drm:drm_mode_addfb], [FB:25]
[   18.187636] [drm:drm_mode_addfb], [FB:26]
[   27.539565] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   37.590064] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   47.616128] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   57.640820] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   64.634543] [drm:drm_mode_addfb], [FB:25]
[   67.665405] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   77.689998] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   87.691623] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[   97.706228] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[  107.730264] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[  117.754719] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[  124.648850] [drm:drm_mode_addfb], [FB:26]
[  127.779389] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[  137.803993] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[  140.007176] nf_conntrack: automatic helper assignment is deprecated and it will be removed soon. Use the iptables CT target to attach helpers instead.
[  147.828592] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[  157.851735] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[  167.875141] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2
[  177.898766] [drm:output_poll_execute], [CONNECTOR:17:VGA-2] status updated from 2 to 2

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: [Intel-gfx] i915 black screen introduced by ACPI changes
  2013-03-14 20:49                                   ` Chris Li
@ 2013-03-15  7:29                                     ` Jani Nikula
  2013-03-15  9:00                                       ` Chris Li
                                                         ` (3 more replies)
  0 siblings, 4 replies; 29+ messages in thread
From: Jani Nikula @ 2013-03-15  7:29 UTC (permalink / raw)
  To: Chris Li
  Cc: Daniel Vetter, len.brown, feng.tang, intel-gfx, linux-kernel,
	robert.moore, Linus Torvalds, Zhang Rui

On Thu, 14 Mar 2013, Chris Li <lkml@chrisli.org> wrote:
> Hi, I attach the two demsg and with and without the bad commit
> on the intel nightly branch. Without the bad commit it actually works.
> However, on the tip of intel nightly. the moeset work around does not work
> there any more.

Hi Chris, thanks for the dmesgs.

So the diff in the dmesgs from intel nightly (bad) to the same with
a57f7f9175b8ccbc9df83ac13860488913115de4 reverted (good) wrt backlight
boils down to this, repeated a few times:

-[drm:asle_set_backlight], bclp = 0x80000000
+[drm:asle_set_backlight], bclp = 0x800000ff
 [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
-[drm:intel_panel_actually_set_backlight], set backlight PWM = 0
-[drm:asle_set_backlight], bclp = 0x80000000
+[drm:intel_panel_actually_set_backlight], set backlight PWM = 4648
+[drm:asle_set_backlight], bclp = 0x800000ff
 [drm:intel_panel_get_max_backlight], max backlight PWM = 4648
-[drm:intel_panel_actually_set_backlight], set backlight PWM = 0
+[drm:intel_panel_actually_set_backlight], set backlight PWM = 4648

Fun. The BIOS seems to ask for zero backlight. Maybe it means something
else for Windows 8. White is the new black or something.

> Let me know if you need any thing else from me.

Just one idea, please attach hexdumps of
/sys/kernel/debug/dri/0/i915_opregion (with debugfs mounted there,
obviously) for both kernels. Maybe we're missing something there that
the BIOS thinks Windows 8 should handle.

I've never used the acpi_osi= kernel parameter, but it looks like you
could workaround this with acpi_osi="!Windows 2012". Please check that
running the "bad" kernel.


BR,
Jani.

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: [Intel-gfx] i915 black screen introduced by ACPI changes
  2013-03-15  7:29                                     ` Jani Nikula
@ 2013-03-15  9:00                                       ` Chris Li
  2013-03-15  9:06                                       ` Chris Li
                                                         ` (2 subsequent siblings)
  3 siblings, 0 replies; 29+ messages in thread
From: Chris Li @ 2013-03-15  9:00 UTC (permalink / raw)
  To: Jani Nikula
  Cc: Daniel Vetter, len.brown, feng.tang, intel-gfx, linux-kernel,
	robert.moore, Linus Torvalds, Zhang Rui

[-- Attachment #1: Type: text/plain, Size: 667 bytes --]

On Fri, Mar 15, 2013 at 12:29 AM, Jani Nikula
<jani.nikula@linux.intel.com> wrote:
> Fun. The BIOS seems to ask for zero backlight. Maybe it means something
> else for Windows 8. White is the new black or something.

Interesting.

>
> Just one idea, please attach hexdumps of
> /sys/kernel/debug/dri/0/i915_opregion (with debugfs mounted there,
> obviously) for both kernels. Maybe we're missing something there that
> the BIOS thinks Windows 8 should handle.

Two kernels have different dump. BTW I have switched to tip of git again.
Last pull from the git seems fix the can't boot problem.
I attach the files here. The good one is tip with win8 acpi revert.

Chris

[-- Attachment #2: i915_opregion.bad --]
[-- Type: application/octet-stream, Size: 22621 bytes --]

00000000  49 6e 74 65 6c 47 72 61  70 68 69 63 73 4d 65 6d  |IntelGraphicsMem|
00000010  08 00 00 00 00 00 00 02  35 44 43 4e 39 30 57 57  |........5DCN90WW|
00000020  28 56 38 2e 30 31 00 00  00 00 00 00 00 00 00 00  |(V8.01..........|
00000030  00 00 00 00 00 00 00 00  32 31 33 37 00 00 00 00  |........2137....|
00000040  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000050  00 00 00 00 00 00 00 00  1f 00 00 00 00 00 00 00  |................|
00000060  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000100  01 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000110  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000120  00 01 00 00 00 04 00 00  00 03 00 00 01 03 00 00  |................|
00000130  05 00 00 00 06 00 00 00  07 00 00 00 08 00 00 00  |................|
00000140  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000160  00 01 00 00 00 04 00 00  00 03 00 00 01 03 00 00  |................|
00000170  05 00 00 00 06 00 00 00  07 00 00 00 08 00 00 00  |................|
00000180  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001a0  00 00 00 00 00 00 00 00  00 00 00 00 01 00 00 00  |................|
000001b0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000300  01 00 00 00 00 00 00 00  0f 00 00 00 00 00 00 00  |................|
00000310  00 00 00 80 06 00 00 80  00 00 00 80 00 80 19 8a  |................|
00000320  33 94 4c 9e 66 a8 7f b2  99 bc b2 c6 cc d0 e5 da  |3.L.f...........|
00000330  ff e4 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000340  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000400  24 56 42 54 20 53 4e 42  2f 49 56 42 2d 4d 4f 42  |$VBT SNB/IVB-MOB|
00000410  49 4c 45 20 64 00 30 00  b8 10 be 00 30 00 00 00  |ILE d.0.....0...|
00000420  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000430  42 49 4f 53 5f 44 41 54  41 5f 42 4c 4f 43 4b 20  |BIOS_DATA_BLOCK |
00000440  a6 00 16 00 88 10 fe ea  00 00 64 01 01 12 0d 32  |..........d....2|
00000450  31 33 37 49 6e 74 65 6c  28 52 29 20 53 61 6e 64  |137Intel(R) Sand|
00000460  79 62 72 69 64 67 65 2f  49 76 79 62 72 69 64 67  |ybridge/Ivybridg|
00000470  65 20 50 43 49 20 41 63  63 65 6c 65 72 61 74 65  |e PCI Accelerate|
00000480  64 20 53 56 47 41 20 42  49 4f 53 0d 0a 42 75 69  |d SVGA BIOS..Bui|
00000490  6c 64 20 4e 75 6d 62 65  72 3a 20 32 31 33 37 20  |ld Number: 2137 |
000004a0  50 43 20 31 34 2e 33 34  20 20 30 33 2f 31 34 2f  |PC 14.34  03/14/|
000004b0  32 30 31 32 20 20 32 30  3a 31 30 3a 35 30 0d 0a  |2012  20:10:50..|
000004c0  44 45 43 4f 4d 50 49 4c  41 54 49 4f 4e 20 4f 52  |DECOMPILATION OR|
000004d0  20 44 49 53 41 53 53 45  4d 42 4c 59 20 50 52 4f  | DISASSEMBLY PRO|
000004e0  48 49 42 49 54 45 44 0d  0a 00 00 00 00 00 43 6f  |HIBITED.......Co|
000004f0  70 79 72 69 67 68 74 20  28 43 29 20 32 30 30 30  |pyright (C) 2000|
00000500  2d 32 30 31 31 20 49 6e  74 65 6c 20 43 6f 72 70  |-2011 Intel Corp|
00000510  2e 20 41 6c 6c 20 52 69  67 68 74 73 20 52 65 73  |. All Rights Res|
00000520  65 72 76 65 64 2e 0d 0a  0d 0a 00 00 c0 03 08 04  |erved...........|
00000530  01 00 00 01 05 00 07 03  00 01 01 fd 32 00 44 04  |............2.D.|
00000540  40 06 04 02 09 01 08 0a  02 08 0c 04 08 03 01 02  |@...............|
00000550  05 01 04 0d 01 04 0b 01  02 07 01 04 15 01 04 45  |...............E|
00000560  01 04 0e 04 08 46 04 40  28 20 08 48 40 08 10 00  |.....F.@( .H@...|
00000570  02 0d 01 02 04 00 00 21  08 00 22 10 00 00 00 00  |.......!..".....|
00000580  00 00 00 20 00 00 e0 c9  04 00 00 03 00 00 00 00  |... ............|
00000590  00 00 00 20 00 00 00 00  00 04 00 d2 60 00 10 10  |... ........`...|
000005a0  03 b6 14 00 20 00 00 00  d9 01 00 00 05 00 00 00  |.... ...........|
000005b0  00 05 00 01 20 01 00 00  00 00 00 00 00 00 00 10  |.... ...........|
000005c0  10 04 c8 14 00 20 00 00  00 00 08 00 00 04 00 00  |..... ..........|
000005d0  00 00 00 20 01 20 02 00  00 00 00 00 00 00 00 00  |... . ..........|
000005e0  10 10 04 da 14 00 20 00  00 00 00 09 00 00 00 00  |...... .........|
000005f0  00 00 00 00 30 01 20 03  00 00 00 00 00 00 00 00  |....0. .........|
00000600  00 00 00 00 00 00 00 20  00 00 00 00 00 00 00 00  |....... ........|
00000610  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000620  00 00 00 00 00 00 00 00  20 00 00 00 00 00 00 00  |........ .......|
00000630  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000640  00 00 00 00 00 00 00 00  00 20 00 00 00 00 00 00  |......... ......|
00000650  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000660  00 00 00 00 00 00 00 00  00 00 20 00 00 00 00 00  |.......... .....|
00000670  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000680  03 01 00 00 04 1c 00 30  32 34 36 38 3a 3c 40 42  |.......02468:<@B|
00000690  44 46 48 4a 4c 50 52 54  56 58 5a 5c 80 81 82 83  |DFHJLPRTVXZ\....|
000006a0  84 1a 00 fc c2 00 00 00  01 00 00 00 00 00 00 00  |................|
000006b0  00 00 01 00 01 01 00 00  0e 01 30 00 51 07 1e 00  |..........0.Q...|
000006c0  48 0a 0f 00 86 03 28 00  b3 03 02 00 bd 03 38 00  |H.....(.......8.|
000006d0  61 04 c8 00 b1 06 30 00  e4 06 18 00 ff 06 18 00  |a.....0.........|
000006e0  1a 07 18 00 12 0a 10 00  25 0a 08 00 30 0a 08 00  |........%...0...|
000006f0  3b 0a 08 00 1d 08 08 00  61 08 12 00 73 08 12 00  |;.......a...s...|
00000700  85 08 12 00 97 08 12 00  ac 08 0a 00 b6 08 0a 00  |................|
00000710  c0 08 0a 00 ca 08 0a 00  d7 08 0a 00 e1 08 0a 00  |................|
00000720  eb 08 0a 00 f5 08 0a 00  07 09 0a 00 11 09 0a 00  |................|
00000730  1b 09 0a 00 25 09 0a 00  2f 09 0a 00 39 09 0a 00  |....%.../...9...|
00000740  43 09 0a 00 4d 09 0a 00  57 09 0a 00 61 09 0a 00  |C...M...W...a...|
00000750  6b 09 0a 00 75 09 0a 00  7f 09 0a 00 89 09 0a 00  |k...u...........|
00000760  93 09 0a 00 9d 09 0a 00  06 75 00 fc ff 02 80 00  |.........u......|
00000770  07 00 00 00 00 00 80 01  07 00 00 00 00 00 80 11  |................|
00000780  07 00 00 00 00 00 00 10  04 00 8e 29 00 80 9c 01  |...........)....|
00000790  07 00 00 00 00 00 9c 11  07 00 00 00 00 00 09 f0  |................|
000007a0  04 00 00 00 00 00 0a f0  04 00 00 00 00 00 0b f0  |................|
000007b0  04 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000007c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000007d0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 ff ff  |................|
000007e0  07 07 00 fe ff ce 18 00  ff ff 08 3d 00 fc ff 02  |...........=....|
000007f0  40 f0 04 00 01 00 00 01  44 f0 04 00 00 00 00 00  |@.......D.......|
00000800  48 f0 04 00 00 00 00 00  4c f0 04 00 00 00 03 03  |H.......L.......|
00000810  50 f0 04 00 00 00 00 00  54 f0 04 00 01 00 00 00  |P.......T.......|
00000820  58 f0 04 00 00 00 00 00  ff ff 09 60 00 00 00 32  |X..........`...2|
00000830  00 32 00 00 00 32 00 32  00 00 00 32 00 32 00 00  |.2...2.2...2.2..|
00000840  00 32 00 32 00 00 00 32  00 32 00 00 00 32 00 32  |.2.2...2.2...2.2|
00000850  00 00 00 32 00 32 00 00  00 32 00 32 00 00 00 32  |...2.2...2.2...2|
00000860  00 32 00 00 00 32 00 32  00 00 00 32 00 32 00 00  |.2...2.2...2.2..|
00000870  00 32 00 32 00 00 00 32  00 32 00 00 00 32 00 32  |.2.2...2.2...2.2|
00000880  00 00 00 32 00 32 00 00  00 32 00 32 00 0a cb 00  |...2.2...2.2....|
00000890  0a 00 00 00 00 00 00 00  00 ff ff 00 00 00 00 00  |................|
000008a0  00 00 00 ff ff 00 00 00  00 00 00 00 00 ff ff 00  |................|
000008b0  00 00 00 00 00 00 00 ff  ff 00 00 00 00 00 00 00  |................|
000008c0  00 ff ff 00 00 00 00 00  00 00 00 ff ff 00 00 00  |................|
000008d0  00 00 00 00 00 ff ff 00  00 00 00 00 00 00 00 ff  |................|
000008e0  ff 00 00 00 00 00 00 00  00 ff ff 00 00 00 00 00  |................|
000008f0  00 00 00 ff ff 00 00 00  00 00 00 00 00 ff ff 00  |................|
00000900  00 00 00 00 00 00 00 ff  ff 00 00 00 00 00 00 00  |................|
00000910  00 ff ff 00 00 00 00 00  00 00 00 ff ff 00 00 00  |................|
00000920  00 00 00 00 00 ff ff 00  00 00 00 00 00 00 00 ff  |................|
00000930  ff 00 00 00 00 00 00 00  00 ff ff 00 00 00 00 00  |................|
00000940  00 00 00 ff ff 00 00 00  00 00 00 00 00 ff ff 00  |................|
00000950  00 00 00 00 00 00 00 ff  ff 00 00 0b c7 00 21 80  |..............!.|
00000960  00 00 00 03 00 00 00 00  00 00 20 00 00 00 00 01  |.......... .....|
00000970  05 70 1d 00 00 00 00 00  00 00 00 00 00 00 00 00  |.p..............|
00000980  80 00 00 00 03 00 00 00  00 00 00 20 00 00 00 00  |........... ....|
00000990  02 05 72 1d 00 00 00 00  00 00 00 00 00 00 00 00  |..r.............|
000009a0  00 80 00 00 00 03 00 00  00 00 00 00 20 00 00 00  |............ ...|
000009b0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000009c0  00 00 80 00 00 00 03 00  00 00 00 00 00 20 00 00  |............. ..|
000009d0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000009e0  00 00 00 80 00 00 00 03  00 00 00 00 00 00 20 00  |.............. .|
000009f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000a00  00 00 00 00 80 00 00 00  03 00 00 00 00 00 00 20  |............... |
00000a10  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000a20  00 00 00 00 00 0c 13 00  4a 00 04 00 03 08 3c 84  |........J.....<.|
00000a30  0c 00 00 00 00 00 55 00  00 ff 87 0d 03 00 78 00  |......U.......x.|
00000a40  0a 0e 09 00 01 22 06 5a  00 7e 06 2d 00 0f 8b 00  |.....".Z.~.-....|
00000a50  09 0a 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000a60  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000aa0  00 00 00 00 00 00 00 00  00 00 00 00 09 05 00 00  |................|
00000ab0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000ad0  00 00 00 00 00 00 00 00  00 00 00 10 84 00 10 00  |................|
00000ae0  03 01 00 00 01 08 00 00  08 00 02 00 00 01 04 00  |................|
00000af0  04 00 00 04 08 00 00 00  00 00 00 00 00 00 00 00  |................|
00000b00  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000b10  00 08 00 03 01 00 00 01  08 00 00 08 00 02 00 00  |................|
00000b20  01 04 00 04 00 00 04 08  00 00 00 00 08 00 03 01  |................|
00000b30  00 00 01 08 00 00 08 00  02 00 00 01 04 00 04 00  |................|
00000b40  00 04 08 00 00 00 00 08  00 03 01 00 00 01 08 00  |................|
00000b50  00 08 00 02 00 00 01 04  00 04 00 00 04 08 00 00  |................|
00000b60  00 00 11 08 00 00 00 00  00 00 00 00 00 12 0c 00  |................|
00000b70  01 00 00 00 00 00 00 00  00 00 00 00 13 20 00 0f  |............. ..|
00000b80  02 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000b90  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 14  |................|
00000ba0  9e 00 06 1a 00 00 00 00  00 00 07 3c 00 00 00 00  |...........<....|
00000bb0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000bc0  00 00 00 00 07 3c 00 00  00 00 00 00 00 00 00 00  |.....<..........|
00000bd0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 07 3c  |...............<|
00000be0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000bf0  00 00 00 00 00 00 00 00  07 3c 00 00 00 00 00 00  |.........<......|
00000c00  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000c10  00 00 07 3c 00 00 00 00  00 00 00 00 00 00 00 00  |...<............|
00000c20  00 00 00 00 00 00 00 00  00 00 00 00 07 3c 00 00  |.............<..|
00000c30  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000c40  16 4b 00 00 01 03 07 00  00 00 00 08 01 00 00 00  |.K..............|
00000c50  00 00 00 00 00 30 84 0e  00 00 4c 46 50 5f 50 61  |.....0....LFP_Pa|
00000c60  6e 65 6c 4e 61 6d 65 4c  46 50 5f 50 61 6e 65 6c  |nelNameLFP_Panel|
00000c70  4e 61 6d 65 4c 46 50 5f  50 61 6e 65 6c 4e 61 6d  |NameLFP_PanelNam|
00000c80  65 4c 46 50 5f 50 61 6e  65 6c 4e 61 6d 65 17 48  |eLFP_PanelName.H|
00000c90  00 64 19 00 40 41 00 26  30 18 88 36 00 00 00 00  |.d..@A.&0..6....|
00000ca0  00 00 18 30 2a 00 98 51  00 30 40 30 70 13 00 00  |...0*..Q.0@0p...|
00000cb0  00 00 00 00 1e a8 2f 78  e0 51 1a 26 40 58 98 13  |....../x.Q.&@X..|
00000cc0  00 00 00 00 00 00 1e 48  3f 40 30 62 b0 32 40 40  |.......H?@0b.2@@|
00000cd0  c0 13 00 00 00 00 00 00  1e 18 28 00 36 7f 03 00  |..........(.6...|
00000ce0  01 00 00 00 00 0c 36 7f  05 00 02 00 00 00 00 0c  |......6.........|
00000cf0  36 7f 01 90 03 00 00 00  00 0c 36 7f 06 00 04 00  |6.........6.....|
00000d00  00 00 00 0c 19 28 00 19  00 fa 00 fa 00 19 00 90  |.....(..........|
00000d10  01 20 00 20 00 20 00 20  00 c8 00 40 00 40 00 40  |. . . . ...@.@.@|
00000d20  00 40 00 2c 01 40 00 40  00 40 00 40 00 2c 01 1a  |.@.,.@.@.@.@.,..|
00000d30  02 00 00 00 1b cc 00 d0  07 0a 00 d0 07 f4 01 88  |................|
00000d40  13 d0 07 0a 00 d0 07 f4  01 88 13 d0 07 0a 00 d0  |................|
00000d50  07 f4 01 88 13 d0 07 0a  00 d0 07 f4 01 88 13 d0  |................|
00000d60  07 0a 00 d0 07 f4 01 88  13 d0 07 0a 00 d0 07 f4  |................|
00000d70  01 88 13 d0 07 0a 00 d0  07 f4 01 88 13 d0 07 0a  |................|
00000d80  00 d0 07 f4 01 88 13 d0  07 0a 00 d0 07 f4 01 88  |................|
00000d90  13 d0 07 0a 00 d0 07 f4  01 88 13 d0 07 0a 00 d0  |................|
00000da0  07 f4 01 88 13 d0 07 0a  00 d0 07 f4 01 88 13 d0  |................|
00000db0  07 0a 00 d0 07 f4 01 88  13 d0 07 0a 00 d0 07 f4  |................|
00000dc0  01 88 13 d0 07 0a 00 d0  07 f4 01 88 13 d0 07 0a  |................|
00000dd0  00 d0 07 f4 01 88 13 00  00 00 00 00 00 00 00 00  |................|
00000de0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000e00  00 ff ff 1c 36 00 d6 09  80 90 20 e0 1d 10 08 60  |....6..... ....`|
00000e10  22 00 00 00 00 00 00 1e  d6 09 80 90 20 e0 1d 10  |"........... ...|
00000e20  08 60 22 00 00 00 00 00  00 1e d6 09 80 90 20 e0  |.`"........... .|
00000e30  1d 10 08 60 22 00 00 00  00 00 00 1e 1d 34 00 10  |...`"........4..|
00000e40  00 01 01 09 08 02 05 04  0c 00 00 00 00 00 00 00  |................|
00000e50  00 00 08 00 01 01 09 08  02 05 04 0c 00 08 00 01  |................|
00000e60  01 09 08 02 05 04 0c 00  08 00 01 01 09 08 02 05  |................|
00000e70  04 0c 00 1e 11 00 0f 01  00 00 00 00 00 00 00 00  |................|
00000e80  00 00 00 00 00 00 00 28  18 00 01 00 73 00 00 00  |.......(....s...|
00000e90  00 00 bf 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000ea0  00 00 29 94 00 03 0c 0b  20 32 0b 12 44 0b 0a 4e  |..)..... 2..D..N|
00000eb0  0b 20 74 0b 12 86 0b 0a  90 0b 20 b6 0b 12 c8 0b  |. t....... .....|
00000ec0  0a d2 0b 20 f8 0b 12 0a  0c 0a 14 0c 20 3a 0c 12  |... ........ :..|
00000ed0  4c 0c 0a 56 0c 20 7c 0c  12 8e 0c 0a 98 0c 20 be  |L..V. |....... .|
00000ee0  0c 12 d0 0c 0a da 0c 20  00 0d 12 12 0d 0a 1c 0d  |....... ........|
00000ef0  20 42 0d 12 54 0d 0a 5e  0d 20 84 0d 12 96 0d 0a  | B..T..^. ......|
00000f00  a0 0d 20 c6 0d 12 d8 0d  0a e2 0d 20 08 0e 12 1a  |.. ........ ....|
00000f10  0e 0a 24 0e 20 4a 0e 12  5c 0e 0a 66 0e 20 8c 0e  |..$. J..\..f. ..|
00000f20  12 9e 0e 0a a8 0e 20 ce  0e 12 e0 0e 0a ea 0e 20  |...... ........ |
00000f30  10 0f 12 22 0f 0a 2c 0f  0d 2a f0 04 56 05 00 03  |..."..,..*..V...|
00000f40  80 11 0e 00 00 03 00 00  08 72 0c 00 d0 07 58 02  |.........r....X.|
00000f50  0c 72 0c 00 d0 07 f4 01  10 72 0c 00 05 0f 27 00  |.r.......r....'.|
00000f60  ff ff d6 09 80 90 20 e0  1d 10 08 60 22 00 00 00  |...... ....`"...|
00000f70  00 00 00 1e 36 7f 01 00  01 00 00 00 00 0c 80 07  |....6...........|
00000f80  38 04 80 11 0e 00 3c 03  30 00 08 72 0c 00 d0 07  |8.....<.0..r....|
00000f90  90 01 0c 72 0c 00 fc 08  c8 00 10 72 0c 00 05 0f  |...r.......r....|
00000fa0  27 00 ff ff 1a 36 80 a0  70 38 1f 40 30 20 35 00  |'....6..p8.@0 5.|
00000fb0  59 c2 10 00 00 19 36 7f  05 00 04 00 00 00 00 0c  |Y.....6.........|
00000fc0  56 05 00 03 80 11 0e 00  00 03 00 00 08 72 0c 00  |V............r..|
00000fd0  d0 07 90 01 0c 72 0c 00  fc 08 c8 00 10 72 0c 00  |.....r.......r..|
00000fe0  05 0f 27 00 ff ff 64 19  00 40 41 00 26 30 18 88  |..'...d..@A.&0..|
00000ff0  36 00 00 00 00 00 00 18  36 7f 03 00 03 00 00 00  |6.......6.......|
00001000  00 0c 56 05 00 03 80 11  0e 00 3c 03 00 00 08 72  |..V.......<....r|
00001010  0c 00 d0 07 90 01 0c 72  0c 00 fc 08 c8 00 10 72  |.......r.......r|
00001020  0c 00 05 0f 27 00 ff ff  30 2a 00 98 51 00 30 40  |....'...0*..Q.0@|
00001030  30 70 13 00 00 00 00 00  00 1e 36 7f 05 00 04 00  |0p........6.....|
00001040  00 00 00 0c 56 05 00 03  80 11 0e 00 3c 03 00 00  |....V.......<...|
00001050  08 72 0c 00 d0 07 58 02  0c 72 0c 00 d0 07 f4 01  |.r....X..r......|
00001060  10 72 0c 00 05 0f 27 00  ff ff 30 2a 78 20 51 1a  |.r....'...0*x Q.|
00001070  10 40 10 70 13 00 00 00  00 00 00 1e 36 7f 01 90  |.@.p........6...|
00001080  05 00 00 00 00 0c 56 05  00 03 80 11 0e 00 3c 03  |......V.......<.|
00001090  00 00 08 72 0c 00 b8 0b  90 01 0c 72 0c 00 fc 08  |...r.......r....|
000010a0  c8 00 10 72 0c 00 05 0f  27 00 ff ff 30 2a 00 98  |...r....'...0*..|
000010b0  51 00 30 40 30 70 13 00  00 00 00 00 00 1e 36 7f  |Q.0@0p........6.|
000010c0  05 00 04 00 00 00 00 0c  40 06 b0 04 80 11 0e 00  |........@.......|
000010d0  3c 03 00 00 08 72 0c 00  d0 07 58 02 0c 72 0c 00  |<....r....X..r..|
000010e0  d0 07 f4 01 10 72 0c 00  05 0f 27 00 ff ff 48 3f  |.....r....'...H?|
000010f0  40 30 62 b0 32 40 40 c0  13 00 00 00 00 00 00 1e  |@0b.2@@.........|
00001100  36 7f 06 00 07 00 00 00  00 0c 56 05 00 03 80 11  |6.........V.....|
00001110  0e 00 00 03 00 00 08 72  0c 00 d0 07 58 02 0c 72  |.......r....X..r|
00001120  0c 00 d0 07 f4 01 10 72  0c 00 05 0f 27 00 ff ff  |.......r....'...|
00001130  66 21 56 aa 51 00 1e 30  46 90 14 00 00 00 00 00  |f!V.Q..0F.......|
00001140  00 18 36 7f 03 90 08 00  00 00 00 01 90 06 1a 04  |..6.............|
00001150  80 11 0e 00 3c 03 00 00  08 72 0c 00 d0 07 58 02  |....<....r....X.|
00001160  0c 72 0c 00 d0 07 f4 01  10 72 0c 00 05 0f 27 00  |.r.......r....'.|
00001170  ff ff 7c 2e 90 a0 60 1a  1e 40 30 20 36 00 00 00  |..|...`..@0 6...|
00001180  00 00 00 1e 36 7f 04 90  09 00 00 00 00 0c 80 07  |....6...........|
00001190  b0 04 80 11 0e 00 3c 03  00 00 08 72 0c 00 d0 07  |......<....r....|
000011a0  58 02 0c 72 0c 00 d0 07  f4 01 10 72 0c 00 05 0f  |X..r.......r....|
000011b0  27 00 ff ff 28 3c 80 a0  70 b0 23 40 30 20 2a 00  |'...(<..p.#@0 *.|
000011c0  00 00 00 00 00 1e 36 7f  05 90 0a 00 00 00 00 0c  |......6.........|
000011d0  a0 05 84 03 80 11 0e 00  00 03 00 00 08 72 0c 00  |.............r..|
000011e0  d0 07 58 02 0c 72 0c 00  d0 07 f4 01 10 72 0c 00  |..X..r.......r..|
000011f0  05 0f 27 00 ff ff 9a 29  a0 d0 51 84 22 30 50 99  |..'....)..Q."0P.|
00001200  17 00 00 00 00 00 00 1e  36 7f 03 00 0b 00 00 00  |........6.......|
00001210  00 0c 40 06 84 03 80 11  0e 00 00 03 00 00 08 72  |..@............r|
00001220  0c 00 d0 07 58 02 0c 72  0c 00 d0 07 f4 01 10 72  |....X..r.......r|
00001230  0c 00 05 0f 27 00 ff ff  30 2a 40 c8 60 84 64 30  |....'...0*@.`.d0|
00001240  18 51 04 00 00 00 00 00  00 1e 36 7f 03 00 0c 00  |.Q........6.....|
00001250  00 00 00 0c 00 04 00 03  80 11 0e 00 00 03 00 00  |................|
00001260  08 72 0c 00 d0 07 58 02  0c 72 0c 00 d0 07 f4 01  |.r....X..r......|
00001270  10 72 0c 00 05 0f 27 00  ff ff 64 19 00 40 41 00  |.r....'...d..@A.|
00001280  26 30 18 88 36 00 00 00  00 00 00 1e 36 7f 03 00  |&0..6.......6...|
00001290  0d 00 00 00 00 0c 00 05  20 03 80 11 0e 00 00 03  |........ .......|
000012a0  00 00 08 72 0c 00 d0 07  58 02 0c 72 0c 00 d0 07  |...r....X..r....|
000012b0  f4 01 10 72 0c 00 05 0f  27 00 ff ff ea 1a 00 a0  |...r....'.......|
000012c0  50 20 17 30 0c 30 43 00  00 00 00 00 00 1e 36 7f  |P .0.0C.......6.|
000012d0  03 90 0e 00 00 00 00 0c  80 07 38 04 80 11 0e 00  |..........8.....|
000012e0  00 03 00 00 08 72 0c 00  d0 07 58 02 0c 72 0c 00  |.....r....X..r..|
000012f0  d0 07 f4 01 10 72 0c 00  05 0f 27 00 ff ff 02 3a  |.....r....'....:|
00001300  80 18 71 38 2d 40 58 2d  36 00 00 00 00 00 00 1e  |..q8-@X-6.......|
00001310  36 7f 03 00 0f 00 00 00  00 0c 00 08 00 06 80 11  |6...............|
00001320  0e 00 3c 03 00 00 08 72  0c 00 d0 07 58 02 0c 72  |..<....r....X..r|
00001330  0c 00 d0 07 f4 01 10 72  0c 00 05 0f 27 00 ff ff  |.......r....'...|
00001340  29 40 00 60 80 00 13 60  10 10 11 00 00 00 00 00  |)@.`...`........|
00001350  00 1e 36 7f 03 00 10 00  00 00 00 0c 4c 46 50 5f  |..6.........LFP_|
00001360  50 61 6e 65 6c 4e 61 6d  65 4c 46 50 5f 50 61 6e  |PanelNameLFP_Pan|
00001370  65 6c 4e 61 6d 65 4c 46  50 5f 50 61 6e 65 6c 4e  |elNameLFP_PanelN|
00001380  61 6d 65 4c 46 50 5f 50  61 6e 65 6c 4e 61 6d 65  |ameLFP_PanelName|
00001390  4c 46 50 5f 50 61 6e 65  6c 4e 61 6d 65 4c 46 50  |LFP_PanelNameLFP|
000013a0  5f 50 61 6e 65 6c 4e 61  6d 65 4c 46 50 5f 50 61  |_PanelNameLFP_Pa|
000013b0  6e 65 6c 4e 61 6d 65 4c  46 50 5f 50 61 6e 65 6c  |nelNameLFP_Panel|
000013c0  4e 61 6d 65 4c 46 50 5f  50 61 6e 65 6c 4e 61 6d  |NameLFP_PanelNam|
000013d0  65 4c 46 50 5f 50 61 6e  65 6c 4e 61 6d 65 4c 46  |eLFP_PanelNameLF|
000013e0  50 5f 50 61 6e 65 6c 4e  61 6d 65 4c 46 50 5f 50  |P_PanelNameLFP_P|
000013f0  61 6e 65 6c 4e 61 6d 65  4c 46 50 5f 50 61 6e 65  |anelNameLFP_Pane|
00001400  6c 4e 61 6d 65 4c 46 50  5f 50 61 6e 65 6c 4e 61  |lNameLFP_PanelNa|
00001410  6d 65 4c 46 50 5f 50 61  6e 65 6c 4e 61 6d 65 4c  |meLFP_PanelNameL|
00001420  46 50 5f 50 61 6e 65 6c  4e 61 6d 65 2b 71 00 06  |FP_PanelName+q..|
00001430  4a c8 00 00 58 aa 4a d2  00 00 58 aa 4a 58 02 00  |J...X.J...X.JX..|
00001440  58 aa 4a e8 03 00 58 aa  4a 2c 01 00 58 aa 4a c8  |X.J...X.J,..X.J.|
00001450  00 00 58 aa 4a c8 00 00  58 aa 4a c8 00 00 58 aa  |..X.J...X.J...X.|
00001460  4a c8 00 00 58 aa 4a c8  00 00 58 aa 4a c8 00 00  |J...X.J...X.J...|
00001470  58 aa 4a c8 00 00 58 aa  4a c8 00 00 58 aa 4a c8  |X.J...X.J...X.J.|
00001480  00 00 58 aa 4a c8 00 00  58 aa 4a c8 00 00 58 aa  |..X.J...X.J...X.|
00001490  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  |................|
000014a0  2c 15 00 83 46 00 00 00  49 00 0a 00 55 00 50 00  |,...F...I...U.P.|
000014b0  64 00 2c 01 96 00 e8 03  00 00 00 00 00 00 00 00  |d.,.............|
000014c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00002000

[-- Attachment #3: i915_opregion.good --]
[-- Type: application/octet-stream, Size: 22621 bytes --]

00000000  49 6e 74 65 6c 47 72 61  70 68 69 63 73 4d 65 6d  |IntelGraphicsMem|
00000010  08 00 00 00 00 00 00 02  35 44 43 4e 39 30 57 57  |........5DCN90WW|
00000020  28 56 38 2e 30 31 00 00  00 00 00 00 00 00 00 00  |(V8.01..........|
00000030  00 00 00 00 00 00 00 00  32 31 33 37 00 00 00 00  |........2137....|
00000040  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000050  00 00 00 00 00 00 00 00  1f 00 00 00 00 00 00 00  |................|
00000060  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000100  01 00 00 00 00 00 00 00  02 00 00 00 00 00 00 00  |................|
00000110  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000120  00 01 00 00 00 04 00 00  00 03 00 00 01 03 00 00  |................|
00000130  05 00 00 00 06 00 00 00  07 00 00 00 08 00 00 00  |................|
00000140  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000160  00 01 00 00 00 04 00 00  00 03 00 00 01 03 00 00  |................|
00000170  05 00 00 00 06 00 00 00  07 00 00 00 08 00 00 00  |................|
00000180  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
000001a0  00 00 00 00 00 00 00 00  00 00 00 00 ff ff ff ff  |................|
000001b0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000300  01 00 00 00 00 00 00 00  0f 00 00 00 00 00 00 00  |................|
00000310  ff 00 00 80 06 00 00 80  64 00 00 80 00 80 19 8a  |........d.......|
00000320  33 94 4c 9e 66 a8 7f b2  99 bc b2 c6 cc d0 e5 da  |3.L.f...........|
00000330  ff e4 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000340  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000400  24 56 42 54 20 53 4e 42  2f 49 56 42 2d 4d 4f 42  |$VBT SNB/IVB-MOB|
00000410  49 4c 45 20 64 00 30 00  b8 10 be 00 30 00 00 00  |ILE d.0.....0...|
00000420  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000430  42 49 4f 53 5f 44 41 54  41 5f 42 4c 4f 43 4b 20  |BIOS_DATA_BLOCK |
00000440  a6 00 16 00 88 10 fe ea  00 00 64 01 01 12 0d 32  |..........d....2|
00000450  31 33 37 49 6e 74 65 6c  28 52 29 20 53 61 6e 64  |137Intel(R) Sand|
00000460  79 62 72 69 64 67 65 2f  49 76 79 62 72 69 64 67  |ybridge/Ivybridg|
00000470  65 20 50 43 49 20 41 63  63 65 6c 65 72 61 74 65  |e PCI Accelerate|
00000480  64 20 53 56 47 41 20 42  49 4f 53 0d 0a 42 75 69  |d SVGA BIOS..Bui|
00000490  6c 64 20 4e 75 6d 62 65  72 3a 20 32 31 33 37 20  |ld Number: 2137 |
000004a0  50 43 20 31 34 2e 33 34  20 20 30 33 2f 31 34 2f  |PC 14.34  03/14/|
000004b0  32 30 31 32 20 20 32 30  3a 31 30 3a 35 30 0d 0a  |2012  20:10:50..|
000004c0  44 45 43 4f 4d 50 49 4c  41 54 49 4f 4e 20 4f 52  |DECOMPILATION OR|
000004d0  20 44 49 53 41 53 53 45  4d 42 4c 59 20 50 52 4f  | DISASSEMBLY PRO|
000004e0  48 49 42 49 54 45 44 0d  0a 00 00 00 00 00 43 6f  |HIBITED.......Co|
000004f0  70 79 72 69 67 68 74 20  28 43 29 20 32 30 30 30  |pyright (C) 2000|
00000500  2d 32 30 31 31 20 49 6e  74 65 6c 20 43 6f 72 70  |-2011 Intel Corp|
00000510  2e 20 41 6c 6c 20 52 69  67 68 74 73 20 52 65 73  |. All Rights Res|
00000520  65 72 76 65 64 2e 0d 0a  0d 0a 00 00 c0 03 08 04  |erved...........|
00000530  01 00 00 01 05 00 07 03  00 01 01 fd 32 00 44 04  |............2.D.|
00000540  40 06 04 02 09 01 08 0a  02 08 0c 04 08 03 01 02  |@...............|
00000550  05 01 04 0d 01 04 0b 01  02 07 01 04 15 01 04 45  |...............E|
00000560  01 04 0e 04 08 46 04 40  28 20 08 48 40 08 10 00  |.....F.@( .H@...|
00000570  02 0d 01 02 04 00 00 21  08 00 22 10 00 00 00 00  |.......!..".....|
00000580  00 00 00 20 00 00 e0 c9  04 00 00 03 00 00 00 00  |... ............|
00000590  00 00 00 20 00 00 00 00  00 04 00 d2 60 00 10 10  |... ........`...|
000005a0  03 b6 14 00 20 00 00 00  d9 01 00 00 05 00 00 00  |.... ...........|
000005b0  00 05 00 01 20 01 00 00  00 00 00 00 00 00 00 10  |.... ...........|
000005c0  10 04 c8 14 00 20 00 00  00 00 08 00 00 04 00 00  |..... ..........|
000005d0  00 00 00 20 01 20 02 00  00 00 00 00 00 00 00 00  |... . ..........|
000005e0  10 10 04 da 14 00 20 00  00 00 00 09 00 00 00 00  |...... .........|
000005f0  00 00 00 00 30 01 20 03  00 00 00 00 00 00 00 00  |....0. .........|
00000600  00 00 00 00 00 00 00 20  00 00 00 00 00 00 00 00  |....... ........|
00000610  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000620  00 00 00 00 00 00 00 00  20 00 00 00 00 00 00 00  |........ .......|
00000630  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000640  00 00 00 00 00 00 00 00  00 20 00 00 00 00 00 00  |......... ......|
00000650  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000660  00 00 00 00 00 00 00 00  00 00 20 00 00 00 00 00  |.......... .....|
00000670  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000680  03 01 00 00 04 1c 00 30  32 34 36 38 3a 3c 40 42  |.......02468:<@B|
00000690  44 46 48 4a 4c 50 52 54  56 58 5a 5c 80 81 82 83  |DFHJLPRTVXZ\....|
000006a0  84 1a 00 fc c2 00 00 00  01 00 00 00 00 00 00 00  |................|
000006b0  00 00 01 00 01 01 00 00  0e 01 30 00 51 07 1e 00  |..........0.Q...|
000006c0  48 0a 0f 00 86 03 28 00  b3 03 02 00 bd 03 38 00  |H.....(.......8.|
000006d0  61 04 c8 00 b1 06 30 00  e4 06 18 00 ff 06 18 00  |a.....0.........|
000006e0  1a 07 18 00 12 0a 10 00  25 0a 08 00 30 0a 08 00  |........%...0...|
000006f0  3b 0a 08 00 1d 08 08 00  61 08 12 00 73 08 12 00  |;.......a...s...|
00000700  85 08 12 00 97 08 12 00  ac 08 0a 00 b6 08 0a 00  |................|
00000710  c0 08 0a 00 ca 08 0a 00  d7 08 0a 00 e1 08 0a 00  |................|
00000720  eb 08 0a 00 f5 08 0a 00  07 09 0a 00 11 09 0a 00  |................|
00000730  1b 09 0a 00 25 09 0a 00  2f 09 0a 00 39 09 0a 00  |....%.../...9...|
00000740  43 09 0a 00 4d 09 0a 00  57 09 0a 00 61 09 0a 00  |C...M...W...a...|
00000750  6b 09 0a 00 75 09 0a 00  7f 09 0a 00 89 09 0a 00  |k...u...........|
00000760  93 09 0a 00 9d 09 0a 00  06 75 00 fc ff 02 80 00  |.........u......|
00000770  07 00 00 00 00 00 80 01  07 00 00 00 00 00 80 11  |................|
00000780  07 00 00 00 00 00 00 10  04 00 8e 29 00 80 9c 01  |...........)....|
00000790  07 00 00 00 00 00 9c 11  07 00 00 00 00 00 09 f0  |................|
000007a0  04 00 00 00 00 00 0a f0  04 00 00 00 00 00 0b f0  |................|
000007b0  04 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000007c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000007d0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 ff ff  |................|
000007e0  07 07 00 fe ff ce 18 00  ff ff 08 3d 00 fc ff 02  |...........=....|
000007f0  40 f0 04 00 01 00 00 01  44 f0 04 00 00 00 00 00  |@.......D.......|
00000800  48 f0 04 00 00 00 00 00  4c f0 04 00 00 00 03 03  |H.......L.......|
00000810  50 f0 04 00 00 00 00 00  54 f0 04 00 01 00 00 00  |P.......T.......|
00000820  58 f0 04 00 00 00 00 00  ff ff 09 60 00 00 00 32  |X..........`...2|
00000830  00 32 00 00 00 32 00 32  00 00 00 32 00 32 00 00  |.2...2.2...2.2..|
00000840  00 32 00 32 00 00 00 32  00 32 00 00 00 32 00 32  |.2.2...2.2...2.2|
00000850  00 00 00 32 00 32 00 00  00 32 00 32 00 00 00 32  |...2.2...2.2...2|
00000860  00 32 00 00 00 32 00 32  00 00 00 32 00 32 00 00  |.2...2.2...2.2..|
00000870  00 32 00 32 00 00 00 32  00 32 00 00 00 32 00 32  |.2.2...2.2...2.2|
00000880  00 00 00 32 00 32 00 00  00 32 00 32 00 0a cb 00  |...2.2...2.2....|
00000890  0a 00 00 00 00 00 00 00  00 ff ff 00 00 00 00 00  |................|
000008a0  00 00 00 ff ff 00 00 00  00 00 00 00 00 ff ff 00  |................|
000008b0  00 00 00 00 00 00 00 ff  ff 00 00 00 00 00 00 00  |................|
000008c0  00 ff ff 00 00 00 00 00  00 00 00 ff ff 00 00 00  |................|
000008d0  00 00 00 00 00 ff ff 00  00 00 00 00 00 00 00 ff  |................|
000008e0  ff 00 00 00 00 00 00 00  00 ff ff 00 00 00 00 00  |................|
000008f0  00 00 00 ff ff 00 00 00  00 00 00 00 00 ff ff 00  |................|
00000900  00 00 00 00 00 00 00 ff  ff 00 00 00 00 00 00 00  |................|
00000910  00 ff ff 00 00 00 00 00  00 00 00 ff ff 00 00 00  |................|
00000920  00 00 00 00 00 ff ff 00  00 00 00 00 00 00 00 ff  |................|
00000930  ff 00 00 00 00 00 00 00  00 ff ff 00 00 00 00 00  |................|
00000940  00 00 00 ff ff 00 00 00  00 00 00 00 00 ff ff 00  |................|
00000950  00 00 00 00 00 00 00 ff  ff 00 00 0b c7 00 21 80  |..............!.|
00000960  00 00 00 03 00 00 00 00  00 00 20 00 00 00 00 01  |.......... .....|
00000970  05 70 1d 00 00 00 00 00  00 00 00 00 00 00 00 00  |.p..............|
00000980  80 00 00 00 03 00 00 00  00 00 00 20 00 00 00 00  |........... ....|
00000990  02 05 72 1d 00 00 00 00  00 00 00 00 00 00 00 00  |..r.............|
000009a0  00 80 00 00 00 03 00 00  00 00 00 00 20 00 00 00  |............ ...|
000009b0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000009c0  00 00 80 00 00 00 03 00  00 00 00 00 00 20 00 00  |............. ..|
000009d0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
000009e0  00 00 00 80 00 00 00 03  00 00 00 00 00 00 20 00  |.............. .|
000009f0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000a00  00 00 00 00 80 00 00 00  03 00 00 00 00 00 00 20  |............... |
00000a10  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000a20  00 00 00 00 00 0c 13 00  4a 00 04 00 03 08 3c 84  |........J.....<.|
00000a30  0c 00 00 00 00 00 55 00  00 ff 87 0d 03 00 78 00  |......U.......x.|
00000a40  0a 0e 09 00 01 22 06 5a  00 7e 06 2d 00 0f 8b 00  |.....".Z.~.-....|
00000a50  09 0a 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000a60  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000aa0  00 00 00 00 00 00 00 00  00 00 00 00 09 05 00 00  |................|
00000ab0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000ad0  00 00 00 00 00 00 00 00  00 00 00 10 84 00 10 00  |................|
00000ae0  03 01 00 00 01 08 00 00  08 00 02 00 00 01 04 00  |................|
00000af0  04 00 00 04 08 00 00 00  00 00 00 00 00 00 00 00  |................|
00000b00  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000b10  00 08 00 03 01 00 00 01  08 00 00 08 00 02 00 00  |................|
00000b20  01 04 00 04 00 00 04 08  00 00 00 00 08 00 03 01  |................|
00000b30  00 00 01 08 00 00 08 00  02 00 00 01 04 00 04 00  |................|
00000b40  00 04 08 00 00 00 00 08  00 03 01 00 00 01 08 00  |................|
00000b50  00 08 00 02 00 00 01 04  00 04 00 00 04 08 00 00  |................|
00000b60  00 00 11 08 00 00 00 00  00 00 00 00 00 12 0c 00  |................|
00000b70  01 00 00 00 00 00 00 00  00 00 00 00 13 20 00 0f  |............. ..|
00000b80  02 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000b90  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 14  |................|
00000ba0  9e 00 06 1a 00 00 00 00  00 00 07 3c 00 00 00 00  |...........<....|
00000bb0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000bc0  00 00 00 00 07 3c 00 00  00 00 00 00 00 00 00 00  |.....<..........|
00000bd0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 07 3c  |...............<|
00000be0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000bf0  00 00 00 00 00 00 00 00  07 3c 00 00 00 00 00 00  |.........<......|
00000c00  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000c10  00 00 07 3c 00 00 00 00  00 00 00 00 00 00 00 00  |...<............|
00000c20  00 00 00 00 00 00 00 00  00 00 00 00 07 3c 00 00  |.............<..|
00000c30  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000c40  16 4b 00 00 01 03 07 00  00 00 00 08 01 00 00 00  |.K..............|
00000c50  00 00 00 00 00 30 84 0e  00 00 4c 46 50 5f 50 61  |.....0....LFP_Pa|
00000c60  6e 65 6c 4e 61 6d 65 4c  46 50 5f 50 61 6e 65 6c  |nelNameLFP_Panel|
00000c70  4e 61 6d 65 4c 46 50 5f  50 61 6e 65 6c 4e 61 6d  |NameLFP_PanelNam|
00000c80  65 4c 46 50 5f 50 61 6e  65 6c 4e 61 6d 65 17 48  |eLFP_PanelName.H|
00000c90  00 64 19 00 40 41 00 26  30 18 88 36 00 00 00 00  |.d..@A.&0..6....|
00000ca0  00 00 18 30 2a 00 98 51  00 30 40 30 70 13 00 00  |...0*..Q.0@0p...|
00000cb0  00 00 00 00 1e a8 2f 78  e0 51 1a 26 40 58 98 13  |....../x.Q.&@X..|
00000cc0  00 00 00 00 00 00 1e 48  3f 40 30 62 b0 32 40 40  |.......H?@0b.2@@|
00000cd0  c0 13 00 00 00 00 00 00  1e 18 28 00 36 7f 03 00  |..........(.6...|
00000ce0  01 00 00 00 00 0c 36 7f  05 00 02 00 00 00 00 0c  |......6.........|
00000cf0  36 7f 01 90 03 00 00 00  00 0c 36 7f 06 00 04 00  |6.........6.....|
00000d00  00 00 00 0c 19 28 00 19  00 fa 00 fa 00 19 00 90  |.....(..........|
00000d10  01 20 00 20 00 20 00 20  00 c8 00 40 00 40 00 40  |. . . . ...@.@.@|
00000d20  00 40 00 2c 01 40 00 40  00 40 00 40 00 2c 01 1a  |.@.,.@.@.@.@.,..|
00000d30  02 00 00 00 1b cc 00 d0  07 0a 00 d0 07 f4 01 88  |................|
00000d40  13 d0 07 0a 00 d0 07 f4  01 88 13 d0 07 0a 00 d0  |................|
00000d50  07 f4 01 88 13 d0 07 0a  00 d0 07 f4 01 88 13 d0  |................|
00000d60  07 0a 00 d0 07 f4 01 88  13 d0 07 0a 00 d0 07 f4  |................|
00000d70  01 88 13 d0 07 0a 00 d0  07 f4 01 88 13 d0 07 0a  |................|
00000d80  00 d0 07 f4 01 88 13 d0  07 0a 00 d0 07 f4 01 88  |................|
00000d90  13 d0 07 0a 00 d0 07 f4  01 88 13 d0 07 0a 00 d0  |................|
00000da0  07 f4 01 88 13 d0 07 0a  00 d0 07 f4 01 88 13 d0  |................|
00000db0  07 0a 00 d0 07 f4 01 88  13 d0 07 0a 00 d0 07 f4  |................|
00000dc0  01 88 13 d0 07 0a 00 d0  07 f4 01 88 13 d0 07 0a  |................|
00000dd0  00 d0 07 f4 01 88 13 00  00 00 00 00 00 00 00 00  |................|
00000de0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00000e00  00 ff ff 1c 36 00 d6 09  80 90 20 e0 1d 10 08 60  |....6..... ....`|
00000e10  22 00 00 00 00 00 00 1e  d6 09 80 90 20 e0 1d 10  |"........... ...|
00000e20  08 60 22 00 00 00 00 00  00 1e d6 09 80 90 20 e0  |.`"........... .|
00000e30  1d 10 08 60 22 00 00 00  00 00 00 1e 1d 34 00 10  |...`"........4..|
00000e40  00 01 01 09 08 02 05 04  0c 00 00 00 00 00 00 00  |................|
00000e50  00 00 08 00 01 01 09 08  02 05 04 0c 00 08 00 01  |................|
00000e60  01 09 08 02 05 04 0c 00  08 00 01 01 09 08 02 05  |................|
00000e70  04 0c 00 1e 11 00 0f 01  00 00 00 00 00 00 00 00  |................|
00000e80  00 00 00 00 00 00 00 28  18 00 01 00 73 00 00 00  |.......(....s...|
00000e90  00 00 bf 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
00000ea0  00 00 29 94 00 03 0c 0b  20 32 0b 12 44 0b 0a 4e  |..)..... 2..D..N|
00000eb0  0b 20 74 0b 12 86 0b 0a  90 0b 20 b6 0b 12 c8 0b  |. t....... .....|
00000ec0  0a d2 0b 20 f8 0b 12 0a  0c 0a 14 0c 20 3a 0c 12  |... ........ :..|
00000ed0  4c 0c 0a 56 0c 20 7c 0c  12 8e 0c 0a 98 0c 20 be  |L..V. |....... .|
00000ee0  0c 12 d0 0c 0a da 0c 20  00 0d 12 12 0d 0a 1c 0d  |....... ........|
00000ef0  20 42 0d 12 54 0d 0a 5e  0d 20 84 0d 12 96 0d 0a  | B..T..^. ......|
00000f00  a0 0d 20 c6 0d 12 d8 0d  0a e2 0d 20 08 0e 12 1a  |.. ........ ....|
00000f10  0e 0a 24 0e 20 4a 0e 12  5c 0e 0a 66 0e 20 8c 0e  |..$. J..\..f. ..|
00000f20  12 9e 0e 0a a8 0e 20 ce  0e 12 e0 0e 0a ea 0e 20  |...... ........ |
00000f30  10 0f 12 22 0f 0a 2c 0f  0d 2a f0 04 56 05 00 03  |..."..,..*..V...|
00000f40  80 11 0e 00 00 03 00 00  08 72 0c 00 d0 07 58 02  |.........r....X.|
00000f50  0c 72 0c 00 d0 07 f4 01  10 72 0c 00 05 0f 27 00  |.r.......r....'.|
00000f60  ff ff d6 09 80 90 20 e0  1d 10 08 60 22 00 00 00  |...... ....`"...|
00000f70  00 00 00 1e 36 7f 01 00  01 00 00 00 00 0c 80 07  |....6...........|
00000f80  38 04 80 11 0e 00 3c 03  30 00 08 72 0c 00 d0 07  |8.....<.0..r....|
00000f90  90 01 0c 72 0c 00 fc 08  c8 00 10 72 0c 00 05 0f  |...r.......r....|
00000fa0  27 00 ff ff 1a 36 80 a0  70 38 1f 40 30 20 35 00  |'....6..p8.@0 5.|
00000fb0  59 c2 10 00 00 19 36 7f  05 00 04 00 00 00 00 0c  |Y.....6.........|
00000fc0  56 05 00 03 80 11 0e 00  00 03 00 00 08 72 0c 00  |V............r..|
00000fd0  d0 07 90 01 0c 72 0c 00  fc 08 c8 00 10 72 0c 00  |.....r.......r..|
00000fe0  05 0f 27 00 ff ff 64 19  00 40 41 00 26 30 18 88  |..'...d..@A.&0..|
00000ff0  36 00 00 00 00 00 00 18  36 7f 03 00 03 00 00 00  |6.......6.......|
00001000  00 0c 56 05 00 03 80 11  0e 00 3c 03 00 00 08 72  |..V.......<....r|
00001010  0c 00 d0 07 90 01 0c 72  0c 00 fc 08 c8 00 10 72  |.......r.......r|
00001020  0c 00 05 0f 27 00 ff ff  30 2a 00 98 51 00 30 40  |....'...0*..Q.0@|
00001030  30 70 13 00 00 00 00 00  00 1e 36 7f 05 00 04 00  |0p........6.....|
00001040  00 00 00 0c 56 05 00 03  80 11 0e 00 3c 03 00 00  |....V.......<...|
00001050  08 72 0c 00 d0 07 58 02  0c 72 0c 00 d0 07 f4 01  |.r....X..r......|
00001060  10 72 0c 00 05 0f 27 00  ff ff 30 2a 78 20 51 1a  |.r....'...0*x Q.|
00001070  10 40 10 70 13 00 00 00  00 00 00 1e 36 7f 01 90  |.@.p........6...|
00001080  05 00 00 00 00 0c 56 05  00 03 80 11 0e 00 3c 03  |......V.......<.|
00001090  00 00 08 72 0c 00 b8 0b  90 01 0c 72 0c 00 fc 08  |...r.......r....|
000010a0  c8 00 10 72 0c 00 05 0f  27 00 ff ff 30 2a 00 98  |...r....'...0*..|
000010b0  51 00 30 40 30 70 13 00  00 00 00 00 00 1e 36 7f  |Q.0@0p........6.|
000010c0  05 00 04 00 00 00 00 0c  40 06 b0 04 80 11 0e 00  |........@.......|
000010d0  3c 03 00 00 08 72 0c 00  d0 07 58 02 0c 72 0c 00  |<....r....X..r..|
000010e0  d0 07 f4 01 10 72 0c 00  05 0f 27 00 ff ff 48 3f  |.....r....'...H?|
000010f0  40 30 62 b0 32 40 40 c0  13 00 00 00 00 00 00 1e  |@0b.2@@.........|
00001100  36 7f 06 00 07 00 00 00  00 0c 56 05 00 03 80 11  |6.........V.....|
00001110  0e 00 00 03 00 00 08 72  0c 00 d0 07 58 02 0c 72  |.......r....X..r|
00001120  0c 00 d0 07 f4 01 10 72  0c 00 05 0f 27 00 ff ff  |.......r....'...|
00001130  66 21 56 aa 51 00 1e 30  46 90 14 00 00 00 00 00  |f!V.Q..0F.......|
00001140  00 18 36 7f 03 90 08 00  00 00 00 01 90 06 1a 04  |..6.............|
00001150  80 11 0e 00 3c 03 00 00  08 72 0c 00 d0 07 58 02  |....<....r....X.|
00001160  0c 72 0c 00 d0 07 f4 01  10 72 0c 00 05 0f 27 00  |.r.......r....'.|
00001170  ff ff 7c 2e 90 a0 60 1a  1e 40 30 20 36 00 00 00  |..|...`..@0 6...|
00001180  00 00 00 1e 36 7f 04 90  09 00 00 00 00 0c 80 07  |....6...........|
00001190  b0 04 80 11 0e 00 3c 03  00 00 08 72 0c 00 d0 07  |......<....r....|
000011a0  58 02 0c 72 0c 00 d0 07  f4 01 10 72 0c 00 05 0f  |X..r.......r....|
000011b0  27 00 ff ff 28 3c 80 a0  70 b0 23 40 30 20 2a 00  |'...(<..p.#@0 *.|
000011c0  00 00 00 00 00 1e 36 7f  05 90 0a 00 00 00 00 0c  |......6.........|
000011d0  a0 05 84 03 80 11 0e 00  00 03 00 00 08 72 0c 00  |.............r..|
000011e0  d0 07 58 02 0c 72 0c 00  d0 07 f4 01 10 72 0c 00  |..X..r.......r..|
000011f0  05 0f 27 00 ff ff 9a 29  a0 d0 51 84 22 30 50 99  |..'....)..Q."0P.|
00001200  17 00 00 00 00 00 00 1e  36 7f 03 00 0b 00 00 00  |........6.......|
00001210  00 0c 40 06 84 03 80 11  0e 00 00 03 00 00 08 72  |..@............r|
00001220  0c 00 d0 07 58 02 0c 72  0c 00 d0 07 f4 01 10 72  |....X..r.......r|
00001230  0c 00 05 0f 27 00 ff ff  30 2a 40 c8 60 84 64 30  |....'...0*@.`.d0|
00001240  18 51 04 00 00 00 00 00  00 1e 36 7f 03 00 0c 00  |.Q........6.....|
00001250  00 00 00 0c 00 04 00 03  80 11 0e 00 00 03 00 00  |................|
00001260  08 72 0c 00 d0 07 58 02  0c 72 0c 00 d0 07 f4 01  |.r....X..r......|
00001270  10 72 0c 00 05 0f 27 00  ff ff 64 19 00 40 41 00  |.r....'...d..@A.|
00001280  26 30 18 88 36 00 00 00  00 00 00 1e 36 7f 03 00  |&0..6.......6...|
00001290  0d 00 00 00 00 0c 00 05  20 03 80 11 0e 00 00 03  |........ .......|
000012a0  00 00 08 72 0c 00 d0 07  58 02 0c 72 0c 00 d0 07  |...r....X..r....|
000012b0  f4 01 10 72 0c 00 05 0f  27 00 ff ff ea 1a 00 a0  |...r....'.......|
000012c0  50 20 17 30 0c 30 43 00  00 00 00 00 00 1e 36 7f  |P .0.0C.......6.|
000012d0  03 90 0e 00 00 00 00 0c  80 07 38 04 80 11 0e 00  |..........8.....|
000012e0  00 03 00 00 08 72 0c 00  d0 07 58 02 0c 72 0c 00  |.....r....X..r..|
000012f0  d0 07 f4 01 10 72 0c 00  05 0f 27 00 ff ff 02 3a  |.....r....'....:|
00001300  80 18 71 38 2d 40 58 2d  36 00 00 00 00 00 00 1e  |..q8-@X-6.......|
00001310  36 7f 03 00 0f 00 00 00  00 0c 00 08 00 06 80 11  |6...............|
00001320  0e 00 3c 03 00 00 08 72  0c 00 d0 07 58 02 0c 72  |..<....r....X..r|
00001330  0c 00 d0 07 f4 01 10 72  0c 00 05 0f 27 00 ff ff  |.......r....'...|
00001340  29 40 00 60 80 00 13 60  10 10 11 00 00 00 00 00  |)@.`...`........|
00001350  00 1e 36 7f 03 00 10 00  00 00 00 0c 4c 46 50 5f  |..6.........LFP_|
00001360  50 61 6e 65 6c 4e 61 6d  65 4c 46 50 5f 50 61 6e  |PanelNameLFP_Pan|
00001370  65 6c 4e 61 6d 65 4c 46  50 5f 50 61 6e 65 6c 4e  |elNameLFP_PanelN|
00001380  61 6d 65 4c 46 50 5f 50  61 6e 65 6c 4e 61 6d 65  |ameLFP_PanelName|
00001390  4c 46 50 5f 50 61 6e 65  6c 4e 61 6d 65 4c 46 50  |LFP_PanelNameLFP|
000013a0  5f 50 61 6e 65 6c 4e 61  6d 65 4c 46 50 5f 50 61  |_PanelNameLFP_Pa|
000013b0  6e 65 6c 4e 61 6d 65 4c  46 50 5f 50 61 6e 65 6c  |nelNameLFP_Panel|
000013c0  4e 61 6d 65 4c 46 50 5f  50 61 6e 65 6c 4e 61 6d  |NameLFP_PanelNam|
000013d0  65 4c 46 50 5f 50 61 6e  65 6c 4e 61 6d 65 4c 46  |eLFP_PanelNameLF|
000013e0  50 5f 50 61 6e 65 6c 4e  61 6d 65 4c 46 50 5f 50  |P_PanelNameLFP_P|
000013f0  61 6e 65 6c 4e 61 6d 65  4c 46 50 5f 50 61 6e 65  |anelNameLFP_Pane|
00001400  6c 4e 61 6d 65 4c 46 50  5f 50 61 6e 65 6c 4e 61  |lNameLFP_PanelNa|
00001410  6d 65 4c 46 50 5f 50 61  6e 65 6c 4e 61 6d 65 4c  |meLFP_PanelNameL|
00001420  46 50 5f 50 61 6e 65 6c  4e 61 6d 65 2b 71 00 06  |FP_PanelName+q..|
00001430  4a c8 00 00 58 aa 4a d2  00 00 58 aa 4a 58 02 00  |J...X.J...X.JX..|
00001440  58 aa 4a e8 03 00 58 aa  4a 2c 01 00 58 aa 4a c8  |X.J...X.J,..X.J.|
00001450  00 00 58 aa 4a c8 00 00  58 aa 4a c8 00 00 58 aa  |..X.J...X.J...X.|
00001460  4a c8 00 00 58 aa 4a c8  00 00 58 aa 4a c8 00 00  |J...X.J...X.J...|
00001470  58 aa 4a c8 00 00 58 aa  4a c8 00 00 58 aa 4a c8  |X.J...X.J...X.J.|
00001480  00 00 58 aa 4a c8 00 00  58 aa 4a c8 00 00 58 aa  |..X.J...X.J...X.|
00001490  ff ff ff ff ff ff ff ff  ff ff ff ff ff ff ff ff  |................|
000014a0  2c 15 00 83 46 00 00 00  49 00 0a 00 55 00 50 00  |,...F...I...U.P.|
000014b0  64 00 2c 01 96 00 e8 03  00 00 00 00 00 00 00 00  |d.,.............|
000014c0  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
*
00002000

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: [Intel-gfx] i915 black screen introduced by ACPI changes
  2013-03-15  7:29                                     ` Jani Nikula
  2013-03-15  9:00                                       ` Chris Li
@ 2013-03-15  9:06                                       ` Chris Li
  2013-03-15  9:33                                       ` Chris Li
  2013-03-19  8:13                                       ` Chris Li
  3 siblings, 0 replies; 29+ messages in thread
From: Chris Li @ 2013-03-15  9:06 UTC (permalink / raw)
  To: Jani Nikula
  Cc: Daniel Vetter, len.brown, feng.tang, intel-gfx, linux-kernel,
	robert.moore, Linus Torvalds, Zhang Rui

On Fri, Mar 15, 2013 at 12:29 AM, Jani Nikula
<jani.nikula@linux.intel.com> wrote:
> I've never used the acpi_osi= kernel parameter, but it looks like you
> could workaround this with acpi_osi="!Windows 2012". Please check that
> running the "bad" kernel.

That did not work for me. Still have black screen on the tip of git.
I did that to the gurb2-efi.cfg
Here is my kernel cmdline:

$ cat /proc/cmdline
BOOT_IMAGE=/vmlinuz-3.9.0-rc2+
root=UUID=75d90f06-bcdc-40c0-a3a3-7edf9af38d41 ro rd.md=0 rd.lvm=0
rd.dm=0 rd.luks=0 vconsole.keymap=us LANG=en_US.UTF-8 drm.debug=0xe
"acpi_osi=!Windows\x202012"

Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: [Intel-gfx] i915 black screen introduced by ACPI changes
  2013-03-15  7:29                                     ` Jani Nikula
  2013-03-15  9:00                                       ` Chris Li
  2013-03-15  9:06                                       ` Chris Li
@ 2013-03-15  9:33                                       ` Chris Li
  2013-03-19  8:13                                       ` Chris Li
  3 siblings, 0 replies; 29+ messages in thread
From: Chris Li @ 2013-03-15  9:33 UTC (permalink / raw)
  To: Jani Nikula
  Cc: Daniel Vetter, len.brown, feng.tang, intel-gfx, linux-kernel,
	robert.moore, Linus Torvalds, Zhang Rui

On Fri, Mar 15, 2013 at 12:29 AM, Jani Nikula
<jani.nikula@linux.intel.com> wrote:

> Fun. The BIOS seems to ask for zero backlight. Maybe it means something
> else for Windows 8. White is the new black or something.

I did some experiment, I go to intel_backlight directory.
It show brightness is 4648, but actual_brightness is 0.
Then I do "echo 4648 > brightness", the screen actually
come back to light. X window function properly.

However, if I go to suspend and resume. It is black screen
again.

If I use the Fn+Brightness to adjust the brightness. It seems
the ACPI brightness is set to lowest. One press of "Fn+Brightness up"
will give me about 10% of the brightness. It does not feel like
white is the new black.

Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

* Re: [Intel-gfx] i915 black screen introduced by ACPI changes
  2013-03-15  7:29                                     ` Jani Nikula
                                                         ` (2 preceding siblings ...)
  2013-03-15  9:33                                       ` Chris Li
@ 2013-03-19  8:13                                       ` Chris Li
  3 siblings, 0 replies; 29+ messages in thread
From: Chris Li @ 2013-03-19  8:13 UTC (permalink / raw)
  To: Jani Nikula
  Cc: Daniel Vetter, len.brown, feng.tang, intel-gfx, linux-kernel,
	robert.moore, Linus Torvalds, Zhang Rui

On Fri, Mar 15, 2013 at 12:29 AM, Jani Nikula
<jani.nikula@linux.intel.com> wrote:
> I've never used the acpi_osi= kernel parameter, but it looks like you
> could workaround this with acpi_osi="!Windows 2012". Please check that
> running the "bad" kernel.

I find out that I just can't set the acpi_osi="!Windows 2012" properly
in grub2.cfg.
Grub2 will second guess the quote and change it. So it end up Linux kernel will
 see "acpi_osi=!Windows\x202012" or some thing like that.

However, I just find out that if I set acpi_osi=Linux the black screen
will go away.
That is one usable work around on the stock fedora kernel.

Chris

^ permalink raw reply	[flat|nested] 29+ messages in thread

end of thread, other threads:[~2013-03-19  8:13 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-18  4:43 i915 black screen introduced by ACPI changes Chris Li
2013-02-19 18:08 ` Jesse Barnes
2013-02-19 20:18   ` Chris Li
2013-02-19 20:52     ` Jesse Barnes
2013-02-20  7:17       ` Chris Li
2013-02-20 10:57         ` Daniel Vetter
2013-02-20 19:29           ` Chris Li
2013-02-20 19:33             ` Chris Li
2013-02-20 19:37               ` Chris Li
2013-02-20 19:45           ` Chris Li
2013-02-20 20:01             ` Chris Li
2013-02-20 20:19             ` Daniel Vetter
2013-02-20 20:23               ` Chris Li
2013-02-20 20:43               ` Chris Li
2013-02-20 21:04                 ` Chris Li
2013-02-22 22:42                   ` Chris Li
2013-03-04 17:11                     ` Chris Li
2013-03-04 17:49                       ` Daniel Vetter
2013-03-04 17:50                         ` Daniel Vetter
2013-03-04 23:16                           ` Chris Li
2013-03-04 23:33                             ` Chris Li
2013-03-11 13:16                               ` [Intel-gfx] " Jani Nikula
2013-03-14 20:10                                 ` Chris Li
2013-03-14 20:49                                   ` Chris Li
2013-03-15  7:29                                     ` Jani Nikula
2013-03-15  9:00                                       ` Chris Li
2013-03-15  9:06                                       ` Chris Li
2013-03-15  9:33                                       ` Chris Li
2013-03-19  8:13                                       ` Chris Li

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).