All of lore.kernel.org
 help / color / mirror / Atom feed
* Loading initrd above 4G causes freeze on boot
@ 2014-08-09 14:23 ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-09 14:23 UTC (permalink / raw)
  To: linux-kernel, linux-efi; +Cc: Yinghai Lu

As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
the kernel freezes at the earliest possible moment when trying to boot
via UEFI on my Asus laptop. (It still boots via BIOS.)

If I revert that commit on current master (c309bfa9b481), it boots
correctly again [although I see "setup_efi_pci() failed" being printed].

(Seems like it freezes when handle_cmdline_files() attempts to read
the last chunk of the initramfs -- the last call to efi_file_read()
never returns. Figuring out why that happens is beyond me, though.)

-- 
Mantas Mikulėnas <grawity@gmail.com>

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

* Loading initrd above 4G causes freeze on boot
@ 2014-08-09 14:23 ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-09 14:23 UTC (permalink / raw)
  To: linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-efi-u79uwXL29TY76Z2rM5mHXA
  Cc: Yinghai Lu

As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
the kernel freezes at the earliest possible moment when trying to boot
via UEFI on my Asus laptop. (It still boots via BIOS.)

If I revert that commit on current master (c309bfa9b481), it boots
correctly again [although I see "setup_efi_pci() failed" being printed].

(Seems like it freezes when handle_cmdline_files() attempts to read
the last chunk of the initramfs -- the last call to efi_file_read()
never returns. Figuring out why that happens is beyond me, though.)

-- 
Mantas Mikulėnas <grawity-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-09 16:44   ` Yinghai Lu
  0 siblings, 0 replies; 36+ messages in thread
From: Yinghai Lu @ 2014-08-09 16:44 UTC (permalink / raw)
  To: Mantas Mikulėnas, Matt Fleming; +Cc: Linux Kernel Mailing List, linux-efi

On Sat, Aug 9, 2014 at 7:23 AM, Mantas Mikulėnas <grawity@gmail.com> wrote:
> As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
> the kernel freezes at the earliest possible moment when trying to boot
> via UEFI on my Asus laptop. (It still boots via BIOS.)
>
> If I revert that commit on current master (c309bfa9b481), it boots
> correctly again [although I see "setup_efi_pci() failed" being printed].
>
> (Seems like it freezes when handle_cmdline_files() attempts to read
> the last chunk of the initramfs -- the last call to efi_file_read()
> never returns. Figuring out why that happens is beyond me, though.)
>

Matt found that efi_file_read()/firmware has problem that could not do
several reading. Please check if reverting that commit have any
difference.

---
I spent some time playing around with this bug and it appears to be
triggered by the read-a-chunk-at-a-time logic in handle_cmdline_files(),
(which is itself a bug workaround) introduced here,

  commit 2d2da60fb40a
  Author: Maarten Lankhorst <m.b.lankhorst@gmail.com>
  Date:   Fri Dec 16 13:30:58 2011 +0100

      x86, efi: Break up large initrd reads
---

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-09 16:44   ` Yinghai Lu
  0 siblings, 0 replies; 36+ messages in thread
From: Yinghai Lu @ 2014-08-09 16:44 UTC (permalink / raw)
  To: Mantas Mikulėnas, Matt Fleming
  Cc: Linux Kernel Mailing List, linux-efi-u79uwXL29TY76Z2rM5mHXA

On Sat, Aug 9, 2014 at 7:23 AM, Mantas Mikulėnas <grawity-Re5JQEeQqe8@public.gmane.orgm> wrote:
> As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
> the kernel freezes at the earliest possible moment when trying to boot
> via UEFI on my Asus laptop. (It still boots via BIOS.)
>
> If I revert that commit on current master (c309bfa9b481), it boots
> correctly again [although I see "setup_efi_pci() failed" being printed].
>
> (Seems like it freezes when handle_cmdline_files() attempts to read
> the last chunk of the initramfs -- the last call to efi_file_read()
> never returns. Figuring out why that happens is beyond me, though.)
>

Matt found that efi_file_read()/firmware has problem that could not do
several reading. Please check if reverting that commit have any
difference.

---
I spent some time playing around with this bug and it appears to be
triggered by the read-a-chunk-at-a-time logic in handle_cmdline_files(),
(which is itself a bug workaround) introduced here,

  commit 2d2da60fb40a
  Author: Maarten Lankhorst <m.b.lankhorst-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
  Date:   Fri Dec 16 13:30:58 2011 +0100

      x86, efi: Break up large initrd reads
---

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-09 19:23     ` Matt Fleming
  0 siblings, 0 replies; 36+ messages in thread
From: Matt Fleming @ 2014-08-09 19:23 UTC (permalink / raw)
  To: Yinghai Lu
  Cc: Mantas Mikulėnas, Matt Fleming, Linux Kernel Mailing List,
	linux-efi

On Sat, 09 Aug, at 09:44:55AM, Yinghai Lu wrote:
> On Sat, Aug 9, 2014 at 7:23 AM, Mantas Mikulėnas <grawity@gmail.com> wrote:
> > As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
> > the kernel freezes at the earliest possible moment when trying to boot
> > via UEFI on my Asus laptop. (It still boots via BIOS.)
> >
> > If I revert that commit on current master (c309bfa9b481), it boots
> > correctly again [although I see "setup_efi_pci() failed" being printed].
> >
> > (Seems like it freezes when handle_cmdline_files() attempts to read
> > the last chunk of the initramfs -- the last call to efi_file_read()
> > never returns. Figuring out why that happens is beyond me, though.)
> >
> 
> Matt found that efi_file_read()/firmware has problem that could not do
> several reading. Please check if reverting that commit have any
> difference.
> 
> ---
> I spent some time playing around with this bug and it appears to be
> triggered by the read-a-chunk-at-a-time logic in handle_cmdline_files(),
> (which is itself a bug workaround) introduced here,
> 
>   commit 2d2da60fb40a
>   Author: Maarten Lankhorst <m.b.lankhorst@gmail.com>
>   Date:   Fri Dec 16 13:30:58 2011 +0100
> 
>       x86, efi: Break up large initrd reads

Right, I committed a patch to workaround this problem here,

  http://git.kernel.org/cgit/linux/kernel/git/mfleming/efi.git/commit/?h=next&id=1c24a2bef39f041eb578189207240d0457ef0ac3

since on my ASUS machine the combination of breaking up initrd reads
into chunks and reading into a buffer above 4G actually triggers a whole
new bug.

Mantas, could you try out the patch referenced above and pass
"efi=nochunk" on the command line to the EFI boot stub. I'm hoping that
fixes your problem.

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-09 19:23     ` Matt Fleming
  0 siblings, 0 replies; 36+ messages in thread
From: Matt Fleming @ 2014-08-09 19:23 UTC (permalink / raw)
  To: Yinghai Lu
  Cc: Mantas Mikulėnas, Matt Fleming, Linux Kernel Mailing List,
	linux-efi-u79uwXL29TY76Z2rM5mHXA

On Sat, 09 Aug, at 09:44:55AM, Yinghai Lu wrote:
> On Sat, Aug 9, 2014 at 7:23 AM, Mantas Mikulėnas <grawity@gmail.com> wrote:
> > As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
> > the kernel freezes at the earliest possible moment when trying to boot
> > via UEFI on my Asus laptop. (It still boots via BIOS.)
> >
> > If I revert that commit on current master (c309bfa9b481), it boots
> > correctly again [although I see "setup_efi_pci() failed" being printed].
> >
> > (Seems like it freezes when handle_cmdline_files() attempts to read
> > the last chunk of the initramfs -- the last call to efi_file_read()
> > never returns. Figuring out why that happens is beyond me, though.)
> >
> 
> Matt found that efi_file_read()/firmware has problem that could not do
> several reading. Please check if reverting that commit have any
> difference.
> 
> ---
> I spent some time playing around with this bug and it appears to be
> triggered by the read-a-chunk-at-a-time logic in handle_cmdline_files(),
> (which is itself a bug workaround) introduced here,
> 
>   commit 2d2da60fb40a
>   Author: Maarten Lankhorst <m.b.lankhorst-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
>   Date:   Fri Dec 16 13:30:58 2011 +0100
> 
>       x86, efi: Break up large initrd reads

Right, I committed a patch to workaround this problem here,

  http://git.kernel.org/cgit/linux/kernel/git/mfleming/efi.git/commit/?h=next&id=1c24a2bef39f041eb578189207240d0457ef0ac3

since on my ASUS machine the combination of breaking up initrd reads
into chunks and reading into a buffer above 4G actually triggers a whole
new bug.

Mantas, could you try out the patch referenced above and pass
"efi=nochunk" on the command line to the EFI boot stub. I'm hoping that
fixes your problem.

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-09 22:45       ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-09 22:45 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List, linux-efi

On Sat, Aug 9, 2014 at 10:23 PM, Matt Fleming <matt@console-pimps.org> wrote:
>
> On Sat, 09 Aug, at 09:44:55AM, Yinghai Lu wrote:
> > On Sat, Aug 9, 2014 at 7:23 AM, Mantas Mikulėnas <grawity@gmail.com> wrote:
> > > As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
> > > the kernel freezes at the earliest possible moment when trying to boot
> > > via UEFI on my Asus laptop. (It still boots via BIOS.)
> > >
> > > If I revert that commit on current master (c309bfa9b481), it boots
> > > correctly again [although I see "setup_efi_pci() failed" being printed].
> > >
> > > (Seems like it freezes when handle_cmdline_files() attempts to read
> > > the last chunk of the initramfs -- the last call to efi_file_read()
> > > never returns. Figuring out why that happens is beyond me, though.)
> > >
> >
> > Matt found that efi_file_read()/firmware has problem that could not do
> > several reading. Please check if reverting that commit have any
> > difference.
> >
> > ---
> > I spent some time playing around with this bug and it appears to be
> > triggered by the read-a-chunk-at-a-time logic in handle_cmdline_files(),
> > (which is itself a bug workaround) introduced here,
> >
> >   commit 2d2da60fb40a
> >   Author: Maarten Lankhorst <m.b.lankhorst@gmail.com>
> >   Date:   Fri Dec 16 13:30:58 2011 +0100
> >
> >       x86, efi: Break up large initrd reads
>
> Right, I committed a patch to workaround this problem here,
>
>   http://git.kernel.org/cgit/linux/kernel/git/mfleming/efi.git/commit/?h=next&id=1c24a2bef39f041eb578189207240d0457ef0ac3
>
> since on my ASUS machine the combination of breaking up initrd reads
> into chunks and reading into a buffer above 4G actually triggers a whole
> new bug.
>
> Mantas, could you try out the patch referenced above and pass
> "efi=nochunk" on the command line to the EFI boot stub. I'm hoping that
> fixes your problem.

Thanks for the patch, I've just tested it but the problem remains; the
system freezes even when reading the entire initramfs at once.

[However... Whether it's five chunks, four (after making the initrd
smaller), or just one (with your efi=nochunk), I noticed that it
*always* hangs during the *last* read, and the allocated memory always
ends at roughly the same address (0x137fffXXX). I wonder if it's
selecting a memory location already in use, or something like that...]

(The laptop is Asus K52JT, AMI firmware v206, no updates available.)

-- 
Mantas Mikulėnas <grawity@gmail.com>

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-09 22:45       ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-09 22:45 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List,
	linux-efi-u79uwXL29TY76Z2rM5mHXA

On Sat, Aug 9, 2014 at 10:23 PM, Matt Fleming <matt-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org> wrote:
>
> On Sat, 09 Aug, at 09:44:55AM, Yinghai Lu wrote:
> > On Sat, Aug 9, 2014 at 7:23 AM, Mantas Mikulėnas <grawity@gmail.com> wrote:
> > > As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
> > > the kernel freezes at the earliest possible moment when trying to boot
> > > via UEFI on my Asus laptop. (It still boots via BIOS.)
> > >
> > > If I revert that commit on current master (c309bfa9b481), it boots
> > > correctly again [although I see "setup_efi_pci() failed" being printed].
> > >
> > > (Seems like it freezes when handle_cmdline_files() attempts to read
> > > the last chunk of the initramfs -- the last call to efi_file_read()
> > > never returns. Figuring out why that happens is beyond me, though.)
> > >
> >
> > Matt found that efi_file_read()/firmware has problem that could not do
> > several reading. Please check if reverting that commit have any
> > difference.
> >
> > ---
> > I spent some time playing around with this bug and it appears to be
> > triggered by the read-a-chunk-at-a-time logic in handle_cmdline_files(),
> > (which is itself a bug workaround) introduced here,
> >
> >   commit 2d2da60fb40a
> >   Author: Maarten Lankhorst <m.b.lankhorst-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> >   Date:   Fri Dec 16 13:30:58 2011 +0100
> >
> >       x86, efi: Break up large initrd reads
>
> Right, I committed a patch to workaround this problem here,
>
>   http://git.kernel.org/cgit/linux/kernel/git/mfleming/efi.git/commit/?h=next&id=1c24a2bef39f041eb578189207240d0457ef0ac3
>
> since on my ASUS machine the combination of breaking up initrd reads
> into chunks and reading into a buffer above 4G actually triggers a whole
> new bug.
>
> Mantas, could you try out the patch referenced above and pass
> "efi=nochunk" on the command line to the EFI boot stub. I'm hoping that
> fixes your problem.

Thanks for the patch, I've just tested it but the problem remains; the
system freezes even when reading the entire initramfs at once.

[However... Whether it's five chunks, four (after making the initrd
smaller), or just one (with your efi=nochunk), I noticed that it
*always* hangs during the *last* read, and the allocated memory always
ends at roughly the same address (0x137fffXXX). I wonder if it's
selecting a memory location already in use, or something like that...]

(The laptop is Asus K52JT, AMI firmware v206, no updates available.)

-- 
Mantas Mikulėnas <grawity-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-10  5:55         ` Yinghai Lu
  0 siblings, 0 replies; 36+ messages in thread
From: Yinghai Lu @ 2014-08-10  5:55 UTC (permalink / raw)
  To: Mantas Mikulėnas
  Cc: Matt Fleming, Matt Fleming, Linux Kernel Mailing List, linux-efi

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

On Sat, Aug 9, 2014 at 3:45 PM, Mantas Mikulėnas <grawity@gmail.com> wrote:
> On Sat, Aug 9, 2014 at 10:23 PM, Matt Fleming <matt@console-pimps.org> wrote:
> [However... Whether it's five chunks, four (after making the initrd
> smaller), or just one (with your efi=nochunk), I noticed that it
> *always* hangs during the *last* read, and the allocated memory always
> ends at roughly the same address (0x137fffXXX). I wonder if it's
> selecting a memory location already in use, or something like that...]
>
> (The laptop is Asus K52JT, AMI firmware v206, no updates available.)

wonder if  efi_file_read return with wrong chunksize.

Can you try attached patch ?

Thanks

Yinghai

[-- Attachment #2: efi_file_read_debug.patch --]
[-- Type: text/x-patch, Size: 736 bytes --]

---
 drivers/firmware/efi/libstub/efi-stub-helper.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: linux-2.6/drivers/firmware/efi/libstub/efi-stub-helper.c
===================================================================
--- linux-2.6.orig/drivers/firmware/efi/libstub/efi-stub-helper.c
+++ linux-2.6/drivers/firmware/efi/libstub/efi-stub-helper.c
@@ -431,7 +431,8 @@ efi_status_t handle_cmdline_files(efi_sy
 				status = efi_file_read(files[j].handle,
 						       &chunksize,
 						       (void *)addr);
-				if (status != EFI_SUCCESS) {
+				if (status != EFI_SUCCESS ||
+				    chunksize > size || !chunksize) {
 					pr_efi_err(sys_table_arg, "Failed to read file\n");
 					goto free_file_total;
 				}

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-10  5:55         ` Yinghai Lu
  0 siblings, 0 replies; 36+ messages in thread
From: Yinghai Lu @ 2014-08-10  5:55 UTC (permalink / raw)
  To: Mantas Mikulėnas
  Cc: Matt Fleming, Matt Fleming, Linux Kernel Mailing List,
	linux-efi-u79uwXL29TY76Z2rM5mHXA

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

On Sat, Aug 9, 2014 at 3:45 PM, Mantas Mikulėnas <grawity-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:
> On Sat, Aug 9, 2014 at 10:23 PM, Matt Fleming <matt-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org> wrote:
> [However... Whether it's five chunks, four (after making the initrd
> smaller), or just one (with your efi=nochunk), I noticed that it
> *always* hangs during the *last* read, and the allocated memory always
> ends at roughly the same address (0x137fffXXX). I wonder if it's
> selecting a memory location already in use, or something like that...]
>
> (The laptop is Asus K52JT, AMI firmware v206, no updates available.)

wonder if  efi_file_read return with wrong chunksize.

Can you try attached patch ?

Thanks

Yinghai

[-- Attachment #2: efi_file_read_debug.patch --]
[-- Type: text/x-patch, Size: 736 bytes --]

---
 drivers/firmware/efi/libstub/efi-stub-helper.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Index: linux-2.6/drivers/firmware/efi/libstub/efi-stub-helper.c
===================================================================
--- linux-2.6.orig/drivers/firmware/efi/libstub/efi-stub-helper.c
+++ linux-2.6/drivers/firmware/efi/libstub/efi-stub-helper.c
@@ -431,7 +431,8 @@ efi_status_t handle_cmdline_files(efi_sy
 				status = efi_file_read(files[j].handle,
 						       &chunksize,
 						       (void *)addr);
-				if (status != EFI_SUCCESS) {
+				if (status != EFI_SUCCESS ||
+				    chunksize > size || !chunksize) {
 					pr_efi_err(sys_table_arg, "Failed to read file\n");
 					goto free_file_total;
 				}

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-10 18:43           ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-10 18:43 UTC (permalink / raw)
  To: Yinghai Lu
  Cc: Matt Fleming, Matt Fleming, Linux Kernel Mailing List, linux-efi

On Sun, Aug 10, 2014 at 8:55 AM, Yinghai Lu <yinghai@kernel.org> wrote:
> On Sat, Aug 9, 2014 at 3:45 PM, Mantas Mikulėnas <grawity@gmail.com> wrote:
>> On Sat, Aug 9, 2014 at 10:23 PM, Matt Fleming <matt@console-pimps.org> wrote:
>> [However... Whether it's five chunks, four (after making the initrd
>> smaller), or just one (with your efi=nochunk), I noticed that it
>> *always* hangs during the *last* read, and the allocated memory always
>> ends at roughly the same address (0x137fffXXX). I wonder if it's
>> selecting a memory location already in use, or something like that...]
>>
>> (The laptop is Asus K52JT, AMI firmware v206, no updates available.)
>
> wonder if  efi_file_read return with wrong chunksize.
>
> Can you try attached patch ?

Thanks, but it didn't change anything.

(I tried adding some efi_printk's, and as far as I can see,
efi_file_read *doesn't* return at all.)

-- 
Mantas Mikulėnas <grawity@gmail.com>

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-10 18:43           ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-10 18:43 UTC (permalink / raw)
  To: Yinghai Lu
  Cc: Matt Fleming, Matt Fleming, Linux Kernel Mailing List,
	linux-efi-u79uwXL29TY76Z2rM5mHXA

On Sun, Aug 10, 2014 at 8:55 AM, Yinghai Lu <yinghai-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org> wrote:
> On Sat, Aug 9, 2014 at 3:45 PM, Mantas Mikulėnas <grawity@gmail.com> wrote:
>> On Sat, Aug 9, 2014 at 10:23 PM, Matt Fleming <matt-HNK1S37rvNbeXh+fF434MQ@public.gmane.orgg> wrote:
>> [However... Whether it's five chunks, four (after making the initrd
>> smaller), or just one (with your efi=nochunk), I noticed that it
>> *always* hangs during the *last* read, and the allocated memory always
>> ends at roughly the same address (0x137fffXXX). I wonder if it's
>> selecting a memory location already in use, or something like that...]
>>
>> (The laptop is Asus K52JT, AMI firmware v206, no updates available.)
>
> wonder if  efi_file_read return with wrong chunksize.
>
> Can you try attached patch ?

Thanks, but it didn't change anything.

(I tried adding some efi_printk's, and as far as I can see,
efi_file_read *doesn't* return at all.)

-- 
Mantas Mikulėnas <grawity-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

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

* Re: Loading initrd above 4G causes freeze on boot
  2014-08-10 18:43           ` Mantas Mikulėnas
  (?)
@ 2014-08-13 14:02           ` Matt Fleming
  2014-08-13 16:38             ` Mantas Mikulėnas
  -1 siblings, 1 reply; 36+ messages in thread
From: Matt Fleming @ 2014-08-13 14:02 UTC (permalink / raw)
  To: Mantas Mikulėnas
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List, linux-efi

On Sun, 10 Aug, at 09:43:32PM, Mantas Mikulėnas wrote:
> On Sun, Aug 10, 2014 at 8:55 AM, Yinghai Lu <yinghai@kernel.org> wrote:
> > On Sat, Aug 9, 2014 at 3:45 PM, Mantas Mikulėnas <grawity@gmail.com> wrote:
> >> On Sat, Aug 9, 2014 at 10:23 PM, Matt Fleming <matt@console-pimps.org> wrote:
> >> [However... Whether it's five chunks, four (after making the initrd
> >> smaller), or just one (with your efi=nochunk), I noticed that it
> >> *always* hangs during the *last* read, and the allocated memory always
> >> ends at roughly the same address (0x137fffXXX). I wonder if it's
> >> selecting a memory location already in use, or something like that...]
> >>
> >> (The laptop is Asus K52JT, AMI firmware v206, no updates available.)
> >
> > wonder if  efi_file_read return with wrong chunksize.
> >
> > Can you try attached patch ?
> 
> Thanks, but it didn't change anything.
> 
> (I tried adding some efi_printk's, and as far as I can see,
> efi_file_read *doesn't* return at all.)

Could you send you revert Yinghai's commit locally and send the dmesg
from a successful boot? I'm wondering what other regions are around the
0x137fffxxx area.

One other thing to attempt would be to progressively try higher and
higher max memory addresses to read into to see if we can correlate your
hang with a particular region, i.e. this code,


	if (hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G)
		initrd_addr_max = -1UL;
	else
		initrd_addr_max = hdr->initrd_addr_max;

	status = efi_parse_options(cmdline_ptr);
	if (status != EFI_SUCCESS)
		goto fail2;

	status = handle_cmdline_files(sys_table, image,
				      (char *)(unsigned long)hdr->cmd_line_ptr,
				      "initrd=", initrd_addr_max,
				      &ramdisk_addr, &ramdisk_size);


-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
  2014-08-13 14:02           ` Matt Fleming
@ 2014-08-13 16:38             ` Mantas Mikulėnas
  2014-08-13 18:44               ` Matt Fleming
  0 siblings, 1 reply; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-13 16:38 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List, linux-efi

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

On Wed, Aug 13, 2014 at 5:02 PM, Matt Fleming <matt@console-pimps.org> wrote:
>
> On Sun, 10 Aug, at 09:43:32PM, Mantas Mikulėnas wrote:
> > On Sun, Aug 10, 2014 at 8:55 AM, Yinghai Lu <yinghai@kernel.org> wrote:
> > > On Sat, Aug 9, 2014 at 3:45 PM, Mantas Mikulėnas <grawity@gmail.com> wrote:
> > >> On Sat, Aug 9, 2014 at 10:23 PM, Matt Fleming <matt@console-pimps.org> wrote:
> > >> [However... Whether it's five chunks, four (after making the initrd
> > >> smaller), or just one (with your efi=nochunk), I noticed that it
> > >> *always* hangs during the *last* read, and the allocated memory always
> > >> ends at roughly the same address (0x137fffXXX). I wonder if it's
> > >> selecting a memory location already in use, or something like that...]
> > >>
> > >> (The laptop is Asus K52JT, AMI firmware v206, no updates available.)
> > >
> > > wonder if  efi_file_read return with wrong chunksize.
> > >
> > > Can you try attached patch ?
> >
> > Thanks, but it didn't change anything.
> >
> > (I tried adding some efi_printk's, and as far as I can see,
> > efi_file_read *doesn't* return at all.)
>
> Could you send you revert Yinghai's commit locally and send the dmesg
> from a successful boot? I'm wondering what other regions are around the
> 0x137fffxxx area.

Here you go.

-- 
Mantas Mikulėnas <grawity@gmail.com>

[-- Attachment #2: efi-bug-dmesg.txt --]
[-- Type: text/plain, Size: 100691 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.0-BISECT-10013-gc309bfa9b481 (grawity@rain) (gcc version 4.9.1 (GCC) ) #221 SMP PREEMPT Sun Aug 10 00:50:09 EEST 2014
[    0.000000] Command line: initrd=\EFI\custom\bisect.rd resume=/dev/disk/by-partlabel/swap root=/dev/disk/by-partlabel/Arch rw rootfstype=ext4 rootflags=quota module.sig_enforce net.ifnames=0 zswap.enabled=1 loglevel=4
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bed05fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bed06000-0x00000000bed4afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed4b000-0x00000000bed5bfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed5c000-0x00000000bed6dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed6e000-0x00000000bed76fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed77000-0x00000000bed7efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed7f000-0x00000000bed82fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed83000-0x00000000bed83fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed84000-0x00000000bed91fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed92000-0x00000000bed94fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bed95000-0x00000000bed98fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed99000-0x00000000bed9bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed9c000-0x00000000bed9cfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bed9d000-0x00000000bed9efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed9f000-0x00000000bed9ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000beda0000-0x00000000beda3fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000beda4000-0x00000000beda6fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000beda7000-0x00000000bedabfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bedac000-0x00000000bedb9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bedba000-0x00000000bedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bedd0000-0x00000000bedd1fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bedd2000-0x00000000bee02fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bee03000-0x00000000bf7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffbfffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000137ffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x029aa018-0x029b9257] usable ==> usable
[    0.000000] e820: update [mem 0x029ba018-0x029c4057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000029aa017] usable
[    0.000000] reserve setup_data: [mem 0x00000000029aa018-0x00000000029b9257] usable
[    0.000000] reserve setup_data: [mem 0x00000000029b9258-0x00000000029ba017] usable
[    0.000000] reserve setup_data: [mem 0x00000000029ba018-0x00000000029c4057] usable
[    0.000000] reserve setup_data: [mem 0x00000000029c4058-0x00000000bed05fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bed06000-0x00000000bed4afff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed4b000-0x00000000bed5bfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed5c000-0x00000000bed6dfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed6e000-0x00000000bed76fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed77000-0x00000000bed7efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed7f000-0x00000000bed82fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed83000-0x00000000bed83fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed84000-0x00000000bed91fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed92000-0x00000000bed94fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bed95000-0x00000000bed98fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed99000-0x00000000bed9bfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed9c000-0x00000000bed9cfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bed9d000-0x00000000bed9efff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed9f000-0x00000000bed9ffff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000beda0000-0x00000000beda3fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000beda4000-0x00000000beda6fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000beda7000-0x00000000bedabfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bedac000-0x00000000bedb9fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bedba000-0x00000000bedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bedd0000-0x00000000bedd1fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bedd2000-0x00000000bee02fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bee03000-0x00000000bf7fffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed18000-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 0x00000000ffa00000-0x00000000ffbfffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000137ffffff] usable
[    0.000000] efi: EFI v2.00 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xbeda6f98  SMBIOS=0xbee01018 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000008000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000008000-0x000000000000e000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x000000000000e000-0x000000000007f000) (0MB)
[    0.000000] efi: mem03: type=4, attr=0xf, range=[0x000000000007f000-0x0000000000080000) (0MB)
[    0.000000] efi: mem04: type=3, attr=0xf, range=[0x0000000000080000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem05: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x0000000001000000-0x0000000001c95000) (12MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000001c95000-0x0000000001c96000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x0000000001c96000-0x0000000001c97000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000001c97000-0x0000000001c98000) (0MB)
[    0.000000] efi: mem10: type=4, attr=0xf, range=[0x0000000001c98000-0x0000000001cff000) (0MB)
[    0.000000] efi: mem11: type=3, attr=0xf, range=[0x0000000001cff000-0x0000000001d01000) (0MB)
[    0.000000] efi: mem12: type=4, attr=0xf, range=[0x0000000001d01000-0x0000000001d04000) (0MB)
[    0.000000] efi: mem13: type=3, attr=0xf, range=[0x0000000001d04000-0x0000000001d06000) (0MB)
[    0.000000] efi: mem14: type=4, attr=0xf, range=[0x0000000001d06000-0x0000000001d0d000) (0MB)
[    0.000000] efi: mem15: type=3, attr=0xf, range=[0x0000000001d0d000-0x0000000001d13000) (0MB)
[    0.000000] efi: mem16: type=4, attr=0xf, range=[0x0000000001d13000-0x0000000001d16000) (0MB)
[    0.000000] efi: mem17: type=3, attr=0xf, range=[0x0000000001d16000-0x0000000001d17000) (0MB)
[    0.000000] efi: mem18: type=4, attr=0xf, range=[0x0000000001d17000-0x0000000001d1b000) (0MB)
[    0.000000] efi: mem19: type=3, attr=0xf, range=[0x0000000001d1b000-0x0000000001d1f000) (0MB)
[    0.000000] efi: mem20: type=4, attr=0xf, range=[0x0000000001d1f000-0x0000000001d24000) (0MB)
[    0.000000] efi: mem21: type=3, attr=0xf, range=[0x0000000001d24000-0x0000000001d2b000) (0MB)
[    0.000000] efi: mem22: type=4, attr=0xf, range=[0x0000000001d2b000-0x0000000001d37000) (0MB)
[    0.000000] efi: mem23: type=3, attr=0xf, range=[0x0000000001d37000-0x0000000001d38000) (0MB)
[    0.000000] efi: mem24: type=4, attr=0xf, range=[0x0000000001d38000-0x0000000001d4e000) (0MB)
[    0.000000] efi: mem25: type=3, attr=0xf, range=[0x0000000001d4e000-0x0000000001d4f000) (0MB)
[    0.000000] efi: mem26: type=4, attr=0xf, range=[0x0000000001d4f000-0x0000000001d55000) (0MB)
[    0.000000] efi: mem27: type=3, attr=0xf, range=[0x0000000001d55000-0x0000000001d56000) (0MB)
[    0.000000] efi: mem28: type=4, attr=0xf, range=[0x0000000001d56000-0x0000000001d58000) (0MB)
[    0.000000] efi: mem29: type=3, attr=0xf, range=[0x0000000001d58000-0x0000000001d5a000) (0MB)
[    0.000000] efi: mem30: type=4, attr=0xf, range=[0x0000000001d5a000-0x0000000001d65000) (0MB)
[    0.000000] efi: mem31: type=3, attr=0xf, range=[0x0000000001d65000-0x0000000001d67000) (0MB)
[    0.000000] efi: mem32: type=4, attr=0xf, range=[0x0000000001d67000-0x0000000001d6a000) (0MB)
[    0.000000] efi: mem33: type=3, attr=0xf, range=[0x0000000001d6a000-0x0000000001d6c000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x0000000001d6c000-0x0000000001d70000) (0MB)
[    0.000000] efi: mem35: type=3, attr=0xf, range=[0x0000000001d70000-0x0000000001d71000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x0000000001d71000-0x0000000001d76000) (0MB)
[    0.000000] efi: mem37: type=3, attr=0xf, range=[0x0000000001d76000-0x0000000001d79000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x0000000001d79000-0x0000000001d7d000) (0MB)
[    0.000000] efi: mem39: type=3, attr=0xf, range=[0x0000000001d7d000-0x0000000001d80000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x0000000001d80000-0x0000000001d81000) (0MB)
[    0.000000] efi: mem41: type=3, attr=0xf, range=[0x0000000001d81000-0x0000000001d82000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x0000000001d82000-0x0000000001e38000) (0MB)
[    0.000000] efi: mem43: type=3, attr=0xf, range=[0x0000000001e38000-0x0000000001eed000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x0000000001eed000-0x0000000001fa5000) (0MB)
[    0.000000] efi: mem45: type=3, attr=0xf, range=[0x0000000001fa5000-0x0000000001fa6000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x0000000001fa6000-0x0000000001fa9000) (0MB)
[    0.000000] efi: mem47: type=3, attr=0xf, range=[0x0000000001fa9000-0x0000000001faa000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x0000000001faa000-0x0000000001fab000) (0MB)
[    0.000000] efi: mem49: type=3, attr=0xf, range=[0x0000000001fab000-0x0000000001fad000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x0000000001fad000-0x0000000001faf000) (0MB)
[    0.000000] efi: mem51: type=3, attr=0xf, range=[0x0000000001faf000-0x0000000001fb2000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x0000000001fb2000-0x0000000002008000) (0MB)
[    0.000000] efi: mem53: type=3, attr=0xf, range=[0x0000000002008000-0x0000000002010000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x0000000002010000-0x0000000002016000) (0MB)
[    0.000000] efi: mem55: type=3, attr=0xf, range=[0x0000000002016000-0x000000000201b000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x000000000201b000-0x0000000002020000) (0MB)
[    0.000000] efi: mem57: type=3, attr=0xf, range=[0x0000000002020000-0x0000000002027000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x0000000002027000-0x000000000202e000) (0MB)
[    0.000000] efi: mem59: type=3, attr=0xf, range=[0x000000000202e000-0x000000000202f000) (0MB)
[    0.000000] efi: mem60: type=4, attr=0xf, range=[0x000000000202f000-0x0000000002031000) (0MB)
[    0.000000] efi: mem61: type=3, attr=0xf, range=[0x0000000002031000-0x0000000002034000) (0MB)
[    0.000000] efi: mem62: type=4, attr=0xf, range=[0x0000000002034000-0x0000000002039000) (0MB)
[    0.000000] efi: mem63: type=3, attr=0xf, range=[0x0000000002039000-0x000000000203a000) (0MB)
[    0.000000] efi: mem64: type=4, attr=0xf, range=[0x000000000203a000-0x000000000208b000) (0MB)
[    0.000000] efi: mem65: type=3, attr=0xf, range=[0x000000000208b000-0x000000000208e000) (0MB)
[    0.000000] efi: mem66: type=4, attr=0xf, range=[0x000000000208e000-0x0000000002093000) (0MB)
[    0.000000] efi: mem67: type=3, attr=0xf, range=[0x0000000002093000-0x0000000002095000) (0MB)
[    0.000000] efi: mem68: type=4, attr=0xf, range=[0x0000000002095000-0x000000000209d000) (0MB)
[    0.000000] efi: mem69: type=3, attr=0xf, range=[0x000000000209d000-0x000000000209e000) (0MB)
[    0.000000] efi: mem70: type=4, attr=0xf, range=[0x000000000209e000-0x00000000020a0000) (0MB)
[    0.000000] efi: mem71: type=3, attr=0xf, range=[0x00000000020a0000-0x00000000020a3000) (0MB)
[    0.000000] efi: mem72: type=4, attr=0xf, range=[0x00000000020a3000-0x00000000020b7000) (0MB)
[    0.000000] efi: mem73: type=3, attr=0xf, range=[0x00000000020b7000-0x00000000020b9000) (0MB)
[    0.000000] efi: mem74: type=4, attr=0xf, range=[0x00000000020b9000-0x00000000020dd000) (0MB)
[    0.000000] efi: mem75: type=3, attr=0xf, range=[0x00000000020dd000-0x00000000020e0000) (0MB)
[    0.000000] efi: mem76: type=4, attr=0xf, range=[0x00000000020e0000-0x00000000020e5000) (0MB)
[    0.000000] efi: mem77: type=3, attr=0xf, range=[0x00000000020e5000-0x00000000020e7000) (0MB)
[    0.000000] efi: mem78: type=4, attr=0xf, range=[0x00000000020e7000-0x00000000020e8000) (0MB)
[    0.000000] efi: mem79: type=3, attr=0xf, range=[0x00000000020e8000-0x00000000020fa000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000020fa000-0x00000000020fc000) (0MB)
[    0.000000] efi: mem81: type=3, attr=0xf, range=[0x00000000020fc000-0x00000000020ff000) (0MB)
[    0.000000] efi: mem82: type=4, attr=0xf, range=[0x00000000020ff000-0x0000000002107000) (0MB)
[    0.000000] efi: mem83: type=3, attr=0xf, range=[0x0000000002107000-0x0000000002110000) (0MB)
[    0.000000] efi: mem84: type=4, attr=0xf, range=[0x0000000002110000-0x000000000211b000) (0MB)
[    0.000000] efi: mem85: type=3, attr=0xf, range=[0x000000000211b000-0x000000000211c000) (0MB)
[    0.000000] efi: mem86: type=4, attr=0xf, range=[0x000000000211c000-0x0000000002121000) (0MB)
[    0.000000] efi: mem87: type=3, attr=0xf, range=[0x0000000002121000-0x000000000212c000) (0MB)
[    0.000000] efi: mem88: type=4, attr=0xf, range=[0x000000000212c000-0x000000000212d000) (0MB)
[    0.000000] efi: mem89: type=3, attr=0xf, range=[0x000000000212d000-0x000000000214b000) (0MB)
[    0.000000] efi: mem90: type=4, attr=0xf, range=[0x000000000214b000-0x000000000215b000) (0MB)
[    0.000000] efi: mem91: type=3, attr=0xf, range=[0x000000000215b000-0x000000000216b000) (0MB)
[    0.000000] efi: mem92: type=4, attr=0xf, range=[0x000000000216b000-0x000000000216d000) (0MB)
[    0.000000] efi: mem93: type=3, attr=0xf, range=[0x000000000216d000-0x0000000002183000) (0MB)
[    0.000000] efi: mem94: type=4, attr=0xf, range=[0x0000000002183000-0x0000000002188000) (0MB)
[    0.000000] efi: mem95: type=3, attr=0xf, range=[0x0000000002188000-0x0000000002189000) (0MB)
[    0.000000] efi: mem96: type=4, attr=0xf, range=[0x0000000002189000-0x000000000219b000) (0MB)
[    0.000000] efi: mem97: type=3, attr=0xf, range=[0x000000000219b000-0x000000000219d000) (0MB)
[    0.000000] efi: mem98: type=4, attr=0xf, range=[0x000000000219d000-0x000000000219e000) (0MB)
[    0.000000] efi: mem99: type=3, attr=0xf, range=[0x000000000219e000-0x00000000021a1000) (0MB)
[    0.000000] efi: mem100: type=4, attr=0xf, range=[0x00000000021a1000-0x00000000021a5000) (0MB)
[    0.000000] efi: mem101: type=3, attr=0xf, range=[0x00000000021a5000-0x00000000021b0000) (0MB)
[    0.000000] efi: mem102: type=4, attr=0xf, range=[0x00000000021b0000-0x00000000021b6000) (0MB)
[    0.000000] efi: mem103: type=3, attr=0xf, range=[0x00000000021b6000-0x00000000021b8000) (0MB)
[    0.000000] efi: mem104: type=4, attr=0xf, range=[0x00000000021b8000-0x000000000220c000) (0MB)
[    0.000000] efi: mem105: type=3, attr=0xf, range=[0x000000000220c000-0x0000000002211000) (0MB)
[    0.000000] efi: mem106: type=4, attr=0xf, range=[0x0000000002211000-0x0000000002212000) (0MB)
[    0.000000] efi: mem107: type=3, attr=0xf, range=[0x0000000002212000-0x000000000221a000) (0MB)
[    0.000000] efi: mem108: type=4, attr=0xf, range=[0x000000000221a000-0x000000000222d000) (0MB)
[    0.000000] efi: mem109: type=3, attr=0xf, range=[0x000000000222d000-0x0000000002237000) (0MB)
[    0.000000] efi: mem110: type=4, attr=0xf, range=[0x0000000002237000-0x0000000002732000) (4MB)
[    0.000000] efi: mem111: type=3, attr=0xf, range=[0x0000000002732000-0x0000000002733000) (0MB)
[    0.000000] efi: mem112: type=4, attr=0xf, range=[0x0000000002733000-0x0000000002734000) (0MB)
[    0.000000] efi: mem113: type=3, attr=0xf, range=[0x0000000002734000-0x0000000002737000) (0MB)
[    0.000000] efi: mem114: type=4, attr=0xf, range=[0x0000000002737000-0x000000000273e000) (0MB)
[    0.000000] efi: mem115: type=3, attr=0xf, range=[0x000000000273e000-0x0000000002747000) (0MB)
[    0.000000] efi: mem116: type=4, attr=0xf, range=[0x0000000002747000-0x0000000002750000) (0MB)
[    0.000000] efi: mem117: type=3, attr=0xf, range=[0x0000000002750000-0x0000000002752000) (0MB)
[    0.000000] efi: mem118: type=4, attr=0xf, range=[0x0000000002752000-0x0000000002758000) (0MB)
[    0.000000] efi: mem119: type=3, attr=0xf, range=[0x0000000002758000-0x000000000275c000) (0MB)
[    0.000000] efi: mem120: type=4, attr=0xf, range=[0x000000000275c000-0x0000000002760000) (0MB)
[    0.000000] efi: mem121: type=3, attr=0xf, range=[0x0000000002760000-0x0000000002761000) (0MB)
[    0.000000] efi: mem122: type=4, attr=0xf, range=[0x0000000002761000-0x0000000002766000) (0MB)
[    0.000000] efi: mem123: type=3, attr=0xf, range=[0x0000000002766000-0x0000000002767000) (0MB)
[    0.000000] efi: mem124: type=4, attr=0xf, range=[0x0000000002767000-0x0000000002769000) (0MB)
[    0.000000] efi: mem125: type=3, attr=0xf, range=[0x0000000002769000-0x000000000276a000) (0MB)
[    0.000000] efi: mem126: type=4, attr=0xf, range=[0x000000000276a000-0x0000000002770000) (0MB)
[    0.000000] efi: mem127: type=3, attr=0xf, range=[0x0000000002770000-0x0000000002774000) (0MB)
[    0.000000] efi: mem128: type=4, attr=0xf, range=[0x0000000002774000-0x000000000277a000) (0MB)
[    0.000000] efi: mem129: type=3, attr=0xf, range=[0x000000000277a000-0x000000000277c000) (0MB)
[    0.000000] efi: mem130: type=4, attr=0xf, range=[0x000000000277c000-0x00000000027a6000) (0MB)
[    0.000000] efi: mem131: type=2, attr=0xf, range=[0x00000000027a6000-0x00000000027a7000) (0MB)
[    0.000000] efi: mem132: type=4, attr=0xf, range=[0x00000000027a7000-0x000000000299f000) (1MB)
[    0.000000] efi: mem133: type=2, attr=0xf, range=[0x000000000299f000-0x00000000029a0000) (0MB)
[    0.000000] efi: mem134: type=4, attr=0xf, range=[0x00000000029a0000-0x00000000029a1000) (0MB)
[    0.000000] efi: mem135: type=2, attr=0xf, range=[0x00000000029a1000-0x00000000029a9000) (0MB)
[    0.000000] efi: mem136: type=4, attr=0xf, range=[0x00000000029a9000-0x00000000029aa000) (0MB)
[    0.000000] efi: mem137: type=2, attr=0xf, range=[0x00000000029aa000-0x00000000029c9000) (0MB)
[    0.000000] efi: mem138: type=7, attr=0xf, range=[0x00000000029c9000-0x0000000002ab9000) (0MB)
[    0.000000] efi: mem139: type=4, attr=0xf, range=[0x0000000002ab9000-0x0000000002ac5000) (0MB)
[    0.000000] efi: mem140: type=7, attr=0xf, range=[0x0000000002ac5000-0x0000000002ad7000) (0MB)
[    0.000000] efi: mem141: type=4, attr=0xf, range=[0x0000000002ad7000-0x0000000002b47000) (0MB)
[    0.000000] efi: mem142: type=3, attr=0xf, range=[0x0000000002b47000-0x0000000002b4c000) (0MB)
[    0.000000] efi: mem143: type=4, attr=0xf, range=[0x0000000002b4c000-0x0000000002b53000) (0MB)
[    0.000000] efi: mem144: type=3, attr=0xf, range=[0x0000000002b53000-0x0000000002b5b000) (0MB)
[    0.000000] efi: mem145: type=4, attr=0xf, range=[0x0000000002b5b000-0x0000000002b5e000) (0MB)
[    0.000000] efi: mem146: type=7, attr=0xf, range=[0x0000000002b5e000-0x0000000002b90000) (0MB)
[    0.000000] efi: mem147: type=4, attr=0xf, range=[0x0000000002b90000-0x0000000002d27000) (1MB)
[    0.000000] efi: mem148: type=1, attr=0xf, range=[0x0000000002d27000-0x0000000002d3e000) (0MB)
[    0.000000] efi: mem149: type=7, attr=0xf, range=[0x0000000002d3e000-0x00000000030df000) (3MB)
[    0.000000] efi: mem150: type=1, attr=0xf, range=[0x00000000030df000-0x0000000004f03000) (30MB)
[    0.000000] efi: mem151: type=7, attr=0xf, range=[0x0000000004f03000-0x0000000005000000) (0MB)
[    0.000000] efi: mem152: type=2, attr=0xf, range=[0x0000000005000000-0x0000000005e24000) (14MB)
[    0.000000] efi: mem153: type=7, attr=0xf, range=[0x0000000005e24000-0x000000007fa94000) (1948MB)
[    0.000000] efi: mem154: type=2, attr=0xf, range=[0x000000007fa94000-0x0000000080000000) (5MB)
[    0.000000] efi: mem155: type=7, attr=0xf, range=[0x0000000080000000-0x00000000bc800000) (968MB)
[    0.000000] efi: mem156: type=2, attr=0xf, range=[0x00000000bc800000-0x00000000bc900000) (1MB)
[    0.000000] efi: mem157: type=7, attr=0xf, range=[0x00000000bc900000-0x00000000bc903000) (0MB)
[    0.000000] efi: mem158: type=4, attr=0xf, range=[0x00000000bc903000-0x00000000bc906000) (0MB)
[    0.000000] efi: mem159: type=7, attr=0xf, range=[0x00000000bc906000-0x00000000bc907000) (0MB)
[    0.000000] efi: mem160: type=4, attr=0xf, range=[0x00000000bc907000-0x00000000bc90a000) (0MB)
[    0.000000] efi: mem161: type=7, attr=0xf, range=[0x00000000bc90a000-0x00000000bed06000) (35MB)
[    0.000000] efi: mem162: type=10, attr=0xf, range=[0x00000000bed06000-0x00000000bed4b000) (0MB)
[    0.000000] efi: mem163: type=0, attr=0xf, range=[0x00000000bed4b000-0x00000000bed5c000) (0MB)
[    0.000000] efi: mem164: type=10, attr=0xf, range=[0x00000000bed5c000-0x00000000bed6e000) (0MB)
[    0.000000] efi: mem165: type=5, attr=0x800000000000000f, range=[0x00000000bed6e000-0x00000000bed72000) (0MB)
[    0.000000] efi: mem166: type=6, attr=0x800000000000000f, range=[0x00000000bed72000-0x00000000bed75000) (0MB)
[    0.000000] efi: mem167: type=0, attr=0xf, range=[0x00000000bed75000-0x00000000bed77000) (0MB)
[    0.000000] efi: mem168: type=10, attr=0xf, range=[0x00000000bed77000-0x00000000bed7f000) (0MB)
[    0.000000] efi: mem169: type=5, attr=0x800000000000000f, range=[0x00000000bed7f000-0x00000000bed83000) (0MB)
[    0.000000] efi: mem170: type=10, attr=0xf, range=[0x00000000bed83000-0x00000000bed84000) (0MB)
[    0.000000] efi: mem171: type=5, attr=0x800000000000000f, range=[0x00000000bed84000-0x00000000bed92000) (0MB)
[    0.000000] efi: mem172: type=7, attr=0xf, range=[0x00000000bed92000-0x00000000bed95000) (0MB)
[    0.000000] efi: mem173: type=6, attr=0x800000000000000f, range=[0x00000000bed95000-0x00000000bed96000) (0MB)
[    0.000000] efi: mem174: type=5, attr=0x800000000000000f, range=[0x00000000bed96000-0x00000000bed97000) (0MB)
[    0.000000] efi: mem175: type=0, attr=0xf, range=[0x00000000bed97000-0x00000000bed99000) (0MB)
[    0.000000] efi: mem176: type=10, attr=0xf, range=[0x00000000bed99000-0x00000000bed9c000) (0MB)
[    0.000000] efi: mem177: type=7, attr=0xf, range=[0x00000000bed9c000-0x00000000bed9d000) (0MB)
[    0.000000] efi: mem178: type=6, attr=0x800000000000000f, range=[0x00000000bed9d000-0x00000000bed9e000) (0MB)
[    0.000000] efi: mem179: type=0, attr=0xf, range=[0x00000000bed9e000-0x00000000bed9f000) (0MB)
[    0.000000] efi: mem180: type=10, attr=0xf, range=[0x00000000bed9f000-0x00000000beda0000) (0MB)
[    0.000000] efi: mem181: type=0, attr=0xf, range=[0x00000000beda0000-0x00000000beda4000) (0MB)
[    0.000000] efi: mem182: type=9, attr=0xf, range=[0x00000000beda4000-0x00000000beda7000) (0MB)
[    0.000000] efi: mem183: type=6, attr=0x800000000000000f, range=[0x00000000beda7000-0x00000000beda8000) (0MB)
[    0.000000] efi: mem184: type=0, attr=0xf, range=[0x00000000beda8000-0x00000000bedac000) (0MB)
[    0.000000] efi: mem185: type=10, attr=0xf, range=[0x00000000bedac000-0x00000000bedba000) (0MB)
[    0.000000] efi: mem186: type=6, attr=0x800000000000000f, range=[0x00000000bedba000-0x00000000bedbb000) (0MB)
[    0.000000] efi: mem187: type=5, attr=0x800000000000000f, range=[0x00000000bedbb000-0x00000000bedd0000) (0MB)
[    0.000000] efi: mem188: type=10, attr=0xf, range=[0x00000000bedd0000-0x00000000bedd2000) (0MB)
[    0.000000] efi: mem189: type=5, attr=0x800000000000000f, range=[0x00000000bedd2000-0x00000000bedd7000) (0MB)
[    0.000000] efi: mem190: type=6, attr=0x800000000000000f, range=[0x00000000bedd7000-0x00000000bede8000) (0MB)
[    0.000000] efi: mem191: type=5, attr=0x800000000000000f, range=[0x00000000bede8000-0x00000000beded000) (0MB)
[    0.000000] efi: mem192: type=6, attr=0x800000000000000f, range=[0x00000000beded000-0x00000000bedee000) (0MB)
[    0.000000] efi: mem193: type=5, attr=0x800000000000000f, range=[0x00000000bedee000-0x00000000bedf9000) (0MB)
[    0.000000] efi: mem194: type=6, attr=0x800000000000000f, range=[0x00000000bedf9000-0x00000000bedfd000) (0MB)
[    0.000000] efi: mem195: type=5, attr=0x800000000000000f, range=[0x00000000bedfd000-0x00000000bee00000) (0MB)
[    0.000000] efi: mem196: type=6, attr=0x800000000000000f, range=[0x00000000bee00000-0x00000000bee03000) (0MB)
[    0.000000] efi: mem197: type=4, attr=0xf, range=[0x00000000bee03000-0x00000000bee09000) (0MB)
[    0.000000] efi: mem198: type=3, attr=0xf, range=[0x00000000bee09000-0x00000000bf7f3000) (9MB)
[    0.000000] efi: mem199: type=4, attr=0xf, range=[0x00000000bf7f3000-0x00000000bf7f6000) (0MB)
[    0.000000] efi: mem200: type=3, attr=0xf, range=[0x00000000bf7f6000-0x00000000bf800000) (0MB)
[    0.000000] efi: mem201: type=7, attr=0xf, range=[0x0000000100000000-0x0000000138000000) (896MB)
[    0.000000] efi: mem202: type=0, attr=0x8000000000000000, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem203: type=0, attr=0x8000000000000000, range=[0x00000000bf800000-0x00000000c0000000) (8MB)
[    0.000000] efi: mem204: type=11, attr=0x8000000000000000, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
[    0.000000] efi: mem205: type=11, attr=0x8000000000000000, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem206: type=11, attr=0x8000000000000000, range=[0x00000000fed10000-0x00000000fed14000) (0MB)
[    0.000000] efi: mem207: type=11, attr=0x8000000000000000, range=[0x00000000fed18000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem208: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem209: type=11, attr=0x8000000000000000, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem210: type=11, attr=0x8000000000000000, range=[0x00000000ffa00000-0x00000000ffc00000) (2MB)
[    0.000000] efi: mem211: type=11, attr=0x8000000000000000, range=[0x00000000ffe00000-0x00000000fff70000) (1MB)
[    0.000000] efi: mem212: type=11, attr=0x8000000000000000, range=[0x00000000fff70000-0x0000000100000000) (0MB)
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: ASUSTeK Computer Inc. K52JT/K52JT, BIOS K52JT.206 01/25/2011
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x138000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-DFFFF write-protect
[    0.000000]   E0000-FFFFF write-through
[    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 100000000 mask FC0000000 write-back
[    0.000000]   3 base 138000000 mask FF8000000 uncachable
[    0.000000]   4 base 0FFE00000 mask FFFE00000 write-protect
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbf800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fcad0-0x000fcadf] mapped at [ffff8800000fcad0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000095000] 95000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x05b13000, 0x05b13fff] PGTABLE
[    0.000000] BRK [0x05b14000, 0x05b14fff] PGTABLE
[    0.000000] BRK [0x05b15000, 0x05b15fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x137e00000-0x137ffffff]
[    0.000000]  [mem 0x137e00000-0x137ffffff] page 2M
[    0.000000] BRK [0x05b16000, 0x05b16fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x134000000-0x137dfffff]
[    0.000000]  [mem 0x134000000-0x137dfffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x100000000-0x133ffffff]
[    0.000000]  [mem 0x100000000-0x133ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0xbed05fff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0xbebfffff] page 2M
[    0.000000]  [mem 0xbec00000-0xbed05fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbed92000-0xbed94fff]
[    0.000000]  [mem 0xbed92000-0xbed94fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbed9c000-0xbed9cfff]
[    0.000000]  [mem 0xbed9c000-0xbed9cfff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbee03000-0xbf7fffff]
[    0.000000]  [mem 0xbee03000-0xbeffffff] page 4k
[    0.000000]  [mem 0xbf000000-0xbf7fffff] page 2M
[    0.000000] BRK [0x05b17000, 0x05b17fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x7fa94000-0x7fffffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000BEDA6F98 000024 (v02 _ASUS_)
[    0.000000] ACPI: XSDT 0x00000000BEDA5E18 00005C (v01 _ASUS_ Notebook 06222004 MSFT 00010013)
[    0.000000] ACPI: FACP 0x00000000BED83C18 0000F4 (v04 _ASUS_ Notebook 06222004 MSFT 00010013)
[    0.000000] ACPI BIOS Warning (bug): 32/64X FACS address mismatch in FADT: 0xBEDB7F40/0x00000000BEDD1D40, using 32-bit address (20140724/tbfadt-283)
[    0.000000] ACPI: DSDT 0x00000000BED5C018 0117B9 (v01 _ASUS_ Notebook 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000BEDB7F40 000040
[    0.000000] ACPI: APIC 0x00000000BEDA4F18 00008C (v02 _ASUS_ Notebook 06222004 MSFT 00010013)
[    0.000000] ACPI: DBGP 0x00000000BEDA6F18 000034 (v01 _ASUS_ Notebook 06222004 MSFT 00010013)
[    0.000000] ACPI: ECDT 0x00000000BEDD1A18 0000C1 (v01 _ASUS_ Notebook 06222004 AMI. 00000003)
[    0.000000] ACPI: MCFG 0x00000000BEDD0D18 00003C (v01 _ASUS_ Notebook 06222004 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000BEDD0C98 000038 (v01 _ASUS_ Notebook 06222004 AMI. 00000003)
[    0.000000] ACPI: SSDT 0x00000000BED9F018 0009F1 (v01 PmRef  CpuPm    00003000 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000137ffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x137ffffff]
[    0.000000]   NODE_DATA [mem 0x137ff9000-0x137ffcfff]
[    0.000000]  [ffffea0000000000-ffffea0004dfffff] PMD -> [ffff880133800000-ffff8801375fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x137ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009ffff]
[    0.000000]   node   0: [mem 0x00100000-0xbed05fff]
[    0.000000]   node   0: [mem 0xbed92000-0xbed94fff]
[    0.000000]   node   0: [mem 0xbed9c000-0xbed9cfff]
[    0.000000]   node   0: [mem 0xbee03000-0xbf7fffff]
[    0.000000]   node   0: [mem 0x100000000-0x137ffffff]
[    0.000000] On node 0 totalpages: 1013414
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 27 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12189 pages used for memmap
[    0.000000]   DMA32 zone: 780039 pages, LIFO batch:31
[    0.000000]   Normal zone: 3584 pages used for memmap
[    0.000000]   Normal zone: 229376 pages, LIFO batch:31
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] disabled)
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x029aa000-0x029aafff]
[    0.000000] PM: Registered nosave memory: [mem 0x029b9000-0x029b9fff]
[    0.000000] PM: Registered nosave memory: [mem 0x029ba000-0x029bafff]
[    0.000000] PM: Registered nosave memory: [mem 0x029c4000-0x029c4fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed06000-0xbed4afff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed4b000-0xbed5bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed5c000-0xbed6dfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed6e000-0xbed76fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed77000-0xbed7efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed7f000-0xbed82fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed83000-0xbed83fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed84000-0xbed91fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed95000-0xbed98fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed99000-0xbed9bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed9d000-0xbed9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed9f000-0xbed9ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbeda0000-0xbeda3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbeda4000-0xbeda6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbeda7000-0xbedabfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbedac000-0xbedb9fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbedba000-0xbedcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbedd0000-0xbedd1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbedd2000-0xbee02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xbfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xff9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffa00000-0xffbfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffdfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
[    0.000000] e820: [mem 0xc0000000-0xdfffffff] 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 27 pages/cpu @ffff880137c00000 s81792 r8192 d20608 u262144
[    0.000000] pcpu-alloc: s81792 r8192 d20608 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 997550
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: initrd=\EFI\custom\bisect.rd resume=/dev/disk/by-partlabel/swap root=/dev/disk/by-partlabel/Arch rw rootfstype=ext4 rootflags=quota module.sig_enforce net.ifnames=0 zswap.enabled=1 loglevel=4
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3867116K/4053656K available (5008K kernel code, 864K rwdata, 1636K rodata, 1112K init, 1136K bss, 186540K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	Dump stacks of tasks blocking RCU-preempt GP.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, 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 16252928 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.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] tsc: Detected 2659.691 MHz processor
[    0.000033] Calibrating delay loop (skipped), value calculated using timer frequency.. 5321.02 BogoMIPS (lpj=8865636)
[    0.000035] pid_max: default: 32768 minimum: 301
[    0.000043] ACPI: Core revision 20140724
[    0.011911] ACPI: All ACPI Tables successfully acquired
[    0.082219] Security Framework initialized
[    0.082228] Yama: becoming mindful.
[    0.082469] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.083699] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.084347] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.084353] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.084583] Initializing cgroup subsys memory
[    0.084590] Initializing cgroup subsys devices
[    0.084592] Initializing cgroup subsys freezer
[    0.084595] Initializing cgroup subsys net_cls
[    0.084596] Initializing cgroup subsys blkio
[    0.084599] Initializing cgroup subsys net_prio
[    0.084618] CPU: Physical Processor ID: 0
[    0.084619] CPU: Processor Core ID: 0
[    0.084625] mce: CPU supports 9 MCE banks
[    0.084635] CPU0: Thermal monitoring enabled (TM1)
[    0.084645] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.084736] Freeing SMP alternatives memory: 20K (ffffffff819f0000 - ffffffff819f5000)
[    0.086369] ftrace: allocating 19692 entries in 77 pages
[    0.095740] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.128745] smpboot: CPU0: Intel(R) Core(TM) i5 CPU       M 480  @ 2.67GHz (fam: 06, model: 25, stepping: 05)
[    0.233830] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
[    0.233846] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
[    0.233848] ... version:                3
[    0.233849] ... bit width:              48
[    0.233850] ... generic registers:      4
[    0.233851] ... value mask:             0000ffffffffffff
[    0.233852] ... max period:             000000007fffffff
[    0.233852] ... fixed-purpose events:   3
[    0.233853] ... event mask:             000000070000000f
[    0.253895] x86: Booting SMP configuration:
[    0.253899] .... node  #0, CPUs:      #1
[    0.267265] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.273900]  #2 #3
[    0.300405] x86: Booted up 1 node, 4 CPUs
[    0.300410] smpboot: Total of 4 processors activated (21286.09 BogoMIPS)
[    0.302906] devtmpfs: initialized
[    0.305050] PM: Registering ACPI NVS region [mem 0xbed06000-0xbed4afff] (282624 bytes)
[    0.305055] PM: Registering ACPI NVS region [mem 0xbed5c000-0xbed6dfff] (73728 bytes)
[    0.305056] PM: Registering ACPI NVS region [mem 0xbed77000-0xbed7efff] (32768 bytes)
[    0.305058] PM: Registering ACPI NVS region [mem 0xbed83000-0xbed83fff] (4096 bytes)
[    0.305059] PM: Registering ACPI NVS region [mem 0xbed99000-0xbed9bfff] (12288 bytes)
[    0.305060] PM: Registering ACPI NVS region [mem 0xbed9f000-0xbed9ffff] (4096 bytes)
[    0.305061] PM: Registering ACPI NVS region [mem 0xbedac000-0xbedb9fff] (57344 bytes)
[    0.305062] PM: Registering ACPI NVS region [mem 0xbedd0000-0xbedd1fff] (8192 bytes)
[    0.305953] RTC time: 16:32:28, date: 08/13/14
[    0.306031] NET: Registered protocol family 16
[    0.306144] cpuidle: using governor ladder
[    0.306146] cpuidle: using governor menu
[    0.306203] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.306205] ACPI: bus type PCI registered
[    0.306206] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.306253] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.306256] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.306706] PCI: Using configuration type 1 for base access
[    0.320839] ACPI: Added _OSI(Module Device)
[    0.320841] ACPI: Added _OSI(Processor Device)
[    0.320842] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.320843] ACPI: Added _OSI(Processor Aggregator Device)
[    0.322570] ACPI : EC: EC description table is found, configuring boot EC
[    0.324475] ACPI: Executed 2 blocks of module-level executable AML code
[    0.347197] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.390513] ACPI: Dynamic OEM Table Load:
[    0.390519] ACPI: SSDT 0xFFFF880131B39000 00047B (v01 PmRef  Cpu0Ist  00003000 INTL 20051117)
[    0.391034] ACPI: Dynamic OEM Table Load:
[    0.391039] ACPI: SSDT 0xFFFF880131B32000 0008A9 (v01 PmRef  Cpu0Cst  00003001 INTL 20051117)
[    0.414001] ACPI: Dynamic OEM Table Load:
[    0.414005] ACPI: SSDT 0xFFFF880131B41000 000303 (v01 PmRef  ApIst    00003000 INTL 20051117)
[    0.423909] ACPI: Dynamic OEM Table Load:
[    0.423913] ACPI: SSDT 0xFFFF880131B68000 000119 (v01 PmRef  ApCst    00003000 INTL 20051117)
[    0.437617] ACPI: Interpreter enabled
[    0.437624] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
[    0.437628] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
[    0.437640] ACPI: (supports S0 S3 S4 S5)
[    0.437642] ACPI: Using IOAPIC for interrupt routing
[    0.437666] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.468641] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.468647] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.468905] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.469533] PCI host bridge to bus 0000:00
[    0.469536] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.469538] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.469540] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.469541] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.469543] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
[    0.469550] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
[    0.469567] DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
[    0.469644] pci 0000:00:01.0: [8086:0045] type 01 class 0x060400
[    0.469675] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.469779] pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
[    0.469807] pci 0000:00:16.0: reg 0x10: [mem 0xd520a000-0xd520a00f 64bit]
[    0.469902] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.469997] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
[    0.470019] pci 0000:00:1a.0: reg 0x10: [mem 0xd5208000-0xd52083ff]
[    0.470111] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.470189] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.470235] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
[    0.470256] pci 0000:00:1b.0: reg 0x10: [mem 0xd5200000-0xd5203fff 64bit]
[    0.470349] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.470405] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.470444] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
[    0.470556] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.470614] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.470652] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
[    0.470755] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.470809] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.470847] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
[    0.470951] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.471003] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.471042] pci 0000:00:1c.5: [8086:3b4c] type 01 class 0x060400
[    0.471147] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.471202] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.471246] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
[    0.471269] pci 0000:00:1d.0: reg 0x10: [mem 0xd5207000-0xd52073ff]
[    0.471360] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.471437] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.471477] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.471585] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.471623] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
[    0.471802] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
[    0.471828] pci 0000:00:1f.2: reg 0x10: [io  0xe070-0xe077]
[    0.471838] pci 0000:00:1f.2: reg 0x14: [io  0xe060-0xe063]
[    0.471848] pci 0000:00:1f.2: reg 0x18: [io  0xe050-0xe057]
[    0.471859] pci 0000:00:1f.2: reg 0x1c: [io  0xe040-0xe043]
[    0.471870] pci 0000:00:1f.2: reg 0x20: [io  0xe020-0xe03f]
[    0.471880] pci 0000:00:1f.2: reg 0x24: [mem 0xd5206000-0xd52067ff]
[    0.471945] pci 0000:00:1f.2: PME# supported from D3hot
[    0.472025] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
[    0.472046] pci 0000:00:1f.3: reg 0x10: [mem 0xd5205000-0xd52050ff 64bit]
[    0.472075] pci 0000:00:1f.3: reg 0x20: [io  0xe000-0xe01f]
[    0.472172] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
[    0.472196] pci 0000:00:1f.6: reg 0x10: [mem 0xd5204000-0xd5204fff 64bit]
[    0.472374] pci 0000:01:00.0: [1002:68e4] type 00 class 0x030000
[    0.472389] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.472398] pci 0000:01:00.0: reg 0x18: [mem 0xd0020000-0xd003ffff 64bit]
[    0.472405] pci 0000:01:00.0: reg 0x20: [io  0xd000-0xd0ff]
[    0.472417] pci 0000:01:00.0: reg 0x30: [mem 0xd0000000-0xd001ffff pref]
[    0.472447] pci 0000:01:00.0: supports D1 D2
[    0.472494] pci 0000:01:00.1: [1002:aa68] type 00 class 0x040300
[    0.472506] pci 0000:01:00.1: reg 0x10: [mem 0xd0040000-0xd0043fff 64bit]
[    0.472552] pci 0000:01:00.1: supports D1 D2
[    0.472607] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.472609] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.472611] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd00fffff]
[    0.472676] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.472681] pci 0000:00:1c.0:   bridge window [io  0xc000-0xcfff]
[    0.472685] pci 0000:00:1c.0:   bridge window [mem 0xd3e00000-0xd51fffff]
[    0.472783] pci 0000:03:00.0: [168c:002b] type 00 class 0x028000
[    0.472807] pci 0000:03:00.0: reg 0x10: [mem 0xd2a00000-0xd2a0ffff 64bit]
[    0.472927] pci 0000:03:00.0: supports D1
[    0.472928] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
[    0.472962] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.477186] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.477190] pci 0000:00:1c.1:   bridge window [io  0xb000-0xbfff]
[    0.477195] pci 0000:00:1c.1:   bridge window [mem 0xd2a00000-0xd3dfffff]
[    0.477314] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.477318] pci 0000:00:1c.2:   bridge window [io  0xa000-0xafff]
[    0.477322] pci 0000:00:1c.2:   bridge window [mem 0xd1600000-0xd29fffff]
[    0.477445] pci 0000:05:00.0: [197b:2382] type 00 class 0x088000
[    0.477469] pci 0000:05:00.0: reg 0x10: [mem 0xd0207000-0xd02070ff]
[    0.477692] pci 0000:05:00.2: [197b:2381] type 00 class 0x080501
[    0.477720] pci 0000:05:00.2: reg 0x10: [mem 0xd0206000-0xd02060ff]
[    0.477966] pci 0000:05:00.3: [197b:2383] type 00 class 0x088000
[    0.477989] pci 0000:05:00.3: reg 0x10: [mem 0xd0205000-0xd02050ff]
[    0.478206] pci 0000:05:00.4: [197b:2384] type 00 class 0x088000
[    0.478229] pci 0000:05:00.4: reg 0x10: [mem 0xd0204000-0xd02040ff]
[    0.478445] pci 0000:05:00.5: [197b:0250] type 00 class 0x020000
[    0.478472] pci 0000:05:00.5: reg 0x10: [mem 0xd0200000-0xd0203fff]
[    0.478503] pci 0000:05:00.5: reg 0x18: [io  0x9100-0x917f]
[    0.478520] pci 0000:05:00.5: reg 0x1c: [io  0x9000-0x90ff]
[    0.478658] pci 0000:05:00.5: PME# supported from D0 D3hot D3cold
[    0.478702] pci 0000:05:00.5: System wakeup disabled by ACPI
[    0.483865] pci 0000:00:1c.5: PCI bridge to [bus 05]
[    0.483869] pci 0000:00:1c.5:   bridge window [io  0x9000-0x9fff]
[    0.483874] pci 0000:00:1c.5:   bridge window [mem 0xd0200000-0xd15fffff]
[    0.483959] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
[    0.483971] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.483972] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.483974] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.483975] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
[    0.484029] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[    0.493954] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[    0.493997] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[    0.494039] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 *4 5 6 7 10 12 14 15)
[    0.494081] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15)
[    0.494122] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    0.494163] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    0.494205] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 7 10 12 14 15)
[    0.494246] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[    0.494281] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
[    0.494285] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.494289] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.494347] PCI host bridge to bus 0000:ff
[    0.494349] pci_bus 0000:ff: root bus resource [bus ff]
[    0.494354] pci 0000:ff:00.0: [8086:2c62] type 00 class 0x060000
[    0.494399] pci 0000:ff:00.1: [8086:2d01] type 00 class 0x060000
[    0.494446] pci 0000:ff:02.0: [8086:2d10] type 00 class 0x060000
[    0.494486] pci 0000:ff:02.1: [8086:2d11] type 00 class 0x060000
[    0.494526] pci 0000:ff:02.2: [8086:2d12] type 00 class 0x060000
[    0.494565] pci 0000:ff:02.3: [8086:2d13] type 00 class 0x060000
[    0.494701] ACPI: Enabled 3 GPEs in block 00 to 3F
[    0.494754] ACPI : EC: GPE = 0x1b, I/O: command/status = 0x66, data = 0x62
[    0.494854] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.494856] vgaarb: loaded
[    0.494857] vgaarb: bridge control possible 0000:01:00.0
[    0.494976] PCI: Using ACPI for IRQ routing
[    0.504624] PCI: pci_cache_line_size set to 64 bytes
[    0.504700] e820: reserve RAM buffer [mem 0x029aa018-0x03ffffff]
[    0.504702] e820: reserve RAM buffer [mem 0x029ba018-0x03ffffff]
[    0.504703] e820: reserve RAM buffer [mem 0xbed06000-0xbfffffff]
[    0.504706] e820: reserve RAM buffer [mem 0xbed95000-0xbfffffff]
[    0.504708] e820: reserve RAM buffer [mem 0xbed9d000-0xbfffffff]
[    0.504710] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
[    0.504831] NetLabel: Initializing
[    0.504832] NetLabel:  domain hash size = 128
[    0.504833] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.504847] NetLabel:  unlabeled traffic allowed by default
[    0.504888] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.504892] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.506925] Switched to clocksource hpet
[    0.511305] pnp: PnP ACPI init
[    0.511494] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.511497] system 00:00: [io  0xff00-0xff0f] has been reserved
[    0.511498] system 00:00: [io  0xffff] has been reserved
[    0.511500] system 00:00: [io  0xffff] has been reserved
[    0.511502] system 00:00: [io  0x0400-0x047f] could not be reserved
[    0.511503] system 00:00: [io  0x0500-0x057f] has been reserved
[    0.511505] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.511509] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.511541] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.511578] system 00:02: [io  0x0240-0x0259] has been reserved
[    0.511580] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.511634] pnp 00:03: Plug and Play ACPI device, IDs ETD0001 SYN0a00 SYN0002 PNP0f03 PNP0f13 PNP0f12 (active)
[    0.511669] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.527226] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.527229] system 00:05: [mem 0xfed10000-0xfed13fff] has been reserved
[    0.527230] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.527232] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.527234] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    0.527236] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.527237] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.527239] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[    0.527241] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.527243] system 00:05: [mem 0xdffff000-0xdfffffff] has been reserved
[    0.527245] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.527359] pnp: PnP ACPI: found 6 devices
[    0.534013] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
[    0.534023] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
[    0.534034] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
[    0.534045] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000
[    0.534057] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.534058] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.534060] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.534062] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.534069] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd5300000-0xd54fffff 64bit pref]
[    0.534073] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd5500000-0xd56fffff 64bit pref]
[    0.534077] pci 0000:00:1c.2: BAR 15: assigned [mem 0xd5700000-0xd58fffff 64bit pref]
[    0.534081] pci 0000:00:1c.5: BAR 15: assigned [mem 0xd5900000-0xd5afffff 64bit pref]
[    0.534083] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.534085] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.534088] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd00fffff]
[    0.534092] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.534095] pci 0000:00:1c.0:   bridge window [io  0xc000-0xcfff]
[    0.534100] pci 0000:00:1c.0:   bridge window [mem 0xd3e00000-0xd51fffff]
[    0.534104] pci 0000:00:1c.0:   bridge window [mem 0xd5300000-0xd54fffff 64bit pref]
[    0.534111] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.534114] pci 0000:00:1c.1:   bridge window [io  0xb000-0xbfff]
[    0.534120] pci 0000:00:1c.1:   bridge window [mem 0xd2a00000-0xd3dfffff]
[    0.534124] pci 0000:00:1c.1:   bridge window [mem 0xd5500000-0xd56fffff 64bit pref]
[    0.534131] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.534134] pci 0000:00:1c.2:   bridge window [io  0xa000-0xafff]
[    0.534140] pci 0000:00:1c.2:   bridge window [mem 0xd1600000-0xd29fffff]
[    0.534144] pci 0000:00:1c.2:   bridge window [mem 0xd5700000-0xd58fffff 64bit pref]
[    0.534151] pci 0000:00:1c.5: PCI bridge to [bus 05]
[    0.534154] pci 0000:00:1c.5:   bridge window [io  0x9000-0x9fff]
[    0.534160] pci 0000:00:1c.5:   bridge window [mem 0xd0200000-0xd15fffff]
[    0.534164] pci 0000:00:1c.5:   bridge window [mem 0xd5900000-0xd5afffff 64bit pref]
[    0.534172] pci 0000:00:1e.0: PCI bridge to [bus 06]
[    0.534187] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.534188] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.534190] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.534191] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
[    0.534193] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.534194] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xd00fffff]
[    0.534196] pci_bus 0000:02: resource 0 [io  0xc000-0xcfff]
[    0.534197] pci_bus 0000:02: resource 1 [mem 0xd3e00000-0xd51fffff]
[    0.534199] pci_bus 0000:02: resource 2 [mem 0xd5300000-0xd54fffff 64bit pref]
[    0.534201] pci_bus 0000:03: resource 0 [io  0xb000-0xbfff]
[    0.534202] pci_bus 0000:03: resource 1 [mem 0xd2a00000-0xd3dfffff]
[    0.534204] pci_bus 0000:03: resource 2 [mem 0xd5500000-0xd56fffff 64bit pref]
[    0.534205] pci_bus 0000:04: resource 0 [io  0xa000-0xafff]
[    0.534207] pci_bus 0000:04: resource 1 [mem 0xd1600000-0xd29fffff]
[    0.534208] pci_bus 0000:04: resource 2 [mem 0xd5700000-0xd58fffff 64bit pref]
[    0.534210] pci_bus 0000:05: resource 0 [io  0x9000-0x9fff]
[    0.534211] pci_bus 0000:05: resource 1 [mem 0xd0200000-0xd15fffff]
[    0.534213] pci_bus 0000:05: resource 2 [mem 0xd5900000-0xd5afffff 64bit pref]
[    0.534215] pci_bus 0000:06: resource 4 [io  0x0000-0x0cf7]
[    0.534216] pci_bus 0000:06: resource 5 [io  0x0d00-0xffff]
[    0.534218] pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff]
[    0.534219] pci_bus 0000:06: resource 7 [mem 0xc0000000-0xfeafffff]
[    0.534245] NET: Registered protocol family 2
[    0.534447] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.534545] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.534687] TCP: Hash tables configured (established 32768 bind 32768)
[    0.534717] TCP: reno registered
[    0.534723] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.534743] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.534806] NET: Registered protocol family 1
[    0.534830] pci 0000:00:1a.0: enabling device (0000 -> 0002)
[    0.535062] pci 0000:00:1d.0: enabling device (0000 -> 0002)
[    0.535246] pci 0000:01:00.0: Boot video device
[    0.535275] PCI: CLS 64 bytes, default 64
[    0.535323] Unpacking initramfs...
[    0.621903] Freeing initrd memory: 5552K (ffff88007fa94000 - ffff880080000000)
[    0.621915] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.621917] software IO TLB [mem 0xb8903000-0xbc903000] (64MB) mapped at [ffff8800b8903000-ffff8800bc902fff]
[    0.622189] Scanning for low memory corruption every 60 seconds
[    0.622503] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.622550] Initialise system trusted keyring
[    0.622570] audit: initializing netlink subsys (disabled)
[    0.622592] audit: type=2000 audit(1407947547.436:1): initialized
[    0.622889] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.624060] zpool: loaded
[    0.624062] zbud: loaded
[    0.624216] VFS: Disk quotas dquot_6.5.2
[    0.624248] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.624373] msgmni has been set to 7639
[    0.624428] Key type big_key registered
[    0.624824] Key type asymmetric registered
[    0.624829] Asymmetric key parser 'x509' registered
[    0.624861] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.624924] io scheduler noop registered
[    0.624928] io scheduler deadline registered
[    0.624955] io scheduler cfq registered (default)
[    0.625173] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    0.625333] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
[    0.625522] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
[    0.625710] pcieport 0000:00:1c.2: irq 43 for MSI/MSI-X
[    0.625901] pcieport 0000:00:1c.5: irq 44 for MSI/MSI-X
[    0.626010] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    0.626013] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.626014] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.626017] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    0.626033] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.626038] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.626055] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[    0.626057] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    0.626061] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[    0.626078] pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
[    0.626083] pcie_pme 0000:00:1c.2:pcie01: service driver pcie_pme loaded
[    0.626099] pcieport 0000:00:1c.5: Signaling PME through PCIe PME interrupt
[    0.626101] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    0.626102] pci 0000:05:00.2: Signaling PME through PCIe PME interrupt
[    0.626104] pci 0000:05:00.3: Signaling PME through PCIe PME interrupt
[    0.626106] pci 0000:05:00.4: Signaling PME through PCIe PME interrupt
[    0.626107] pci 0000:05:00.5: Signaling PME through PCIe PME interrupt
[    0.626111] pcie_pme 0000:00:1c.5:pcie01: service driver pcie_pme loaded
[    0.626124] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.626180] pciehp 0000:00:1c.0:pcie04: Slot #0 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
[    0.626215] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded
[    0.626228] pciehp 0000:00:1c.1:pcie04: Slot #1 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
[    0.626260] pciehp 0000:00:1c.1:pcie04: service driver pciehp loaded
[    0.626271] pciehp 0000:00:1c.2:pcie04: Slot #2 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
[    0.626303] pciehp 0000:00:1c.2:pcie04: service driver pciehp loaded
[    0.626314] pciehp 0000:00:1c.5:pcie04: Slot #5 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
[    0.626344] pciehp 0000:00:1c.5:pcie04: service driver pciehp loaded
[    0.626348] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.626377] efifb: probing for efifb
[    0.626397] efifb: framebuffer at 0xc0000000, mapped to 0xffffc90010800000, using 1876k, total 1875k
[    0.626398] efifb: mode is 800x600x32, linelength=3200, pages=1
[    0.626399] efifb: scrolling: redraw
[    0.626400] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.627439] Console: switching to colour frame buffer device 100x37
[    0.628377] fb0: EFI VGA frame buffer device
[    0.628386] intel_idle: MWAIT substates: 0x1120
[    0.628387] intel_idle: v0.4 model 0x25
[    0.628388] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.628564] GHES: HEST is not enabled!
[    0.628729] Linux agpgart interface v0.103
[    0.628784] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    0.630434] i8042: Detected active multiplexing controller, rev 1.1
[    0.631279] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.631305] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.631322] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.631339] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.631356] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.631416] rtc_cmos 00:01: RTC can wake from S4
[    0.631563] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    0.631593] rtc_cmos 00:01: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[    0.631654] TCP: cubic registered
[    0.631750] NET: Registered protocol family 10
[    0.632000] NET: Registered protocol family 17
[    0.632303] Loading compiled-in X.509 certificates
[    0.632325] Loaded X.509 cert 'Nullroute: Kernel signing key <grawity@nullroute.eu.org>: f091333ea101da66040b75006ceac6b862ace520'
[    0.632597] Loaded X.509 cert 'Nullroute CA: cad56a8c5f0c536762dcbf4dc23c46057426f9e8'
[    0.632609] registered taskstats version 1
[    0.632616] zswap: loading zswap
[    0.632617] zpool: creating pool type zbud
[    0.632618] zpool: created zbud pool
[    0.632619] zswap: using zbud pool
[    0.632623] zswap: using lzo compressor
[    0.634890] Key type encrypted registered
[    0.637895] ima: No TPM chip found, activating TPM-bypass!
[    0.638742]   Magic number: 10:164:540
[    0.638827]  node: hash matches
[    0.638946] rtc_cmos 00:01: setting system clock to 2014-08-13 16:32:28 UTC (1407947548)
[    0.639039] PM: Checking hibernation image partition /dev/disk/by-partlabel/swap
[    0.668512] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.781474] PM: Hibernation image not present or could not be loaded.
[    0.783305] Freeing unused kernel memory: 1112K (ffffffff818da000 - ffffffff819f0000)
[    0.783312] Write protecting the kernel read-only data: 8192k
[    0.789306] Freeing unused kernel memory: 1124K (ffff8800054e7000 - ffff880005600000)
[    0.791442] Freeing unused kernel memory: 412K (ffff880005799000 - ffff880005800000)
[    0.802721] random: systemd-tmpfile urandom read with 4 bits of entropy available
[    0.805121] systemd-udevd[74]: starting version 215
[    0.807709] [drm] Initialized drm 1.1.0 20060810
[    0.813240] [drm] radeon kernel modesetting enabled.
[    0.813287] checking generic (c0000000 1d5000) vs hw (c0000000 10000000)
[    0.813289] fb: switching to radeondrmfb from EFI VGA
[    0.813311] Console: switching to colour dummy device 80x25
[    0.814029] [drm] initializing kernel modesetting (CEDAR 0x1002:0x68E4 0x1043:0x1C92).
[    0.814044] [drm] register mmio base: 0xD0020000
[    0.814045] [drm] register mmio size: 131072
[    0.814107] ATOM BIOS: Asus
[    0.814161] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    0.814163] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    0.814164] [drm] Detected VRAM RAM=1024M, BAR=256M
[    0.814165] [drm] RAM width 64bits DDR
[    0.814271] [TTM] Zone  kernel: Available graphics memory: 1957024 kiB
[    0.814275] [TTM] Initializing pool allocator
[    0.814287] [TTM] Initializing DMA pool allocator
[    0.814319] [drm] radeon: 1024M of VRAM memory ready
[    0.814322] [drm] radeon: 1024M of GTT memory ready.
[    0.814351] [drm] Loading CEDAR Microcode
[    0.814447] [drm] Internal thermal controller without fan control
[    0.814491] == power state 0 ==
[    0.814492] 	ui class: none
[    0.814494] 	internal class: boot 
[    0.814495] 	caps: video 
[    0.814497] 	uvd    vclk: 0 dclk: 0
[    0.814498] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.814499] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.814500] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.814501] 	status: c r b 
[    0.814502] == power state 1 ==
[    0.814503] 	ui class: performance
[    0.814504] 	internal class: none
[    0.814505] 	caps: single_disp video 
[    0.814506] 	uvd    vclk: 0 dclk: 0
[    0.814507] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.814508] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.814509] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.814510] 	status: 
[    0.814511] == power state 2 ==
[    0.814512] 	ui class: none
[    0.814512] 	internal class: uvd 
[    0.814513] 	caps: video 
[    0.814515] 	uvd    vclk: 50000 dclk: 40000
[    0.814516] 		power level 0    sclk: 50000 mclk: 80000 vddc: 1000 vddci: 0
[    0.814517] 		power level 1    sclk: 50000 mclk: 80000 vddc: 1000 vddci: 0
[    0.814518] 		power level 2    sclk: 50000 mclk: 80000 vddc: 1000 vddci: 0
[    0.814518] 	status: 
[    0.814519] == power state 3 ==
[    0.814520] 	ui class: performance
[    0.814521] 	internal class: none
[    0.814522] 	caps: video 
[    0.814523] 	uvd    vclk: 0 dclk: 0
[    0.814524] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.814525] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.814526] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.814527] 	status: 
[    0.814528] == power state 4 ==
[    0.814528] 	ui class: battery
[    0.814529] 	internal class: none
[    0.814530] 	caps: single_disp video 
[    0.814532] 	uvd    vclk: 0 dclk: 0
[    0.814533] 		power level 0    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.814534] 		power level 1    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.814535] 		power level 2    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.814535] 	status: 
[    0.814536] == power state 5 ==
[    0.814537] 	ui class: battery
[    0.814537] 	internal class: none
[    0.814539] 	caps: video 
[    0.814540] 	uvd    vclk: 0 dclk: 0
[    0.814541] 		power level 0    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.814542] 		power level 1    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.814543] 		power level 2    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.814544] 	status: 
[    0.814544] == power state 6 ==
[    0.814545] 	ui class: battery
[    0.814546] 	internal class: uvd_hd 
[    0.814547] 	caps: video 
[    0.814548] 	uvd    vclk: 40000 dclk: 30000
[    0.814549] 		power level 0    sclk: 45000 mclk: 50000 vddc: 900 vddci: 0
[    0.814550] 		power level 1    sclk: 45000 mclk: 50000 vddc: 900 vddci: 0
[    0.814551] 		power level 2    sclk: 45000 mclk: 50000 vddc: 900 vddci: 0
[    0.814552] 	status: 
[    0.814553] == power state 7 ==
[    0.814553] 	ui class: battery
[    0.814554] 	internal class: uvd_sd 
[    0.814555] 	caps: video 
[    0.814556] 	uvd    vclk: 10000 dclk: 10000
[    0.814557] 		power level 0    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.814558] 		power level 1    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.814559] 		power level 2    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.814560] 	status: 
[    0.840175] [drm] radeon: dpm initialized
[    0.840258] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    0.854560] [drm] PCIE GART of 1024M enabled (table at 0x000000000025D000).
[    0.854693] radeon 0000:01:00.0: WB enabled
[    0.854696] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff8801312ebc00
[    0.854698] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff8801312ebc0c
[    0.855441] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x000000000005c418 and cpu addr 0xffffc90010d9c418
[    0.855443] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    0.855444] [drm] Driver supports precise vblank timestamp query.
[    0.855466] radeon 0000:01:00.0: irq 45 for MSI/MSI-X
[    0.855484] radeon 0000:01:00.0: radeon: using MSI.
[    0.855509] [drm] radeon: irq initialized.
[    0.878252] [drm] ring test on 0 succeeded in 1 usecs
[    0.878310] [drm] ring test on 3 succeeded in 1 usecs
[    1.065390] [drm] ring test on 5 succeeded in 1 usecs
[    1.065395] [drm] UVD initialized successfully.
[    1.065672] [drm] ib test on ring 0 succeeded in 0 usecs
[    1.065698] [drm] ib test on ring 3 succeeded in 0 usecs
[    1.217036] [drm] ib test on ring 5 succeeded
[    1.217727] [drm] Radeon Display Connectors
[    1.217729] [drm] Connector 0:
[    1.217730] [drm]   LVDS-1
[    1.217731] [drm]   DDC: 0x6560 0x6560 0x6564 0x6564 0x6568 0x6568 0x656c 0x656c
[    1.217732] [drm]   Encoders:
[    1.217733] [drm]     LCD1: INTERNAL_UNIPHY
[    1.217734] [drm] Connector 1:
[    1.217735] [drm]   HDMI-A-1
[    1.217735] [drm]   HPD1
[    1.217737] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    1.217737] [drm]   Encoders:
[    1.217738] [drm]     DFP1: INTERNAL_UNIPHY1
[    1.217739] [drm] Connector 2:
[    1.217740] [drm]   VGA-1
[    1.217741] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    1.217741] [drm]   Encoders:
[    1.217742] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    1.590852] switching from power state:
[    1.590855] 	ui class: none
[    1.590856] 	internal class: boot 
[    1.590858] 	caps: video 
[    1.590860] 	uvd    vclk: 0 dclk: 0
[    1.590862] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.590864] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.590865] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.590866] 	status: c b 
[    1.590867] switching to power state:
[    1.590868] 	ui class: performance
[    1.590869] 	internal class: none
[    1.590870] 	caps: single_disp video 
[    1.590871] 	uvd    vclk: 0 dclk: 0
[    1.590873] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.590874] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.590875] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.590875] 	status: r 
[    1.605531] [drm] fb mappable at 0xC045E000
[    1.605532] [drm] vram apper at 0xC0000000
[    1.605533] [drm] size 4325376
[    1.605534] [drm] fb depth is 24
[    1.605534] [drm]    pitch is 5632
[    1.605805] fbcon: radeondrmfb (fb0) is primary device
[    1.623773] tsc: Refined TSC clocksource calibration: 2659.982 MHz
[    2.197289] Console: switching to colour frame buffer device 170x48
[    2.202182] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[    2.202186] radeon 0000:01:00.0: registered panic notifier
[    2.220637] [drm] Initialized radeon 2.40.0 20080528 for 0000:01:00.0 on minor 0
[    2.261047] ACPI: bus type USB registered
[    2.261076] usbcore: registered new interface driver usbfs
[    2.261084] usbcore: registered new interface driver hub
[    2.261208] usbcore: registered new device driver usb
[    2.261650] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.261886] ehci-pci: EHCI PCI platform driver
[    2.262092] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    2.262098] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    2.262114] ehci-pci 0000:00:1a.0: debug port 2
[    2.262228] sdhci: Secure Digital Host Controller Interface driver
[    2.262230] sdhci: Copyright(c) Pierre Ossman
[    2.262409] sdhci-pci 0000:05:00.0: SDHCI controller found [197b:2382] (rev 80)
[    2.266020] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    2.266048] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd5208000
[    2.266063] sdhci-pci 0000:05:00.0: enabling device (0000 -> 0002)
[    2.266172] mmc0: no vqmmc regulator found
[    2.266175] mmc0: no vmmc regulator found
[    2.266449] mmc0: SDHCI controller on PCI [0000:05:00.0] using ADMA
[    2.266495] sdhci-pci 0000:05:00.2: SDHCI controller found [197b:2381] (rev 80)
[    2.266601] sdhci-pci 0000:05:00.2: Refusing to bind to secondary interface.
[    2.273801] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.273887] SCSI subsystem initialized
[    2.274119] hub 1-0:1.0: USB hub found
[    2.274128] hub 1-0:1.0: 2 ports detected
[    2.274474] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    2.274482] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.274500] ehci-pci 0000:00:1d.0: debug port 2
[    2.278458] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    2.278482] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd5207000
[    2.280683] libata version 3.00 loaded.
[    2.287121] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.287529] hub 2-0:1.0: USB hub found
[    2.287536] hub 2-0:1.0: 2 ports detected
[    2.287823] ahci 0000:00:1f.2: version 3.0
[    2.288173] ahci 0000:00:1f.2: irq 46 for MSI/MSI-X
[    2.288299] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
[    2.288304] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems sxs apst 
[    2.308118] scsi host0: ahci
[    2.308307] scsi host1: ahci
[    2.308495] scsi host2: ahci
[    2.308665] scsi host3: ahci
[    2.308808] scsi host4: ahci
[    2.308948] scsi host5: ahci
[    2.308993] ata1: SATA max UDMA/133 abar m2048@0xd5206000 port 0xd5206100 irq 46
[    2.308996] ata2: SATA max UDMA/133 abar m2048@0xd5206000 port 0xd5206180 irq 46
[    2.308997] ata3: DUMMY
[    2.308998] ata4: DUMMY
[    2.309000] ata5: SATA max UDMA/133 abar m2048@0xd5206000 port 0xd5206300 irq 46
[    2.309003] ata6: SATA max UDMA/133 abar m2048@0xd5206000 port 0xd5206380 irq 46
[    2.580603] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.624022] Switched to clocksource tsc
[    2.627218] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.627253] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.627283] ata5: SATA link down (SStatus 0 SControl 300)
[    2.627316] ata6: SATA link down (SStatus 0 SControl 300)
[    2.628714] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    2.631674] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[    2.632487] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[    2.632939] ata2.00: ATAPI: SlimtypeDVD A  DS8A5SH, XAA2, max UDMA/100
[    2.635429] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[    2.636195] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[    2.636643] ata2.00: configured for UDMA/100
[    2.637901] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[    2.648162] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[    2.704625] hub 1-1:1.0: USB hub found
[    2.704813] hub 1-1:1.0: 6 ports detected
[    2.721575] ata1.00: ATA-8: ST9640320AS, 0002SDM1, max UDMA/133
[    2.721581] ata1.00: 1250263728 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    2.737838] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    2.747544] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[    2.758100] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[    2.788259] ata1.00: configured for UDMA/133
[    2.788583] scsi 0:0:0:0: Direct-Access     ATA      ST9640320AS      SDM1 PQ: 0 ANSI: 5
[    2.793759] scsi 1:0:0:0: CD-ROM            Slimtype DVD A  DS8A5SH   XAA2 PQ: 0 ANSI: 5
[    2.813881] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    2.815845] sd 0:0:0:0: [sda] 1250263728 512-byte logical blocks: (640 GB/596 GiB)
[    2.816078] sd 0:0:0:0: [sda] Write Protect is off
[    2.816085] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.816173] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.830316] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/8x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.830321] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.830558] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    2.869157]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[    2.870632] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.938161] hub 2-1:1.0: USB hub found
[    2.938300] hub 2-1:1.0: 8 ports detected
[    3.170834] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
[    3.650610] usb 1-1.2: device not accepting address 4, error -71
[    3.708681] PM: Starting manual resume from disk
[    3.708688] PM: Hibernation image partition 8:7 present
[    3.708691] PM: Looking for hibernation image.
[    3.729210] PM: Image not found (code -22)
[    3.729214] PM: Hibernation image not present or could not be loaded.
[    3.730800] usb 2-1.3: new high-speed USB device number 3 using ehci-pci
[    4.000830] usb 1-1.2: new high-speed USB device number 6 using ehci-pci
[    4.035716] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: quota
[    4.234085] usb 1-1.2: new high-speed USB device number 7 using ehci-pci
[    4.242723] random: nonblocking pool is initialized
[    7.101676] systemd[1]: systemd 215 running in system mode. (+PAM -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
[    7.101958] systemd[1]: Detected architecture 'x86-64'.
[    7.133414] systemd[1]: Set hostname to <rain>.
[   11.337311] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[   11.337431] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   11.337459] systemd[1]: Starting Remote File Systems.
[   11.337652] systemd[1]: Reached target Remote File Systems.
[   11.337695] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[   11.337756] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   11.337783] systemd[1]: Starting Encrypted Volumes.
[   11.337952] systemd[1]: Reached target Encrypted Volumes.
[   11.338001] systemd[1]: Starting Arbitrary Executable File Formats File System Automount Point.
[   11.338312] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[   11.338346] systemd[1]: Expecting device dev-sda7.device...
[   11.338471] systemd[1]: Expecting device dev-disk-by\x2dpartlabel-swap.device...
[   11.338605] systemd[1]: Starting EFI System Partition Automount.
[   11.338859] systemd[1]: Set up automount EFI System Partition Automount.
[   11.338889] systemd[1]: Expecting device dev-disk-by\x2dpartlabel-EFI.device...
[   11.339027] systemd[1]: Expecting device dev-disk-by\x2dpartlabel-boot.device...
[   11.339161] systemd[1]: Expecting device dev-disk-by\x2dpartlabel-home.device...
[   11.339296] systemd[1]: Expecting device dev-disk-by\x2dpartlabel-raindows.device...
[   11.339434] systemd[1]: Starting Root Slice.
[   11.355587] systemd[1]: Created slice Root Slice.
[   11.355622] systemd[1]: Starting Delayed Shutdown Socket.
[   11.355820] systemd[1]: Listening on Delayed Shutdown Socket.
[   11.355846] systemd[1]: Starting Device-mapper event daemon FIFOs.
[   11.356042] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   11.356066] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[   11.356270] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[   11.356295] systemd[1]: Starting Journal Socket (/dev/log).
[   11.356493] systemd[1]: Listening on Journal Socket (/dev/log).
[   11.356518] systemd[1]: Starting LVM2 metadata daemon socket.
[   11.356713] systemd[1]: Listening on LVM2 metadata daemon socket.
[   11.356744] systemd[1]: Starting udev Control Socket.
[   11.356922] systemd[1]: Listening on udev Control Socket.
[   11.356953] systemd[1]: Starting udev Kernel Socket.
[   11.357127] systemd[1]: Listening on udev Kernel Socket.
[   11.357153] systemd[1]: Starting User and Session Slice.
[   11.357681] systemd[1]: Created slice User and Session Slice.
[   11.357717] systemd[1]: Starting Journal Socket.
[   11.358017] systemd[1]: Listening on Journal Socket.
[   11.358079] systemd[1]: Starting System Slice.
[   11.358581] systemd[1]: Created slice System Slice.
[   11.358620] systemd[1]: Starting system-systemd\x2dfsck.slice.
[   11.359172] systemd[1]: Created slice system-systemd\x2dfsck.slice.
[   11.359208] systemd[1]: Starting udev Coldplug all Devices...
[   11.360146] systemd[1]: Started Create System Users.
[   11.360196] systemd[1]: Mounting Huge Pages File System...
[   11.361087] systemd[1]: Mounting POSIX Message Queue File System...
[   11.397191] systemd[1]: Started Rebuild Dynamic Linker Cache.
[   11.397248] systemd[1]: Started First Boot Wizard.
[   11.397371] systemd[1]: Mounting Debug File System...
[   11.398163] systemd[1]: Starting Setup Virtual Console...
[   11.437544] systemd[1]: Starting Load Kernel Modules...
[   11.438037] systemd[1]: Starting Load/Save Random Seed...
[   11.438502] systemd[1]: Started Rebuild Hardware Database.
[   11.460004] systemd[1]: Starting Set Up Additional Binary Formats...
[   11.510934] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[   11.511997] systemd[1]: Starting system-getty.slice.
[   11.512589] systemd[1]: Created slice system-getty.slice.
[   11.512643] systemd[1]: Starting Journal Service...
[   11.513911] systemd[1]: Started Journal Service.
[   12.442697] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   12.442778] sr 1:0:0:0: Attached scsi generic sg1 type 5
[   12.766794] FS-Cache: Loaded
[   12.970796] RPC: Registered named UNIX socket transport module.
[   12.970799] RPC: Registered udp transport module.
[   12.970800] RPC: Registered tcp transport module.
[   12.970801] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   13.080004] FS-Cache: Netfs 'nfs' registered for caching
[   13.152454] TCP: lp registered
[   13.172156] TCP: vegas registered
[   13.539833] systemd-udevd[197]: starting version 215
[   15.349681] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input5
[   15.350675] ACPI: Lid Switch [LID]
[   15.350737] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input6
[   15.350742] ACPI: Sleep Button [SLPB]
[   15.350796] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
[   15.350799] ACPI: Power Button [PWRF]
[   15.429300] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   15.433088] acpi device:03: registered as cooling_device4
[   15.433147] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input8
[   15.509019] ACPI: Battery Slot [BAT0] (battery present)
[   15.521527] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000044f (\GPIS) (20140724/utaddress-258)
[   15.521532] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140724/utaddress-258)
[   15.521536] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.521539] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\GPIO) (20140724/utaddress-258)
[   15.521542] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.521543] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\GPIO) (20140724/utaddress-258)
[   15.521545] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.521546] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\GPIO) (20140724/utaddress-258)
[   15.521548] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.521549] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   15.525609] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
[   15.525617] intel ips 0000:00:1f.6: enabling device (0000 -> 0002)
[   15.525782] intel ips 0000:00:1f.6: failed to get i915 symbols, graphics turbo disabled until i915 loads
[   15.525860] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
[   15.544111] ACPI Warning: SystemIO range 0x000000000000e000-0x000000000000e01f conflicts with OpRegion 0x000000000000e000-0x000000000000e00f (\SMB0) (20140724/utaddress-258)
[   15.544116] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.585789] thermal LNXTHERM:00: registered as thermal_zone0
[   15.585793] ACPI: Thermal Zone [THRM] (56 C)
[   15.616059] ACPI: AC Adapter [AC0] (on-line)
[   15.861316] mei_me 0000:00:16.0: irq 47 for MSI/MSI-X
[   15.925348] asus_laptop: Asus Laptop Support version 0.42
[   15.925446] asus_laptop: BSTS called, 0xc800 returned
[   15.925460] asus_laptop:    model detected
[   15.925795] asus_laptop: Backlight controlled by ACPI video driver
[   15.925859] input: Asus Laptop extra buttons as /devices/platform/asus_laptop/input/input9
[   15.964068] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x2
[   16.023021] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x2
[   16.023390] microcode: CPU0 updated to revision 0x4, date = 2013-06-28
[   16.023399] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
[   16.023421] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
[   16.023591] microcode: CPU1 updated to revision 0x4, date = 2013-06-28
[   16.023630] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
[   16.023669] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
[   16.023827] microcode: CPU2 updated to revision 0x4, date = 2013-06-28
[   16.023836] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x2
[   16.023856] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x2
[   16.024035] microcode: CPU3 updated to revision 0x4, date = 2013-06-28
[   16.024128] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   16.139691] cfg80211: Calling CRDA to update world regulatory domain
[   16.142382] jmb38x_ms 0000:05:00.3: enabling device (0000 -> 0002)
[   16.149137] iTCO_vendor_support: vendor-support=0
[   16.334589] input: PC Speaker as /devices/platform/pcspkr/input/input14
[   16.348978] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   16.349020] iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
[   16.349160] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   16.349841] jme: JMicron JMC2XX ethernet driver version 1.0.8
[   16.349863] jme 0000:05:00.5: can't disable ASPM; OS doesn't have ASPM control
[   16.350719] jme 0000:05:00.5 eth0: JMC250 Gigabit Ethernet chiprev:23 pcirev:3 macaddr:f4:6d:04:85:fc:d7
[   16.575408] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   16.575587] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   16.575641] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
[   16.575891] snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
[   16.575962] snd_hda_intel 0000:01:00.1: irq 49 for MSI/MSI-X
[   16.858063] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[   16.887849] psmouse serio4: elantech: assuming hardware version 2 (with firmware version 0x040102)
[   16.916146] psmouse serio4: elantech: Synaptics capabilities query result 0x78, 0x16, 0x0d.
[   17.023321] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio4/input/input13
[   17.135912] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
[   17.150091] sound hdaudioC0D0: CX20585: BIOS auto-probing.
[   17.150858] sound hdaudioC0D0: autoconfig: line_outs=1 (0x1f/0x0/0x0/0x0/0x0) type:speaker
[   17.150860] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.150862] sound hdaudioC0D0:    hp_outs=1 (0x19/0x0/0x0/0x0/0x0)
[   17.150863] sound hdaudioC0D0:    mono: mono_out=0x0
[   17.150864] sound hdaudioC0D0:    inputs:
[   17.150867] sound hdaudioC0D0:      Mic=0x1b
[   17.150868] sound hdaudioC0D0:      Internal Mic=0x1a
[   17.152119] sound hdaudioC0D0: Enable sync_write for stable communication
[   17.155445] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input16
[   17.155609] input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[   17.155670] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
[   17.161349] cfg80211: Calling CRDA to update world regulatory domain
[   17.216126] ath: phy0: Enable LNA combining
[   17.217668] ath: EEPROM regdomain: 0x60
[   17.217669] ath: EEPROM indicates we should expect a direct regpair map
[   17.217672] ath: Country alpha2 being used: 00
[   17.217673] ath: Regpair used: 0x60
[   17.247039] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   17.247446] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc900131e0000, irq=17
[   17.510413] mousedev: PS/2 mouse device common for all mice
[   17.523334] usb 1-1.2: USB disconnect, device number 7
[   17.575547] usb 1-1: USB disconnect, device number 2
[   18.427215] cfg80211: World regulatory domain updated:
[   18.427219] cfg80211:  DFS Master region: unset
[   18.427220] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   18.427222] cfg80211:   (2402000 KHz - 2472000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[   18.427224] cfg80211:   (2457000 KHz - 2482000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[   18.427225] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[   18.427227] cfg80211:   (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A)
[   18.427228] cfg80211:   (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[   18.427230] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[   18.427231] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[   18.427233] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[   18.427244] cfg80211: Calling CRDA for country: LT
[   18.562250] cfg80211: Regulatory domain changed to country: LT
[   18.562254] cfg80211:  DFS Master region: ETSI
[   18.562255] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   18.562257] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   18.562259] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[   18.562260] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
[   18.562261] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
[   18.562263] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[   19.076294] media: Linux media interface: v0.10
[   19.370341] Adding 2097148k swap on /dev/sda7.  Priority:-1 extents:1 across:2097148k FS
[   19.593290] fuse init (API version 7.23)
[   19.624828] Linux video capture interface: v2.00
[   20.033037] usbcore: registered new interface driver uvcvideo
[   20.033040] USB Video Class driver (1.1.1)
[   21.156972] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[   21.323053] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[   21.489905] systemd-journald[170]: Received request to flush runtime journal from PID 1
[   25.173372] ip_tables: (C) 2000-2006 Netfilter Core Team
[   25.183124] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   26.280596] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   28.286021] Netfilter messages via NETLINK v0.30.
[   30.924678] jme 0000:05:00.5: irq 50 for MSI/MSI-X
[   30.946965] jme 0000:05:00.5 eth0: Link is down
[   30.946980] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   30.986859] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   32.821635] tun: Universal TUN/TAP device driver, 1.6
[   32.821638] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[   35.767161] firewall: block IN=zt0 OUT= MAC= SRC=28.124.215.39 DST=29.255.255.255 LEN=241 TOS=0x00 PREC=0x00 TTL=64 ID=53873 DF PROTO=UDP SPT=138 DPT=138 LEN=221 
[   42.540652] firewall: block IN=zt0 OUT= MAC= SRC=28.124.215.39 DST=29.255.255.255 LEN=215 TOS=0x00 PREC=0x00 TTL=64 ID=54595 DF PROTO=UDP SPT=138 DPT=138 LEN=195 
[   45.544484] firewall: block IN=zt0 OUT= MAC= SRC=28.124.215.39 DST=29.255.255.255 LEN=215 TOS=0x00 PREC=0x00 TTL=64 ID=54780 DF PROTO=UDP SPT=138 DPT=138 LEN=195 
[   47.547044] firewall: block IN=zt0 OUT= MAC= SRC=28.124.215.39 DST=29.255.255.255 LEN=215 TOS=0x00 PREC=0x00 TTL=64 ID=54838 DF PROTO=UDP SPT=138 DPT=138 LEN=195 
[   49.549711] firewall: block IN=zt0 OUT= MAC= SRC=28.124.215.39 DST=29.255.255.255 LEN=215 TOS=0x00 PREC=0x00 TTL=64 ID=55381 DF PROTO=UDP SPT=138 DPT=138 LEN=195 
[   51.551451] firewall: block IN=zt0 OUT= MAC= SRC=28.124.215.39 DST=29.255.255.255 LEN=215 TOS=0x00 PREC=0x00 TTL=64 ID=55581 DF PROTO=UDP SPT=138 DPT=138 LEN=195 
[   61.885776] firewall: block IN=zt0 OUT= MAC= SRC=28.124.215.39 DST=29.255.255.255 LEN=203 TOS=0x00 PREC=0x00 TTL=64 ID=57545 DF PROTO=UDP SPT=138 DPT=138 LEN=183 
[   61.886037] firewall: block IN=zt0 OUT= MAC= SRC=28.124.215.39 DST=29.255.255.255 LEN=241 TOS=0x00 PREC=0x00 TTL=64 ID=57546 DF PROTO=UDP SPT=138 DPT=138 LEN=221 
[   61.886078] firewall: block IN=zt0 OUT= MAC= SRC=28.124.215.39 DST=29.255.255.255 LEN=233 TOS=0x00 PREC=0x00 TTL=64 ID=57547 DF PROTO=UDP SPT=138 DPT=138 LEN=213 
[  153.846706] usb 2-1.3: USB disconnect, device number 3
[  154.095765] usb 2-1.3: new high-speed USB device number 4 using ehci-pci
[  154.286821] usbcore: registered new interface driver cdc_ether
[  154.299112] rndis_host 2-1.3:1.0 usb0: register 'rndis_host' at usb-0000:00:1d.0-1.3, RNDIS device, 66:8d:d8:43:90:7b
[  154.299145] usbcore: registered new interface driver rndis_host

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

* Re: Loading initrd above 4G causes freeze on boot
  2014-08-13 16:38             ` Mantas Mikulėnas
@ 2014-08-13 18:44               ` Matt Fleming
  2014-08-20 17:05                   ` Matt Fleming
  0 siblings, 1 reply; 36+ messages in thread
From: Matt Fleming @ 2014-08-13 18:44 UTC (permalink / raw)
  To: Mantas Mikulėnas
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List, linux-efi

On Wed, 13 Aug, at 07:38:14PM, Mantas Mikulėnas wrote:
> 
> Here you go.
> 
> [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000137ffffff] usable

[...]

> [    0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000137ffffff] usable

[...]

> [    0.000000] efi: mem201: type=7, attr=0xf, range=[0x0000000100000000-0x0000000138000000) (896MB)

Nothing crazy here, unless we're getting the calculation wrong and
reading past the buffer, the code looks OK though. Or something like the
last page or so of that memory isn't actually free even though the
firmware tells us it is.

At this point, I think modifying the max address is the best way to
debug this further, and figure out what address causes the hang.

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-20 17:05                   ` Matt Fleming
  0 siblings, 0 replies; 36+ messages in thread
From: Matt Fleming @ 2014-08-20 17:05 UTC (permalink / raw)
  To: Mantas Mikulėnas
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List, linux-efi

On Wed, 13 Aug, at 07:44:49PM, Matt Fleming wrote:
> 
> At this point, I think modifying the max address is the best way to
> debug this further, and figure out what address causes the hang.

Mantas, did you manage to get to the bottom of this issue?

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-20 17:05                   ` Matt Fleming
  0 siblings, 0 replies; 36+ messages in thread
From: Matt Fleming @ 2014-08-20 17:05 UTC (permalink / raw)
  To: Mantas Mikulėnas
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List,
	linux-efi-u79uwXL29TY76Z2rM5mHXA

On Wed, 13 Aug, at 07:44:49PM, Matt Fleming wrote:
> 
> At this point, I think modifying the max address is the best way to
> debug this further, and figure out what address causes the hang.

Mantas, did you manage to get to the bottom of this issue?

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-20 19:05                     ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-20 19:05 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List, linux-efi

On Wed, Aug 20, 2014 at 8:05 PM, Matt Fleming <matt@console-pimps.org> wrote:
> On Wed, 13 Aug, at 07:44:49PM, Matt Fleming wrote:
>>
>> At this point, I think modifying the max address is the best way to
>> debug this further, and figure out what address causes the hang.
>
> Mantas, did you manage to get to the bottom of this issue?

I experimented with some things (like setting chunk size to a few kB
to see if it hangs earlier or only at the very end; etc.), and finally
found out that it stops freezing if I pad the initrd file to a
multiple of 512 bytes :/ That is, 5684268 bytes will freeze, 5684736
bytes will not.

...In other words, seems like it cannot read chunks that aren't
multiples of 512 into a location above 4 GB. Or something like that...

-- 
Mantas Mikulėnas <grawity@gmail.com>

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-20 19:05                     ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-20 19:05 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List,
	linux-efi-u79uwXL29TY76Z2rM5mHXA

On Wed, Aug 20, 2014 at 8:05 PM, Matt Fleming <matt-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org> wrote:
> On Wed, 13 Aug, at 07:44:49PM, Matt Fleming wrote:
>>
>> At this point, I think modifying the max address is the best way to
>> debug this further, and figure out what address causes the hang.
>
> Mantas, did you manage to get to the bottom of this issue?

I experimented with some things (like setting chunk size to a few kB
to see if it hangs earlier or only at the very end; etc.), and finally
found out that it stops freezing if I pad the initrd file to a
multiple of 512 bytes :/ That is, 5684268 bytes will freeze, 5684736
bytes will not.

...In other words, seems like it cannot read chunks that aren't
multiples of 512 into a location above 4 GB. Or something like that...

-- 
Mantas Mikulėnas <grawity-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-20 19:53                       ` Michael Brown
  0 siblings, 0 replies; 36+ messages in thread
From: Michael Brown @ 2014-08-20 19:53 UTC (permalink / raw)
  To: Mantas Mikulėnas, Matt Fleming
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List, linux-efi

On 20/08/14 20:05, Mantas Mikulėnas wrote:
> On Wed, Aug 20, 2014 at 8:05 PM, Matt Fleming <matt@console-pimps.org> wrote:
>> On Wed, 13 Aug, at 07:44:49PM, Matt Fleming wrote:
>>>
>>> At this point, I think modifying the max address is the best way to
>>> debug this further, and figure out what address causes the hang.
>>
>> Mantas, did you manage to get to the bottom of this issue?
>
> I experimented with some things (like setting chunk size to a few kB
> to see if it hangs earlier or only at the very end; etc.), and finally
> found out that it stops freezing if I pad the initrd file to a
> multiple of 512 bytes :/ That is, 5684268 bytes will freeze, 5684736
> bytes will not.
>
> ...In other words, seems like it cannot read chunks that aren't
> multiples of 512 into a location above 4 GB. Or something like that...

I haven't been following this thread closely, but that immediately 
sounds like a problem within the EFI_DISK_IO_PROTOCOL implementation 
(which is responsible for handling smaller-than-block-sized reads). 
Looking at the EDK2 implementation in 
MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIo.c, the memory management 
does appear to be somewhat inventive.  In particular, there's a frequent 
pattern in DiskIoCreateSubtaskList() equivalent to:

   if ( blocking_io ) {
      buffer = some_static_buffer;
   } else {
      buffer = malloc ( len );
      if ( ! buffer )
         goto single_shared_error_label;
   }
   ... do not record whether or not buffer was dynamically allocated ...
   ... use buffer as part of an asynchronous I/O operation ...
   ... eventually choose whether or not to free buffer, and hope the 
choice is correct ...

It's not at all obvious that memory is freed correctly, especially under 
some of the error paths within that code.

I can't immediately see anything that should fail with a pointer above 
4G, but I wouldn't be surprised to find a path that causes a double free 
or similar error.

Apologies if I've missed something critical earlier in the thread, 
making my ramblings are totally irrelevant.

Michael

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-20 19:53                       ` Michael Brown
  0 siblings, 0 replies; 36+ messages in thread
From: Michael Brown @ 2014-08-20 19:53 UTC (permalink / raw)
  To: Mantas Mikulėnas, Matt Fleming
  Cc: Yinghai Lu, Matt Fleming, Linux Kernel Mailing List,
	linux-efi-u79uwXL29TY76Z2rM5mHXA

On 20/08/14 20:05, Mantas Mikulėnas wrote:
> On Wed, Aug 20, 2014 at 8:05 PM, Matt Fleming <matt-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org> wrote:
>> On Wed, 13 Aug, at 07:44:49PM, Matt Fleming wrote:
>>>
>>> At this point, I think modifying the max address is the best way to
>>> debug this further, and figure out what address causes the hang.
>>
>> Mantas, did you manage to get to the bottom of this issue?
>
> I experimented with some things (like setting chunk size to a few kB
> to see if it hangs earlier or only at the very end; etc.), and finally
> found out that it stops freezing if I pad the initrd file to a
> multiple of 512 bytes :/ That is, 5684268 bytes will freeze, 5684736
> bytes will not.
>
> ...In other words, seems like it cannot read chunks that aren't
> multiples of 512 into a location above 4 GB. Or something like that...

I haven't been following this thread closely, but that immediately 
sounds like a problem within the EFI_DISK_IO_PROTOCOL implementation 
(which is responsible for handling smaller-than-block-sized reads). 
Looking at the EDK2 implementation in 
MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIo.c, the memory management 
does appear to be somewhat inventive.  In particular, there's a frequent 
pattern in DiskIoCreateSubtaskList() equivalent to:

   if ( blocking_io ) {
      buffer = some_static_buffer;
   } else {
      buffer = malloc ( len );
      if ( ! buffer )
         goto single_shared_error_label;
   }
   ... do not record whether or not buffer was dynamically allocated ...
   ... use buffer as part of an asynchronous I/O operation ...
   ... eventually choose whether or not to free buffer, and hope the 
choice is correct ...

It's not at all obvious that memory is freed correctly, especially under 
some of the error paths within that code.

I can't immediately see anything that should fail with a pointer above 
4G, but I wouldn't be surprised to find a path that causes a double free 
or similar error.

Apologies if I've missed something critical earlier in the thread, 
making my ramblings are totally irrelevant.

Michael

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-20 20:30                         ` Matt Fleming
  0 siblings, 0 replies; 36+ messages in thread
From: Matt Fleming @ 2014-08-20 20:30 UTC (permalink / raw)
  To: Michael Brown
  Cc: Mantas Mikulėnas, Yinghai Lu, Matt Fleming,
	Linux Kernel Mailing List, linux-efi, edk2-devel

[ Pulling in EDK2 folks for help ]

On Wed, 20 Aug, at 08:53:45PM, Michael Brown wrote:
> On 20/08/14 20:05, Mantas Mikulėnas wrote:
> >
> >I experimented with some things (like setting chunk size to a few kB
> >to see if it hangs earlier or only at the very end; etc.), and finally
> >found out that it stops freezing if I pad the initrd file to a
> >multiple of 512 bytes :/ That is, 5684268 bytes will freeze, 5684736
> >bytes will not.
> >
> >...In other words, seems like it cannot read chunks that aren't
> >multiples of 512 into a location above 4 GB. Or something like that...
> 
> I haven't been following this thread closely, but that immediately
> sounds like a problem within the EFI_DISK_IO_PROTOCOL implementation
> (which is responsible for handling smaller-than-block-sized reads).
> Looking at the EDK2 implementation in
> MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIo.c, the memory
> management does appear to be somewhat inventive.  In particular,
> there's a frequent pattern in DiskIoCreateSubtaskList() equivalent
> to:
> 
>   if ( blocking_io ) {
>      buffer = some_static_buffer;
>   } else {
>      buffer = malloc ( len );
>      if ( ! buffer )
>         goto single_shared_error_label;
>   }
>   ... do not record whether or not buffer was dynamically allocated ...
>   ... use buffer as part of an asynchronous I/O operation ...
>   ... eventually choose whether or not to free buffer, and hope the
> choice is correct ...
> 
> It's not at all obvious that memory is freed correctly, especially
> under some of the error paths within that code.
> 
> I can't immediately see anything that should fail with a pointer
> above 4G, but I wouldn't be surprised to find a path that causes a
> double free or similar error.

Guys, the original thread starts here,

  http://article.gmane.org/gmane.linux.kernel.efi/4424

Basically, reading into a buffer above 0xffffffff using
EFI_FILE_PROTOCOL causes Mantas' machine to crash, irrespective of the
size of the read.

Is this a known issue? Perhaps here be dragons?

Halp?

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-20 20:30                         ` Matt Fleming
  0 siblings, 0 replies; 36+ messages in thread
From: Matt Fleming @ 2014-08-20 20:30 UTC (permalink / raw)
  To: Michael Brown
  Cc: Mantas Mikulėnas, Yinghai Lu, Matt Fleming,
	Linux Kernel Mailing List, linux-efi-u79uwXL29TY76Z2rM5mHXA,
	edk2-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f

[ Pulling in EDK2 folks for help ]

On Wed, 20 Aug, at 08:53:45PM, Michael Brown wrote:
> On 20/08/14 20:05, Mantas Mikulėnas wrote:
> >
> >I experimented with some things (like setting chunk size to a few kB
> >to see if it hangs earlier or only at the very end; etc.), and finally
> >found out that it stops freezing if I pad the initrd file to a
> >multiple of 512 bytes :/ That is, 5684268 bytes will freeze, 5684736
> >bytes will not.
> >
> >...In other words, seems like it cannot read chunks that aren't
> >multiples of 512 into a location above 4 GB. Or something like that...
> 
> I haven't been following this thread closely, but that immediately
> sounds like a problem within the EFI_DISK_IO_PROTOCOL implementation
> (which is responsible for handling smaller-than-block-sized reads).
> Looking at the EDK2 implementation in
> MdeModulePkg/Universal/Disk/DiskIoDxe/DiskIo.c, the memory
> management does appear to be somewhat inventive.  In particular,
> there's a frequent pattern in DiskIoCreateSubtaskList() equivalent
> to:
> 
>   if ( blocking_io ) {
>      buffer = some_static_buffer;
>   } else {
>      buffer = malloc ( len );
>      if ( ! buffer )
>         goto single_shared_error_label;
>   }
>   ... do not record whether or not buffer was dynamically allocated ...
>   ... use buffer as part of an asynchronous I/O operation ...
>   ... eventually choose whether or not to free buffer, and hope the
> choice is correct ...
> 
> It's not at all obvious that memory is freed correctly, especially
> under some of the error paths within that code.
> 
> I can't immediately see anything that should fail with a pointer
> above 4G, but I wouldn't be surprised to find a path that causes a
> double free or similar error.

Guys, the original thread starts here,

  http://article.gmane.org/gmane.linux.kernel.efi/4424

Basically, reading into a buffer above 0xffffffff using
EFI_FILE_PROTOCOL causes Mantas' machine to crash, irrespective of the
size of the read.

Is this a known issue? Perhaps here be dragons?

Halp?

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: [edk2] Loading initrd above 4G causes freeze on boot
@ 2014-08-21 20:23                           ` Laszlo Ersek
  0 siblings, 0 replies; 36+ messages in thread
From: Laszlo Ersek @ 2014-08-21 20:23 UTC (permalink / raw)
  To: Matt Fleming
  Cc: edk2-devel, Michael Brown, linux-efi, Mantas Mikulėnas,
	Linux Kernel Mailing List, Yinghai Lu

On 08/20/14 22:30, Matt Fleming wrote:
> [ Pulling in EDK2 folks for help ]
> 
> On Wed, 20 Aug, at 08:53:45PM, Michael Brown wrote:
>> On 20/08/14 20:05, Mantas Mikulėnas wrote:
>>>
>>> I experimented with some things (like setting chunk size to a few kB
>>> to see if it hangs earlier or only at the very end; etc.), and finally
>>> found out that it stops freezing if I pad the initrd file to a
>>> multiple of 512 bytes :/ That is, 5684268 bytes will freeze, 5684736
>>> bytes will not.
>>>
>>> ...In other words, seems like it cannot read chunks that aren't
>>> multiples of 512 into a location above 4 GB. Or something like that...

This patch by yours truly appears remotely relevant:

https://github.com/tianocore/edk2/commit/4e39b75e

It's dated Aug 26, 2013; no idea if the firmware on Mantas' Asus K52JT,
AMI firmware v206, has it.

Thanks,
Laszlo

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

* Re: [edk2] Loading initrd above 4G causes freeze on boot
@ 2014-08-21 20:23                           ` Laszlo Ersek
  0 siblings, 0 replies; 36+ messages in thread
From: Laszlo Ersek @ 2014-08-21 20:23 UTC (permalink / raw)
  To: Matt Fleming
  Cc: edk2-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f, Michael Brown,
	linux-efi-u79uwXL29TY76Z2rM5mHXA, Mantas Mikulėnas,
	Linux Kernel Mailing List, Yinghai Lu

On 08/20/14 22:30, Matt Fleming wrote:
> [ Pulling in EDK2 folks for help ]
> 
> On Wed, 20 Aug, at 08:53:45PM, Michael Brown wrote:
>> On 20/08/14 20:05, Mantas Mikulėnas wrote:
>>>
>>> I experimented with some things (like setting chunk size to a few kB
>>> to see if it hangs earlier or only at the very end; etc.), and finally
>>> found out that it stops freezing if I pad the initrd file to a
>>> multiple of 512 bytes :/ That is, 5684268 bytes will freeze, 5684736
>>> bytes will not.
>>>
>>> ...In other words, seems like it cannot read chunks that aren't
>>> multiples of 512 into a location above 4 GB. Or something like that...

This patch by yours truly appears remotely relevant:

https://github.com/tianocore/edk2/commit/4e39b75e

It's dated Aug 26, 2013; no idea if the firmware on Mantas' Asus K52JT,
AMI firmware v206, has it.

Thanks,
Laszlo

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-22 14:24   ` Harald Hoyer
  0 siblings, 0 replies; 36+ messages in thread
From: Harald Hoyer @ 2014-08-22 14:24 UTC (permalink / raw)
  To: Mantas Mikulėnas, linux-kernel, linux-efi; +Cc: Yinghai Lu

On 09.08.2014 16:23, Mantas Mikulėnas wrote:
> As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
> the kernel freezes at the earliest possible moment when trying to boot
> via UEFI on my Asus laptop. (It still boots via BIOS.)
> 
> If I revert that commit on current master (c309bfa9b481), it boots
> correctly again [although I see "setup_efi_pci() failed" being printed].
> 
> (Seems like it freezes when handle_cmdline_files() attempts to read
> the last chunk of the initramfs -- the last call to efi_file_read()
> never returns. Figuring out why that happens is beyond me, though.)
> 

I fixed my issue with: https://lkml.org/lkml/2014/8/22/232

Care to test?

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-22 14:24   ` Harald Hoyer
  0 siblings, 0 replies; 36+ messages in thread
From: Harald Hoyer @ 2014-08-22 14:24 UTC (permalink / raw)
  To: Mantas Mikulėnas, linux-kernel-u79uwXL29TY76Z2rM5mHXA,
	linux-efi-u79uwXL29TY76Z2rM5mHXA
  Cc: Yinghai Lu

On 09.08.2014 16:23, Mantas Mikulėnas wrote:
> As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
> the kernel freezes at the earliest possible moment when trying to boot
> via UEFI on my Asus laptop. (It still boots via BIOS.)
> 
> If I revert that commit on current master (c309bfa9b481), it boots
> correctly again [although I see "setup_efi_pci() failed" being printed].
> 
> (Seems like it freezes when handle_cmdline_files() attempts to read
> the last chunk of the initramfs -- the last call to efi_file_read()
> never returns. Figuring out why that happens is beyond me, though.)
> 

I fixed my issue with: https://lkml.org/lkml/2014/8/22/232

Care to test?

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-22 14:43     ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-22 14:43 UTC (permalink / raw)
  To: Harald Hoyer; +Cc: Linux Kernel Mailing List, linux-efi, Yinghai Lu

On Fri, Aug 22, 2014 at 5:24 PM, Harald Hoyer <harald@redhat.com> wrote:
> On 09.08.2014 16:23, Mantas Mikulėnas wrote:
>> As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
>> the kernel freezes at the earliest possible moment when trying to boot
>> via UEFI on my Asus laptop. (It still boots via BIOS.)
>>
>> If I revert that commit on current master (c309bfa9b481), it boots
>> correctly again [although I see "setup_efi_pci() failed" being printed].
>>
>> (Seems like it freezes when handle_cmdline_files() attempts to read
>> the last chunk of the initramfs -- the last call to efi_file_read()
>> never returns. Figuring out why that happens is beyond me, though.)
>>
>
> I fixed my issue with: https://lkml.org/lkml/2014/8/22/232

...Well. If that's the _physical_ address, then I suppose it wouldn't
have worked on my 4 GB laptop either way. (I thought UEFI already used
some sort of virtual memory, so I never even thought to mention
this... Oh well.)

Though if that's the case, then I'm wondering why it would be affected
by the read size? Shouldn't it have crashed either as soon as the high
address was used, or never at all? (I really don't know much about
memory at this level. Sorry.)

> Care to test?

Will try later today.

-- 
Mantas Mikulėnas <grawity@gmail.com>

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-22 14:43     ` Mantas Mikulėnas
  0 siblings, 0 replies; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-22 14:43 UTC (permalink / raw)
  To: Harald Hoyer
  Cc: Linux Kernel Mailing List, linux-efi-u79uwXL29TY76Z2rM5mHXA, Yinghai Lu

On Fri, Aug 22, 2014 at 5:24 PM, Harald Hoyer <harald-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> wrote:
> On 09.08.2014 16:23, Mantas Mikulėnas wrote:
>> As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
>> the kernel freezes at the earliest possible moment when trying to boot
>> via UEFI on my Asus laptop. (It still boots via BIOS.)
>>
>> If I revert that commit on current master (c309bfa9b481), it boots
>> correctly again [although I see "setup_efi_pci() failed" being printed].
>>
>> (Seems like it freezes when handle_cmdline_files() attempts to read
>> the last chunk of the initramfs -- the last call to efi_file_read()
>> never returns. Figuring out why that happens is beyond me, though.)
>>
>
> I fixed my issue with: https://lkml.org/lkml/2014/8/22/232

...Well. If that's the _physical_ address, then I suppose it wouldn't
have worked on my 4 GB laptop either way. (I thought UEFI already used
some sort of virtual memory, so I never even thought to mention
this... Oh well.)

Though if that's the case, then I'm wondering why it would be affected
by the read size? Shouldn't it have crashed either as soon as the high
address was used, or never at all? (I really don't know much about
memory at this level. Sorry.)

> Care to test?

Will try later today.

-- 
Mantas Mikulėnas <grawity-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>

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

* Re: Loading initrd above 4G causes freeze on boot
  2014-08-22 14:43     ` Mantas Mikulėnas
  (?)
@ 2014-08-24 19:19     ` Mantas Mikulėnas
  2014-08-25 10:55         ` Matt Fleming
  -1 siblings, 1 reply; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-24 19:19 UTC (permalink / raw)
  To: Harald Hoyer
  Cc: Linux Kernel Mailing List, linux-efi, Yinghai Lu, Matt Fleming

On Fri, Aug 22, 2014 at 5:43 PM, Mantas Mikulėnas <grawity@gmail.com> wrote:
>
> On Fri, Aug 22, 2014 at 5:24 PM, Harald Hoyer <harald@redhat.com> wrote:
> > On 09.08.2014 16:23, Mantas Mikulėnas wrote:
> >> As of commit 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G"),
> >> the kernel freezes at the earliest possible moment when trying to boot
> >> via UEFI on my Asus laptop. (It still boots via BIOS.)
> >>
> >> If I revert that commit on current master (c309bfa9b481), it boots
> >> correctly again [although I see "setup_efi_pci() failed" being printed].
> >>
> >> (Seems like it freezes when handle_cmdline_files() attempts to read
> >> the last chunk of the initramfs -- the last call to efi_file_read()
> >> never returns. Figuring out why that happens is beyond me, though.)
> >>
> >
> > I fixed my issue with: https://lkml.org/lkml/2014/8/22/232
>
> ...Well. If that's the _physical_ address, then I suppose it wouldn't
> have worked on my 4 GB laptop either way. (I thought UEFI already used
> some sort of virtual memory, so I never even thought to mention
> this... Oh well.)
>
> Though if that's the case, then I'm wondering why it would be affected
> by the read size? Shouldn't it have crashed either as soon as the high
> address was used, or never at all? (I really don't know much about
> memory at this level. Sorry.)
>
> > Care to test?
>
> Will try later today.

Finally got around to testing it, and yes, your patch fixes the initrd
boot for me.

-- 
Mantas Mikulėnas <grawity@gmail.com>

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-25 10:55         ` Matt Fleming
  0 siblings, 0 replies; 36+ messages in thread
From: Matt Fleming @ 2014-08-25 10:55 UTC (permalink / raw)
  To: Mantas Mikulėnas
  Cc: Harald Hoyer, Linux Kernel Mailing List, linux-efi, Yinghai Lu,
	Matt Fleming

On Sun, 24 Aug, at 10:19:04PM, Mantas Mikulėnas wrote:
> 
> Finally got around to testing it, and yes, your patch fixes the initrd
> boot for me.

Could you found out where the initrd gets loaded with this patch? It'll
be in the dmesg.

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-25 10:55         ` Matt Fleming
  0 siblings, 0 replies; 36+ messages in thread
From: Matt Fleming @ 2014-08-25 10:55 UTC (permalink / raw)
  To: Mantas Mikulėnas
  Cc: Harald Hoyer, Linux Kernel Mailing List,
	linux-efi-u79uwXL29TY76Z2rM5mHXA, Yinghai Lu, Matt Fleming

On Sun, 24 Aug, at 10:19:04PM, Mantas Mikulėnas wrote:
> 
> Finally got around to testing it, and yes, your patch fixes the initrd
> boot for me.

Could you found out where the initrd gets loaded with this patch? It'll
be in the dmesg.

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
  2014-08-25 10:55         ` Matt Fleming
  (?)
@ 2014-08-25 11:08         ` Mantas Mikulėnas
  2014-08-25 12:53           ` Matt Fleming
  -1 siblings, 1 reply; 36+ messages in thread
From: Mantas Mikulėnas @ 2014-08-25 11:08 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Harald Hoyer, Linux Kernel Mailing List, linux-efi, Yinghai Lu,
	Matt Fleming

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

On Mon, Aug 25, 2014 at 1:55 PM, Matt Fleming <matt@console-pimps.org> wrote:
> On Sun, 24 Aug, at 10:19:04PM, Mantas Mikulėnas wrote:
>>
>> Finally got around to testing it, and yes, your patch fixes the initrd
>> boot for me.
>
> Could you found out where the initrd gets loaded with this patch? It'll
> be in the dmesg.
>
> --
> Matt Fleming, Intel Open Source Technology Center

Well, all I could find is:

> Freeing initrd memory: 5552K (ffff8800be22e000 - ffff8800be79a000)

Attaching the entire log.

-- 
Mantas Mikulėnas <grawity@gmail.com>

[-- Attachment #2: efi-bug-dmesg-with-haraldh-patch.txt --]
[-- Type: text/plain, Size: 166941 bytes --]

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.0-BISECT-10013-gc309bfa9b481 (grawity@rain) (gcc version 4.9.1 (GCC) ) #222 SMP PREEMPT Sun Aug 24 22:13:16 EEST 2014
[    0.000000] Command line: initrd=\EFI\custom\bisect.rd root=/dev/disk/by-partlabel/Arch rw net.ifnames=0 loglevel=4 -b
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bed05fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bed06000-0x00000000bed4afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed4b000-0x00000000bed5bfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed5c000-0x00000000bed6dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed6e000-0x00000000bed76fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed77000-0x00000000bed7efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed7f000-0x00000000bed82fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed83000-0x00000000bed83fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed84000-0x00000000bed91fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed92000-0x00000000bed94fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bed95000-0x00000000bed98fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed99000-0x00000000bed9bfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bed9c000-0x00000000bed9cfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bed9d000-0x00000000bed9efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bed9f000-0x00000000bed9ffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000beda0000-0x00000000beda3fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000beda4000-0x00000000beda6fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000beda7000-0x00000000bedabfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bedac000-0x00000000bedb9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bedba000-0x00000000bedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bedd0000-0x00000000bedd1fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bedd2000-0x00000000bee02fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bee03000-0x00000000bf7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffbfffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000137ffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x029aa018-0x029b9257] usable ==> usable
[    0.000000] e820: update [mem 0x029ba018-0x029c4057] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000bffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000029aa017] usable
[    0.000000] reserve setup_data: [mem 0x00000000029aa018-0x00000000029b9257] usable
[    0.000000] reserve setup_data: [mem 0x00000000029b9258-0x00000000029ba017] usable
[    0.000000] reserve setup_data: [mem 0x00000000029ba018-0x00000000029c4057] usable
[    0.000000] reserve setup_data: [mem 0x00000000029c4058-0x00000000bed05fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bed06000-0x00000000bed4afff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed4b000-0x00000000bed5bfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed5c000-0x00000000bed6dfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed6e000-0x00000000bed76fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed77000-0x00000000bed7efff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed7f000-0x00000000bed82fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed83000-0x00000000bed83fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed84000-0x00000000bed91fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed92000-0x00000000bed94fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bed95000-0x00000000bed98fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed99000-0x00000000bed9bfff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bed9c000-0x00000000bed9cfff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bed9d000-0x00000000bed9efff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bed9f000-0x00000000bed9ffff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000beda0000-0x00000000beda3fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000beda4000-0x00000000beda6fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000beda7000-0x00000000bedabfff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bedac000-0x00000000bedb9fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bedba000-0x00000000bedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bedd0000-0x00000000bedd1fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000bedd2000-0x00000000bee02fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000bee03000-0x00000000bf7fffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed18000-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 0x00000000ffa00000-0x00000000ffbfffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000137ffffff] usable
[    0.000000] efi: EFI v2.00 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xbeda6f98  SMBIOS=0xbee01018 
[    0.000000] efi: mem00: type=3, attr=0xf, range=[0x0000000000000000-0x0000000000008000) (0MB)
[    0.000000] efi: mem01: type=2, attr=0xf, range=[0x0000000000008000-0x000000000000e000) (0MB)
[    0.000000] efi: mem02: type=7, attr=0xf, range=[0x000000000000e000-0x000000000007f000) (0MB)
[    0.000000] efi: mem03: type=4, attr=0xf, range=[0x000000000007f000-0x0000000000080000) (0MB)
[    0.000000] efi: mem04: type=3, attr=0xf, range=[0x0000000000080000-0x00000000000a0000) (0MB)
[    0.000000] efi: mem05: type=7, attr=0xf, range=[0x0000000000100000-0x0000000001000000) (15MB)
[    0.000000] efi: mem06: type=4, attr=0xf, range=[0x0000000001000000-0x0000000001c95000) (12MB)
[    0.000000] efi: mem07: type=3, attr=0xf, range=[0x0000000001c95000-0x0000000001c96000) (0MB)
[    0.000000] efi: mem08: type=4, attr=0xf, range=[0x0000000001c96000-0x0000000001c97000) (0MB)
[    0.000000] efi: mem09: type=3, attr=0xf, range=[0x0000000001c97000-0x0000000001c98000) (0MB)
[    0.000000] efi: mem10: type=4, attr=0xf, range=[0x0000000001c98000-0x0000000001cff000) (0MB)
[    0.000000] efi: mem11: type=3, attr=0xf, range=[0x0000000001cff000-0x0000000001d01000) (0MB)
[    0.000000] efi: mem12: type=4, attr=0xf, range=[0x0000000001d01000-0x0000000001d04000) (0MB)
[    0.000000] efi: mem13: type=3, attr=0xf, range=[0x0000000001d04000-0x0000000001d06000) (0MB)
[    0.000000] efi: mem14: type=4, attr=0xf, range=[0x0000000001d06000-0x0000000001d0d000) (0MB)
[    0.000000] efi: mem15: type=3, attr=0xf, range=[0x0000000001d0d000-0x0000000001d13000) (0MB)
[    0.000000] efi: mem16: type=4, attr=0xf, range=[0x0000000001d13000-0x0000000001d16000) (0MB)
[    0.000000] efi: mem17: type=3, attr=0xf, range=[0x0000000001d16000-0x0000000001d17000) (0MB)
[    0.000000] efi: mem18: type=4, attr=0xf, range=[0x0000000001d17000-0x0000000001d1b000) (0MB)
[    0.000000] efi: mem19: type=3, attr=0xf, range=[0x0000000001d1b000-0x0000000001d1f000) (0MB)
[    0.000000] efi: mem20: type=4, attr=0xf, range=[0x0000000001d1f000-0x0000000001d24000) (0MB)
[    0.000000] efi: mem21: type=3, attr=0xf, range=[0x0000000001d24000-0x0000000001d2b000) (0MB)
[    0.000000] efi: mem22: type=4, attr=0xf, range=[0x0000000001d2b000-0x0000000001d37000) (0MB)
[    0.000000] efi: mem23: type=3, attr=0xf, range=[0x0000000001d37000-0x0000000001d38000) (0MB)
[    0.000000] efi: mem24: type=4, attr=0xf, range=[0x0000000001d38000-0x0000000001d4e000) (0MB)
[    0.000000] efi: mem25: type=3, attr=0xf, range=[0x0000000001d4e000-0x0000000001d4f000) (0MB)
[    0.000000] efi: mem26: type=4, attr=0xf, range=[0x0000000001d4f000-0x0000000001d55000) (0MB)
[    0.000000] efi: mem27: type=3, attr=0xf, range=[0x0000000001d55000-0x0000000001d56000) (0MB)
[    0.000000] efi: mem28: type=4, attr=0xf, range=[0x0000000001d56000-0x0000000001d58000) (0MB)
[    0.000000] efi: mem29: type=3, attr=0xf, range=[0x0000000001d58000-0x0000000001d5a000) (0MB)
[    0.000000] efi: mem30: type=4, attr=0xf, range=[0x0000000001d5a000-0x0000000001d65000) (0MB)
[    0.000000] efi: mem31: type=3, attr=0xf, range=[0x0000000001d65000-0x0000000001d67000) (0MB)
[    0.000000] efi: mem32: type=4, attr=0xf, range=[0x0000000001d67000-0x0000000001d6a000) (0MB)
[    0.000000] efi: mem33: type=3, attr=0xf, range=[0x0000000001d6a000-0x0000000001d6c000) (0MB)
[    0.000000] efi: mem34: type=4, attr=0xf, range=[0x0000000001d6c000-0x0000000001d70000) (0MB)
[    0.000000] efi: mem35: type=3, attr=0xf, range=[0x0000000001d70000-0x0000000001d71000) (0MB)
[    0.000000] efi: mem36: type=4, attr=0xf, range=[0x0000000001d71000-0x0000000001d76000) (0MB)
[    0.000000] efi: mem37: type=3, attr=0xf, range=[0x0000000001d76000-0x0000000001d79000) (0MB)
[    0.000000] efi: mem38: type=4, attr=0xf, range=[0x0000000001d79000-0x0000000001d7d000) (0MB)
[    0.000000] efi: mem39: type=3, attr=0xf, range=[0x0000000001d7d000-0x0000000001d80000) (0MB)
[    0.000000] efi: mem40: type=4, attr=0xf, range=[0x0000000001d80000-0x0000000001d81000) (0MB)
[    0.000000] efi: mem41: type=3, attr=0xf, range=[0x0000000001d81000-0x0000000001d82000) (0MB)
[    0.000000] efi: mem42: type=4, attr=0xf, range=[0x0000000001d82000-0x0000000001e38000) (0MB)
[    0.000000] efi: mem43: type=3, attr=0xf, range=[0x0000000001e38000-0x0000000001eed000) (0MB)
[    0.000000] efi: mem44: type=4, attr=0xf, range=[0x0000000001eed000-0x0000000001fa5000) (0MB)
[    0.000000] efi: mem45: type=3, attr=0xf, range=[0x0000000001fa5000-0x0000000001fa6000) (0MB)
[    0.000000] efi: mem46: type=4, attr=0xf, range=[0x0000000001fa6000-0x0000000001fa9000) (0MB)
[    0.000000] efi: mem47: type=3, attr=0xf, range=[0x0000000001fa9000-0x0000000001faa000) (0MB)
[    0.000000] efi: mem48: type=4, attr=0xf, range=[0x0000000001faa000-0x0000000001fab000) (0MB)
[    0.000000] efi: mem49: type=3, attr=0xf, range=[0x0000000001fab000-0x0000000001fad000) (0MB)
[    0.000000] efi: mem50: type=4, attr=0xf, range=[0x0000000001fad000-0x0000000001faf000) (0MB)
[    0.000000] efi: mem51: type=3, attr=0xf, range=[0x0000000001faf000-0x0000000001fb2000) (0MB)
[    0.000000] efi: mem52: type=4, attr=0xf, range=[0x0000000001fb2000-0x0000000002008000) (0MB)
[    0.000000] efi: mem53: type=3, attr=0xf, range=[0x0000000002008000-0x0000000002010000) (0MB)
[    0.000000] efi: mem54: type=4, attr=0xf, range=[0x0000000002010000-0x0000000002016000) (0MB)
[    0.000000] efi: mem55: type=3, attr=0xf, range=[0x0000000002016000-0x000000000201b000) (0MB)
[    0.000000] efi: mem56: type=4, attr=0xf, range=[0x000000000201b000-0x0000000002020000) (0MB)
[    0.000000] efi: mem57: type=3, attr=0xf, range=[0x0000000002020000-0x0000000002027000) (0MB)
[    0.000000] efi: mem58: type=4, attr=0xf, range=[0x0000000002027000-0x000000000202e000) (0MB)
[    0.000000] efi: mem59: type=3, attr=0xf, range=[0x000000000202e000-0x000000000202f000) (0MB)
[    0.000000] efi: mem60: type=4, attr=0xf, range=[0x000000000202f000-0x0000000002031000) (0MB)
[    0.000000] efi: mem61: type=3, attr=0xf, range=[0x0000000002031000-0x0000000002034000) (0MB)
[    0.000000] efi: mem62: type=4, attr=0xf, range=[0x0000000002034000-0x0000000002039000) (0MB)
[    0.000000] efi: mem63: type=3, attr=0xf, range=[0x0000000002039000-0x000000000203a000) (0MB)
[    0.000000] efi: mem64: type=4, attr=0xf, range=[0x000000000203a000-0x000000000208b000) (0MB)
[    0.000000] efi: mem65: type=3, attr=0xf, range=[0x000000000208b000-0x000000000208e000) (0MB)
[    0.000000] efi: mem66: type=4, attr=0xf, range=[0x000000000208e000-0x0000000002093000) (0MB)
[    0.000000] efi: mem67: type=3, attr=0xf, range=[0x0000000002093000-0x0000000002095000) (0MB)
[    0.000000] efi: mem68: type=4, attr=0xf, range=[0x0000000002095000-0x000000000209d000) (0MB)
[    0.000000] efi: mem69: type=3, attr=0xf, range=[0x000000000209d000-0x000000000209e000) (0MB)
[    0.000000] efi: mem70: type=4, attr=0xf, range=[0x000000000209e000-0x00000000020a0000) (0MB)
[    0.000000] efi: mem71: type=3, attr=0xf, range=[0x00000000020a0000-0x00000000020a3000) (0MB)
[    0.000000] efi: mem72: type=4, attr=0xf, range=[0x00000000020a3000-0x00000000020b7000) (0MB)
[    0.000000] efi: mem73: type=3, attr=0xf, range=[0x00000000020b7000-0x00000000020b9000) (0MB)
[    0.000000] efi: mem74: type=4, attr=0xf, range=[0x00000000020b9000-0x00000000020dd000) (0MB)
[    0.000000] efi: mem75: type=3, attr=0xf, range=[0x00000000020dd000-0x00000000020e0000) (0MB)
[    0.000000] efi: mem76: type=4, attr=0xf, range=[0x00000000020e0000-0x00000000020e5000) (0MB)
[    0.000000] efi: mem77: type=3, attr=0xf, range=[0x00000000020e5000-0x00000000020e7000) (0MB)
[    0.000000] efi: mem78: type=4, attr=0xf, range=[0x00000000020e7000-0x00000000020e8000) (0MB)
[    0.000000] efi: mem79: type=3, attr=0xf, range=[0x00000000020e8000-0x00000000020fa000) (0MB)
[    0.000000] efi: mem80: type=4, attr=0xf, range=[0x00000000020fa000-0x00000000020fc000) (0MB)
[    0.000000] efi: mem81: type=3, attr=0xf, range=[0x00000000020fc000-0x00000000020ff000) (0MB)
[    0.000000] efi: mem82: type=4, attr=0xf, range=[0x00000000020ff000-0x0000000002107000) (0MB)
[    0.000000] efi: mem83: type=3, attr=0xf, range=[0x0000000002107000-0x0000000002110000) (0MB)
[    0.000000] efi: mem84: type=4, attr=0xf, range=[0x0000000002110000-0x000000000211b000) (0MB)
[    0.000000] efi: mem85: type=3, attr=0xf, range=[0x000000000211b000-0x000000000211c000) (0MB)
[    0.000000] efi: mem86: type=4, attr=0xf, range=[0x000000000211c000-0x0000000002121000) (0MB)
[    0.000000] efi: mem87: type=3, attr=0xf, range=[0x0000000002121000-0x000000000212c000) (0MB)
[    0.000000] efi: mem88: type=4, attr=0xf, range=[0x000000000212c000-0x000000000212d000) (0MB)
[    0.000000] efi: mem89: type=3, attr=0xf, range=[0x000000000212d000-0x000000000214b000) (0MB)
[    0.000000] efi: mem90: type=4, attr=0xf, range=[0x000000000214b000-0x000000000215b000) (0MB)
[    0.000000] efi: mem91: type=3, attr=0xf, range=[0x000000000215b000-0x000000000216b000) (0MB)
[    0.000000] efi: mem92: type=4, attr=0xf, range=[0x000000000216b000-0x000000000216d000) (0MB)
[    0.000000] efi: mem93: type=3, attr=0xf, range=[0x000000000216d000-0x0000000002183000) (0MB)
[    0.000000] efi: mem94: type=4, attr=0xf, range=[0x0000000002183000-0x0000000002188000) (0MB)
[    0.000000] efi: mem95: type=3, attr=0xf, range=[0x0000000002188000-0x0000000002189000) (0MB)
[    0.000000] efi: mem96: type=4, attr=0xf, range=[0x0000000002189000-0x000000000219b000) (0MB)
[    0.000000] efi: mem97: type=3, attr=0xf, range=[0x000000000219b000-0x000000000219d000) (0MB)
[    0.000000] efi: mem98: type=4, attr=0xf, range=[0x000000000219d000-0x000000000219e000) (0MB)
[    0.000000] efi: mem99: type=3, attr=0xf, range=[0x000000000219e000-0x00000000021a1000) (0MB)
[    0.000000] efi: mem100: type=4, attr=0xf, range=[0x00000000021a1000-0x00000000021a5000) (0MB)
[    0.000000] efi: mem101: type=3, attr=0xf, range=[0x00000000021a5000-0x00000000021b0000) (0MB)
[    0.000000] efi: mem102: type=4, attr=0xf, range=[0x00000000021b0000-0x00000000021b6000) (0MB)
[    0.000000] efi: mem103: type=3, attr=0xf, range=[0x00000000021b6000-0x00000000021b8000) (0MB)
[    0.000000] efi: mem104: type=4, attr=0xf, range=[0x00000000021b8000-0x000000000220c000) (0MB)
[    0.000000] efi: mem105: type=3, attr=0xf, range=[0x000000000220c000-0x0000000002211000) (0MB)
[    0.000000] efi: mem106: type=4, attr=0xf, range=[0x0000000002211000-0x0000000002212000) (0MB)
[    0.000000] efi: mem107: type=3, attr=0xf, range=[0x0000000002212000-0x000000000221a000) (0MB)
[    0.000000] efi: mem108: type=4, attr=0xf, range=[0x000000000221a000-0x000000000222d000) (0MB)
[    0.000000] efi: mem109: type=3, attr=0xf, range=[0x000000000222d000-0x0000000002237000) (0MB)
[    0.000000] efi: mem110: type=4, attr=0xf, range=[0x0000000002237000-0x0000000002732000) (4MB)
[    0.000000] efi: mem111: type=3, attr=0xf, range=[0x0000000002732000-0x0000000002733000) (0MB)
[    0.000000] efi: mem112: type=4, attr=0xf, range=[0x0000000002733000-0x0000000002734000) (0MB)
[    0.000000] efi: mem113: type=3, attr=0xf, range=[0x0000000002734000-0x0000000002737000) (0MB)
[    0.000000] efi: mem114: type=4, attr=0xf, range=[0x0000000002737000-0x000000000273e000) (0MB)
[    0.000000] efi: mem115: type=3, attr=0xf, range=[0x000000000273e000-0x0000000002747000) (0MB)
[    0.000000] efi: mem116: type=4, attr=0xf, range=[0x0000000002747000-0x0000000002750000) (0MB)
[    0.000000] efi: mem117: type=3, attr=0xf, range=[0x0000000002750000-0x0000000002752000) (0MB)
[    0.000000] efi: mem118: type=4, attr=0xf, range=[0x0000000002752000-0x0000000002758000) (0MB)
[    0.000000] efi: mem119: type=3, attr=0xf, range=[0x0000000002758000-0x000000000275c000) (0MB)
[    0.000000] efi: mem120: type=4, attr=0xf, range=[0x000000000275c000-0x0000000002760000) (0MB)
[    0.000000] efi: mem121: type=3, attr=0xf, range=[0x0000000002760000-0x0000000002761000) (0MB)
[    0.000000] efi: mem122: type=4, attr=0xf, range=[0x0000000002761000-0x0000000002766000) (0MB)
[    0.000000] efi: mem123: type=3, attr=0xf, range=[0x0000000002766000-0x0000000002767000) (0MB)
[    0.000000] efi: mem124: type=4, attr=0xf, range=[0x0000000002767000-0x0000000002769000) (0MB)
[    0.000000] efi: mem125: type=3, attr=0xf, range=[0x0000000002769000-0x000000000276a000) (0MB)
[    0.000000] efi: mem126: type=4, attr=0xf, range=[0x000000000276a000-0x0000000002770000) (0MB)
[    0.000000] efi: mem127: type=3, attr=0xf, range=[0x0000000002770000-0x0000000002774000) (0MB)
[    0.000000] efi: mem128: type=4, attr=0xf, range=[0x0000000002774000-0x000000000277a000) (0MB)
[    0.000000] efi: mem129: type=3, attr=0xf, range=[0x000000000277a000-0x000000000277c000) (0MB)
[    0.000000] efi: mem130: type=4, attr=0xf, range=[0x000000000277c000-0x00000000027a6000) (0MB)
[    0.000000] efi: mem131: type=2, attr=0xf, range=[0x00000000027a6000-0x00000000027a7000) (0MB)
[    0.000000] efi: mem132: type=4, attr=0xf, range=[0x00000000027a7000-0x000000000299f000) (1MB)
[    0.000000] efi: mem133: type=2, attr=0xf, range=[0x000000000299f000-0x00000000029a1000) (0MB)
[    0.000000] efi: mem134: type=4, attr=0xf, range=[0x00000000029a1000-0x00000000029a2000) (0MB)
[    0.000000] efi: mem135: type=2, attr=0xf, range=[0x00000000029a2000-0x00000000029a9000) (0MB)
[    0.000000] efi: mem136: type=4, attr=0xf, range=[0x00000000029a9000-0x00000000029aa000) (0MB)
[    0.000000] efi: mem137: type=2, attr=0xf, range=[0x00000000029aa000-0x00000000029c9000) (0MB)
[    0.000000] efi: mem138: type=7, attr=0xf, range=[0x00000000029c9000-0x0000000002ab9000) (0MB)
[    0.000000] efi: mem139: type=4, attr=0xf, range=[0x0000000002ab9000-0x0000000002ac5000) (0MB)
[    0.000000] efi: mem140: type=7, attr=0xf, range=[0x0000000002ac5000-0x0000000002ad7000) (0MB)
[    0.000000] efi: mem141: type=4, attr=0xf, range=[0x0000000002ad7000-0x0000000002b47000) (0MB)
[    0.000000] efi: mem142: type=3, attr=0xf, range=[0x0000000002b47000-0x0000000002b4c000) (0MB)
[    0.000000] efi: mem143: type=4, attr=0xf, range=[0x0000000002b4c000-0x0000000002b53000) (0MB)
[    0.000000] efi: mem144: type=3, attr=0xf, range=[0x0000000002b53000-0x0000000002b5b000) (0MB)
[    0.000000] efi: mem145: type=4, attr=0xf, range=[0x0000000002b5b000-0x0000000002b5e000) (0MB)
[    0.000000] efi: mem146: type=7, attr=0xf, range=[0x0000000002b5e000-0x0000000002b90000) (0MB)
[    0.000000] efi: mem147: type=4, attr=0xf, range=[0x0000000002b90000-0x0000000002d27000) (1MB)
[    0.000000] efi: mem148: type=1, attr=0xf, range=[0x0000000002d27000-0x0000000002d3e000) (0MB)
[    0.000000] efi: mem149: type=7, attr=0xf, range=[0x0000000002d3e000-0x00000000030df000) (3MB)
[    0.000000] efi: mem150: type=1, attr=0xf, range=[0x00000000030df000-0x0000000004f03000) (30MB)
[    0.000000] efi: mem151: type=7, attr=0xf, range=[0x0000000004f03000-0x0000000005000000) (0MB)
[    0.000000] efi: mem152: type=2, attr=0xf, range=[0x0000000005000000-0x0000000005e24000) (14MB)
[    0.000000] efi: mem153: type=7, attr=0xf, range=[0x0000000005e24000-0x00000000bc800000) (2921MB)
[    0.000000] efi: mem154: type=2, attr=0xf, range=[0x00000000bc800000-0x00000000bc900000) (1MB)
[    0.000000] efi: mem155: type=7, attr=0xf, range=[0x00000000bc900000-0x00000000bc903000) (0MB)
[    0.000000] efi: mem156: type=4, attr=0xf, range=[0x00000000bc903000-0x00000000bc906000) (0MB)
[    0.000000] efi: mem157: type=7, attr=0xf, range=[0x00000000bc906000-0x00000000bc907000) (0MB)
[    0.000000] efi: mem158: type=4, attr=0xf, range=[0x00000000bc907000-0x00000000bc90a000) (0MB)
[    0.000000] efi: mem159: type=7, attr=0xf, range=[0x00000000bc90a000-0x00000000be79a000) (30MB)
[    0.000000] efi: mem160: type=2, attr=0xf, range=[0x00000000be79a000-0x00000000bed06000) (5MB)
[    0.000000] efi: mem161: type=10, attr=0xf, range=[0x00000000bed06000-0x00000000bed4b000) (0MB)
[    0.000000] efi: mem162: type=0, attr=0xf, range=[0x00000000bed4b000-0x00000000bed5c000) (0MB)
[    0.000000] efi: mem163: type=10, attr=0xf, range=[0x00000000bed5c000-0x00000000bed6e000) (0MB)
[    0.000000] efi: mem164: type=5, attr=0x800000000000000f, range=[0x00000000bed6e000-0x00000000bed72000) (0MB)
[    0.000000] efi: mem165: type=6, attr=0x800000000000000f, range=[0x00000000bed72000-0x00000000bed75000) (0MB)
[    0.000000] efi: mem166: type=0, attr=0xf, range=[0x00000000bed75000-0x00000000bed77000) (0MB)
[    0.000000] efi: mem167: type=10, attr=0xf, range=[0x00000000bed77000-0x00000000bed7f000) (0MB)
[    0.000000] efi: mem168: type=5, attr=0x800000000000000f, range=[0x00000000bed7f000-0x00000000bed83000) (0MB)
[    0.000000] efi: mem169: type=10, attr=0xf, range=[0x00000000bed83000-0x00000000bed84000) (0MB)
[    0.000000] efi: mem170: type=5, attr=0x800000000000000f, range=[0x00000000bed84000-0x00000000bed92000) (0MB)
[    0.000000] efi: mem171: type=7, attr=0xf, range=[0x00000000bed92000-0x00000000bed95000) (0MB)
[    0.000000] efi: mem172: type=6, attr=0x800000000000000f, range=[0x00000000bed95000-0x00000000bed96000) (0MB)
[    0.000000] efi: mem173: type=5, attr=0x800000000000000f, range=[0x00000000bed96000-0x00000000bed97000) (0MB)
[    0.000000] efi: mem174: type=0, attr=0xf, range=[0x00000000bed97000-0x00000000bed99000) (0MB)
[    0.000000] efi: mem175: type=10, attr=0xf, range=[0x00000000bed99000-0x00000000bed9c000) (0MB)
[    0.000000] efi: mem176: type=7, attr=0xf, range=[0x00000000bed9c000-0x00000000bed9d000) (0MB)
[    0.000000] efi: mem177: type=6, attr=0x800000000000000f, range=[0x00000000bed9d000-0x00000000bed9e000) (0MB)
[    0.000000] efi: mem178: type=0, attr=0xf, range=[0x00000000bed9e000-0x00000000bed9f000) (0MB)
[    0.000000] efi: mem179: type=10, attr=0xf, range=[0x00000000bed9f000-0x00000000beda0000) (0MB)
[    0.000000] efi: mem180: type=0, attr=0xf, range=[0x00000000beda0000-0x00000000beda4000) (0MB)
[    0.000000] efi: mem181: type=9, attr=0xf, range=[0x00000000beda4000-0x00000000beda7000) (0MB)
[    0.000000] efi: mem182: type=6, attr=0x800000000000000f, range=[0x00000000beda7000-0x00000000beda8000) (0MB)
[    0.000000] efi: mem183: type=0, attr=0xf, range=[0x00000000beda8000-0x00000000bedac000) (0MB)
[    0.000000] efi: mem184: type=10, attr=0xf, range=[0x00000000bedac000-0x00000000bedba000) (0MB)
[    0.000000] efi: mem185: type=6, attr=0x800000000000000f, range=[0x00000000bedba000-0x00000000bedbb000) (0MB)
[    0.000000] efi: mem186: type=5, attr=0x800000000000000f, range=[0x00000000bedbb000-0x00000000bedd0000) (0MB)
[    0.000000] efi: mem187: type=10, attr=0xf, range=[0x00000000bedd0000-0x00000000bedd2000) (0MB)
[    0.000000] efi: mem188: type=5, attr=0x800000000000000f, range=[0x00000000bedd2000-0x00000000bedd7000) (0MB)
[    0.000000] efi: mem189: type=6, attr=0x800000000000000f, range=[0x00000000bedd7000-0x00000000bede8000) (0MB)
[    0.000000] efi: mem190: type=5, attr=0x800000000000000f, range=[0x00000000bede8000-0x00000000beded000) (0MB)
[    0.000000] efi: mem191: type=6, attr=0x800000000000000f, range=[0x00000000beded000-0x00000000bedee000) (0MB)
[    0.000000] efi: mem192: type=5, attr=0x800000000000000f, range=[0x00000000bedee000-0x00000000bedf9000) (0MB)
[    0.000000] efi: mem193: type=6, attr=0x800000000000000f, range=[0x00000000bedf9000-0x00000000bedfd000) (0MB)
[    0.000000] efi: mem194: type=5, attr=0x800000000000000f, range=[0x00000000bedfd000-0x00000000bee00000) (0MB)
[    0.000000] efi: mem195: type=6, attr=0x800000000000000f, range=[0x00000000bee00000-0x00000000bee03000) (0MB)
[    0.000000] efi: mem196: type=4, attr=0xf, range=[0x00000000bee03000-0x00000000bee09000) (0MB)
[    0.000000] efi: mem197: type=3, attr=0xf, range=[0x00000000bee09000-0x00000000bf7f3000) (9MB)
[    0.000000] efi: mem198: type=4, attr=0xf, range=[0x00000000bf7f3000-0x00000000bf7f6000) (0MB)
[    0.000000] efi: mem199: type=3, attr=0xf, range=[0x00000000bf7f6000-0x00000000bf800000) (0MB)
[    0.000000] efi: mem200: type=7, attr=0xf, range=[0x0000000100000000-0x0000000138000000) (896MB)
[    0.000000] efi: mem201: type=0, attr=0x8000000000000000, range=[0x00000000000a0000-0x00000000000c0000) (0MB)
[    0.000000] efi: mem202: type=0, attr=0x8000000000000000, range=[0x00000000bf800000-0x00000000c0000000) (8MB)
[    0.000000] efi: mem203: type=11, attr=0x8000000000000000, range=[0x00000000e0000000-0x00000000f0000000) (256MB)
[    0.000000] efi: mem204: type=11, attr=0x8000000000000000, range=[0x00000000fec00000-0x00000000fec01000) (0MB)
[    0.000000] efi: mem205: type=11, attr=0x8000000000000000, range=[0x00000000fed10000-0x00000000fed14000) (0MB)
[    0.000000] efi: mem206: type=11, attr=0x8000000000000000, range=[0x00000000fed18000-0x00000000fed1a000) (0MB)
[    0.000000] efi: mem207: type=11, attr=0x8000000000000000, range=[0x00000000fed1c000-0x00000000fed20000) (0MB)
[    0.000000] efi: mem208: type=11, attr=0x8000000000000000, range=[0x00000000fee00000-0x00000000fee01000) (0MB)
[    0.000000] efi: mem209: type=11, attr=0x8000000000000000, range=[0x00000000ffa00000-0x00000000ffc00000) (2MB)
[    0.000000] efi: mem210: type=11, attr=0x8000000000000000, range=[0x00000000ffe00000-0x00000000fff70000) (1MB)
[    0.000000] efi: mem211: type=11, attr=0x8000000000000000, range=[0x00000000fff70000-0x0000000100000000) (0MB)
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: ASUSTeK Computer Inc. K52JT/K52JT, BIOS K52JT.206 01/25/2011
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] AGP: No AGP bridge found
[    0.000000] e820: last_pfn = 0x138000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-DFFFF write-protect
[    0.000000]   E0000-FFFFF write-through
[    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 100000000 mask FC0000000 write-back
[    0.000000]   3 base 138000000 mask FF8000000 uncachable
[    0.000000]   4 base 0FFE00000 mask FFFE00000 write-protect
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] e820: last_pfn = 0xbf800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fcad0-0x000fcadf] mapped at [ffff8800000fcad0]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000095000] 95000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x05b13000, 0x05b13fff] PGTABLE
[    0.000000] BRK [0x05b14000, 0x05b14fff] PGTABLE
[    0.000000] BRK [0x05b15000, 0x05b15fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x137e00000-0x137ffffff]
[    0.000000]  [mem 0x137e00000-0x137ffffff] page 2M
[    0.000000] BRK [0x05b16000, 0x05b16fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x134000000-0x137dfffff]
[    0.000000]  [mem 0x134000000-0x137dfffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x100000000-0x133ffffff]
[    0.000000]  [mem 0x100000000-0x133ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0xbed05fff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0xbebfffff] page 2M
[    0.000000]  [mem 0xbec00000-0xbed05fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbed92000-0xbed94fff]
[    0.000000]  [mem 0xbed92000-0xbed94fff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbed9c000-0xbed9cfff]
[    0.000000]  [mem 0xbed9c000-0xbed9cfff] page 4k
[    0.000000] init_memory_mapping: [mem 0xbee03000-0xbf7fffff]
[    0.000000]  [mem 0xbee03000-0xbeffffff] page 4k
[    0.000000]  [mem 0xbf000000-0xbf7fffff] page 2M
[    0.000000] BRK [0x05b17000, 0x05b17fff] PGTABLE
[    0.000000] RAMDISK: [mem 0xbe22e000-0xbe799fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000BEDA6F98 000024 (v02 _ASUS_)
[    0.000000] ACPI: XSDT 0x00000000BEDA5E18 00005C (v01 _ASUS_ Notebook 06222004 MSFT 00010013)
[    0.000000] ACPI: FACP 0x00000000BED83C18 0000F4 (v04 _ASUS_ Notebook 06222004 MSFT 00010013)
[    0.000000] ACPI BIOS Warning (bug): 32/64X FACS address mismatch in FADT: 0xBEDB7F40/0x00000000BEDD1D40, using 32-bit address (20140724/tbfadt-283)
[    0.000000] ACPI: DSDT 0x00000000BED5C018 0117B9 (v01 _ASUS_ Notebook 00000000 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000BEDB7F40 000040
[    0.000000] ACPI: APIC 0x00000000BEDA4F18 00008C (v02 _ASUS_ Notebook 06222004 MSFT 00010013)
[    0.000000] ACPI: DBGP 0x00000000BEDA6F18 000034 (v01 _ASUS_ Notebook 06222004 MSFT 00010013)
[    0.000000] ACPI: ECDT 0x00000000BEDD1A18 0000C1 (v01 _ASUS_ Notebook 06222004 AMI. 00000003)
[    0.000000] ACPI: MCFG 0x00000000BEDD0D18 00003C (v01 _ASUS_ Notebook 06222004 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000BEDD0C98 000038 (v01 _ASUS_ Notebook 06222004 AMI. 00000003)
[    0.000000] ACPI: SSDT 0x00000000BED9F018 0009F1 (v01 PmRef  CpuPm    00003000 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000137ffffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x137ffffff]
[    0.000000]   NODE_DATA [mem 0x137ff9000-0x137ffcfff]
[    0.000000]  [ffffea0000000000-ffffea0004dfffff] PMD -> [ffff880133800000-ffff8801375fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   [mem 0x100000000-0x137ffffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009ffff]
[    0.000000]   node   0: [mem 0x00100000-0xbed05fff]
[    0.000000]   node   0: [mem 0xbed92000-0xbed94fff]
[    0.000000]   node   0: [mem 0xbed9c000-0xbed9cfff]
[    0.000000]   node   0: [mem 0xbee03000-0xbf7fffff]
[    0.000000]   node   0: [mem 0x100000000-0x137ffffff]
[    0.000000] On node 0 totalpages: 1013414
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 27 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12189 pages used for memmap
[    0.000000]   DMA32 zone: 780039 pages, LIFO batch:31
[    0.000000]   Normal zone: 3584 pages used for memmap
[    0.000000]   Normal zone: 229376 pages, LIFO batch:31
[    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[0x04] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x05] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] disabled)
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000bffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000c0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x029aa000-0x029aafff]
[    0.000000] PM: Registered nosave memory: [mem 0x029b9000-0x029b9fff]
[    0.000000] PM: Registered nosave memory: [mem 0x029ba000-0x029bafff]
[    0.000000] PM: Registered nosave memory: [mem 0x029c4000-0x029c4fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed06000-0xbed4afff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed4b000-0xbed5bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed5c000-0xbed6dfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed6e000-0xbed76fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed77000-0xbed7efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed7f000-0xbed82fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed83000-0xbed83fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed84000-0xbed91fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed95000-0xbed98fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed99000-0xbed9bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed9d000-0xbed9efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbed9f000-0xbed9ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbeda0000-0xbeda3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbeda4000-0xbeda6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbeda7000-0xbedabfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbedac000-0xbedb9fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbedba000-0xbedcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbedd0000-0xbedd1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbedd2000-0xbee02fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xbfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xff9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffa00000-0xffbfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffdfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xffe00000-0xffffffff]
[    0.000000] e820: [mem 0xc0000000-0xdfffffff] 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 27 pages/cpu @ffff880137c00000 s81792 r8192 d20608 u262144
[    0.000000] pcpu-alloc: s81792 r8192 d20608 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 997550
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: initrd=\EFI\custom\bisect.rd root=/dev/disk/by-partlabel/Arch rw net.ifnames=0 loglevel=4 -b
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] AGP: Checking aperture...
[    0.000000] AGP: No AGP bridge found
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3867116K/4053656K available (5008K kernel code, 864K rwdata, 1636K rodata, 1112K init, 1136K bss, 186540K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	Dump stacks of tasks blocking RCU-preempt GP.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, 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 16252928 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.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] tsc: Detected 2659.963 MHz processor
[    0.000032] Calibrating delay loop (skipped), value calculated using timer frequency.. 5322.58 BogoMIPS (lpj=8866543)
[    0.000034] pid_max: default: 32768 minimum: 301
[    0.000041] ACPI: Core revision 20140724
[    0.011922] ACPI: All ACPI Tables successfully acquired
[    0.087251] Security Framework initialized
[    0.087260] Yama: becoming mindful.
[    0.087565] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.088797] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.089364] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.089370] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.089600] Initializing cgroup subsys memory
[    0.089606] Initializing cgroup subsys devices
[    0.089609] Initializing cgroup subsys freezer
[    0.089611] Initializing cgroup subsys net_cls
[    0.089613] Initializing cgroup subsys blkio
[    0.089616] Initializing cgroup subsys net_prio
[    0.089635] CPU: Physical Processor ID: 0
[    0.089636] CPU: Processor Core ID: 0
[    0.089641] mce: CPU supports 9 MCE banks
[    0.089651] CPU0: Thermal monitoring enabled (TM1)
[    0.089661] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.089752] Freeing SMP alternatives memory: 20K (ffffffff819f0000 - ffffffff819f5000)
[    0.091469] ftrace: allocating 19692 entries in 77 pages
[    0.100835] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[    0.133843] smpboot: CPU0: Intel(R) Core(TM) i5 CPU       M 480  @ 2.67GHz (fam: 06, model: 25, stepping: 05)
[    0.237375] Performance Events: PEBS fmt1+, 16-deep LBR, Westmere events, Intel PMU driver.
[    0.237391] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
[    0.237394] ... version:                3
[    0.237394] ... bit width:              48
[    0.237395] ... generic registers:      4
[    0.237396] ... value mask:             0000ffffffffffff
[    0.237397] ... max period:             000000007fffffff
[    0.237398] ... fixed-purpose events:   3
[    0.237398] ... event mask:             000000070000000f
[    0.257440] x86: Booting SMP configuration:
[    0.257444] .... node  #0, CPUs:      #1
[    0.270812] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.277447]  #2 #3
[    0.303916] x86: Booted up 1 node, 4 CPUs
[    0.303920] smpboot: Total of 4 processors activated (21288.35 BogoMIPS)
[    0.306414] devtmpfs: initialized
[    0.309614] PM: Registering ACPI NVS region [mem 0xbed06000-0xbed4afff] (282624 bytes)
[    0.309619] PM: Registering ACPI NVS region [mem 0xbed5c000-0xbed6dfff] (73728 bytes)
[    0.309620] PM: Registering ACPI NVS region [mem 0xbed77000-0xbed7efff] (32768 bytes)
[    0.309622] PM: Registering ACPI NVS region [mem 0xbed83000-0xbed83fff] (4096 bytes)
[    0.309623] PM: Registering ACPI NVS region [mem 0xbed99000-0xbed9bfff] (12288 bytes)
[    0.309624] PM: Registering ACPI NVS region [mem 0xbed9f000-0xbed9ffff] (4096 bytes)
[    0.309625] PM: Registering ACPI NVS region [mem 0xbedac000-0xbedb9fff] (57344 bytes)
[    0.309626] PM: Registering ACPI NVS region [mem 0xbedd0000-0xbedd1fff] (8192 bytes)
[    0.310524] RTC time: 19:13:40, date: 08/24/14
[    0.310604] NET: Registered protocol family 16
[    0.310715] cpuidle: using governor ladder
[    0.310717] cpuidle: using governor menu
[    0.310766] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.310768] ACPI: bus type PCI registered
[    0.310770] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.310816] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.310819] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.311269] PCI: Using configuration type 1 for base access
[    0.324413] ACPI: Added _OSI(Module Device)
[    0.324415] ACPI: Added _OSI(Processor Device)
[    0.324416] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.324417] ACPI: Added _OSI(Processor Aggregator Device)
[    0.326142] ACPI : EC: EC description table is found, configuring boot EC
[    0.328045] ACPI: Executed 2 blocks of module-level executable AML code
[    0.354066] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.397341] ACPI: Dynamic OEM Table Load:
[    0.397347] ACPI: SSDT 0xFFFF880131B39000 00047B (v01 PmRef  Cpu0Ist  00003000 INTL 20051117)
[    0.397865] ACPI: Dynamic OEM Table Load:
[    0.397871] ACPI: SSDT 0xFFFF880131B32000 0008A9 (v01 PmRef  Cpu0Cst  00003001 INTL 20051117)
[    0.420934] ACPI: Dynamic OEM Table Load:
[    0.420939] ACPI: SSDT 0xFFFF880131851000 000303 (v01 PmRef  ApIst    00003000 INTL 20051117)
[    0.434140] ACPI: Dynamic OEM Table Load:
[    0.434144] ACPI: SSDT 0xFFFF880131B0E600 000119 (v01 PmRef  ApCst    00003000 INTL 20051117)
[    0.447852] ACPI: Interpreter enabled
[    0.447859] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140724/hwxface-580)
[    0.447863] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140724/hwxface-580)
[    0.447875] ACPI: (supports S0 S3 S4 S5)
[    0.447877] ACPI: Using IOAPIC for interrupt routing
[    0.447901] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.478903] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.478909] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.479168] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.479797] PCI host bridge to bus 0000:00
[    0.479800] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.479802] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.479803] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.479805] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.479806] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
[    0.479813] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
[    0.479831] DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
[    0.479907] pci 0000:00:01.0: [8086:0045] type 01 class 0x060400
[    0.479938] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.480044] pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
[    0.480072] pci 0000:00:16.0: reg 0x10: [mem 0xd520a000-0xd520a00f 64bit]
[    0.480163] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.480258] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
[    0.480281] pci 0000:00:1a.0: reg 0x10: [mem 0xd5208000-0xd52083ff]
[    0.480373] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.480452] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.480498] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
[    0.480519] pci 0000:00:1b.0: reg 0x10: [mem 0xd5200000-0xd5203fff 64bit]
[    0.480614] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.480668] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.480711] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
[    0.480815] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.480868] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.480906] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
[    0.481009] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.481060] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.481099] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
[    0.481203] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.481255] pci 0000:00:1c.2: System wakeup disabled by ACPI
[    0.481295] pci 0000:00:1c.5: [8086:3b4c] type 01 class 0x060400
[    0.481399] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.481451] pci 0000:00:1c.5: System wakeup disabled by ACPI
[    0.481495] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
[    0.481517] pci 0000:00:1d.0: reg 0x10: [mem 0xd5207000-0xd52073ff]
[    0.481609] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.481686] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.481726] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.481835] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.481871] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
[    0.482049] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
[    0.482075] pci 0000:00:1f.2: reg 0x10: [io  0xe070-0xe077]
[    0.482086] pci 0000:00:1f.2: reg 0x14: [io  0xe060-0xe063]
[    0.482096] pci 0000:00:1f.2: reg 0x18: [io  0xe050-0xe057]
[    0.482107] pci 0000:00:1f.2: reg 0x1c: [io  0xe040-0xe043]
[    0.482117] pci 0000:00:1f.2: reg 0x20: [io  0xe020-0xe03f]
[    0.482128] pci 0000:00:1f.2: reg 0x24: [mem 0xd5206000-0xd52067ff]
[    0.482193] pci 0000:00:1f.2: PME# supported from D3hot
[    0.482274] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
[    0.482294] pci 0000:00:1f.3: reg 0x10: [mem 0xd5205000-0xd52050ff 64bit]
[    0.482323] pci 0000:00:1f.3: reg 0x20: [io  0xe000-0xe01f]
[    0.482420] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
[    0.482445] pci 0000:00:1f.6: reg 0x10: [mem 0xd5204000-0xd5204fff 64bit]
[    0.482625] pci 0000:01:00.0: [1002:68e4] type 00 class 0x030000
[    0.482639] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.482648] pci 0000:01:00.0: reg 0x18: [mem 0xd0020000-0xd003ffff 64bit]
[    0.482655] pci 0000:01:00.0: reg 0x20: [io  0xd000-0xd0ff]
[    0.482667] pci 0000:01:00.0: reg 0x30: [mem 0xd0000000-0xd001ffff pref]
[    0.482697] pci 0000:01:00.0: supports D1 D2
[    0.482745] pci 0000:01:00.1: [1002:aa68] type 00 class 0x040300
[    0.482757] pci 0000:01:00.1: reg 0x10: [mem 0xd0040000-0xd0043fff 64bit]
[    0.482802] pci 0000:01:00.1: supports D1 D2
[    0.482856] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.482859] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.482861] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd00fffff]
[    0.482926] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.482931] pci 0000:00:1c.0:   bridge window [io  0xc000-0xcfff]
[    0.482935] pci 0000:00:1c.0:   bridge window [mem 0xd3e00000-0xd51fffff]
[    0.483032] pci 0000:03:00.0: [168c:002b] type 00 class 0x028000
[    0.483059] pci 0000:03:00.0: reg 0x10: [mem 0xd2a00000-0xd2a0ffff 64bit]
[    0.483179] pci 0000:03:00.0: supports D1
[    0.483180] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
[    0.483215] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.490728] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.490737] pci 0000:00:1c.1:   bridge window [io  0xb000-0xbfff]
[    0.490743] pci 0000:00:1c.1:   bridge window [mem 0xd2a00000-0xd3dfffff]
[    0.490873] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.490877] pci 0000:00:1c.2:   bridge window [io  0xa000-0xafff]
[    0.490881] pci 0000:00:1c.2:   bridge window [mem 0xd1600000-0xd29fffff]
[    0.491005] pci 0000:05:00.0: [197b:2382] type 00 class 0x088000
[    0.491029] pci 0000:05:00.0: reg 0x10: [mem 0xd0207000-0xd02070ff]
[    0.491253] pci 0000:05:00.2: [197b:2381] type 00 class 0x080501
[    0.491280] pci 0000:05:00.2: reg 0x10: [mem 0xd0206000-0xd02060ff]
[    0.491523] pci 0000:05:00.3: [197b:2383] type 00 class 0x088000
[    0.491546] pci 0000:05:00.3: reg 0x10: [mem 0xd0205000-0xd02050ff]
[    0.491764] pci 0000:05:00.4: [197b:2384] type 00 class 0x088000
[    0.491787] pci 0000:05:00.4: reg 0x10: [mem 0xd0204000-0xd02040ff]
[    0.492007] pci 0000:05:00.5: [197b:0250] type 00 class 0x020000
[    0.492034] pci 0000:05:00.5: reg 0x10: [mem 0xd0200000-0xd0203fff]
[    0.492065] pci 0000:05:00.5: reg 0x18: [io  0x9100-0x917f]
[    0.492082] pci 0000:05:00.5: reg 0x1c: [io  0x9000-0x90ff]
[    0.492220] pci 0000:05:00.5: PME# supported from D0 D3hot D3cold
[    0.492262] pci 0000:05:00.5: System wakeup disabled by ACPI
[    0.500742] pci 0000:00:1c.5: PCI bridge to [bus 05]
[    0.500746] pci 0000:00:1c.5:   bridge window [io  0x9000-0x9fff]
[    0.500751] pci 0000:00:1c.5:   bridge window [mem 0xd0200000-0xd15fffff]
[    0.500839] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
[    0.500852] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.500853] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.500854] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.500856] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
[    0.500909] acpi PNP0A08:00: Disabling ASPM (FADT indicates it is unsupported)
[    0.514197] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[    0.514240] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[    0.514282] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 *4 5 6 7 10 12 14 15)
[    0.514323] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 *5 6 7 11 12 14 15)
[    0.514364] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    0.514406] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    0.514447] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 *3 4 5 6 7 10 12 14 15)
[    0.514489] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[    0.514524] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
[    0.514527] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.514531] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.514590] PCI host bridge to bus 0000:ff
[    0.514592] pci_bus 0000:ff: root bus resource [bus ff]
[    0.514597] pci 0000:ff:00.0: [8086:2c62] type 00 class 0x060000
[    0.514642] pci 0000:ff:00.1: [8086:2d01] type 00 class 0x060000
[    0.514687] pci 0000:ff:02.0: [8086:2d10] type 00 class 0x060000
[    0.514727] pci 0000:ff:02.1: [8086:2d11] type 00 class 0x060000
[    0.514767] pci 0000:ff:02.2: [8086:2d12] type 00 class 0x060000
[    0.514807] pci 0000:ff:02.3: [8086:2d13] type 00 class 0x060000
[    0.514945] ACPI: Enabled 3 GPEs in block 00 to 3F
[    0.514998] ACPI : EC: GPE = 0x1b, I/O: command/status = 0x66, data = 0x62
[    0.515090] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.515092] vgaarb: loaded
[    0.515093] vgaarb: bridge control possible 0000:01:00.0
[    0.515209] PCI: Using ACPI for IRQ routing
[    0.524933] PCI: pci_cache_line_size set to 64 bytes
[    0.525012] e820: reserve RAM buffer [mem 0x029aa018-0x03ffffff]
[    0.525015] e820: reserve RAM buffer [mem 0x029ba018-0x03ffffff]
[    0.525016] e820: reserve RAM buffer [mem 0xbed06000-0xbfffffff]
[    0.525019] e820: reserve RAM buffer [mem 0xbed95000-0xbfffffff]
[    0.525021] e820: reserve RAM buffer [mem 0xbed9d000-0xbfffffff]
[    0.525023] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
[    0.525138] NetLabel: Initializing
[    0.525140] NetLabel:  domain hash size = 128
[    0.525140] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.525153] NetLabel:  unlabeled traffic allowed by default
[    0.525186] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.525190] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.527220] Switched to clocksource hpet
[    0.531609] pnp: PnP ACPI init
[    0.531799] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.531802] system 00:00: [io  0xff00-0xff0f] has been reserved
[    0.531803] system 00:00: [io  0xffff] has been reserved
[    0.531805] system 00:00: [io  0xffff] has been reserved
[    0.531807] system 00:00: [io  0x0400-0x047f] could not be reserved
[    0.531809] system 00:00: [io  0x0500-0x057f] has been reserved
[    0.531810] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.531813] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.531846] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.531882] system 00:02: [io  0x0240-0x0259] has been reserved
[    0.531884] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.531938] pnp 00:03: Plug and Play ACPI device, IDs ETD0001 SYN0a00 SYN0002 PNP0f03 PNP0f13 PNP0f12 (active)
[    0.531976] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.544189] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.544192] system 00:05: [mem 0xfed10000-0xfed13fff] has been reserved
[    0.544194] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.544196] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.544197] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[    0.544199] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.544201] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.544203] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[    0.544204] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.544206] system 00:05: [mem 0xdffff000-0xdfffffff] has been reserved
[    0.544209] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.544323] pnp: PnP ACPI: found 6 devices
[    0.551340] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
[    0.551351] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
[    0.551362] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000
[    0.551372] pci 0000:00:1c.5: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 05] add_size 200000
[    0.551384] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.551386] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.551388] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.551389] pci 0000:00:1c.5: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
[    0.551397] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd5300000-0xd54fffff 64bit pref]
[    0.551401] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd5500000-0xd56fffff 64bit pref]
[    0.551405] pci 0000:00:1c.2: BAR 15: assigned [mem 0xd5700000-0xd58fffff 64bit pref]
[    0.551408] pci 0000:00:1c.5: BAR 15: assigned [mem 0xd5900000-0xd5afffff 64bit pref]
[    0.551411] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.551413] pci 0000:00:01.0:   bridge window [io  0xd000-0xdfff]
[    0.551416] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd00fffff]
[    0.551419] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.551422] pci 0000:00:1c.0:   bridge window [io  0xc000-0xcfff]
[    0.551428] pci 0000:00:1c.0:   bridge window [mem 0xd3e00000-0xd51fffff]
[    0.551433] pci 0000:00:1c.0:   bridge window [mem 0xd5300000-0xd54fffff 64bit pref]
[    0.551440] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.551442] pci 0000:00:1c.1:   bridge window [io  0xb000-0xbfff]
[    0.551448] pci 0000:00:1c.1:   bridge window [mem 0xd2a00000-0xd3dfffff]
[    0.551452] pci 0000:00:1c.1:   bridge window [mem 0xd5500000-0xd56fffff 64bit pref]
[    0.551459] pci 0000:00:1c.2: PCI bridge to [bus 04]
[    0.551462] pci 0000:00:1c.2:   bridge window [io  0xa000-0xafff]
[    0.551467] pci 0000:00:1c.2:   bridge window [mem 0xd1600000-0xd29fffff]
[    0.551472] pci 0000:00:1c.2:   bridge window [mem 0xd5700000-0xd58fffff 64bit pref]
[    0.551479] pci 0000:00:1c.5: PCI bridge to [bus 05]
[    0.551482] pci 0000:00:1c.5:   bridge window [io  0x9000-0x9fff]
[    0.551487] pci 0000:00:1c.5:   bridge window [mem 0xd0200000-0xd15fffff]
[    0.551492] pci 0000:00:1c.5:   bridge window [mem 0xd5900000-0xd5afffff 64bit pref]
[    0.551499] pci 0000:00:1e.0: PCI bridge to [bus 06]
[    0.551513] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.551515] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.551516] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.551517] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
[    0.551519] pci_bus 0000:01: resource 0 [io  0xd000-0xdfff]
[    0.551521] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xd00fffff]
[    0.551522] pci_bus 0000:02: resource 0 [io  0xc000-0xcfff]
[    0.551524] pci_bus 0000:02: resource 1 [mem 0xd3e00000-0xd51fffff]
[    0.551525] pci_bus 0000:02: resource 2 [mem 0xd5300000-0xd54fffff 64bit pref]
[    0.551527] pci_bus 0000:03: resource 0 [io  0xb000-0xbfff]
[    0.551529] pci_bus 0000:03: resource 1 [mem 0xd2a00000-0xd3dfffff]
[    0.551530] pci_bus 0000:03: resource 2 [mem 0xd5500000-0xd56fffff 64bit pref]
[    0.551532] pci_bus 0000:04: resource 0 [io  0xa000-0xafff]
[    0.551533] pci_bus 0000:04: resource 1 [mem 0xd1600000-0xd29fffff]
[    0.551535] pci_bus 0000:04: resource 2 [mem 0xd5700000-0xd58fffff 64bit pref]
[    0.551536] pci_bus 0000:05: resource 0 [io  0x9000-0x9fff]
[    0.551538] pci_bus 0000:05: resource 1 [mem 0xd0200000-0xd15fffff]
[    0.551539] pci_bus 0000:05: resource 2 [mem 0xd5900000-0xd5afffff 64bit pref]
[    0.551541] pci_bus 0000:06: resource 4 [io  0x0000-0x0cf7]
[    0.551542] pci_bus 0000:06: resource 5 [io  0x0d00-0xffff]
[    0.551544] pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff]
[    0.551545] pci_bus 0000:06: resource 7 [mem 0xc0000000-0xfeafffff]
[    0.551574] NET: Registered protocol family 2
[    0.551781] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.551879] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.552020] TCP: Hash tables configured (established 32768 bind 32768)
[    0.552048] TCP: reno registered
[    0.552057] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.552077] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.552140] NET: Registered protocol family 1
[    0.552163] pci 0000:00:1a.0: enabling device (0000 -> 0002)
[    0.552393] pci 0000:00:1d.0: enabling device (0000 -> 0002)
[    0.552575] pci 0000:01:00.0: Boot video device
[    0.552603] PCI: CLS 64 bytes, default 64
[    0.552656] Unpacking initramfs...
[    0.639169] Freeing initrd memory: 5552K (ffff8800be22e000 - ffff8800be79a000)
[    0.639181] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.639183] software IO TLB [mem 0xb8903000-0xbc903000] (64MB) mapped at [ffff8800b8903000-ffff8800bc902fff]
[    0.639445] Scanning for low memory corruption every 60 seconds
[    0.639763] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.639810] Initialise system trusted keyring
[    0.639829] audit: initializing netlink subsys (disabled)
[    0.639849] audit: type=2000 audit(1408907620.449:1): initialized
[    0.640144] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.641321] zpool: loaded
[    0.641323] zbud: loaded
[    0.641481] VFS: Disk quotas dquot_6.5.2
[    0.641513] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.641642] msgmni has been set to 7639
[    0.641698] Key type big_key registered
[    0.642096] Key type asymmetric registered
[    0.642100] Asymmetric key parser 'x509' registered
[    0.642131] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.642194] io scheduler noop registered
[    0.642198] io scheduler deadline registered
[    0.642225] io scheduler cfq registered (default)
[    0.642441] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
[    0.642603] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
[    0.642791] pcieport 0000:00:1c.1: irq 42 for MSI/MSI-X
[    0.642981] pcieport 0000:00:1c.2: irq 43 for MSI/MSI-X
[    0.643171] pcieport 0000:00:1c.5: irq 44 for MSI/MSI-X
[    0.643278] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    0.643280] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.643282] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.643284] pcie_pme 0000:00:01.0:pcie01: service driver pcie_pme loaded
[    0.643302] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.643306] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    0.643323] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[    0.643324] pci 0000:03:00.0: Signaling PME through PCIe PME interrupt
[    0.643329] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[    0.643345] pcieport 0000:00:1c.2: Signaling PME through PCIe PME interrupt
[    0.643350] pcie_pme 0000:00:1c.2:pcie01: service driver pcie_pme loaded
[    0.643367] pcieport 0000:00:1c.5: Signaling PME through PCIe PME interrupt
[    0.643368] pci 0000:05:00.0: Signaling PME through PCIe PME interrupt
[    0.643370] pci 0000:05:00.2: Signaling PME through PCIe PME interrupt
[    0.643372] pci 0000:05:00.3: Signaling PME through PCIe PME interrupt
[    0.643373] pci 0000:05:00.4: Signaling PME through PCIe PME interrupt
[    0.643375] pci 0000:05:00.5: Signaling PME through PCIe PME interrupt
[    0.643379] pcie_pme 0000:00:1c.5:pcie01: service driver pcie_pme loaded
[    0.643392] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.643449] pciehp 0000:00:1c.0:pcie04: Slot #0 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
[    0.643482] pciehp 0000:00:1c.0:pcie04: service driver pciehp loaded
[    0.643495] pciehp 0000:00:1c.1:pcie04: Slot #1 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
[    0.643525] pciehp 0000:00:1c.1:pcie04: service driver pciehp loaded
[    0.643536] pciehp 0000:00:1c.2:pcie04: Slot #2 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
[    0.643566] pciehp 0000:00:1c.2:pcie04: service driver pciehp loaded
[    0.643577] pciehp 0000:00:1c.5:pcie04: Slot #5 AttnBtn- AttnInd- PwrInd- PwrCtrl- MRL- Interlock- NoCompl+ LLActRep+
[    0.643607] pciehp 0000:00:1c.5:pcie04: service driver pciehp loaded
[    0.643611] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.643643] efifb: probing for efifb
[    0.643661] efifb: framebuffer at 0xc0000000, mapped to 0xffffc90010800000, using 1876k, total 1875k
[    0.643662] efifb: mode is 800x600x32, linelength=3200, pages=1
[    0.643662] efifb: scrolling: redraw
[    0.643664] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.644708] Console: switching to colour frame buffer device 100x37
[    0.645647] fb0: EFI VGA frame buffer device
[    0.645655] intel_idle: MWAIT substates: 0x1120
[    0.645656] intel_idle: v0.4 model 0x25
[    0.645657] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.645831] GHES: HEST is not enabled!
[    0.646015] Linux agpgart interface v0.103
[    0.646069] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    0.647830] i8042: Detected active multiplexing controller, rev 1.1
[    0.648615] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.648639] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    0.648658] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    0.648675] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    0.648691] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    0.648752] rtc_cmos 00:01: RTC can wake from S4
[    0.648906] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    0.648936] rtc_cmos 00:01: alarms up to one year, y3k, 242 bytes nvram, hpet irqs
[    0.648997] TCP: cubic registered
[    0.649092] NET: Registered protocol family 10
[    0.649332] NET: Registered protocol family 17
[    0.649652] Loading compiled-in X.509 certificates
[    0.649675] Loaded X.509 cert 'Nullroute: Kernel signing key <grawity@nullroute.eu.org>: f091333ea101da66040b75006ceac6b862ace520'
[    0.649947] Loaded X.509 cert 'Nullroute CA: cad56a8c5f0c536762dcbf4dc23c46057426f9e8'
[    0.649960] registered taskstats version 1
[    0.653297] Key type encrypted registered
[    0.656485] ima: No TPM chip found, activating TPM-bypass!
[    0.657379]   Magic number: 10:1:244
[    0.657427] acpi device:5a: hash matches
[    0.657540] rtc_cmos 00:01: setting system clock to 2014-08-24 19:13:41 UTC (1408907621)
[    0.657749] PM: Hibernation image not present or could not be loaded.
[    0.659889] Freeing unused kernel memory: 1112K (ffffffff818da000 - ffffffff819f0000)
[    0.659893] Write protecting the kernel read-only data: 8192k
[    0.665807] Freeing unused kernel memory: 1124K (ffff8800054e7000 - ffff880005600000)
[    0.667906] Freeing unused kernel memory: 412K (ffff880005799000 - ffff880005800000)
[    0.679588] random: systemd-tmpfile urandom read with 4 bits of entropy available
[    0.681946] systemd-udevd[74]: starting version 215
[    0.685728] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.686631] [drm] Initialized drm 1.1.0 20060810
[    0.693596] [drm] radeon kernel modesetting enabled.
[    0.693644] checking generic (c0000000 1d5000) vs hw (c0000000 10000000)
[    0.693645] fb: switching to radeondrmfb from EFI VGA
[    0.693668] Console: switching to colour dummy device 80x25
[    0.694314] [drm] initializing kernel modesetting (CEDAR 0x1002:0x68E4 0x1043:0x1C92).
[    0.694334] [drm] register mmio base: 0xD0020000
[    0.694336] [drm] register mmio size: 131072
[    0.694400] ATOM BIOS: Asus
[    0.694469] radeon 0000:01:00.0: VRAM: 1024M 0x0000000000000000 - 0x000000003FFFFFFF (1024M used)
[    0.694471] radeon 0000:01:00.0: GTT: 1024M 0x0000000040000000 - 0x000000007FFFFFFF
[    0.694473] [drm] Detected VRAM RAM=1024M, BAR=256M
[    0.694473] [drm] RAM width 64bits DDR
[    0.694561] [TTM] Zone  kernel: Available graphics memory: 1957024 kiB
[    0.694563] [TTM] Initializing pool allocator
[    0.694569] [TTM] Initializing DMA pool allocator
[    0.694588] [drm] radeon: 1024M of VRAM memory ready
[    0.694589] [drm] radeon: 1024M of GTT memory ready.
[    0.694601] [drm] Loading CEDAR Microcode
[    0.694670] [drm] Internal thermal controller without fan control
[    0.694719] == power state 0 ==
[    0.694721] 	ui class: none
[    0.694722] 	internal class: boot 
[    0.694724] 	caps: video 
[    0.694726] 	uvd    vclk: 0 dclk: 0
[    0.694728] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.694729] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.694730] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.694731] 	status: c r b 
[    0.694733] == power state 1 ==
[    0.694734] 	ui class: performance
[    0.694735] 	internal class: none
[    0.694737] 	caps: single_disp video 
[    0.694745] 	uvd    vclk: 0 dclk: 0
[    0.694749] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.694753] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.694756] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.694758] 	status: 
[    0.694762] == power state 2 ==
[    0.694764] 	ui class: none
[    0.694766] 	internal class: uvd 
[    0.694770] 	caps: video 
[    0.694775] 	uvd    vclk: 50000 dclk: 40000
[    0.694778] 		power level 0    sclk: 50000 mclk: 80000 vddc: 1000 vddci: 0
[    0.694781] 		power level 1    sclk: 50000 mclk: 80000 vddc: 1000 vddci: 0
[    0.694785] 		power level 2    sclk: 50000 mclk: 80000 vddc: 1000 vddci: 0
[    0.694787] 	status: 
[    0.694790] == power state 3 ==
[    0.694792] 	ui class: performance
[    0.694795] 	internal class: none
[    0.694799] 	caps: video 
[    0.694803] 	uvd    vclk: 0 dclk: 0
[    0.694807] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.694811] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.694814] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    0.694816] 	status: 
[    0.694820] == power state 4 ==
[    0.694822] 	ui class: battery
[    0.694825] 	internal class: none
[    0.694828] 	caps: single_disp video 
[    0.694834] 	uvd    vclk: 0 dclk: 0
[    0.694838] 		power level 0    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.694841] 		power level 1    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.694845] 		power level 2    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.694848] 	status: 
[    0.694851] == power state 5 ==
[    0.694853] 	ui class: battery
[    0.694855] 	internal class: none
[    0.694859] 	caps: video 
[    0.694864] 	uvd    vclk: 0 dclk: 0
[    0.694868] 		power level 0    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.694871] 		power level 1    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.694874] 		power level 2    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.694877] 	status: 
[    0.694880] == power state 6 ==
[    0.694882] 	ui class: battery
[    0.694885] 	internal class: uvd_hd 
[    0.694888] 	caps: video 
[    0.694893] 	uvd    vclk: 40000 dclk: 30000
[    0.694897] 		power level 0    sclk: 45000 mclk: 50000 vddc: 900 vddci: 0
[    0.694900] 		power level 1    sclk: 45000 mclk: 50000 vddc: 900 vddci: 0
[    0.694904] 		power level 2    sclk: 45000 mclk: 50000 vddc: 900 vddci: 0
[    0.694906] 	status: 
[    0.694909] == power state 7 ==
[    0.694911] 	ui class: battery
[    0.694913] 	internal class: uvd_sd 
[    0.694917] 	caps: video 
[    0.694921] 	uvd    vclk: 10000 dclk: 10000
[    0.694924] 		power level 0    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.694927] 		power level 1    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.694929] 		power level 2    sclk: 30000 mclk: 30500 vddc: 900 vddci: 0
[    0.694931] 	status: 
[    0.721260] [drm] radeon: dpm initialized
[    0.721386] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    0.733333] [drm] PCIE GART of 1024M enabled (table at 0x000000000025D000).
[    0.733497] radeon 0000:01:00.0: WB enabled
[    0.733503] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff880131310c00
[    0.733507] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff880131310c0c
[    0.734270] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x000000000005c418 and cpu addr 0xffffc90010d9c418
[    0.734274] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    0.734276] [drm] Driver supports precise vblank timestamp query.
[    0.734307] radeon 0000:01:00.0: irq 45 for MSI/MSI-X
[    0.734327] radeon 0000:01:00.0: radeon: using MSI.
[    0.734361] [drm] radeon: irq initialized.
[    0.757805] [drm] ring test on 0 succeeded in 1 usecs
[    0.757866] [drm] ring test on 3 succeeded in 1 usecs
[    0.945041] [drm] ring test on 5 succeeded in 1 usecs
[    0.945048] [drm] UVD initialized successfully.
[    0.945439] [drm] ib test on ring 0 succeeded in 0 usecs
[    0.945473] [drm] ib test on ring 3 succeeded in 0 usecs
[    1.096964] [drm] ib test on ring 5 succeeded
[    1.097705] [drm] Radeon Display Connectors
[    1.097707] [drm] Connector 0:
[    1.097708] [drm]   LVDS-1
[    1.097710] [drm]   DDC: 0x6560 0x6560 0x6564 0x6564 0x6568 0x6568 0x656c 0x656c
[    1.097711] [drm]   Encoders:
[    1.097712] [drm]     LCD1: INTERNAL_UNIPHY
[    1.097713] [drm] Connector 1:
[    1.097714] [drm]   HDMI-A-1
[    1.097716] [drm]   HPD1
[    1.097718] [drm]   DDC: 0x6440 0x6440 0x6444 0x6444 0x6448 0x6448 0x644c 0x644c
[    1.097719] [drm]   Encoders:
[    1.097720] [drm]     DFP1: INTERNAL_UNIPHY1
[    1.097721] [drm] Connector 2:
[    1.097721] [drm]   VGA-1
[    1.097723] [drm]   DDC: 0x64d8 0x64d8 0x64dc 0x64dc 0x64e0 0x64e0 0x64e4 0x64e4
[    1.097724] [drm]   Encoders:
[    1.097725] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
[    1.471135] switching from power state:
[    1.471139] 	ui class: none
[    1.471141] 	internal class: boot 
[    1.471144] 	caps: video 
[    1.471147] 	uvd    vclk: 0 dclk: 0
[    1.471150] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.471152] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.471155] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.471156] 	status: c b 
[    1.471159] switching to power state:
[    1.471160] 	ui class: performance
[    1.471161] 	internal class: none
[    1.471164] 	caps: single_disp video 
[    1.471167] 	uvd    vclk: 0 dclk: 0
[    1.471169] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.471171] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.471173] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[    1.471174] 	status: r 
[    1.485893] [drm] fb mappable at 0xC045E000
[    1.485896] [drm] vram apper at 0xC0000000
[    1.485898] [drm] size 4325376
[    1.485900] [drm] fb depth is 24
[    1.485902] [drm]    pitch is 5632
[    1.486170] fbcon: radeondrmfb (fb0) is primary device
[    1.640750] tsc: Refined TSC clocksource calibration: 2659.982 MHz
[    2.080904] Console: switching to colour frame buffer device 170x48
[    2.085796] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
[    2.085800] radeon 0000:01:00.0: registered panic notifier
[    2.117588] [drm] Initialized radeon 2.40.0 20080528 for 0000:01:00.0 on minor 0
[    2.145651] ACPI: bus type USB registered
[    2.145688] usbcore: registered new interface driver usbfs
[    2.145700] usbcore: registered new interface driver hub
[    2.147139] sdhci: Secure Digital Host Controller Interface driver
[    2.147146] sdhci: Copyright(c) Pierre Ossman
[    2.147414] sdhci-pci 0000:05:00.0: SDHCI controller found [197b:2382] (rev 80)
[    2.147434] sdhci-pci 0000:05:00.0: enabling device (0000 -> 0002)
[    2.147443] usbcore: registered new device driver usb
[    2.147606] mmc0: no vqmmc regulator found
[    2.147612] mmc0: no vmmc regulator found
[    2.147757] mmc0: SDHCI controller on PCI [0000:05:00.0] using ADMA
[    2.147771] sdhci-pci 0000:05:00.2: SDHCI controller found [197b:2381] (rev 80)
[    2.147818] sdhci-pci 0000:05:00.2: Refusing to bind to secondary interface.
[    2.147938] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.148106] ehci-pci: EHCI PCI platform driver
[    2.148333] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    2.148342] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    2.148363] ehci-pci 0000:00:1a.0: debug port 2
[    2.152317] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    2.152341] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd5208000
[    2.154005] SCSI subsystem initialized
[    2.155801] libata version 3.00 loaded.
[    2.160726] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.160972] hub 1-0:1.0: USB hub found
[    2.160985] hub 1-0:1.0: 2 ports detected
[    2.161372] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    2.161380] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.161397] ehci-pci 0000:00:1d.0: debug port 2
[    2.165327] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    2.165352] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd5207000
[    2.174089] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.174421] hub 2-0:1.0: USB hub found
[    2.174432] hub 2-0:1.0: 2 ports detected
[    2.174576] ahci 0000:00:1f.2: version 3.0
[    2.174763] ahci 0000:00:1f.2: irq 46 for MSI/MSI-X
[    2.174842] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
[    2.174845] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems sxs apst 
[    2.195431] scsi host0: ahci
[    2.195819] scsi host1: ahci
[    2.196055] scsi host2: ahci
[    2.196216] scsi host3: ahci
[    2.196376] scsi host4: ahci
[    2.196540] scsi host5: ahci
[    2.196586] ata1: SATA max UDMA/133 abar m2048@0xd5206000 port 0xd5206100 irq 46
[    2.196589] ata2: SATA max UDMA/133 abar m2048@0xd5206000 port 0xd5206180 irq 46
[    2.196590] ata3: DUMMY
[    2.196591] ata4: DUMMY
[    2.196593] ata5: SATA max UDMA/133 abar m2048@0xd5206000 port 0xd5206300 irq 46
[    2.196596] ata6: SATA max UDMA/133 abar m2048@0xd5206000 port 0xd5206380 irq 46
[    2.467556] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.514194] ata6: SATA link down (SStatus 0 SControl 300)
[    2.514235] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.514274] ata5: SATA link down (SStatus 0 SControl 300)
[    2.514317] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.515797] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    2.518727] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[    2.519502] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[    2.519991] ata2.00: ATAPI: SlimtypeDVD A  DS8A5SH, XAA2, max UDMA/100
[    2.522635] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[    2.523412] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[    2.523871] ata2.00: configured for UDMA/100
[    2.525088] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[    2.535206] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[    2.591806] hub 1-1:1.0: USB hub found
[    2.591986] hub 1-1:1.0: 6 ports detected
[    2.603582] ata1.00: ATA-8: ST9640320AS, 0002SDM1, max UDMA/133
[    2.603588] ata1.00: 1250263728 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    2.619780] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[    2.629560] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[    2.640150] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[    2.641067] Switched to clocksource tsc
[    2.670299] ata1.00: configured for UDMA/133
[    2.670544] scsi 0:0:0:0: Direct-Access     ATA      ST9640320AS      SDM1 PQ: 0 ANSI: 5
[    2.675701] scsi 1:0:0:0: CD-ROM            Slimtype DVD A  DS8A5SH   XAA2 PQ: 0 ANSI: 5
[    2.695160] sd 0:0:0:0: [sda] 1250263728 512-byte logical blocks: (640 GB/596 GiB)
[    2.695462] sd 0:0:0:0: [sda] Write Protect is off
[    2.695469] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.695614] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.700845] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    2.710573] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/8x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.710578] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.710819] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    2.760289]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7
[    2.761263] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.824932] hub 2-1:1.0: USB hub found
[    2.825126] hub 2-1:1.0: 8 ports detected
[    3.927430] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[    4.135132] random: nonblocking pool is initialized
[    7.065587] systemd[1]: systemd 215 running in system mode. (+PAM -AUDIT -SELINUX -IMA -SYSVINIT +LIBCRYPTSETUP +GCRYPT +ACL +XZ +SECCOMP -APPARMOR)
[    7.065871] systemd[1]: Detected architecture 'x86-64'.
[    7.097320] systemd[1]: Set hostname to <rain>.
[   11.176773] systemd[1]: Starting Root Slice.
[   11.192359] systemd[1]: Created slice Root Slice.
[   11.192394] systemd[1]: Starting System Slice.
[   11.192850] systemd[1]: Created slice System Slice.
[   11.192881] systemd[1]: Starting Emergency Shell...
[   11.193797] systemd[1]: Started Emergency Shell.
[   11.193867] systemd[1]: Starting Emergency Mode.
[   11.194022] systemd[1]: Reached target Emergency Mode.
[   11.194064] systemd[1]: Startup finished in 5.264s (kernel) + 5.741s (userspace) = 19.914s.
[   11.257757] systemd[159]: Failed at step EXEC spawning /bin/plymouth: No such file or directory
[   14.463337] systemd[1]: Starting system-getty.slice.
[   14.463956] systemd[1]: Created slice system-getty.slice.
[   14.464033] systemd[1]: Starting User and Session Slice.
[   14.464360] systemd[1]: Created slice User and Session Slice.
[   14.464430] systemd[1]: Starting Forward Password Requests to Wall Directory Watch.
[   14.464525] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[   14.464594] systemd[1]: Starting Remote File Systems.
[   14.464622] systemd[1]: Reached target Remote File Systems.
[   14.464686] systemd[1]: Starting Syslog Socket.
[   14.464761] systemd[1]: Listening on Syslog Socket.
[   14.464829] systemd[1]: Starting Slices.
[   14.464853] systemd[1]: Reached target Slices.
[   14.464914] systemd[1]: Starting /dev/initctl Compatibility Named Pipe.
[   14.464992] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[   14.465057] systemd[1]: Starting Device-mapper event daemon FIFOs.
[   14.465124] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   14.465199] systemd[1]: Starting Delayed Shutdown Socket.
[   14.465260] systemd[1]: Listening on Delayed Shutdown Socket.
[   14.465327] systemd[1]: Stopping Emergency Mode.
[   14.465355] systemd[1]: Stopped target Emergency Mode.
[   14.465415] systemd[1]: Stopping Emergency Shell...
[   14.465632] systemd[1]: Starting Dispatch Password Requests to Console Directory Watch.
[   14.465696] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[   14.465773] systemd[1]: Starting Journal Socket (/dev/log).
[   14.465832] systemd[1]: Listening on Journal Socket (/dev/log).
[   14.465868] systemd[1]: Starting Journal Socket.
[   14.465929] systemd[1]: Listening on Journal Socket.
[   14.466020] systemd[1]: Starting Setup Virtual Console...
[   14.536637] systemd[1]: Starting Load Kernel Modules...
[   14.537292] systemd[1]: Starting Load/Save Random Seed...
[   14.537946] systemd[1]: Started Rebuild Hardware Database.
[   14.588666] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[   14.589451] systemd[1]: Starting Journal Service...
[   14.590240] systemd[1]: Started Journal Service.
[   15.061999] systemd[1]: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 179 (systemd-binfmt)
[   15.807587] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   15.807737] sr 1:0:0:0: Attached scsi generic sg1 type 5
[   15.916422] FS-Cache: Loaded
[   15.936555] RPC: Registered named UNIX socket transport module.
[   15.936560] RPC: Registered udp transport module.
[   15.936563] RPC: Registered tcp transport module.
[   15.936565] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   15.952923] FS-Cache: Netfs 'nfs' registered for caching
[   16.323469] TCP: lp registered
[   16.332909] TCP: vegas registered
[   16.689228] systemd-udevd[212]: starting version 215
[   18.581446] ACPI: AC Adapter [AC0] (on-line)
[   18.592161] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
[   18.592170] intel ips 0000:00:1f.6: enabling device (0000 -> 0002)
[   18.592663] intel ips 0000:00:1f.6: failed to get i915 symbols, graphics turbo disabled until i915 loads
[   18.592770] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
[   18.618695] ACPI: Battery Slot [BAT0] (battery present)
[   18.620398] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000044f (\GPIS) (20140724/utaddress-258)
[   18.620403] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140724/utaddress-258)
[   18.620406] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   18.620409] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\GPIO) (20140724/utaddress-258)
[   18.620412] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   18.620413] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\GPIO) (20140724/utaddress-258)
[   18.620415] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   18.620416] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x000000000000057f (\GPIO) (20140724/utaddress-258)
[   18.620418] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   18.620419] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   18.721881] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   18.725284] acpi device:03: registered as cooling_device4
[   18.725339] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input5
[   18.725706] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input6
[   18.727595] ACPI: Lid Switch [LID]
[   18.727643] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input7
[   18.727645] ACPI: Sleep Button [SLPB]
[   18.727682] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input8
[   18.727685] ACPI: Power Button [PWRF]
[   18.787227] ACPI Warning: SystemIO range 0x000000000000e000-0x000000000000e01f conflicts with OpRegion 0x000000000000e000-0x000000000000e00f (\SMB0) (20140724/utaddress-258)
[   18.787234] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   18.857550] mei_me 0000:00:16.0: irq 47 for MSI/MSI-X
[   19.003894] asus_laptop: Asus Laptop Support version 0.42
[   19.003988] asus_laptop: BSTS called, 0xc800 returned
[   19.004001] asus_laptop:    model detected
[   19.004375] asus_laptop: Backlight controlled by ACPI video driver
[   19.004439] input: Asus Laptop extra buttons as /devices/platform/asus_laptop/input/input13
[   19.010565] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x2
[   19.013633] cfg80211: Calling CRDA to update world regulatory domain
[   19.053382] input: PC Speaker as /devices/platform/pcspkr/input/input14
[   19.061184] thermal LNXTHERM:00: registered as thermal_zone0
[   19.061187] ACPI: Thermal Zone [THRM] (56 C)
[   19.178659] iTCO_vendor_support: vendor-support=0
[   19.383257] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   19.383305] iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
[   19.383477] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   19.389794] jmb38x_ms 0000:05:00.3: enabling device (0000 -> 0002)
[   19.399573] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x2
[   19.399945] microcode: CPU0 updated to revision 0x4, date = 2013-06-28
[   19.399957] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
[   19.399986] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
[   19.400190] microcode: CPU1 updated to revision 0x4, date = 2013-06-28
[   19.400230] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
[   19.400268] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
[   19.400425] microcode: CPU2 updated to revision 0x4, date = 2013-06-28
[   19.400433] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x2
[   19.400453] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x2
[   19.400626] microcode: CPU3 updated to revision 0x4, date = 2013-06-28
[   19.400679] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[   19.489348] jme: JMicron JMC2XX ethernet driver version 1.0.8
[   19.489377] jme 0000:05:00.5: can't disable ASPM; OS doesn't have ASPM control
[   19.490315] jme 0000:05:00.5 eth0: JMC250 Gigabit Ethernet chiprev:23 pcirev:3 macaddr:f4:6d:04:85:fc:d7
[   19.632693] usb 1-1: USB disconnect, device number 2
[   19.786333] cfg80211: Calling CRDA to update world regulatory domain
[   19.900429] psmouse serio4: elantech: assuming hardware version 2 (with firmware version 0x040102)
[   19.928698] psmouse serio4: elantech: Synaptics capabilities query result 0x78, 0x16, 0x0d.
[   20.036282] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio4/input/input12
[   20.116630] mousedev: PS/2 mouse device common for all mice
[   20.193549] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[   20.196114] ath: phy0: Enable LNA combining
[   20.197656] ath: EEPROM regdomain: 0x60
[   20.197657] ath: EEPROM indicates we should expect a direct regpair map
[   20.197660] ath: Country alpha2 being used: 00
[   20.197661] ath: Regpair used: 0x60
[   20.222664] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   20.223037] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xffffc900124e0000, irq=17
[   20.245839] cfg80211: World regulatory domain updated:
[   20.245843] cfg80211:  DFS Master region: unset
[   20.245844] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   20.245846] cfg80211:   (2402000 KHz - 2472000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[   20.245848] cfg80211:   (2457000 KHz - 2482000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[   20.245850] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[   20.245851] cfg80211:   (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A)
[   20.245852] cfg80211:   (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[   20.245854] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[   20.245855] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[   20.245857] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[   20.245884] cfg80211: Calling CRDA for country: LT
[   20.354281] cfg80211: Regulatory domain changed to country: LT
[   20.354284] cfg80211:  DFS Master region: ETSI
[   20.354285] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   20.354287] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[   20.354289] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[   20.354290] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
[   20.354292] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
[   20.354293] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[   20.800504] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   20.800734] snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
[   20.800815] snd_hda_intel 0000:01:00.1: enabling device (0000 -> 0002)
[   20.800874] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
[   20.800899] snd_hda_intel 0000:01:00.1: irq 49 for MSI/MSI-X
[   20.944712] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
[   20.968518] sound hdaudioC0D0: CX20585: BIOS auto-probing.
[   20.969243] sound hdaudioC0D0: autoconfig: line_outs=1 (0x1f/0x0/0x0/0x0/0x0) type:speaker
[   20.969246] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   20.969248] sound hdaudioC0D0:    hp_outs=1 (0x19/0x0/0x0/0x0/0x0)
[   20.969249] sound hdaudioC0D0:    mono: mono_out=0x0
[   20.969250] sound hdaudioC0D0:    inputs:
[   20.969252] sound hdaudioC0D0:      Mic=0x1b
[   20.969254] sound hdaudioC0D0:      Internal Mic=0x1a
[   20.970088] sound hdaudioC0D0: Enable sync_write for stable communication
[   20.973348] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/hdaudioC0D0/input16
[   20.973576] input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[   20.973660] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
[   22.025093] fuse init (API version 7.23)
[   22.622336] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[   23.049927] Adding 2097148k swap on /dev/sda7.  Priority:-1 extents:1 across:2097148k FS
[   23.340863] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
[   23.972695] systemd-journald[177]: Received request to flush runtime journal from PID 1
[   25.989068] ip_tables: (C) 2000-2006 Netfilter Core Team
[   26.011630] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   27.580911] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   30.356412] Netfilter messages via NETLINK v0.30.
[   32.467839] jme 0000:05:00.5: irq 50 for MSI/MSI-X
[   32.490668] jme 0000:05:00.5 eth0: Link is down
[   32.490687] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   32.519197] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   34.877490] wlan0: authenticate with c8:d3:a3:f1:58:80
[   34.890640] wlan0: send auth to c8:d3:a3:f1:58:80 (try 1/3)
[   34.892541] wlan0: authenticated
[   34.893767] wlan0: associate with c8:d3:a3:f1:58:80 (try 1/3)
[   34.897581] wlan0: RX AssocResp from c8:d3:a3:f1:58:80 (capab=0x411 status=0 aid=2)
[   34.897712] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   34.898129] wlan0: associated
[   39.679609] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=108.160.162.99 DST=192.168.1.4 LEN=231 TOS=0x00 PREC=0x00 TTL=52 ID=40998 DF PROTO=TCP SPT=80 DPT=48364 WINDOW=43 RES=0x00 ACK PSH URGP=0 
[   52.944672] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=108.160.162.99 DST=192.168.1.4 LEN=231 TOS=0x00 PREC=0x00 TTL=52 ID=40999 DF PROTO=TCP SPT=80 DPT=48364 WINDOW=43 RES=0x00 ACK PSH URGP=0 
[   79.552700] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=108.160.162.99 DST=192.168.1.4 LEN=231 TOS=0x00 PREC=0x00 TTL=52 ID=41000 DF PROTO=TCP SPT=80 DPT=48364 WINDOW=43 RES=0x00 ACK PSH URGP=0 
[  112.215258] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=108.160.162.99 DST=192.168.1.4 LEN=52 TOS=0x00 PREC=0x00 TTL=52 ID=41001 DF PROTO=TCP SPT=80 DPT=48364 WINDOW=43 RES=0x00 ACK FIN URGP=0 
[  235.690201] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=188.43.73.10 DST=192.168.1.4 LEN=52 TOS=0x00 PREC=0x00 TTL=59 ID=14222 DF PROTO=TCP SPT=80 DPT=33972 WINDOW=7240 RES=0x00 ACK FIN URGP=0 
[  236.978975] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=188.43.73.10 DST=192.168.1.4 LEN=52 TOS=0x00 PREC=0x00 TTL=59 ID=14223 DF PROTO=TCP SPT=80 DPT=33972 WINDOW=7240 RES=0x00 ACK FIN URGP=0 
[  655.469964] perf interrupt took too long (2503 > 2495), lowering kernel.perf_event_max_sample_rate to 50100
[ 2681.794143] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=212.59.4.119 DST=192.168.1.4 LEN=85 TOS=0x00 PREC=0x00 TTL=61 ID=36503 PROTO=TCP SPT=443 DPT=46077 WINDOW=245 RES=0x00 ACK PSH URGP=0 
[ 2681.796011] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=212.59.4.119 DST=192.168.1.4 LEN=40 TOS=0x00 PREC=0x00 TTL=61 ID=36504 PROTO=TCP SPT=443 DPT=46077 WINDOW=245 RES=0x00 ACK FIN URGP=0 
[ 2682.720260] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=212.59.4.119 DST=192.168.1.4 LEN=85 TOS=0x00 PREC=0x00 TTL=61 ID=36505 PROTO=TCP SPT=443 DPT=46077 WINDOW=245 RES=0x00 ACK PSH URGP=0 
[ 2684.724680] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=212.59.4.119 DST=192.168.1.4 LEN=85 TOS=0x00 PREC=0x00 TTL=61 ID=36506 PROTO=TCP SPT=443 DPT=46077 WINDOW=245 RES=0x00 ACK PSH URGP=0 
[ 2688.849522] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:52:d3:a3:f1:58:81:08:00 SRC=212.59.4.119 DST=192.168.1.4 LEN=85 TOS=0x00 PREC=0x00 TTL=61 ID=36507 PROTO=TCP SPT=443 DPT=46077 WINDOW=245 RES=0x00 ACK PSH URGP=0 
[ 3994.212927] nf_tables: (c) 2007-2009 Patrick McHardy <kaber@trash.net>
[ 5814.095821] perf interrupt took too long (5008 > 4960), lowering kernel.perf_event_max_sample_rate to 25200
[ 8038.029484] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 8038.613182] wlan0: deauthenticating from c8:d3:a3:f1:58:80 by local choice (Reason: 3=DEAUTH_LEAVING)
[ 8038.621931] cfg80211: Calling CRDA to update world regulatory domain
[ 8039.130694] cfg80211: World regulatory domain updated:
[ 8039.130698] cfg80211:  DFS Master region: unset
[ 8039.130700] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[ 8039.130702] cfg80211:   (2402000 KHz - 2472000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[ 8039.130704] cfg80211:   (2457000 KHz - 2482000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[ 8039.130705] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[ 8039.130706] cfg80211:   (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A)
[ 8039.130708] cfg80211:   (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[ 8039.130709] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[ 8039.130711] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[ 8039.130712] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[ 8039.130755] cfg80211: Calling CRDA for country: LT
[ 8039.161935] cfg80211: Regulatory domain changed to country: LT
[ 8039.161939] cfg80211:  DFS Master region: ETSI
[ 8039.161940] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[ 8039.161942] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[ 8039.161944] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[ 8039.161945] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
[ 8039.161947] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
[ 8039.161948] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[ 8039.674295] PM: Syncing filesystems ... 
[ 8040.962802] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 8042.143477] done.
[ 8042.143488] PM: Preparing system for mem sleep
[ 8042.983948] Freezing user space processes ... (elapsed 0.016 seconds) done.
[ 8043.000228] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[ 8043.001395] PM: Entering mem sleep
[ 8043.001438] Suspending console(s) (use no_console_suspend to debug)
[ 8043.001698] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[ 8043.002752] sd 0:0:0:0: [sda] Stopping disk
[ 8043.603191] PM: suspend of devices complete after 601.549 msecs
[ 8043.603642] PM: late suspend of devices complete after 0.445 msecs
[ 8043.604408] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
[ 8043.604528] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
[ 8043.616380] PM: noirq suspend of devices complete after 12.734 msecs
[ 8043.616662] ACPI: Preparing to enter system sleep state S3
[ 8043.617833] PM: Saving platform NVS memory
[ 8043.618130] Disabling non-boot CPUs ...
[ 8043.619462] kvm: disabling virtualization on CPU1
[ 8043.719609] smpboot: CPU 1 is now offline
[ 8043.721299] kvm: disabling virtualization on CPU2
[ 8043.822933] smpboot: CPU 2 is now offline
[ 8043.824589] kvm: disabling virtualization on CPU3
[ 8043.926294] smpboot: CPU 3 is now offline
[ 8043.927637] ACPI: Low-level resume complete
[ 8043.927696] PM: Restoring platform NVS memory
[ 8043.928192] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x4
[ 8043.928225] Enabling non-boot CPUs ...
[ 8043.928272] x86: Booting SMP configuration:
[ 8043.928273] smpboot: Booting Node 0 Processor 1 APIC 0x4
[ 8043.939462] kvm: enabling virtualization on CPU1
[ 8043.941860] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
[ 8043.942060] microcode: CPU1 updated to revision 0x4, date = 2013-06-28
[ 8043.942065] CPU1 is up
[ 8043.942087] smpboot: Booting Node 0 Processor 2 APIC 0x1
[ 8043.953274] kvm: enabling virtualization on CPU2
[ 8043.955695] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
[ 8043.955870] microcode: CPU2 updated to revision 0x4, date = 2013-06-28
[ 8043.955876] CPU2 is up
[ 8043.955897] smpboot: Booting Node 0 Processor 3 APIC 0x5
[ 8043.967068] kvm: enabling virtualization on CPU3
[ 8043.969508] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x4
[ 8043.969513] CPU3 is up
[ 8043.971835] ACPI: Waking up from system sleep state S3
[ 8044.398276] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[ 8044.398329] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[ 8044.398374] PM: noirq resume of devices complete after 12.519 msecs
[ 8044.398410] pciehp 0000:00:1c.1:pcie04: Card present on Slot(1)
[ 8044.398415] pciehp 0000:00:1c.1:pcie04: slot(1): Link Up event
[ 8044.398424] pciehp 0000:00:1c.5:pcie04: Card present on Slot(5)
[ 8044.398428] pciehp 0000:00:1c.5:pcie04: slot(5): Link Up event
[ 8044.398435] pciehp 0000:00:1c.1:pcie04: Link Up event ignored on slot(1): already powering on
[ 8044.398438] pciehp 0000:00:1c.5:pcie04: Link Up event ignored on slot(5): already powering on
[ 8044.398557] PM: early resume of devices complete after 0.151 msecs
[ 8044.398607] mei_me 0000:00:16.0: irq 47 for MSI/MSI-X
[ 8044.398904] snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
[ 8044.399394] snd_hda_intel 0000:01:00.1: irq 49 for MSI/MSI-X
[ 8044.401084] sd 0:0:0:0: [sda] Starting disk
[ 8044.408115] [drm] PCIE GART of 1024M enabled (table at 0x000000000025D000).
[ 8044.408227] radeon 0000:01:00.0: WB enabled
[ 8044.408230] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff880131310c00
[ 8044.408231] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff880131310c0c
[ 8044.408974] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x000000000005c418 and cpu addr 0xffffc90010d9c418
[ 8044.425532] [drm] ring test on 0 succeeded in 1 usecs
[ 8044.425589] [drm] ring test on 3 succeeded in 1 usecs
[ 8044.500931] pciehp 0000:00:1c.1:pcie04: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add
[ 8044.500933] pciehp 0000:00:1c.1:pcie04: Cannot add device at 0000:03:00
[ 8044.500945] pciehp 0000:00:1c.5:pcie04: Device 0000:05:00.0 already exists at 0000:05:00, cannot hot-add
[ 8044.500946] pciehp 0000:00:1c.5:pcie04: Cannot add device at 0000:05:00
[ 8044.604262] pciehp 0000:00:1c.5:pcie04: Device 0000:05:00.0 already exists at 0000:05:00, cannot hot-add
[ 8044.604263] pciehp 0000:00:1c.5:pcie04: Cannot add device at 0000:05:00
[ 8044.604338] pciehp 0000:00:1c.1:pcie04: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add
[ 8044.604340] pciehp 0000:00:1c.1:pcie04: Cannot add device at 0000:03:00
[ 8044.604374] rtc_cmos 00:01: System wakeup disabled by ACPI
[ 8044.612681] [drm] ring test on 5 succeeded in 1 usecs
[ 8044.612685] [drm] UVD initialized successfully.
[ 8044.612716] [drm] ib test on ring 0 succeeded in 0 usecs
[ 8044.612743] [drm] ib test on ring 3 succeeded in 0 usecs
[ 8044.727663] ata6: SATA link down (SStatus 0 SControl 300)
[ 8044.734339] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 8044.735727] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[ 8044.736433] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[ 8044.739158] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[ 8044.739859] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[ 8044.740233] ata2.00: configured for UDMA/100
[ 8044.740979] ata5: SATA link down (SStatus 0 SControl 300)
[ 8044.764216] [drm] ib test on ring 5 succeeded
[ 8044.764355] switching from power state:
[ 8044.764356] 	ui class: none
[ 8044.764357] 	internal class: boot 
[ 8044.764358] 	caps: video 
[ 8044.764359] 	uvd    vclk: 0 dclk: 0
[ 8044.764360] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[ 8044.764360] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[ 8044.764361] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[ 8044.764362] 	status: c b 
[ 8044.764362] switching to power state:
[ 8044.764362] 	ui class: performance
[ 8044.764363] 	internal class: none
[ 8044.764364] 	caps: single_disp video 
[ 8044.764364] 	uvd    vclk: 0 dclk: 0
[ 8044.764365] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[ 8044.764365] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[ 8044.764366] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[ 8044.764366] 	status: r 
[ 8046.287782] PM: resume of devices complete after 1889.048 msecs
[ 8046.288208] PM: Finishing wakeup.
[ 8046.288209] Restarting tasks ... done.
[ 8046.314526] video LNXVIDEO:00: Restoring backlight state
[ 8046.331828] jme 0000:05:00.5: irq 50 for MSI/MSI-X
[ 8046.354915] jme 0000:05:00.5 eth0: Link is down
[ 8046.354960] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[ 8046.389093] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 8047.227993] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 8047.230738] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 8047.240481] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[ 8047.251018] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[ 8047.297208] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[ 8047.307022] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[ 8047.317544] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[ 8047.347706] ata1.00: configured for UDMA/133
[ 8048.177503] wlan0: authenticate with 24:a4:3c:9e:d2:84
[ 8048.191034] wlan0: send auth to 24:a4:3c:9e:d2:84 (try 1/3)
[ 8048.192697] wlan0: authenticated
[ 8048.194643] wlan0: associate with 24:a4:3c:9e:d2:84 (try 1/3)
[ 8048.199289] wlan0: RX AssocResp from 24:a4:3c:9e:d2:84 (capab=0x431 status=0 aid=3)
[ 8048.199411] wlan0: associated
[ 8048.199434] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[12351.559660] jme 0000:05:00.5 eth0: Link is up at ANed: 100 Mbps, Full-Duplex, MDI
[12351.560133] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[12351.885870] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12351.885890] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12351.885915] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12351.885919] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12351.886137] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12351.886142] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12352.098992] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12352.099052] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12352.163900] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12352.163906] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12352.205444] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12352.205450] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12352.205465] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12352.205467] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12352.369112] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12352.369172] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12352.406587] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12352.406663] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12352.526945] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12352.526981] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12352.979170] 8021q: 802.1Q VLAN Support v1.8
[12357.259518] net_ratelimit: 15 callbacks suppressed
[12357.259526] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12357.259531] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12358.466960] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12358.467019] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12358.519738] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12358.519796] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12358.786338] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12358.786396] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12361.213176] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12361.213242] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12364.386305] jme 0000:05:00.5 eth0: Link is down
[12364.931616] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12364.931675] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12365.367955] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12365.368013] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12367.177012] jme 0000:05:00.5 eth0: Link is up at ANed: 100 Mbps, Full-Duplex, MDI
[12369.120752] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12369.120811] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12377.860460] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12377.860518] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12378.707498] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12378.707564] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12379.064968] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12379.065025] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12383.883916] IPv4: martian source 10.35.0.2 from 173.194.112.86, on dev wlan0
[12383.883978] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12383.921878] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12383.921933] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12383.923963] IPv4: martian source 10.35.0.2 from 173.194.112.86, on dev wlan0
[12383.924016] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12384.935394] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12384.935455] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12403.718369] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12403.718380] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12405.203854] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[12405.203902] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12406.458888] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12406.458926] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12416.618147] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12416.618207] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12473.205660] jme 0000:05:00.5 eth0: Link is down
[12502.663734] jme 0000:05:00.5 eth0: Link is up at ANed: 1000 Mbps, Full-Duplex, MDI-X
[12502.664236] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[12507.542907] IPv4: martian source 255.255.255.255 from 193.219.181.193, on dev eth0
[12507.542966] ll header: 00000000: ff ff ff ff ff ff c8 60 00 55 b3 69 08 00        .......`.U.i..
[12507.544802] IPv4: martian source 255.255.255.255 from 193.219.181.193, on dev eth0
[12507.544857] ll header: 00000000: ff ff ff ff ff ff c8 60 00 55 b3 69 08 00        .......`.U.i..
[12512.499658] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12512.499675] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12512.499691] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12512.499695] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12512.500277] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12512.500287] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12512.543380] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12512.543387] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12512.709749] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12512.709767] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12512.753698] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12512.753754] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12513.129794] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12513.129832] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12513.173379] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12513.173414] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12513.969844] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12513.969850] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12514.013486] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12514.013536] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12515.650093] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12515.650153] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12515.693529] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12515.693585] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12519.010299] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12519.010360] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12519.053834] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12519.053865] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12522.532189] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12522.532199] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12522.584673] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12522.584683] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12525.730896] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12525.730969] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12525.774219] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12525.774229] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12539.171774] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12539.171782] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12539.215379] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12539.215405] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12542.972310] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12542.972317] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12542.972706] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12542.972710] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12542.973063] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12542.973067] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12543.174061] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12543.174119] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12543.578122] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12543.578159] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12544.386201] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12544.386262] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12546.002272] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12546.002330] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12549.234593] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12549.234654] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12553.042867] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12553.042876] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12555.698992] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12555.699002] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12563.185762] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.66 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=6846 PROTO=TCP SPT=443 DPT=48692 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[12566.053734] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12566.053782] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12566.098279] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12566.098289] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12568.628965] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12568.629040] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12573.151258] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=193.219.73.176 DST=193.219.181.235 LEN=40 TOS=0x00 PREC=0x00 TTL=59 ID=19551 PROTO=TCP SPT=443 DPT=59605 WINDOW=245 RES=0x00 ACK FIN URGP=0 
[12573.187037] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.95 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=40374 PROTO=TCP SPT=443 DPT=56858 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[12594.488261] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12594.488290] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12619.817727] IPv4: martian source 10.35.0.2 from 74.125.136.106, on dev wlan0
[12619.817767] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12619.861278] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[12619.861309] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12646.202049] IPv4: martian source 10.35.0.2 from 74.125.136.105, on dev wlan0
[12646.202116] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[12857.244449] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=193.219.73.176 DST=193.219.181.235 LEN=40 TOS=0x00 PREC=0x00 TTL=59 ID=19577 PROTO=TCP SPT=443 DPT=60558 WINDOW=245 RES=0x00 ACK FIN URGP=0 
[12857.278735] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.79 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=50892 PROTO=TCP SPT=443 DPT=43045 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[12994.737294] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=193.219.73.183 DST=193.219.181.235 LEN=40 TOS=0x00 PREC=0x00 TTL=59 ID=18733 PROTO=TCP SPT=443 DPT=35420 WINDOW=245 RES=0x00 ACK FIN URGP=0 
[12994.773131] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.64 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=40376 PROTO=TCP SPT=443 DPT=54546 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[12994.773228] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.88 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=21501 PROTO=TCP SPT=443 DPT=56088 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13008.291199] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[13008.291216] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13008.493459] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[13008.493480] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13008.897487] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[13008.897547] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13009.705165] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[13009.705238] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13011.321617] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[13011.321669] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13012.432450] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[13012.432559] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13012.637674] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[13012.637733] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13013.049403] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[13013.049421] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13013.873439] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[13013.873501] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13014.553484] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[13014.553540] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13015.521477] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[13015.521493] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13018.817779] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[13018.817788] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13021.017919] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[13021.017939] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13025.410299] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[13025.410401] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13030.964367] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.70 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=41659 PROTO=TCP SPT=443 DPT=37330 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13033.947256] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[13033.947319] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13038.595400] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[13038.595462] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13059.804847] IPv4: martian source 10.35.0.2 from 77.109.171.40, on dev wlan0
[13059.804908] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13064.965184] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[13064.965261] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[13109.431640] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=195.154.251.66 DST=193.219.181.235 LEN=436 TOS=0x00 PREC=0x00 TTL=49 ID=0 DF PROTO=UDP SPT=5063 DPT=5060 LEN=416 
[13131.670235] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=182.236.160.79 DST=193.219.181.235 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=3576 DF PROTO=TCP SPT=37654 DPT=8080 WINDOW=5840 RES=0x00 SYN URGP=0 
[13134.670178] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=182.236.160.79 DST=193.219.181.235 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=3577 DF PROTO=TCP SPT=37654 DPT=8080 WINDOW=5840 RES=0x00 SYN URGP=0 
[13140.670576] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=182.236.160.79 DST=193.219.181.235 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=3578 DF PROTO=TCP SPT=37654 DPT=8080 WINDOW=5840 RES=0x00 SYN URGP=0 
[13358.064077] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.67 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=2 PROTO=TCP SPT=443 DPT=60618 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13368.066547] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.95 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=61892 PROTO=TCP SPT=443 DPT=57979 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13368.066723] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.79 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=41648 PROTO=TCP SPT=443 DPT=43208 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13498.136397] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.95 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=9714 PROTO=TCP SPT=443 DPT=57982 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13508.138344] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.71 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=56967 PROTO=TCP SPT=443 DPT=43742 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13508.138508] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.88 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=21501 PROTO=TCP SPT=443 DPT=56212 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13543.824067] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.71 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=9723 PROTO=TCP SPT=443 DPT=43794 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13553.826384] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.95 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=61894 PROTO=TCP SPT=443 DPT=58036 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13553.826729] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.88 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=41661 PROTO=TCP SPT=443 DPT=56265 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[13595.278639] jme: Disable TX engine timeout
[13595.279246] jme 0000:05:00.5 eth0: Link is down
[14198.663082] jme 0000:05:00.5 eth0: Link is up at ANed: 1000 Mbps, Full-Duplex, MDI-X
[14198.663565] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[14202.871361] IPv4: martian source 255.255.255.255 from 193.219.181.193, on dev eth0
[14202.871511] ll header: 00000000: ff ff ff ff ff ff c8 60 00 55 b3 69 08 00        .......`.U.i..
[14202.871523] IPv4: martian source 255.255.255.255 from 192.168.1.199, on dev eth0
[14202.871526] ll header: 00000000: ff ff ff ff ff ff c8 60 00 55 b3 69 08 00        .......`.U.i..
[14202.871537] IPv4: martian source 255.255.255.255 from 10.0.0.225, on dev eth0
[14202.871544] ll header: 00000000: ff ff ff ff ff ff c8 60 00 55 b3 69 08 00        .......`.U.i..
[14202.872429] IPv4: martian source 255.255.255.255 from 192.168.1.20, on dev eth0
[14202.872448] ll header: 00000000: ff ff ff ff ff ff 00 27 22 42 e2 cb 08 00        .......'"B....
[14202.873544] IPv4: martian source 255.255.255.255 from 192.168.1.20, on dev eth0
[14202.873573] ll header: 00000000: ff ff ff ff ff ff 00 27 22 42 e2 cb 08 00        .......'"B....
[14202.874443] IPv4: martian source 255.255.255.255 from 10.128.1.2, on dev eth0
[14202.874471] ll header: 00000000: ff ff ff ff ff ff 04 18 d6 2a 12 1b 08 00        .........*....
[14202.874652] IPv4: martian source 255.255.255.255 from 192.168.1.20, on dev eth0
[14202.874748] ll header: 00000000: ff ff ff ff ff ff 00 27 22 42 e2 cb 08 00        .......'"B....
[14202.875134] IPv4: martian source 255.255.255.255 from 192.168.1.249, on dev eth0
[14202.875139] ll header: 00000000: ff ff ff ff ff ff 00 27 22 c8 b9 fe 08 00        .......'".....
[14202.875219] IPv4: martian source 255.255.255.255 from 192.168.1.233, on dev eth0
[14202.875223] ll header: 00000000: ff ff ff ff ff ff 00 27 22 3e 3b 31 08 00        .......'">;1..
[14202.875246] IPv4: martian source 255.255.255.255 from 10.128.1.1, on dev eth0
[14202.875258] ll header: 00000000: ff ff ff ff ff ff 00 27 22 3e 3b 9f 08 00        .......'">;...
[14210.775880] net_ratelimit: 102 callbacks suppressed
[14210.775940] IPv4: martian source 10.35.0.2 from 74.125.136.147, on dev wlan0
[14210.775947] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14210.823905] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[14210.823962] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14213.934372] IPv4: martian source 10.35.0.2 from 74.125.136.147, on dev wlan0
[14213.934430] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14214.026272] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[14214.026326] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14215.202863] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.78 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=41648 PROTO=TCP SPT=443 DPT=57296 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[14217.848522] IPv4: martian source 10.35.0.2 from 74.125.136.147, on dev wlan0
[14217.848637] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14217.896381] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[14217.896502] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14220.809981] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=162 TOS=0x00 PREC=0x00 TTL=64 ID=64236 DF PROTO=TCP SPT=9502 DPT=35962 WINDOW=501 RES=0x00 ACK PSH URGP=0 
[14225.204206] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.95 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=21511 PROTO=TCP SPT=443 DPT=58273 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[14225.204515] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.95 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=21512 PROTO=TCP SPT=443 DPT=58271 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[14226.782459] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=162 TOS=0x00 PREC=0x00 TTL=64 ID=9715 DF PROTO=TCP SPT=9502 DPT=37439 WINDOW=357 RES=0x00 ACK PSH URGP=0 
[14231.993474] IPv4: martian source 10.35.0.2 from 74.125.136.147, on dev wlan0
[14231.993515] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14232.041446] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[14232.041579] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14238.396121] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=69.73.184.169 DST=193.219.181.235 LEN=75 TOS=0x00 PREC=0x00 TTL=42 ID=0 DF PROTO=UDP SPT=45927 DPT=53 LEN=55 
[14238.600708] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14238.600768] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14238.818885] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14238.818894] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14239.256947] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14239.257007] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14240.134056] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14240.134117] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14241.887528] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14241.887625] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14245.397159] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14245.397212] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14252.397995] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14252.398055] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14260.283593] IPv4: martian source 10.35.0.2 from 74.125.136.147, on dev wlan0
[14260.283654] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14260.310345] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14260.310403] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14260.331522] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[14260.331588] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14260.518543] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14260.518594] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14260.936606] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14260.936664] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14261.772767] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14261.772851] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14263.444742] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14263.444803] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14265.934327] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=162 TOS=0x00 PREC=0x00 TTL=64 ID=4749 DF PROTO=TCP SPT=9618 DPT=55558 WINDOW=501 RES=0x00 ACK PSH URGP=0 
[14266.415005] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14266.415064] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14266.789964] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14266.789983] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14273.478568] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14273.478621] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14275.140995] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=63609 DF PROTO=TCP SPT=9618 DPT=55155 WINDOW=46 RES=0x00 ACK FIN URGP=0 
[14286.855558] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14286.855624] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14292.391294] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=162 TOS=0x00 PREC=0x00 TTL=64 ID=52935 DF PROTO=TCP SPT=9502 DPT=41436 WINDOW=71 RES=0x00 ACK PSH URGP=0 
[14294.448949] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14294.448964] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14296.615595] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=162 TOS=0x00 PREC=0x00 TTL=64 ID=11780 DF PROTO=TCP SPT=9502 DPT=41127 WINDOW=62 RES=0x00 ACK PSH URGP=0 
[14313.609596] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14313.609662] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14316.863830] IPv4: martian source 10.35.0.2 from 74.125.136.147, on dev wlan0
[14316.863889] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14316.911745] IPv4: martian source 10.35.0.2 from 64.233.164.188, on dev wlan0
[14316.911799] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14339.296808] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=10.128.1.1 DST=193.219.181.235 LEN=116 TOS=0x10 PREC=0x00 TTL=63 ID=27845 DF PROTO=TCP SPT=22 DPT=48902 WINDOW=8488 RES=0x00 ACK PSH URGP=0 
[14340.818840] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=162 TOS=0x00 PREC=0x00 TTL=64 ID=64237 DF PROTO=TCP SPT=9502 DPT=35962 WINDOW=501 RES=0x00 ACK PSH URGP=0 
[14346.791323] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=162 TOS=0x00 PREC=0x00 TTL=64 ID=9716 DF PROTO=TCP SPT=9502 DPT=37439 WINDOW=357 RES=0x00 ACK PSH URGP=0 
[14350.517224] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14350.517282] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14367.117544] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14367.117620] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14385.943223] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=162 TOS=0x00 PREC=0x00 TTL=64 ID=4750 DF PROTO=TCP SPT=9618 DPT=55558 WINDOW=501 RES=0x00 ACK PSH URGP=0 
[14395.149887] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=63610 DF PROTO=TCP SPT=9618 DPT=55155 WINDOW=46 RES=0x00 ACK FIN URGP=0 
[14462.653577] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14462.653619] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14474.134375] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14474.134433] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14512.947675] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=60.173.11.197 DST=193.219.181.235 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=53723 DF PROTO=TCP SPT=6000 DPT=8585 WINDOW=5840 RES=0x00 SYN URGP=0 
[14515.159064] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=192.0.2.42 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=64 ID=63611 DF PROTO=TCP SPT=9618 DPT=55155 WINDOW=46 RES=0x00 ACK FIN URGP=0 
[14515.946864] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=60.173.11.197 DST=193.219.181.235 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=53724 DF PROTO=TCP SPT=6000 DPT=8585 WINDOW=5840 RES=0x00 SYN URGP=0 
[14521.947499] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=60.173.11.197 DST=193.219.181.235 LEN=60 TOS=0x00 PREC=0x00 TTL=64 ID=53725 DF PROTO=TCP SPT=6000 DPT=8585 WINDOW=5840 RES=0x00 SYN URGP=0 
[14582.662413] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14582.662485] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14594.143289] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14594.143334] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14702.671239] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14702.671285] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14703.861019] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[14703.861045] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14704.068304] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[14704.068357] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14704.485228] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[14704.485288] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14705.316426] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[14705.316447] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14706.980774] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[14706.980864] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14710.308826] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[14710.308878] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14714.153136] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14714.153202] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14716.965548] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[14716.965609] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14730.278314] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[14730.278377] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14756.904874] IPv4: martian source 10.35.0.2 from 77.109.171.67, on dev wlan0
[14756.904970] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14822.680166] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14822.680225] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14826.101026] firewall: block IN=eth0 OUT= MAC=f4:6d:04:85:fc:d7:00:22:19:89:0e:dd:08:00 SRC=173.194.112.73 DST=193.219.181.235 LEN=52 TOS=0x00 PREC=0x00 TTL=54 ID=21511 PROTO=TCP SPT=443 DPT=57083 WINDOW=661 RES=0x00 ACK FIN URGP=0 
[14834.160993] IPv4: martian source 10.35.0.2 from 198.252.206.25, on dev wlan0
[14834.161054] ll header: 00000000: 48 5d 60 e8 65 8f 90 e2 ba 50 2b 2c 08 00        H]`.e....P+,..
[14836.518527] jme: Disable TX engine timeout
[14836.519154] jme 0000:05:00.5 eth0: Link is down
[14942.688942] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:90:e2:ba:50:2b:2c:08:00 SRC=198.252.206.25 DST=10.35.0.2 LEN=110 TOS=0x00 PREC=0x00 TTL=63 ID=891 DF PROTO=TCP SPT=443 DPT=57578 WINDOW=67 RES=0x00 ACK PSH URGP=0 
[14954.169851] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:90:e2:ba:50:2b:2c:08:00 SRC=198.252.206.25 DST=10.35.0.2 LEN=110 TOS=0x00 PREC=0x00 TTL=63 ID=6373 DF PROTO=TCP SPT=443 DPT=57588 WINDOW=67 RES=0x00 ACK PSH URGP=0 
[15062.698900] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:90:e2:ba:50:2b:2c:08:00 SRC=198.252.206.25 DST=10.35.0.2 LEN=110 TOS=0x00 PREC=0x00 TTL=63 ID=892 DF PROTO=TCP SPT=443 DPT=57578 WINDOW=67 RES=0x00 ACK PSH URGP=0 
[15074.178660] firewall: block IN=wlan0 OUT= MAC=48:5d:60:e8:65:8f:90:e2:ba:50:2b:2c:08:00 SRC=198.252.206.25 DST=10.35.0.2 LEN=110 TOS=0x00 PREC=0x00 TTL=63 ID=6374 DF PROTO=TCP SPT=443 DPT=57588 WINDOW=67 RES=0x00 ACK PSH URGP=0 
[19133.959912] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[19134.506561] wlan0: deauthenticating from 24:a4:3c:9e:d2:84 by local choice (Reason: 3=DEAUTH_LEAVING)
[19134.516762] cfg80211: Calling CRDA to update world regulatory domain
[19134.592527] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[19134.593519] cfg80211: World regulatory domain updated:
[19134.593523] cfg80211:  DFS Master region: unset
[19134.593525] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[19134.593528] cfg80211:   (2402000 KHz - 2472000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[19134.593530] cfg80211:   (2457000 KHz - 2482000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[19134.593533] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[19134.593535] cfg80211:   (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A)
[19134.593537] cfg80211:   (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[19134.593539] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[19134.593541] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[19134.593543] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[19134.593650] cfg80211: Calling CRDA for country: LT
[19134.616297] cfg80211: Regulatory domain changed to country: LT
[19134.616301] cfg80211:  DFS Master region: ETSI
[19134.616303] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[19134.616305] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[19134.616307] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[19134.616309] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
[19134.616310] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
[19134.616312] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[19134.749644] PM: Syncing filesystems ... done.
[19135.933686] PM: Preparing system for mem sleep
[19136.262771] Freezing user space processes ... (elapsed 0.002 seconds) done.
[19136.265158] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[19136.266358] PM: Entering mem sleep
[19136.266423] Suspending console(s) (use no_console_suspend to debug)
[19136.266808] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[19136.347892] sd 0:0:0:0: [sda] Stopping disk
[19136.903116] PM: suspend of devices complete after 636.450 msecs
[19136.903611] PM: late suspend of devices complete after 0.489 msecs
[19136.904604] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
[19136.904729] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
[19136.916501] PM: noirq suspend of devices complete after 12.884 msecs
[19136.916803] ACPI: Preparing to enter system sleep state S3
[19136.918579] PM: Saving platform NVS memory
[19136.919043] Disabling non-boot CPUs ...
[19136.920520] kvm: disabling virtualization on CPU1
[19136.920731] smpboot: CPU 1 is now offline
[19136.922629] kvm: disabling virtualization on CPU2
[19137.023005] smpboot: CPU 2 is now offline
[19137.024823] kvm: disabling virtualization on CPU3
[19137.126361] smpboot: CPU 3 is now offline
[19137.127602] ACPI: Low-level resume complete
[19137.127662] PM: Restoring platform NVS memory
[19137.128159] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x4
[19137.128195] Enabling non-boot CPUs ...
[19137.128242] x86: Booting SMP configuration:
[19137.128243] smpboot: Booting Node 0 Processor 1 APIC 0x4
[19137.139436] kvm: enabling virtualization on CPU1
[19137.141837] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
[19137.142040] microcode: CPU1 updated to revision 0x4, date = 2013-06-28
[19137.142047] CPU1 is up
[19137.142068] smpboot: Booting Node 0 Processor 2 APIC 0x1
[19137.153249] kvm: enabling virtualization on CPU2
[19137.155678] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
[19137.155853] microcode: CPU2 updated to revision 0x4, date = 2013-06-28
[19137.155859] CPU2 is up
[19137.155880] smpboot: Booting Node 0 Processor 3 APIC 0x5
[19137.167051] kvm: enabling virtualization on CPU3
[19137.169503] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x4
[19137.169510] CPU3 is up
[19137.171835] ACPI: Waking up from system sleep state S3
[19137.597899] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[19137.598151] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[19137.598387] PM: noirq resume of devices complete after 12.304 msecs
[19137.598421] pciehp 0000:00:1c.1:pcie04: Card present on Slot(1)
[19137.598426] pciehp 0000:00:1c.1:pcie04: slot(1): Link Up event
[19137.598432] pciehp 0000:00:1c.1:pcie04: Link Up event ignored on slot(1): already powering on
[19137.598449] pciehp 0000:00:1c.5:pcie04: Card present on Slot(5)
[19137.598454] pciehp 0000:00:1c.5:pcie04: slot(5): Link Up event
[19137.598481] pciehp 0000:00:1c.5:pcie04: Link Up event ignored on slot(5): already powering on
[19137.598643] PM: early resume of devices complete after 0.175 msecs
[19137.598749] mei_me 0000:00:16.0: irq 47 for MSI/MSI-X
[19137.599182] sd 0:0:0:0: [sda] Starting disk
[19137.599292] snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
[19137.599624] snd_hda_intel 0000:01:00.1: irq 49 for MSI/MSI-X
[19137.608947] [drm] PCIE GART of 1024M enabled (table at 0x000000000025D000).
[19137.609062] radeon 0000:01:00.0: WB enabled
[19137.609065] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff880131310c00
[19137.609067] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff880131310c0c
[19137.609917] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x000000000005c418 and cpu addr 0xffffc90010d9c418
[19137.626456] [drm] ring test on 0 succeeded in 1 usecs
[19137.626513] [drm] ring test on 3 succeeded in 1 usecs
[19137.700966] pciehp 0000:00:1c.1:pcie04: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add
[19137.700967] pciehp 0000:00:1c.1:pcie04: Cannot add device at 0000:03:00
[19137.700979] pciehp 0000:00:1c.5:pcie04: Device 0000:05:00.0 already exists at 0000:05:00, cannot hot-add
[19137.700980] pciehp 0000:00:1c.5:pcie04: Cannot add device at 0000:05:00
[19137.804347] pciehp 0000:00:1c.5:pcie04: Device 0000:05:00.0 already exists at 0000:05:00, cannot hot-add
[19137.804349] pciehp 0000:00:1c.5:pcie04: Cannot add device at 0000:05:00
[19137.804350] pciehp 0000:00:1c.1:pcie04: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add
[19137.804352] pciehp 0000:00:1c.1:pcie04: Cannot add device at 0000:03:00
[19137.804398] rtc_cmos 00:01: System wakeup disabled by ACPI
[19137.813616] [drm] ring test on 5 succeeded in 1 usecs
[19137.813620] [drm] UVD initialized successfully.
[19137.813652] [drm] ib test on ring 0 succeeded in 0 usecs
[19137.813679] [drm] ib test on ring 3 succeeded in 0 usecs
[19137.917714] ata5: SATA link down (SStatus 0 SControl 300)
[19137.931048] ata6: SATA link down (SStatus 0 SControl 300)
[19137.937721] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[19137.939105] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[19137.939807] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[19137.942555] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[19137.943255] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[19137.943631] ata2.00: configured for UDMA/100
[19137.965167] [drm] ib test on ring 5 succeeded
[19137.965303] switching from power state:
[19137.965305] 	ui class: none
[19137.965306] 	internal class: boot 
[19137.965306] 	caps: video 
[19137.965307] 	uvd    vclk: 0 dclk: 0
[19137.965308] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[19137.965309] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[19137.965309] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[19137.965310] 	status: c b 
[19137.965310] switching to power state:
[19137.965311] 	ui class: performance
[19137.965311] 	internal class: none
[19137.965312] 	caps: single_disp video 
[19137.965312] 	uvd    vclk: 0 dclk: 0
[19137.965313] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[19137.965313] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[19137.965314] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[19137.965314] 	status: r 
[19139.487093] PM: resume of devices complete after 1888.273 msecs
[19139.487544] PM: Finishing wakeup.
[19139.487546] Restarting tasks ... done.
[19139.521193] video LNXVIDEO:00: Restoring backlight state
[19139.541695] jme 0000:05:00.5: irq 50 for MSI/MSI-X
[19139.564960] jme 0000:05:00.5 eth0: Link is down
[19139.565002] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[19139.599365] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[19140.484626] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[19140.487449] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[19140.497145] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[19140.507676] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[19140.553839] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[19140.563509] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[19140.574034] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[19140.604113] ata1.00: configured for UDMA/133
[19140.766690] wlan0: authenticate with 24:a4:3c:9e:d2:84
[19140.780341] wlan0: send auth to 24:a4:3c:9e:d2:84 (try 1/3)
[19140.781972] wlan0: authenticated
[19140.784611] wlan0: associate with 24:a4:3c:9e:d2:84 (try 1/3)
[19140.789203] wlan0: RX AssocResp from 24:a4:3c:9e:d2:84 (capab=0x431 status=0 aid=3)
[19140.789319] wlan0: associated
[19140.789352] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[25909.302363] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[25909.836633] wlan0: deauthenticating from 24:a4:3c:9e:d2:84 by local choice (Reason: 3=DEAUTH_LEAVING)
[25909.844861] cfg80211: Calling CRDA to update world regulatory domain
[25909.848209] cfg80211: World regulatory domain updated:
[25909.848214] cfg80211:  DFS Master region: unset
[25909.848216] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[25909.848219] cfg80211:   (2402000 KHz - 2472000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[25909.848222] cfg80211:   (2457000 KHz - 2482000 KHz @ 0 KHz), (N/A, 2000 mBm), (N/A)
[25909.848224] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)
[25909.848226] cfg80211:   (5170000 KHz - 5250000 KHz @ 160000 KHz), (N/A, 2000 mBm), (N/A)
[25909.848228] cfg80211:   (5250000 KHz - 5330000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[25909.848231] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)
[25909.848233] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[25909.848236] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)
[25909.848259] cfg80211: Calling CRDA for country: LT
[25909.864520] cfg80211: Regulatory domain changed to country: LT
[25909.864526] cfg80211:  DFS Master region: ETSI
[25909.864527] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[25909.864530] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
[25909.864532] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)
[25909.864534] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz), (N/A, 2000 mBm), (0 s)
[25909.864535] cfg80211:   (5490000 KHz - 5710000 KHz @ 80000 KHz), (N/A, 2700 mBm), (0 s)
[25909.864537] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm), (N/A)
[25909.937146] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[25910.062983] PM: Syncing filesystems ... done.
[25910.833656] PM: Preparing system for mem sleep
[25911.194615] Freezing user space processes ... (elapsed 0.002 seconds) done.
[25911.196727] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[25911.197906] PM: Entering mem sleep
[25911.197966] Suspending console(s) (use no_console_suspend to debug)
[25911.198476] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[25911.250558] sd 0:0:0:0: [sda] Stopping disk
[25911.778535] PM: suspend of devices complete after 580.342 msecs
[25911.779027] PM: late suspend of devices complete after 0.486 msecs
[25911.779882] ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
[25911.780161] ehci-pci 0000:00:1a.0: System wakeup enabled by ACPI
[25911.791809] PM: noirq suspend of devices complete after 12.777 msecs
[25911.792109] ACPI: Preparing to enter system sleep state S3
[25911.793713] PM: Saving platform NVS memory
[25911.794128] Disabling non-boot CPUs ...
[25911.795573] kvm: disabling virtualization on CPU1
[25911.795775] smpboot: CPU 1 is now offline
[25911.797543] kvm: disabling virtualization on CPU2
[25911.898307] smpboot: CPU 2 is now offline
[25911.900107] kvm: disabling virtualization on CPU3
[25912.001660] smpboot: CPU 3 is now offline
[25912.002947] ACPI: Low-level resume complete
[25912.003006] PM: Restoring platform NVS memory
[25912.003504] microcode: CPU0 sig=0x20655, pf=0x10, revision=0x4
[25912.003514] Enabling non-boot CPUs ...
[25912.003564] x86: Booting SMP configuration:
[25912.003565] smpboot: Booting Node 0 Processor 1 APIC 0x4
[25912.014674] kvm: enabling virtualization on CPU1
[25912.017071] microcode: CPU1 sig=0x20655, pf=0x10, revision=0x2
[25912.017272] microcode: CPU1 updated to revision 0x4, date = 2013-06-28
[25912.017277] CPU1 is up
[25912.017297] smpboot: Booting Node 0 Processor 2 APIC 0x1
[25912.028501] kvm: enabling virtualization on CPU2
[25912.030912] microcode: CPU2 sig=0x20655, pf=0x10, revision=0x2
[25912.031087] microcode: CPU2 updated to revision 0x4, date = 2013-06-28
[25912.031093] CPU2 is up
[25912.031116] smpboot: Booting Node 0 Processor 3 APIC 0x5
[25912.042287] kvm: enabling virtualization on CPU3
[25912.044734] microcode: CPU3 sig=0x20655, pf=0x10, revision=0x4
[25912.044740] CPU3 is up
[25912.047079] ACPI: Waking up from system sleep state S3
[25912.486770] ehci-pci 0000:00:1a.0: System wakeup disabled by ACPI
[25912.487019] ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
[25912.487066] PM: noirq resume of devices complete after 12.657 msecs
[25912.487101] pciehp 0000:00:1c.1:pcie04: Card present on Slot(1)
[25912.487106] pciehp 0000:00:1c.1:pcie04: slot(1): Link Up event
[25912.487116] pciehp 0000:00:1c.5:pcie04: Card present on Slot(5)
[25912.487119] pciehp 0000:00:1c.5:pcie04: slot(5): Link Up event
[25912.487126] pciehp 0000:00:1c.1:pcie04: Link Up event ignored on slot(1): already powering on
[25912.487129] pciehp 0000:00:1c.5:pcie04: Link Up event ignored on slot(5): already powering on
[25912.487249] PM: early resume of devices complete after 0.151 msecs
[25912.487338] mei_me 0000:00:16.0: irq 47 for MSI/MSI-X
[25912.487620] snd_hda_intel 0000:00:1b.0: irq 48 for MSI/MSI-X
[25912.488039] snd_hda_intel 0000:01:00.1: irq 49 for MSI/MSI-X
[25912.494316] sd 0:0:0:0: [sda] Starting disk
[25912.496295] [drm] PCIE GART of 1024M enabled (table at 0x000000000025D000).
[25912.496407] radeon 0000:01:00.0: WB enabled
[25912.496409] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000040000c00 and cpu addr 0xffff880131310c00
[25912.496411] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000040000c0c and cpu addr 0xffff880131310c0c
[25912.497152] radeon 0000:01:00.0: fence driver on ring 5 use gpu addr 0x000000000005c418 and cpu addr 0xffffc90010d9c418
[25912.513648] [drm] ring test on 0 succeeded in 1 usecs
[25912.513704] [drm] ring test on 3 succeeded in 1 usecs
[25912.589668] pciehp 0000:00:1c.1:pcie04: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add
[25912.589669] pciehp 0000:00:1c.1:pcie04: Cannot add device at 0000:03:00
[25912.589685] pciehp 0000:00:1c.5:pcie04: Device 0000:05:00.0 already exists at 0000:05:00, cannot hot-add
[25912.589687] pciehp 0000:00:1c.5:pcie04: Cannot add device at 0000:05:00
[25912.693027] pciehp 0000:00:1c.5:pcie04: Device 0000:05:00.0 already exists at 0000:05:00, cannot hot-add
[25912.693029] pciehp 0000:00:1c.5:pcie04: Cannot add device at 0000:05:00
[25912.693031] pciehp 0000:00:1c.1:pcie04: Device 0000:03:00.0 already exists at 0000:03:00, cannot hot-add
[25912.693032] pciehp 0000:00:1c.1:pcie04: Cannot add device at 0000:03:00
[25912.693081] rtc_cmos 00:01: System wakeup disabled by ACPI
[25912.700796] [drm] ring test on 5 succeeded in 1 usecs
[25912.700800] [drm] UVD initialized successfully.
[25912.700831] [drm] ib test on ring 0 succeeded in 0 usecs
[25912.700859] [drm] ib test on ring 3 succeeded in 0 usecs
[25912.812999] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[25912.814376] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[25912.815082] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[25912.817842] ata2.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[25912.818548] ata2.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[25912.818919] ata2.00: configured for UDMA/100
[25912.826379] ata6: SATA link down (SStatus 0 SControl 300)
[25912.833023] ata5: SATA link down (SStatus 0 SControl 300)
[25912.852399] [drm] ib test on ring 5 succeeded
[25912.852532] switching from power state:
[25912.852534] 	ui class: none
[25912.852536] 	internal class: boot 
[25912.852537] 	caps: video 
[25912.852539] 	uvd    vclk: 0 dclk: 0
[25912.852541] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[25912.852542] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[25912.852543] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[25912.852544] 	status: c b 
[25912.852544] switching to power state:
[25912.852545] 	ui class: performance
[25912.852547] 	internal class: none
[25912.852548] 	caps: single_disp video 
[25912.852549] 	uvd    vclk: 0 dclk: 0
[25912.852553] 		power level 0    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[25912.852554] 		power level 1    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[25912.852554] 		power level 2    sclk: 75000 mclk: 80000 vddc: 1100 vddci: 0
[25912.852555] 	status: r 
[25914.385634] PM: resume of devices complete after 1898.209 msecs
[25914.386050] PM: Finishing wakeup.
[25914.386051] Restarting tasks ... done.
[25914.410706] video LNXVIDEO:00: Restoring backlight state
[25914.437071] jme 0000:05:00.5: irq 50 for MSI/MSI-X
[25914.460259] jme 0000:05:00.5 eth0: Link is down
[25914.460351] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[25914.498179] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[25915.280009] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[25915.282828] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[25915.292556] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[25915.303103] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[25915.349280] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
[25915.358982] ata1.00: ACPI cmd ef/10:06:00:00:00:a0 (SET FEATURES) succeeded
[25915.369529] ata1.00: ACPI cmd ef/90:03:00:00:00:a0 (SET FEATURES) succeeded
[25915.399664] ata1.00: configured for UDMA/133
[25915.502728] wlan0: authenticate with 24:a4:3c:9e:d2:84
[25915.516374] wlan0: send auth to 24:a4:3c:9e:d2:84 (try 1/3)
[25915.518013] wlan0: authenticated
[25915.519942] wlan0: associate with 24:a4:3c:9e:d2:84 (try 1/3)
[25915.524554] wlan0: RX AssocResp from 24:a4:3c:9e:d2:84 (capab=0x431 status=0 aid=3)
[25915.524676] wlan0: associated
[25915.524711] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready

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

* Re: Loading initrd above 4G causes freeze on boot
  2014-08-25 11:08         ` Mantas Mikulėnas
@ 2014-08-25 12:53           ` Matt Fleming
  2014-08-25 18:22               ` Yinghai Lu
  0 siblings, 1 reply; 36+ messages in thread
From: Matt Fleming @ 2014-08-25 12:53 UTC (permalink / raw)
  To: Mantas Mikulėnas
  Cc: Harald Hoyer, Linux Kernel Mailing List, linux-efi, Yinghai Lu,
	Matt Fleming, H. Peter Anvin

On Mon, 25 Aug, at 02:08:59PM, Mantas Mikulėnas wrote:
> 
> Well, all I could find is:
> 
> > Freeing initrd memory: 5552K (ffff8800be22e000 - ffff8800be79a000)
> 
> Attaching the entire log.

Here we go,

> [    0.000000] RAMDISK: [mem 0xbe22e000-0xbe799fff]

OK, we're out of options here. Yinghai, we're going to have to revert
your patch, 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G")

We could conceivably add a boot parameter option to attempt loading
inirds above 4G, but we can't turn the feature on by default because of
all these buggy EFI implementations - things must work out of the box.

But the boot parameter would be useful for those people that a) know
their firmware isn't buggy and b) need to leave < 4G memory available
for use by other things. Yinghai, can you provide some justification for
your original commit? Do you have concrete use cases where loading
initrds above 4G is critical? How important is it that we enable this
functionality as opposed to reverting it?

It might also make sense to bump the default max initrd address
(hdr->initrd_addr_max) from 0x7fffffff to 0xffffffff at this point.
Peter, do you forsee any problem with this change?

-- 
Matt Fleming, Intel Open Source Technology Center

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-25 18:22               ` Yinghai Lu
  0 siblings, 0 replies; 36+ messages in thread
From: Yinghai Lu @ 2014-08-25 18:22 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Mantas Mikulėnas, Harald Hoyer, Linux Kernel Mailing List,
	linux-efi, Matt Fleming, H. Peter Anvin

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

On Mon, Aug 25, 2014 at 5:53 AM, Matt Fleming <matt@console-pimps.org> wrote:
> On Mon, 25 Aug, at 02:08:59PM, Mantas Mikulėnas wrote:

>> [    0.000000] RAMDISK: [mem 0xbe22e000-0xbe799fff]

that is pushed down under 4G.

>
> OK, we're out of options here. Yinghai, we're going to have to revert
> your patch, 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G")
>
> We could conceivably add a boot parameter option to attempt loading
> inirds above 4G, but we can't turn the feature on by default because of
> all these buggy EFI implementations - things must work out of the box.
>
> But the boot parameter would be useful for those people that a) know
> their firmware isn't buggy and b) need to leave < 4G memory available
> for use by other things. Yinghai, can you provide some justification for
> your original commit? Do you have concrete use cases where loading
> initrds above 4G is critical? How important is it that we enable this
> functionality as opposed to reverting it?

The use case: install RHEL full will take more than 8G in the root disk.
then make initramfs image to include every file in the disk, then boot
kernel and initramfs as diskless boot.

To use this huge initramfs image, first one is kexec, second way is using
UEFI 64bit.

So the point is the initramfs is bigger than 4G.

Please check if you can apply attached one. That will keep under 2G at first,
then try any high address.

Thanks

Yinghai

[-- Attachment #2: efi_initrd_above_4g_second_try.patch --]
[-- Type: text/x-patch, Size: 1397 bytes --]

---
 arch/x86/boot/compressed/eboot.c |   16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

Index: linux-2.6/arch/x86/boot/compressed/eboot.c
===================================================================
--- linux-2.6.orig/arch/x86/boot/compressed/eboot.c
+++ linux-2.6/arch/x86/boot/compressed/eboot.c
@@ -1032,7 +1032,6 @@ struct boot_params *make_boot_params(str
 	int i;
 	unsigned long ramdisk_addr;
 	unsigned long ramdisk_size;
-	unsigned long initrd_addr_max;
 
 	efi_early = c;
 	sys_table = (efi_system_table_t *)(unsigned long)efi_early->table;
@@ -1095,15 +1094,18 @@ struct boot_params *make_boot_params(str
 
 	memset(sdt, 0, sizeof(*sdt));
 
-	if (hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G)
-		initrd_addr_max = -1UL;
-	else
-		initrd_addr_max = hdr->initrd_addr_max;
-
 	status = handle_cmdline_files(sys_table, image,
 				      (char *)(unsigned long)hdr->cmd_line_ptr,
-				      "initrd=", initrd_addr_max,
+				      "initrd=", hdr->initrd_addr_max,
+				      &ramdisk_addr, &ramdisk_size);
+
+	if (status != EFI_SUCCESS &&
+	    hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G)
+		status = handle_cmdline_files(sys_table, image,
+				      (char *)(unsigned long)hdr->cmd_line_ptr,
+				      "initrd=", -1UL,
 				      &ramdisk_addr, &ramdisk_size);
+
 	if (status != EFI_SUCCESS)
 		goto fail2;
 	hdr->ramdisk_image = ramdisk_addr & 0xffffffff;

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

* Re: Loading initrd above 4G causes freeze on boot
@ 2014-08-25 18:22               ` Yinghai Lu
  0 siblings, 0 replies; 36+ messages in thread
From: Yinghai Lu @ 2014-08-25 18:22 UTC (permalink / raw)
  To: Matt Fleming
  Cc: Mantas Mikulėnas, Harald Hoyer, Linux Kernel Mailing List,
	linux-efi-u79uwXL29TY76Z2rM5mHXA, Matt Fleming, H. Peter Anvin

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

On Mon, Aug 25, 2014 at 5:53 AM, Matt Fleming <matt-HNK1S37rvNbeXh+fF434Mdi2O/JbrIOy@public.gmane.org> wrote:
> On Mon, 25 Aug, at 02:08:59PM, Mantas Mikulėnas wrote:

>> [    0.000000] RAMDISK: [mem 0xbe22e000-0xbe799fff]

that is pushed down under 4G.

>
> OK, we're out of options here. Yinghai, we're going to have to revert
> your patch, 4bf7111f5016 ("x86/efi: Support initrd loaded above 4G")
>
> We could conceivably add a boot parameter option to attempt loading
> inirds above 4G, but we can't turn the feature on by default because of
> all these buggy EFI implementations - things must work out of the box.
>
> But the boot parameter would be useful for those people that a) know
> their firmware isn't buggy and b) need to leave < 4G memory available
> for use by other things. Yinghai, can you provide some justification for
> your original commit? Do you have concrete use cases where loading
> initrds above 4G is critical? How important is it that we enable this
> functionality as opposed to reverting it?

The use case: install RHEL full will take more than 8G in the root disk.
then make initramfs image to include every file in the disk, then boot
kernel and initramfs as diskless boot.

To use this huge initramfs image, first one is kexec, second way is using
UEFI 64bit.

So the point is the initramfs is bigger than 4G.

Please check if you can apply attached one. That will keep under 2G at first,
then try any high address.

Thanks

Yinghai

[-- Attachment #2: efi_initrd_above_4g_second_try.patch --]
[-- Type: text/x-patch, Size: 1397 bytes --]

---
 arch/x86/boot/compressed/eboot.c |   16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

Index: linux-2.6/arch/x86/boot/compressed/eboot.c
===================================================================
--- linux-2.6.orig/arch/x86/boot/compressed/eboot.c
+++ linux-2.6/arch/x86/boot/compressed/eboot.c
@@ -1032,7 +1032,6 @@ struct boot_params *make_boot_params(str
 	int i;
 	unsigned long ramdisk_addr;
 	unsigned long ramdisk_size;
-	unsigned long initrd_addr_max;
 
 	efi_early = c;
 	sys_table = (efi_system_table_t *)(unsigned long)efi_early->table;
@@ -1095,15 +1094,18 @@ struct boot_params *make_boot_params(str
 
 	memset(sdt, 0, sizeof(*sdt));
 
-	if (hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G)
-		initrd_addr_max = -1UL;
-	else
-		initrd_addr_max = hdr->initrd_addr_max;
-
 	status = handle_cmdline_files(sys_table, image,
 				      (char *)(unsigned long)hdr->cmd_line_ptr,
-				      "initrd=", initrd_addr_max,
+				      "initrd=", hdr->initrd_addr_max,
+				      &ramdisk_addr, &ramdisk_size);
+
+	if (status != EFI_SUCCESS &&
+	    hdr->xloadflags & XLF_CAN_BE_LOADED_ABOVE_4G)
+		status = handle_cmdline_files(sys_table, image,
+				      (char *)(unsigned long)hdr->cmd_line_ptr,
+				      "initrd=", -1UL,
 				      &ramdisk_addr, &ramdisk_size);
+
 	if (status != EFI_SUCCESS)
 		goto fail2;
 	hdr->ramdisk_image = ramdisk_addr & 0xffffffff;

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

end of thread, other threads:[~2014-08-25 18:22 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-09 14:23 Loading initrd above 4G causes freeze on boot Mantas Mikulėnas
2014-08-09 14:23 ` Mantas Mikulėnas
2014-08-09 16:44 ` Yinghai Lu
2014-08-09 16:44   ` Yinghai Lu
2014-08-09 19:23   ` Matt Fleming
2014-08-09 19:23     ` Matt Fleming
2014-08-09 22:45     ` Mantas Mikulėnas
2014-08-09 22:45       ` Mantas Mikulėnas
2014-08-10  5:55       ` Yinghai Lu
2014-08-10  5:55         ` Yinghai Lu
2014-08-10 18:43         ` Mantas Mikulėnas
2014-08-10 18:43           ` Mantas Mikulėnas
2014-08-13 14:02           ` Matt Fleming
2014-08-13 16:38             ` Mantas Mikulėnas
2014-08-13 18:44               ` Matt Fleming
2014-08-20 17:05                 ` Matt Fleming
2014-08-20 17:05                   ` Matt Fleming
2014-08-20 19:05                   ` Mantas Mikulėnas
2014-08-20 19:05                     ` Mantas Mikulėnas
2014-08-20 19:53                     ` Michael Brown
2014-08-20 19:53                       ` Michael Brown
2014-08-20 20:30                       ` Matt Fleming
2014-08-20 20:30                         ` Matt Fleming
2014-08-21 20:23                         ` [edk2] " Laszlo Ersek
2014-08-21 20:23                           ` Laszlo Ersek
2014-08-22 14:24 ` Harald Hoyer
2014-08-22 14:24   ` Harald Hoyer
2014-08-22 14:43   ` Mantas Mikulėnas
2014-08-22 14:43     ` Mantas Mikulėnas
2014-08-24 19:19     ` Mantas Mikulėnas
2014-08-25 10:55       ` Matt Fleming
2014-08-25 10:55         ` Matt Fleming
2014-08-25 11:08         ` Mantas Mikulėnas
2014-08-25 12:53           ` Matt Fleming
2014-08-25 18:22             ` Yinghai Lu
2014-08-25 18:22               ` Yinghai Lu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.