linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
@ 2019-01-28 14:45 Michal Hocko
  2019-01-28 14:45 ` [PATCH 1/2] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone Michal Hocko
                   ` (3 more replies)
  0 siblings, 4 replies; 17+ messages in thread
From: Michal Hocko @ 2019-01-28 14:45 UTC (permalink / raw)
  To: Mikhail Zaslonko, Mikhail Gavrilov
  Cc: Andrew Morton, Pavel Tatashin, schwidefsky, heiko.carstens,
	gerald.schaefer, linux-mm, LKML

Hi,
Mikhail has posted fixes for the two bugs quite some time ago [1]. I
have pushed back on those fixes because I believed that it is much
better to plug the problem at the initialization time rather than play
whack-a-mole all over the hotplug code and find all the places which
expect the full memory section to be initialized. We have ended up with
2830bf6f05fb ("mm, memory_hotplug: initialize struct pages for the full
memory section") merged and cause a regression [2][3]. The reason is
that there might be memory layouts when two NUMA nodes share the same
memory section so the merged fix is simply incorrect.

In order to plug this hole we really have to be zone range aware in
those handlers. I have split up the original patch into two. One is
unchanged (patch 2) and I took a different approach for `removable'
crash. It would be great if Mikhail could test it still works for his
memory layout.

[1] http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com
[2] https://bugzilla.redhat.com/show_bug.cgi?id=1666948
[3] http://lkml.kernel.org/r/20190125163938.GA20411@dhcp22.suse.cz



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

* [PATCH 1/2] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone
  2019-01-28 14:45 [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts Michal Hocko
@ 2019-01-28 14:45 ` Michal Hocko
  2019-01-29  9:06   ` Oscar Salvador
  2019-01-28 14:45 ` [PATCH 2/2] mm, memory_hotplug: test_pages_in_a_zone do not pass the end of zone Michal Hocko
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 17+ messages in thread
From: Michal Hocko @ 2019-01-28 14:45 UTC (permalink / raw)
  To: Mikhail Zaslonko, Mikhail Gavrilov
  Cc: Andrew Morton, Pavel Tatashin, schwidefsky, heiko.carstens,
	gerald.schaefer, linux-mm, LKML, Michal Hocko

From: Michal Hocko <mhocko@suse.com>

Mikhail has reported the following VM_BUG_ON triggered when reading
sysfs removable state of a memory block:
 page:000003d082008000 is uninitialized and poisoned
 page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
 Call Trace:
 ([<0000000000385b26>] test_pages_in_a_zone+0xde/0x160)
  [<00000000008f15c4>] show_valid_zones+0x5c/0x190
  [<00000000008cf9c4>] dev_attr_show+0x34/0x70
  [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
  [<00000000003e4194>] seq_read+0x204/0x480
  [<00000000003b53ea>] __vfs_read+0x32/0x178
  [<00000000003b55b2>] vfs_read+0x82/0x138
  [<00000000003b5be2>] ksys_read+0x5a/0xb0
  [<0000000000b86ba0>] system_call+0xdc/0x2d8
 Last Breaking-Event-Address:
  [<0000000000385b26>] test_pages_in_a_zone+0xde/0x160
 Kernel panic - not syncing: Fatal exception: panic_on_oops

The reason is that the memory block spans the zone boundary and we are
stumbling over an unitialized struct page. Fix this by enforcing zone
range in is_mem_section_removable so that we never run away from a
zone.

Reported-by: Mikhail Zaslonko <zaslonko@linux.ibm.com>
Debugged-by: Mikhail Zaslonko <zaslonko@linux.ibm.com>
Signed-off-by: Michal Hocko <mhocko@suse.com>
---
 mm/memory_hotplug.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index b9a667d36c55..07872789d778 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -1233,7 +1233,8 @@ static bool is_pageblock_removable_nolock(struct page *page)
 bool is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
 {
 	struct page *page = pfn_to_page(start_pfn);
-	struct page *end_page = page + nr_pages;
+	unsigned long end_pfn = min(start_pfn + nr_pages, zone_end_pfn(page_zone(page)));
+	struct page *end_page = pfn_to_page(end_pfn);
 
 	/* Check the starting page of each pageblock within the range */
 	for (; page < end_page; page = next_active_pageblock(page)) {
-- 
2.20.1


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

* [PATCH 2/2] mm, memory_hotplug: test_pages_in_a_zone do not pass the end of zone
  2019-01-28 14:45 [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts Michal Hocko
  2019-01-28 14:45 ` [PATCH 1/2] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone Michal Hocko
@ 2019-01-28 14:45 ` Michal Hocko
  2019-01-29  9:09   ` Oscar Salvador
  2019-01-28 17:50 ` [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts Andrew Morton
  2019-01-29 13:14 ` Gerald Schaefer
  3 siblings, 1 reply; 17+ messages in thread
From: Michal Hocko @ 2019-01-28 14:45 UTC (permalink / raw)
  To: Mikhail Zaslonko, Mikhail Gavrilov
  Cc: Andrew Morton, Pavel Tatashin, schwidefsky, heiko.carstens,
	gerald.schaefer, linux-mm, LKML, Michal Hocko

From: Mikhail Zaslonko <zaslonko@linux.ibm.com>

If memory end is not aligned with the sparse memory section boundary, the
mapping of such a section is only partly initialized. This may lead to
VM_BUG_ON due to uninitialized struct pages access from test_pages_in_a_zone()
function triggered by memory_hotplug sysfs handlers.

Here are the the panic examples:
 CONFIG_DEBUG_VM_PGFLAGS=y
 kernel parameter mem=2050M
 --------------------------
 page:000003d082008000 is uninitialized and poisoned
 page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
 Call Trace:
 ([<0000000000385b26>] test_pages_in_a_zone+0xde/0x160)
  [<00000000008f15c4>] show_valid_zones+0x5c/0x190
  [<00000000008cf9c4>] dev_attr_show+0x34/0x70
  [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
  [<00000000003e4194>] seq_read+0x204/0x480
  [<00000000003b53ea>] __vfs_read+0x32/0x178
  [<00000000003b55b2>] vfs_read+0x82/0x138
  [<00000000003b5be2>] ksys_read+0x5a/0xb0
  [<0000000000b86ba0>] system_call+0xdc/0x2d8
 Last Breaking-Event-Address:
  [<0000000000385b26>] test_pages_in_a_zone+0xde/0x160
 Kernel panic - not syncing: Fatal exception: panic_on_oops

Fix this by checking whether the pfn to check is within the zone.

[mhocko@suse.com: separated this change from
http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com]
Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com>
Signed-off-by: Michal Hocko <mhocko@suse.com>
---
 mm/memory_hotplug.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
index 07872789d778..7711d0e327b6 100644
--- a/mm/memory_hotplug.c
+++ b/mm/memory_hotplug.c
@@ -1274,6 +1274,9 @@ int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn,
 				i++;
 			if (i == MAX_ORDER_NR_PAGES || pfn + i >= end_pfn)
 				continue;
+			/* Check if we got outside of the zone */
+			if (zone && !zone_spans_pfn(zone, pfn + i))
+				return 0;
 			page = pfn_to_page(pfn + i);
 			if (zone && page_zone(page) != zone)
 				return 0;
-- 
2.20.1


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

* Re: [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
  2019-01-28 14:45 [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts Michal Hocko
  2019-01-28 14:45 ` [PATCH 1/2] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone Michal Hocko
  2019-01-28 14:45 ` [PATCH 2/2] mm, memory_hotplug: test_pages_in_a_zone do not pass the end of zone Michal Hocko
@ 2019-01-28 17:50 ` Andrew Morton
  2019-01-28 18:41   ` Michal Hocko
  2019-01-29 13:14 ` Gerald Schaefer
  3 siblings, 1 reply; 17+ messages in thread
From: Andrew Morton @ 2019-01-28 17:50 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Pavel Tatashin, schwidefsky,
	heiko.carstens, gerald.schaefer, linux-mm, LKML

On Mon, 28 Jan 2019 15:45:04 +0100 Michal Hocko <mhocko@kernel.org> wrote:

> Mikhail has posted fixes for the two bugs quite some time ago [1]. I
> have pushed back on those fixes because I believed that it is much
> better to plug the problem at the initialization time rather than play
> whack-a-mole all over the hotplug code and find all the places which
> expect the full memory section to be initialized. We have ended up with
> 2830bf6f05fb ("mm, memory_hotplug: initialize struct pages for the full
> memory section") merged and cause a regression [2][3]. The reason is
> that there might be memory layouts when two NUMA nodes share the same
> memory section so the merged fix is simply incorrect.
> 
> In order to plug this hole we really have to be zone range aware in
> those handlers. I have split up the original patch into two. One is
> unchanged (patch 2) and I took a different approach for `removable'
> crash. It would be great if Mikhail could test it still works for his
> memory layout.
> 
> [1] http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com
> [2] https://bugzilla.redhat.com/show_bug.cgi?id=1666948
> [3] http://lkml.kernel.org/r/20190125163938.GA20411@dhcp22.suse.cz

Any thoughts on which kernel version(s) need these patches?

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

* Re: [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
  2019-01-28 17:50 ` [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts Andrew Morton
@ 2019-01-28 18:41   ` Michal Hocko
  2019-01-28 18:45     ` Michal Hocko
  0 siblings, 1 reply; 17+ messages in thread
From: Michal Hocko @ 2019-01-28 18:41 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Pavel Tatashin, schwidefsky,
	heiko.carstens, gerald.schaefer, linux-mm, LKML

On Mon 28-01-19 09:50:54, Andrew Morton wrote:
> On Mon, 28 Jan 2019 15:45:04 +0100 Michal Hocko <mhocko@kernel.org> wrote:
> 
> > Mikhail has posted fixes for the two bugs quite some time ago [1]. I
> > have pushed back on those fixes because I believed that it is much
> > better to plug the problem at the initialization time rather than play
> > whack-a-mole all over the hotplug code and find all the places which
> > expect the full memory section to be initialized. We have ended up with
> > 2830bf6f05fb ("mm, memory_hotplug: initialize struct pages for the full
> > memory section") merged and cause a regression [2][3]. The reason is
> > that there might be memory layouts when two NUMA nodes share the same
> > memory section so the merged fix is simply incorrect.
> > 
> > In order to plug this hole we really have to be zone range aware in
> > those handlers. I have split up the original patch into two. One is
> > unchanged (patch 2) and I took a different approach for `removable'
> > crash. It would be great if Mikhail could test it still works for his
> > memory layout.
> > 
> > [1] http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com
> > [2] https://bugzilla.redhat.com/show_bug.cgi?id=1666948
> > [3] http://lkml.kernel.org/r/20190125163938.GA20411@dhcp22.suse.cz
> 
> Any thoughts on which kernel version(s) need these patches?

My remark in 2830bf6f05fb still holds
    : This has alwways been problem AFAIU.  It just went unnoticed because we
    : have zeroed memmaps during allocation before f7f99100d8d9 ("mm: stop
    : zeroing memory during allocation in vmemmap") and so the above test
    : would simply skip these ranges as belonging to zone 0 or provided a
    : garbage.
    :
    : So I guess we do care for post f7f99100d8d9 kernels mostly and
    : therefore Fixes: f7f99100d8d9 ("mm: stop zeroing memory during
    : allocation in vmemmap")

But, please let's wait for the patch 1 to be confirmed to fix the issue.
-- 
Michal Hocko
SUSE Labs

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

* Re: [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
  2019-01-28 18:41   ` Michal Hocko
@ 2019-01-28 18:45     ` Michal Hocko
  0 siblings, 0 replies; 17+ messages in thread
From: Michal Hocko @ 2019-01-28 18:45 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Pavel Tatashin, schwidefsky,
	heiko.carstens, gerald.schaefer, linux-mm, LKML

On Mon 28-01-19 19:41:39, Michal Hocko wrote:
> On Mon 28-01-19 09:50:54, Andrew Morton wrote:
> > On Mon, 28 Jan 2019 15:45:04 +0100 Michal Hocko <mhocko@kernel.org> wrote:
> > 
> > > Mikhail has posted fixes for the two bugs quite some time ago [1]. I
> > > have pushed back on those fixes because I believed that it is much
> > > better to plug the problem at the initialization time rather than play
> > > whack-a-mole all over the hotplug code and find all the places which
> > > expect the full memory section to be initialized. We have ended up with
> > > 2830bf6f05fb ("mm, memory_hotplug: initialize struct pages for the full
> > > memory section") merged and cause a regression [2][3]. The reason is
> > > that there might be memory layouts when two NUMA nodes share the same
> > > memory section so the merged fix is simply incorrect.
> > > 
> > > In order to plug this hole we really have to be zone range aware in
> > > those handlers. I have split up the original patch into two. One is
> > > unchanged (patch 2) and I took a different approach for `removable'
> > > crash. It would be great if Mikhail could test it still works for his
> > > memory layout.
> > > 
> > > [1] http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com
> > > [2] https://bugzilla.redhat.com/show_bug.cgi?id=1666948
> > > [3] http://lkml.kernel.org/r/20190125163938.GA20411@dhcp22.suse.cz
> > 
> > Any thoughts on which kernel version(s) need these patches?
> 
> My remark in 2830bf6f05fb still holds
>     : This has alwways been problem AFAIU.  It just went unnoticed because we
>     : have zeroed memmaps during allocation before f7f99100d8d9 ("mm: stop
>     : zeroing memory during allocation in vmemmap") and so the above test
>     : would simply skip these ranges as belonging to zone 0 or provided a
>     : garbage.
>     :
>     : So I guess we do care for post f7f99100d8d9 kernels mostly and
>     : therefore Fixes: f7f99100d8d9 ("mm: stop zeroing memory during
>     : allocation in vmemmap")
> 
> But, please let's wait for the patch 1 to be confirmed to fix the issue.

Also the revert [1] should be applied first. I thought Linus would pick
it up but he hasn't done so yet.

[1] http://lkml.kernel.org/r/20190125181549.GE20411@dhcp22.suse.cz
-- 
Michal Hocko
SUSE Labs

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

* Re: [PATCH 1/2] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone
  2019-01-28 14:45 ` [PATCH 1/2] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone Michal Hocko
@ 2019-01-29  9:06   ` Oscar Salvador
  2019-01-29  9:12     ` Michal Hocko
  0 siblings, 1 reply; 17+ messages in thread
From: Oscar Salvador @ 2019-01-29  9:06 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Andrew Morton,
	Pavel Tatashin, schwidefsky, heiko.carstens, gerald.schaefer,
	linux-mm, LKML, Michal Hocko

On Mon, Jan 28, 2019 at 03:45:05PM +0100, Michal Hocko wrote:
> From: Michal Hocko <mhocko@suse.com>
> 
> Mikhail has reported the following VM_BUG_ON triggered when reading
> sysfs removable state of a memory block:
>  page:000003d082008000 is uninitialized and poisoned
>  page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
>  Call Trace:
>  ([<0000000000385b26>] test_pages_in_a_zone+0xde/0x160)
>   [<00000000008f15c4>] show_valid_zones+0x5c/0x190
>   [<00000000008cf9c4>] dev_attr_show+0x34/0x70
>   [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
>   [<00000000003e4194>] seq_read+0x204/0x480
>   [<00000000003b53ea>] __vfs_read+0x32/0x178
>   [<00000000003b55b2>] vfs_read+0x82/0x138
>   [<00000000003b5be2>] ksys_read+0x5a/0xb0
>   [<0000000000b86ba0>] system_call+0xdc/0x2d8
>  Last Breaking-Event-Address:
>   [<0000000000385b26>] test_pages_in_a_zone+0xde/0x160
>  Kernel panic - not syncing: Fatal exception: panic_on_oops
> 
> The reason is that the memory block spans the zone boundary and we are
> stumbling over an unitialized struct page. Fix this by enforcing zone
> range in is_mem_section_removable so that we never run away from a
> zone.

Does that mean that the remaining pages(escaping from the current zone) are not tied to
any other zone? Why? Are these pages "holes" or how that came to be?

> 
> Reported-by: Mikhail Zaslonko <zaslonko@linux.ibm.com>
> Debugged-by: Mikhail Zaslonko <zaslonko@linux.ibm.com>
> Signed-off-by: Michal Hocko <mhocko@suse.com>
> ---
>  mm/memory_hotplug.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index b9a667d36c55..07872789d778 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -1233,7 +1233,8 @@ static bool is_pageblock_removable_nolock(struct page *page)
>  bool is_mem_section_removable(unsigned long start_pfn, unsigned long nr_pages)
>  {
>  	struct page *page = pfn_to_page(start_pfn);
> -	struct page *end_page = page + nr_pages;
> +	unsigned long end_pfn = min(start_pfn + nr_pages, zone_end_pfn(page_zone(page)));
> +	struct page *end_page = pfn_to_page(end_pfn);
>  
>  	/* Check the starting page of each pageblock within the range */
>  	for (; page < end_page; page = next_active_pageblock(page)) {
> -- 
> 2.20.1
> 

-- 
Oscar Salvador
SUSE L3

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

* Re: [PATCH 2/2] mm, memory_hotplug: test_pages_in_a_zone do not pass the end of zone
  2019-01-28 14:45 ` [PATCH 2/2] mm, memory_hotplug: test_pages_in_a_zone do not pass the end of zone Michal Hocko
@ 2019-01-29  9:09   ` Oscar Salvador
  2019-01-29  9:13     ` Michal Hocko
  0 siblings, 1 reply; 17+ messages in thread
From: Oscar Salvador @ 2019-01-29  9:09 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Andrew Morton,
	Pavel Tatashin, schwidefsky, heiko.carstens, gerald.schaefer,
	linux-mm, LKML, Michal Hocko

On Mon, Jan 28, 2019 at 03:45:06PM +0100, Michal Hocko wrote:
> From: Mikhail Zaslonko <zaslonko@linux.ibm.com>
> 
> If memory end is not aligned with the sparse memory section boundary, the
> mapping of such a section is only partly initialized. This may lead to
> VM_BUG_ON due to uninitialized struct pages access from test_pages_in_a_zone()
> function triggered by memory_hotplug sysfs handlers.
> 
> Here are the the panic examples:
>  CONFIG_DEBUG_VM_PGFLAGS=y
>  kernel parameter mem=2050M
>  --------------------------
>  page:000003d082008000 is uninitialized and poisoned
>  page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
>  Call Trace:
>  ([<0000000000385b26>] test_pages_in_a_zone+0xde/0x160)
>   [<00000000008f15c4>] show_valid_zones+0x5c/0x190
>   [<00000000008cf9c4>] dev_attr_show+0x34/0x70
>   [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
>   [<00000000003e4194>] seq_read+0x204/0x480
>   [<00000000003b53ea>] __vfs_read+0x32/0x178
>   [<00000000003b55b2>] vfs_read+0x82/0x138
>   [<00000000003b5be2>] ksys_read+0x5a/0xb0
>   [<0000000000b86ba0>] system_call+0xdc/0x2d8
>  Last Breaking-Event-Address:
>   [<0000000000385b26>] test_pages_in_a_zone+0xde/0x160
>  Kernel panic - not syncing: Fatal exception: panic_on_oops
> 
> Fix this by checking whether the pfn to check is within the zone.
> 
> [mhocko@suse.com: separated this change from
> http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com]
> Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com>
> Signed-off-by: Michal Hocko <mhocko@suse.com>

Looks good to me:

Reviewed-by: Oscar Salvador <osalvador@suse.de>

> ---
>  mm/memory_hotplug.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> index 07872789d778..7711d0e327b6 100644
> --- a/mm/memory_hotplug.c
> +++ b/mm/memory_hotplug.c
> @@ -1274,6 +1274,9 @@ int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn,
>  				i++;
>  			if (i == MAX_ORDER_NR_PAGES || pfn + i >= end_pfn)
>  				continue;
> +			/* Check if we got outside of the zone */
> +			if (zone && !zone_spans_pfn(zone, pfn + i))
> +				return 0;
>  			page = pfn_to_page(pfn + i);

Since we are already checking if the zone spans that pfn, is it safe to get
rid of the below check? Or maybe not because we might have intersected zones?

>  			if (zone && page_zone(page) != zone)
>  				return 0;

-- 
Oscar Salvador
SUSE L3

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

* Re: [PATCH 1/2] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone
  2019-01-29  9:06   ` Oscar Salvador
@ 2019-01-29  9:12     ` Michal Hocko
  2019-01-30  7:54       ` Oscar Salvador
  0 siblings, 1 reply; 17+ messages in thread
From: Michal Hocko @ 2019-01-29  9:12 UTC (permalink / raw)
  To: Oscar Salvador
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Andrew Morton,
	Pavel Tatashin, schwidefsky, heiko.carstens, gerald.schaefer,
	linux-mm, LKML

On Tue 29-01-19 10:06:05, Oscar Salvador wrote:
> On Mon, Jan 28, 2019 at 03:45:05PM +0100, Michal Hocko wrote:
> > From: Michal Hocko <mhocko@suse.com>
> > 
> > Mikhail has reported the following VM_BUG_ON triggered when reading
> > sysfs removable state of a memory block:
> >  page:000003d082008000 is uninitialized and poisoned
> >  page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
> >  Call Trace:
> >  ([<0000000000385b26>] test_pages_in_a_zone+0xde/0x160)
> >   [<00000000008f15c4>] show_valid_zones+0x5c/0x190
> >   [<00000000008cf9c4>] dev_attr_show+0x34/0x70
> >   [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
> >   [<00000000003e4194>] seq_read+0x204/0x480
> >   [<00000000003b53ea>] __vfs_read+0x32/0x178
> >   [<00000000003b55b2>] vfs_read+0x82/0x138
> >   [<00000000003b5be2>] ksys_read+0x5a/0xb0
> >   [<0000000000b86ba0>] system_call+0xdc/0x2d8
> >  Last Breaking-Event-Address:
> >   [<0000000000385b26>] test_pages_in_a_zone+0xde/0x160
> >  Kernel panic - not syncing: Fatal exception: panic_on_oops
> > 
> > The reason is that the memory block spans the zone boundary and we are
> > stumbling over an unitialized struct page. Fix this by enforcing zone
> > range in is_mem_section_removable so that we never run away from a
> > zone.
> 
> Does that mean that the remaining pages(escaping from the current zone) are not tied to
> any other zone? Why? Are these pages "holes" or how that came to be?

Yes, those pages should be unreachable because they are out of the zone.
Reasons might be various. The memory range is not mem section aligned,
or cut due to mem parameter etc.

-- 
Michal Hocko
SUSE Labs

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

* Re: [PATCH 2/2] mm, memory_hotplug: test_pages_in_a_zone do not pass the end of zone
  2019-01-29  9:09   ` Oscar Salvador
@ 2019-01-29  9:13     ` Michal Hocko
  0 siblings, 0 replies; 17+ messages in thread
From: Michal Hocko @ 2019-01-29  9:13 UTC (permalink / raw)
  To: Oscar Salvador
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Andrew Morton,
	Pavel Tatashin, schwidefsky, heiko.carstens, gerald.schaefer,
	linux-mm, LKML

On Tue 29-01-19 10:09:08, Oscar Salvador wrote:
> On Mon, Jan 28, 2019 at 03:45:06PM +0100, Michal Hocko wrote:
> > From: Mikhail Zaslonko <zaslonko@linux.ibm.com>
> > 
> > If memory end is not aligned with the sparse memory section boundary, the
> > mapping of such a section is only partly initialized. This may lead to
> > VM_BUG_ON due to uninitialized struct pages access from test_pages_in_a_zone()
> > function triggered by memory_hotplug sysfs handlers.
> > 
> > Here are the the panic examples:
> >  CONFIG_DEBUG_VM_PGFLAGS=y
> >  kernel parameter mem=2050M
> >  --------------------------
> >  page:000003d082008000 is uninitialized and poisoned
> >  page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
> >  Call Trace:
> >  ([<0000000000385b26>] test_pages_in_a_zone+0xde/0x160)
> >   [<00000000008f15c4>] show_valid_zones+0x5c/0x190
> >   [<00000000008cf9c4>] dev_attr_show+0x34/0x70
> >   [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
> >   [<00000000003e4194>] seq_read+0x204/0x480
> >   [<00000000003b53ea>] __vfs_read+0x32/0x178
> >   [<00000000003b55b2>] vfs_read+0x82/0x138
> >   [<00000000003b5be2>] ksys_read+0x5a/0xb0
> >   [<0000000000b86ba0>] system_call+0xdc/0x2d8
> >  Last Breaking-Event-Address:
> >   [<0000000000385b26>] test_pages_in_a_zone+0xde/0x160
> >  Kernel panic - not syncing: Fatal exception: panic_on_oops
> > 
> > Fix this by checking whether the pfn to check is within the zone.
> > 
> > [mhocko@suse.com: separated this change from
> > http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com]
> > Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com>
> > Signed-off-by: Michal Hocko <mhocko@suse.com>
> 
> Looks good to me:
> 
> Reviewed-by: Oscar Salvador <osalvador@suse.de>
> 
> > ---
> >  mm/memory_hotplug.c | 3 +++
> >  1 file changed, 3 insertions(+)
> > 
> > diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c
> > index 07872789d778..7711d0e327b6 100644
> > --- a/mm/memory_hotplug.c
> > +++ b/mm/memory_hotplug.c
> > @@ -1274,6 +1274,9 @@ int test_pages_in_a_zone(unsigned long start_pfn, unsigned long end_pfn,
> >  				i++;
> >  			if (i == MAX_ORDER_NR_PAGES || pfn + i >= end_pfn)
> >  				continue;
> > +			/* Check if we got outside of the zone */
> > +			if (zone && !zone_spans_pfn(zone, pfn + i))
> > +				return 0;
> >  			page = pfn_to_page(pfn + i);
> 
> Since we are already checking if the zone spans that pfn, is it safe to get
> rid of the below check? Or maybe not because we might have intersected zones?

Exactly. The new zone might start at the next pfn. Look for the cover
leter for such an example.
 
> >  			if (zone && page_zone(page) != zone)
> >  				return 0;
> 
> -- 
> Oscar Salvador
> SUSE L3

-- 
Michal Hocko
SUSE Labs

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

* Re: [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
  2019-01-28 14:45 [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts Michal Hocko
                   ` (2 preceding siblings ...)
  2019-01-28 17:50 ` [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts Andrew Morton
@ 2019-01-29 13:14 ` Gerald Schaefer
  2019-01-29 13:49   ` Michal Hocko
  3 siblings, 1 reply; 17+ messages in thread
From: Gerald Schaefer @ 2019-01-29 13:14 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Andrew Morton,
	Pavel Tatashin, schwidefsky, heiko.carstens, linux-mm, LKML

On Mon, 28 Jan 2019 15:45:04 +0100
Michal Hocko <mhocko@kernel.org> wrote:

> Hi,
> Mikhail has posted fixes for the two bugs quite some time ago [1]. I
> have pushed back on those fixes because I believed that it is much
> better to plug the problem at the initialization time rather than play
> whack-a-mole all over the hotplug code and find all the places which
> expect the full memory section to be initialized. We have ended up with
> 2830bf6f05fb ("mm, memory_hotplug: initialize struct pages for the full
> memory section") merged and cause a regression [2][3]. The reason is
> that there might be memory layouts when two NUMA nodes share the same
> memory section so the merged fix is simply incorrect.
> 
> In order to plug this hole we really have to be zone range aware in
> those handlers. I have split up the original patch into two. One is
> unchanged (patch 2) and I took a different approach for `removable'
> crash. It would be great if Mikhail could test it still works for his
> memory layout.
> 
> [1] http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com
> [2] https://bugzilla.redhat.com/show_bug.cgi?id=1666948
> [3] http://lkml.kernel.org/r/20190125163938.GA20411@dhcp22.suse.cz

I verified that both patches fix the issues we had with valid_zones
(with mem=2050M) and removable (with mem=3075M).

However, the call trace in the description of your patch 1 is wrong.
You basically have the same call trace for test_pages_in_a_zone in
both patches. The "removable" patch should have the call trace for
is_mem_section_removable from Mikhails original patches:

 CONFIG_DEBUG_VM_PGFLAGS=y
 kernel parameter mem=3075M
 --------------------------
 page:000003d08300c000 is uninitialized and poisoned
 page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
 Call Trace:
 ([<000000000038596c>] is_mem_section_removable+0xb4/0x190)
  [<00000000008f12fa>] show_mem_removable+0x9a/0xd8
  [<00000000008cf9c4>] dev_attr_show+0x34/0x70
  [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
  [<00000000003e4194>] seq_read+0x204/0x480
  [<00000000003b53ea>] __vfs_read+0x32/0x178
  [<00000000003b55b2>] vfs_read+0x82/0x138
  [<00000000003b5be2>] ksys_read+0x5a/0xb0
  [<0000000000b86ba0>] system_call+0xdc/0x2d8
 Last Breaking-Event-Address:
  [<000000000038596c>] is_mem_section_removable+0xb4/0x190
 Kernel panic - not syncing: Fatal exception: panic_on_oops


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

* Re: [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
  2019-01-29 13:14 ` Gerald Schaefer
@ 2019-01-29 13:49   ` Michal Hocko
  2019-01-29 14:08     ` Gerald Schaefer
  2019-01-29 17:38     ` Mikhail Gavrilov
  0 siblings, 2 replies; 17+ messages in thread
From: Michal Hocko @ 2019-01-29 13:49 UTC (permalink / raw)
  To: Gerald Schaefer
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Andrew Morton,
	Pavel Tatashin, schwidefsky, heiko.carstens, linux-mm, LKML

On Tue 29-01-19 14:14:47, Gerald Schaefer wrote:
> On Mon, 28 Jan 2019 15:45:04 +0100
> Michal Hocko <mhocko@kernel.org> wrote:
> 
> > Hi,
> > Mikhail has posted fixes for the two bugs quite some time ago [1]. I
> > have pushed back on those fixes because I believed that it is much
> > better to plug the problem at the initialization time rather than play
> > whack-a-mole all over the hotplug code and find all the places which
> > expect the full memory section to be initialized. We have ended up with
> > 2830bf6f05fb ("mm, memory_hotplug: initialize struct pages for the full
> > memory section") merged and cause a regression [2][3]. The reason is
> > that there might be memory layouts when two NUMA nodes share the same
> > memory section so the merged fix is simply incorrect.
> > 
> > In order to plug this hole we really have to be zone range aware in
> > those handlers. I have split up the original patch into two. One is
> > unchanged (patch 2) and I took a different approach for `removable'
> > crash. It would be great if Mikhail could test it still works for his
> > memory layout.
> > 
> > [1] http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com
> > [2] https://bugzilla.redhat.com/show_bug.cgi?id=1666948
> > [3] http://lkml.kernel.org/r/20190125163938.GA20411@dhcp22.suse.cz
> 
> I verified that both patches fix the issues we had with valid_zones
> (with mem=2050M) and removable (with mem=3075M).
> 
> However, the call trace in the description of your patch 1 is wrong.
> You basically have the same call trace for test_pages_in_a_zone in
> both patches. The "removable" patch should have the call trace for
> is_mem_section_removable from Mikhails original patches:

Thanks for testing. Can I use you Tested-by?

>  CONFIG_DEBUG_VM_PGFLAGS=y
>  kernel parameter mem=3075M
>  --------------------------
>  page:000003d08300c000 is uninitialized and poisoned
>  page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
>  Call Trace:
>  ([<000000000038596c>] is_mem_section_removable+0xb4/0x190)
>   [<00000000008f12fa>] show_mem_removable+0x9a/0xd8
>   [<00000000008cf9c4>] dev_attr_show+0x34/0x70
>   [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
>   [<00000000003e4194>] seq_read+0x204/0x480
>   [<00000000003b53ea>] __vfs_read+0x32/0x178
>   [<00000000003b55b2>] vfs_read+0x82/0x138
>   [<00000000003b5be2>] ksys_read+0x5a/0xb0
>   [<0000000000b86ba0>] system_call+0xdc/0x2d8
>  Last Breaking-Event-Address:
>   [<000000000038596c>] is_mem_section_removable+0xb4/0x190
>  Kernel panic - not syncing: Fatal exception: panic_on_oops

Yeah, this is c&p mistake on my end. I will use this trace instead.
Thanks for spotting.
-- 
Michal Hocko
SUSE Labs

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

* Re: [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
  2019-01-29 13:49   ` Michal Hocko
@ 2019-01-29 14:08     ` Gerald Schaefer
  2019-01-29 17:38     ` Mikhail Gavrilov
  1 sibling, 0 replies; 17+ messages in thread
From: Gerald Schaefer @ 2019-01-29 14:08 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Andrew Morton,
	Pavel Tatashin, schwidefsky, heiko.carstens, linux-mm, LKML

On Tue, 29 Jan 2019 14:49:20 +0100
Michal Hocko <mhocko@kernel.org> wrote:

> On Tue 29-01-19 14:14:47, Gerald Schaefer wrote:
> > On Mon, 28 Jan 2019 15:45:04 +0100
> > Michal Hocko <mhocko@kernel.org> wrote:
> > 
> > > Hi,
> > > Mikhail has posted fixes for the two bugs quite some time ago [1]. I
> > > have pushed back on those fixes because I believed that it is much
> > > better to plug the problem at the initialization time rather than play
> > > whack-a-mole all over the hotplug code and find all the places which
> > > expect the full memory section to be initialized. We have ended up with
> > > 2830bf6f05fb ("mm, memory_hotplug: initialize struct pages for the full
> > > memory section") merged and cause a regression [2][3]. The reason is
> > > that there might be memory layouts when two NUMA nodes share the same
> > > memory section so the merged fix is simply incorrect.
> > > 
> > > In order to plug this hole we really have to be zone range aware in
> > > those handlers. I have split up the original patch into two. One is
> > > unchanged (patch 2) and I took a different approach for `removable'
> > > crash. It would be great if Mikhail could test it still works for his
> > > memory layout.
> > > 
> > > [1] http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com
> > > [2] https://bugzilla.redhat.com/show_bug.cgi?id=1666948
> > > [3] http://lkml.kernel.org/r/20190125163938.GA20411@dhcp22.suse.cz
> > 
> > I verified that both patches fix the issues we had with valid_zones
> > (with mem=2050M) and removable (with mem=3075M).
> > 
> > However, the call trace in the description of your patch 1 is wrong.
> > You basically have the same call trace for test_pages_in_a_zone in
> > both patches. The "removable" patch should have the call trace for
> > is_mem_section_removable from Mikhails original patches:
> 
> Thanks for testing. Can I use you Tested-by?

Sure, forgot to add this:
Tested-by: Gerald Schaefer <gerald.schaefer@de.ibm.com>

> 
> >  CONFIG_DEBUG_VM_PGFLAGS=y
> >  kernel parameter mem=3075M
> >  --------------------------
> >  page:000003d08300c000 is uninitialized and poisoned
> >  page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
> >  Call Trace:
> >  ([<000000000038596c>] is_mem_section_removable+0xb4/0x190)
> >   [<00000000008f12fa>] show_mem_removable+0x9a/0xd8
> >   [<00000000008cf9c4>] dev_attr_show+0x34/0x70
> >   [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
> >   [<00000000003e4194>] seq_read+0x204/0x480
> >   [<00000000003b53ea>] __vfs_read+0x32/0x178
> >   [<00000000003b55b2>] vfs_read+0x82/0x138
> >   [<00000000003b5be2>] ksys_read+0x5a/0xb0
> >   [<0000000000b86ba0>] system_call+0xdc/0x2d8
> >  Last Breaking-Event-Address:
> >   [<000000000038596c>] is_mem_section_removable+0xb4/0x190
> >  Kernel panic - not syncing: Fatal exception: panic_on_oops
> 
> Yeah, this is c&p mistake on my end. I will use this trace instead.
> Thanks for spotting.


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

* Re: [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
  2019-01-29 13:49   ` Michal Hocko
  2019-01-29 14:08     ` Gerald Schaefer
@ 2019-01-29 17:38     ` Mikhail Gavrilov
  2019-01-29 20:24       ` Michal Hocko
  1 sibling, 1 reply; 17+ messages in thread
From: Mikhail Gavrilov @ 2019-01-29 17:38 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Gerald Schaefer, Mikhail Zaslonko, Andrew Morton, Pavel Tatashin,
	schwidefsky, heiko.carstens, linux-mm, LKML

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

On Tue, 29 Jan 2019 at 18:49, Michal Hocko <mhocko@kernel.org> wrote:
>
> On Tue 29-01-19 14:14:47, Gerald Schaefer wrote:
> > On Mon, 28 Jan 2019 15:45:04 +0100
> > Michal Hocko <mhocko@kernel.org> wrote:
> >
> > > Hi,
> > > Mikhail has posted fixes for the two bugs quite some time ago [1]. I
> > > have pushed back on those fixes because I believed that it is much
> > > better to plug the problem at the initialization time rather than play
> > > whack-a-mole all over the hotplug code and find all the places which
> > > expect the full memory section to be initialized. We have ended up with
> > > 2830bf6f05fb ("mm, memory_hotplug: initialize struct pages for the full
> > > memory section") merged and cause a regression [2][3]. The reason is
> > > that there might be memory layouts when two NUMA nodes share the same
> > > memory section so the merged fix is simply incorrect.
> > >
> > > In order to plug this hole we really have to be zone range aware in
> > > those handlers. I have split up the original patch into two. One is
> > > unchanged (patch 2) and I took a different approach for `removable'
> > > crash. It would be great if Mikhail could test it still works for his
> > > memory layout.
> > >
> > > [1] http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com
> > > [2] https://bugzilla.redhat.com/show_bug.cgi?id=1666948
> > > [3] http://lkml.kernel.org/r/20190125163938.GA20411@dhcp22.suse.cz
> >
> > I verified that both patches fix the issues we had with valid_zones
> > (with mem=2050M) and removable (with mem=3075M).
> >
> > However, the call trace in the description of your patch 1 is wrong.
> > You basically have the same call trace for test_pages_in_a_zone in
> > both patches. The "removable" patch should have the call trace for
> > is_mem_section_removable from Mikhails original patches:
>
> Thanks for testing. Can I use you Tested-by?
>
> >  CONFIG_DEBUG_VM_PGFLAGS=y
> >  kernel parameter mem=3075M
> >  --------------------------
> >  page:000003d08300c000 is uninitialized and poisoned
> >  page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
> >  Call Trace:
> >  ([<000000000038596c>] is_mem_section_removable+0xb4/0x190)
> >   [<00000000008f12fa>] show_mem_removable+0x9a/0xd8
> >   [<00000000008cf9c4>] dev_attr_show+0x34/0x70
> >   [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
> >   [<00000000003e4194>] seq_read+0x204/0x480
> >   [<00000000003b53ea>] __vfs_read+0x32/0x178
> >   [<00000000003b55b2>] vfs_read+0x82/0x138
> >   [<00000000003b5be2>] ksys_read+0x5a/0xb0
> >   [<0000000000b86ba0>] system_call+0xdc/0x2d8
> >  Last Breaking-Event-Address:
> >   [<000000000038596c>] is_mem_section_removable+0xb4/0x190
> >  Kernel panic - not syncing: Fatal exception: panic_on_oops
>
> Yeah, this is c&p mistake on my end. I will use this trace instead.
> Thanks for spotting.


Michal, I am late?
I am also tested these patches and can confirm that issue fixed again
with new approach.
I also attach two dmesg first when issue was reproduced and second
with applied patch (problem not reproduced).

--
Best Regards,
Mike Gavrilov.

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: dmesg_git_4aa9fc2a435a_with_bug.txt --]
[-- Type: text/plain; charset="US-ASCII"; name="dmesg_git_4aa9fc2a435a_with_bug.txt", Size: 139016 bytes --]

[    0.000000] Linux version 5.0.0-0.rc4.git1.1.fc30.x86_64 (mockbuild@5f1a291535a3468ca479d9d87f6d385f) (gcc version 9.0.0 20190119 (Red Hat 9.0.0-0.3) (GCC)) #1 SMP Tue Jan 29 20:10:02 +05 2019
[    0.000000] Command line: BOOT_IMAGE=(hd1,gpt2)/boot/vmlinuz-5.0.0-0.rc4.git1.1.fc30.x86_64 root=UUID=7788c3ba-4ec6-45c8-875b-4a6900af0621 ro resume=UUID=8ae7c2bb-85ca-44f9-b884-b114e058d538 rhgb mem_encrypt=off scsi_mod.use_blk_mq=1 log_buf_len=4M sysrq_always_enabled=1 nmi_watchdog=1
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a209fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20a000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x00000000da043fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000da044000-0x00000000db540fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000db541000-0x00000000db568fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000db569000-0x00000000dba19fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000dba1a000-0x00000000dc591fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dc592000-0x00000000deffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd100000-0x00000000fdffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0xccb06018-0xccb17057] usable ==> usable
[    0.000000] e820: update [mem 0xccb06018-0xccb17057] usable ==> usable
[    0.000000] e820: update [mem 0xccaec018-0xccb05457] usable ==> usable
[    0.000000] e820: update [mem 0xccaec018-0xccb05457] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a209fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000a20a000-0x000000000affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000b020000-0x00000000ccaec017] usable
[    0.000000] reserve setup_data: [mem 0x00000000ccaec018-0x00000000ccb05457] usable
[    0.000000] reserve setup_data: [mem 0x00000000ccb05458-0x00000000ccb06017] usable
[    0.000000] reserve setup_data: [mem 0x00000000ccb06018-0x00000000ccb17057] usable
[    0.000000] reserve setup_data: [mem 0x00000000ccb17058-0x00000000da043fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000da044000-0x00000000db540fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000db541000-0x00000000db568fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000db569000-0x00000000dba19fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000dba1a000-0x00000000dc591fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000dc592000-0x00000000deffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd100000-0x00000000fdffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] efi: EFI v2.60 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xdb549000  ACPI=0xdb549000  SMBIOS=0xdc455000  SMBIOS 3.0=0xdc454000  ESRT=0xd6679c18  MEMATTR=0xd7578018 
[    0.000000] secureboot: Secure boot disabled
[    0.000000] SMBIOS 3.1.1 present.
[    0.000000] DMI: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 1103 11/16/2018
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x81f380 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 write-through
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000820000000 aka 33280M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000000] last_pfn = 0xdf000 max_arch_pfn = 0x400000000
[    0.000000] esrt: Reserving ESRT space from 0x00000000d6679c18 to 0x00000000d6679c50.
[    0.000000] check: Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [(____ptrval____)] 96000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x54e401000, 0x54e401fff] PGTABLE
[    0.000000] BRK [0x54e402000, 0x54e402fff] PGTABLE
[    0.000000] BRK [0x54e403000, 0x54e403fff] PGTABLE
[    0.000000] BRK [0x54e404000, 0x54e404fff] PGTABLE
[    0.000000] BRK [0x54e405000, 0x54e405fff] PGTABLE
[    0.000000] BRK [0x54e406000, 0x54e406fff] PGTABLE
[    0.000000] BRK [0x54e407000, 0x54e407fff] PGTABLE
[    0.000000] BRK [0x54e408000, 0x54e408fff] PGTABLE
[    0.000000] BRK [0x54e409000, 0x54e409fff] PGTABLE
[    0.000000] BRK [0x54e40a000, 0x54e40afff] PGTABLE
[    0.000000] BRK [0x54e40b000, 0x54e40bfff] PGTABLE
[    0.000000] BRK [0x54e40c000, 0x54e40cfff] PGTABLE
[    0.000000] printk: log_buf_len: 4194304 bytes
[    0.000000] printk: early log buf free: 253072(96%)
[    0.000000] RAMDISK: [mem 0x5b175000-0x5cce4fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000DB549000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DB549098 0000A4 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DB557490 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20181213/tbfadt-615)
[    0.000000] ACPI: DSDT 0x00000000DB5491D0 00E2BC (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x00000000DBA02D80 000040
[    0.000000] ACPI: APIC 0x00000000DB5575A8 0000DE (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DB557688 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x00000000DB5576D0 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DB557770 008C98 (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000DB560408 002314 (v01 AMD    AMD CPU  00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x00000000DB562720 000F50 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x00000000DB563670 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x00000000DB5636A0 002DA8 (v01 AMD    AMD AOD  00000001 INTL 20120913)
[    0.000000] ACPI: MCFG 0x00000000DB566448 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: SSDT 0x00000000DB5681A8 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
[    0.000000] ACPI: HPET 0x00000000DB5664E0 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: SSDT 0x00000000DB566518 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x00000000DB566540 000042 (v01                 00000000      00000000)
[    0.000000] ACPI: IVRS 0x00000000DB566588 0000D0 (v02 AMD    AMD IVRS 00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x00000000DB566658 001B4E (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000081f37ffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x81ef55000-0x81ef7ffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009cfffff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.000000]   node   0: [mem 0x000000000a20a000-0x000000000affffff]
[    0.000000]   node   0: [mem 0x000000000b020000-0x00000000da043fff]
[    0.000000]   node   0: [mem 0x00000000dc592000-0x00000000deffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000] Zeroed struct page in unavailable ranges: 14553 pages
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000081f37ffff]
[    0.000000] On node 0 totalpages: 8370855
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 26 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14047 pages used for memmap
[    0.000000]   DMA32 zone: 898952 pages, LIFO batch:63
[    0.000000]   Normal zone: 116686 pages used for memmap
[    0.000000]   Normal zone: 7467904 pages, LIFO batch:63
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
[    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 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.000000] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x09d00000-0x09ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x0a200000-0x0a209fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xccaec000-0xccaecfff]
[    0.000000] PM: Registered nosave memory: [mem 0xccb05000-0xccb05fff]
[    0.000000] PM: Registered nosave memory: [mem 0xccb06000-0xccb06fff]
[    0.000000] PM: Registered nosave memory: [mem 0xccb17000-0xccb17fff]
[    0.000000] PM: Registered nosave memory: [mem 0xda044000-0xdb540fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb541000-0xdb568fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb569000-0xdba19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdba1a000-0xdc591fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdf000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfd0fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfd100000-0xfdffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] random: get_random_bytes called from start_kernel+0x9b/0x548 with crng_init=0
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.000000] percpu: Embedded 494 pages/cpu @(____ptrval____) s1986560 r8192 d28672 u2097152
[    0.000000] pcpu-alloc: s1986560 r8192 d28672 u2097152 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
[    0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8240032
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=(hd1,gpt2)/boot/vmlinuz-5.0.0-0.rc4.git1.1.fc30.x86_64 root=UUID=7788c3ba-4ec6-45c8-875b-4a6900af0621 ro resume=UUID=8ae7c2bb-85ca-44f9-b884-b114e058d538 rhgb mem_encrypt=off scsi_mod.use_blk_mq=1 log_buf_len=4M sysrq_always_enabled=1 nmi_watchdog=1
[    0.000000] sysrq: sysrq always enabled.
[    0.000000] Memory: 32562628K/33483420K available (14339K kernel code, 3223K rwdata, 4512K rodata, 4872K init, 18520K bss, 920792K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.000000] ftrace: allocating 39295 entries in 154 pages
[    0.000000] Running RCU self tests
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu: 	RCU lockdep checking is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[    0.000000] rcu: 	RCU callback double-/use-after-free debug enabled.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.000000] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] printk: console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     32768
[    0.000000] ... MAX_LOCKDEP_CHAINS:      65536
[    0.000000] ... CHAINHASH_SIZE:          32768
[    0.000000]  memory used by lock dependency info: 7775 kB
[    0.000000]  per task-struct memory footprint: 2688 bytes
[    0.000000] kmemleak: Kernel memory leak detector disabled
[    0.000000] ACPI: Core revision 20181213
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] hpet clockevent registered
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.001000] Switched APIC routing to physical flat.
[    0.002000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.008000] tsc: PIT calibration matches HPET. 1 loops
[    0.008000] tsc: Detected 3692.564 MHz processor
[    0.000012] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6a73ca49fad, max_idle_ns: 881590616374 ns
[    0.000033] Calibrating delay loop (skipped), value calculated using timer frequency.. 7385.12 BogoMIPS (lpj=3692564)
[    0.000046] pid_max: default: 32768 minimum: 301
[    0.018037] ---[ User Space ]---
[    0.018043] 0x0000000000000000-0x0000000000008000          32K     RW                     x  pte
[    0.018057] 0x0000000000008000-0x000000000003f000         220K                               pte
[    0.018068] 0x000000000003f000-0x0000000000040000           4K                               pte
[    0.018079] 0x0000000000040000-0x00000000000a0000         384K     RW                     x  pte
[    0.018094] 0x00000000000a0000-0x0000000000200000        1408K                               pte
[    0.018105] 0x0000000000200000-0x0000000001000000          14M                               pmd
[    0.018116] 0x0000000001000000-0x0000000001020000         128K                               pte
[    0.018130] 0x0000000001020000-0x0000000001200000        1920K                               pte
[    0.018143] 0x0000000001200000-0x0000000040000000        1006M                               pmd
[    0.018154] 0x0000000040000000-0x00000000c0000000           2G                               pud
[    0.018166] 0x00000000c0000000-0x00000000cce00000         206M                               pmd
[    0.018179] 0x00000000cce00000-0x00000000ccf7e000        1528K                               pte
[    0.018190] 0x00000000ccf7e000-0x00000000cd000000         520K                               pte
[    0.018202] 0x00000000cd000000-0x00000000d6600000         150M                               pmd
[    0.018213] 0x00000000d6600000-0x00000000d6679000         484K                               pte
[    0.018227] 0x00000000d6679000-0x00000000d6800000        1564K     RW                     x  pte
[    0.018239] 0x00000000d6800000-0x00000000d8e00000          38M     RW         PSE         x  pmd
[    0.018252] 0x00000000d8e00000-0x00000000d8f20000        1152K     RW                     x  pte
[    0.018266] 0x00000000d8f20000-0x00000000d9000000         896K                               pte
[    0.018276] 0x00000000d9000000-0x00000000d9200000           2M                               pmd
[    0.018288] 0x00000000d9200000-0x00000000d928d000         564K                               pte
[    0.018301] 0x00000000d928d000-0x00000000d9400000        1484K                               pte
[    0.018312] 0x00000000d9400000-0x00000000da000000          12M                               pmd
[    0.018323] 0x00000000da000000-0x00000000da044000         272K                               pte
[    0.018337] 0x00000000da044000-0x00000000da200000        1776K                               pte
[    0.018348] 0x00000000da200000-0x00000000dba00000          24M                               pmd
[    0.018359] 0x00000000dba00000-0x00000000dba1a000         104K                               pte
[    0.018373] 0x00000000dba1a000-0x00000000dbc00000        1944K     RW                     NX pte
[    0.018384] 0x00000000dbc00000-0x00000000dc400000           8M     RW         PSE         NX pmd
[    0.018398] 0x00000000dc400000-0x00000000dc50b000        1068K     RW                     NX pte
[    0.018410] 0x00000000dc50b000-0x00000000dc50e000          12K     ro                     x  pte
[    0.018422] 0x00000000dc50e000-0x00000000dc513000          20K     RW                     NX pte
[    0.018433] 0x00000000dc513000-0x00000000dc514000           4K     ro                     x  pte
[    0.018445] 0x00000000dc514000-0x00000000dc518000          16K     RW                     NX pte
[    0.018457] 0x00000000dc518000-0x00000000dc51c000          16K     ro                     x  pte
[    0.018469] 0x00000000dc51c000-0x00000000dc521000          20K     RW                     NX pte
[    0.018481] 0x00000000dc521000-0x00000000dc522000           4K     ro                     x  pte
[    0.018493] 0x00000000dc522000-0x00000000dc526000          16K     RW                     NX pte
[    0.018504] 0x00000000dc526000-0x00000000dc527000           4K     ro                     x  pte
[    0.018516] 0x00000000dc527000-0x00000000dc52c000          20K     RW                     NX pte
[    0.018528] 0x00000000dc52c000-0x00000000dc539000          52K     ro                     x  pte
[    0.018540] 0x00000000dc539000-0x00000000dc540000          28K     RW                     NX pte
[    0.018552] 0x00000000dc540000-0x00000000dc543000          12K     ro                     x  pte
[    0.018564] 0x00000000dc543000-0x00000000dc549000          24K     RW                     NX pte
[    0.018575] 0x00000000dc549000-0x00000000dc54a000           4K     ro                     x  pte
[    0.018587] 0x00000000dc54a000-0x00000000dc54f000          20K     RW                     NX pte
[    0.018599] 0x00000000dc54f000-0x00000000dc550000           4K     ro                     x  pte
[    0.018611] 0x00000000dc550000-0x00000000dc555000          20K     RW                     NX pte
[    0.018623] 0x00000000dc555000-0x00000000dc556000           4K     ro                     x  pte
[    0.018635] 0x00000000dc556000-0x00000000dc55b000          20K     RW                     NX pte
[    0.018646] 0x00000000dc55b000-0x00000000dc55c000           4K     ro                     x  pte
[    0.018658] 0x00000000dc55c000-0x00000000dc561000          20K     RW                     NX pte
[    0.018670] 0x00000000dc561000-0x00000000dc562000           4K     ro                     x  pte
[    0.018682] 0x00000000dc562000-0x00000000dc567000          20K     RW                     NX pte
[    0.018694] 0x00000000dc567000-0x00000000dc568000           4K     ro                     x  pte
[    0.018706] 0x00000000dc568000-0x00000000dc56c000          16K     RW                     NX pte
[    0.018717] 0x00000000dc56c000-0x00000000dc576000          40K     ro                     x  pte
[    0.018729] 0x00000000dc576000-0x00000000dc57f000          36K     RW                     NX pte
[    0.019030] 0x00000000dc57f000-0x00000000dc584000          20K     ro                     x  pte
[    0.019042] 0x00000000dc584000-0x00000000dc589000          20K     RW                     NX pte
[    0.019054] 0x00000000dc589000-0x00000000dc58d000          16K     ro                     x  pte
[    0.019066] 0x00000000dc58d000-0x00000000dc592000          20K     RW                     NX pte
[    0.019078] 0x00000000dc592000-0x00000000dc600000         440K                               pte
[    0.019089] 0x00000000dc600000-0x00000000df000000          42M                               pmd
[    0.019101] 0x00000000df000000-0x00000000f8000000         400M                               pmd
[    0.019112] 0x00000000f8000000-0x00000000fc000000          64M     RW         PSE         x  pmd
[    0.019124] 0x00000000fc000000-0x00000000fd000000          16M                               pmd
[    0.019136] 0x00000000fd000000-0x00000000fd100000           1M                               pte
[    0.019148] 0x00000000fd100000-0x00000000fd200000           1M     RW                     x  pte
[    0.019160] 0x00000000fd200000-0x00000000fe000000          14M     RW         PSE         x  pmd
[    0.019172] 0x00000000fe000000-0x00000000fea00000          10M                               pmd
[    0.019183] 0x00000000fea00000-0x00000000fea10000          64K     RW                     x  pte
[    0.019197] 0x00000000fea10000-0x00000000feb80000        1472K                               pte
[    0.019209] 0x00000000feb80000-0x00000000fec02000         520K     RW                     x  pte
[    0.019221] 0x00000000fec02000-0x00000000fec10000          56K                               pte
[    0.019232] 0x00000000fec10000-0x00000000fec11000           4K     RW                     x  pte
[    0.019244] 0x00000000fec11000-0x00000000fec30000         124K                               pte
[    0.019254] 0x00000000fec30000-0x00000000fec31000           4K     RW                     x  pte
[    0.019268] 0x00000000fec31000-0x00000000fed00000         828K                               pte
[    0.019278] 0x00000000fed00000-0x00000000fed01000           4K     RW                     x  pte
[    0.019290] 0x00000000fed01000-0x00000000fed40000         252K                               pte
[    0.019301] 0x00000000fed40000-0x00000000fed45000          20K     RW                     x  pte
[    0.019313] 0x00000000fed45000-0x00000000fed80000         236K                               pte
[    0.019324] 0x00000000fed80000-0x00000000fed90000          64K     RW                     x  pte
[    0.019336] 0x00000000fed90000-0x00000000fedc2000         200K                               pte
[    0.019347] 0x00000000fedc2000-0x00000000fedd0000          56K     RW                     x  pte
[    0.019359] 0x00000000fedd0000-0x00000000fedd4000          16K                               pte
[    0.019370] 0x00000000fedd4000-0x00000000fedd6000           8K     RW                     x  pte
[    0.019382] 0x00000000fedd6000-0x00000000fee00000         168K                               pte
[    0.019394] 0x00000000fee00000-0x00000000fef00000           1M     RW                     x  pte
[    0.019408] 0x00000000fef00000-0x00000000ff000000           1M                               pte
[    0.019419] 0x00000000ff000000-0x0000000100000000          16M     RW         PSE         x  pmd
[    0.019431] 0x0000000100000000-0x00000007c0000000          27G                               pud
[    0.019444] 0x00000007c0000000-0x00000007fc800000         968M                               pmd
[    0.019458] 0x00000007fc800000-0x00000007fc9c0000        1792K                               pte
[    0.019469] 0x00000007fc9c0000-0x00000007fc9c2000           8K     RW                     NX pte
[    0.019481] 0x00000007fc9c2000-0x00000007fca00000         248K                               pte
[    0.019492] 0x00000007fca00000-0x0000000800000000          54M                               pmd
[    0.019505] 0x0000000800000000-0x0000008000000000         480G                               pud
[    0.019520] 0x0000008000000000-0xffff800000000000   17179737600G                               pgd
[    0.019531] ---[ Kernel Space ]---
[    0.019536] 0xffff800000000000-0xffff808000000000         512G                               pgd
[    0.019546] ---[ LDT remap ]---
[    0.019551] 0xffff808000000000-0xffff810000000000         512G                               pgd
[    0.019562] ---[ Low Kernel Mapping ]---
[    0.019567] 0xffff810000000000-0xffff818000000000         512G                               pgd
[    0.019578] ---[ vmalloc() Area ]---
[    0.019583] 0xffff818000000000-0xffff820000000000         512G                               pgd
[    0.019594] ---[ Vmemmap ]---
[    0.019599] 0xffff820000000000-0xffff8c8000000000       10752G                               pgd
[    0.019610] 0xffff8c8000000000-0xffff8c9840000000          97G                               pud
[    0.019624] 0xffff8c9840000000-0xffff8c9840200000           2M     RW                 GLB NX pte
[    0.019637] 0xffff8c9840200000-0xffff8c9849c00000         154M     RW         PSE     GLB NX pmd
[    0.019650] 0xffff8c9849c00000-0xffff8c9849d00000           1M     RW                 GLB NX pte
[    0.019664] 0xffff8c9849d00000-0xffff8c9849e00000           1M                               pte
[    0.019675] 0xffff8c9849e00000-0xffff8c984a000000           2M                               pmd
[    0.019685] 0xffff8c984a000000-0xffff8c984a200000           2M     RW         PSE     GLB NX pmd
[    0.019697] 0xffff8c984a200000-0xffff8c984a20a000          40K                               pte
[    0.019711] 0xffff8c984a20a000-0xffff8c984a400000        2008K     RW                 GLB NX pte
[    0.019723] 0xffff8c984a400000-0xffff8c984b000000          12M     RW         PSE     GLB NX pmd
[    0.019735] 0xffff8c984b000000-0xffff8c984b020000         128K                               pte
[    0.019749] 0xffff8c984b020000-0xffff8c984b200000        1920K     RW                 GLB NX pte
[    0.019763] 0xffff8c984b200000-0xffff8c9880000000         846M     RW         PSE     GLB NX pmd
[    0.019775] 0xffff8c9880000000-0xffff8c9900000000           2G     RW         PSE     GLB NX pud
[    0.019789] 0xffff8c9900000000-0xffff8c991a000000         416M     RW         PSE     GLB NX pmd
[    0.019801] 0xffff8c991a000000-0xffff8c991a044000         272K     RW                 GLB NX pte
[    0.019816] 0xffff8c991a044000-0xffff8c991a200000        1776K                               pte
[    0.019827] 0xffff8c991a200000-0xffff8c991c400000          34M                               pmd
[    0.019840] 0xffff8c991c400000-0xffff8c991c592000        1608K                               pte
[    0.019851] 0xffff8c991c592000-0xffff8c991c600000         440K     RW                 GLB NX pte
[    0.019863] 0xffff8c991c600000-0xffff8c991f000000          42M     RW         PSE     GLB NX pmd
[    0.019877] 0xffff8c991f000000-0xffff8c9940000000         528M                               pmd
[    0.019888] 0xffff8c9940000000-0xffff8ca040000000          28G     RW         PSE     GLB NX pud
[    0.019901] 0xffff8ca040000000-0xffff8ca05f200000         498M     RW         PSE     GLB NX pmd
[    0.019915] 0xffff8ca05f200000-0xffff8ca05f380000        1536K     RW                 GLB NX pte
[    0.019928] 0xffff8ca05f380000-0xffff8ca05f400000         512K                               pte
[    0.019940] 0xffff8ca05f400000-0xffff8ca080000000         524M                               pmd
[    0.019953] 0xffff8ca080000000-0xffff8d0000000000         382G                               pud
[    0.019964] 0xffff8d0000000000-0xffffa00000000000          19T                               pgd
[    0.019976] 0xffffa00000000000-0xffffa03700000000         220G                               pud
[    0.019987] 0xffffa03700000000-0xffffa03700001000           4K     RW                 GLB NX pte
[    0.019999] 0xffffa03700001000-0xffffa03700002000           4K                               pte
[    0.020013] 0xffffa03700002000-0xffffa03700003000           4K     RW                 GLB NX pte
[    0.020030] 0xffffa03700003000-0xffffa03700004000           4K                               pte
[    0.020041] 0xffffa03700004000-0xffffa03700007000          12K     RW                 GLB NX pte
[    0.020054] 0xffffa03700007000-0xffffa03700008000           4K                               pte
[    0.020065] 0xffffa03700008000-0xffffa0370000a000           8K     RW                 GLB NX pte
[    0.020077] 0xffffa0370000a000-0xffffa0370000b000           4K                               pte
[    0.020088] 0xffffa0370000b000-0xffffa0370000c000           4K     RW                 GLB NX pte
[    0.020100] 0xffffa0370000c000-0xffffa0370000d000           4K                               pte
[    0.020112] 0xffffa0370000d000-0xffffa0370000e000           4K     RW     PCD         GLB NX pte
[    0.020124] 0xffffa0370000e000-0xffffa03700010000           8K                               pte
[    0.020135] 0xffffa03700010000-0xffffa0370001f000          60K     RW                 GLB NX pte
[    0.020147] 0xffffa0370001f000-0xffffa03700020000           4K                               pte
[    0.020159] 0xffffa03700020000-0xffffa0370002a000          40K     RW                 GLB NX pte
[    0.020171] 0xffffa0370002a000-0xffffa0370002c000           8K                               pte
[    0.020182] 0xffffa0370002c000-0xffffa03700030000          16K     RW                 GLB NX pte
[    0.020194] 0xffffa03700030000-0xffffa03700034000          16K                               pte
[    0.020206] 0xffffa03700034000-0xffffa03700037000          12K     RW                 GLB NX pte
[    0.020218] 0xffffa03700037000-0xffffa03700080000         292K                               pte
[    0.020230] 0xffffa03700080000-0xffffa03700100000         512K     RW     PCD         GLB NX pte
[    0.020244] 0xffffa03700100000-0xffffa03700200000           1M                               pte
[    0.020258] 0xffffa03700200000-0xffffa03740000000        1022M                               pmd
[    0.020271] 0xffffa03740000000-0xffffa08000000000         291G                               pud
[    0.020283] 0xffffa08000000000-0xffffc48000000000          36T                               pgd
[    0.020297] 0xffffc48000000000-0xffffc4e500000000         404G                               pud
[    0.020308] 0xffffc4e500000000-0xffffc4e503800000          56M     RW         PSE     GLB NX pmd
[    0.020321] 0xffffc4e503800000-0xffffc4e504000000           8M                               pmd
[    0.020333] 0xffffc4e504000000-0xffffc4e520800000         456M     RW         PSE     GLB NX pmd
[    0.020347] 0xffffc4e520800000-0xffffc4e540000000         504M                               pmd
[    0.020359] 0xffffc4e540000000-0xffffc50000000000         107G                               pud
[    0.020371] 0xffffc50000000000-0xfffffe0000000000          57T                               pgd
[    0.020383] ---[ CPU entry Area ]---
[    0.020388] 0xfffffe0000000000-0xfffffe0000002000           8K     ro                 GLB NX pte
[    0.020400] 0xfffffe0000002000-0xfffffe0000003000           4K     RW                 GLB NX pte
[    0.020412] 0xfffffe0000003000-0xfffffe0000006000          12K     ro                 GLB NX pte
[    0.020425] 0xfffffe0000006000-0xfffffe000000b000          20K     RW                 GLB NX pte
[    0.020437] 0xfffffe000000b000-0xfffffe000002c000         132K                               pte
[    0.020448] 0xfffffe000002c000-0xfffffe000002d000           4K     ro                 GLB NX pte
[    0.020461] 0xfffffe000002d000-0xfffffe000002e000           4K     RW                 GLB NX pte
[    0.020473] 0xfffffe000002e000-0xfffffe0000031000          12K     ro                 GLB NX pte
[    0.020485] 0xfffffe0000031000-0xfffffe0000036000          20K     RW                 GLB NX pte
[    0.020498] 0xfffffe0000036000-0xfffffe0000057000         132K                               pte
[    0.020509] 0xfffffe0000057000-0xfffffe0000058000           4K     ro                 GLB NX pte
[    0.020521] 0xfffffe0000058000-0xfffffe0000059000           4K     RW                 GLB NX pte
[    0.020533] 0xfffffe0000059000-0xfffffe000005c000          12K     ro                 GLB NX pte
[    0.020546] 0xfffffe000005c000-0xfffffe0000061000          20K     RW                 GLB NX pte
[    0.020558] 0xfffffe0000061000-0xfffffe0000082000         132K                               pte
[    0.020569] 0xfffffe0000082000-0xfffffe0000083000           4K     ro                 GLB NX pte
[    0.020582] 0xfffffe0000083000-0xfffffe0000084000           4K     RW                 GLB NX pte
[    0.020594] 0xfffffe0000084000-0xfffffe0000087000          12K     ro                 GLB NX pte
[    0.020606] 0xfffffe0000087000-0xfffffe000008c000          20K     RW                 GLB NX pte
[    0.020619] 0xfffffe000008c000-0xfffffe00000ad000         132K                               pte
[    0.020630] 0xfffffe00000ad000-0xfffffe00000ae000           4K     ro                 GLB NX pte
[    0.020642] 0xfffffe00000ae000-0xfffffe00000af000           4K     RW                 GLB NX pte
[    0.020654] 0xfffffe00000af000-0xfffffe00000b2000          12K     ro                 GLB NX pte
[    0.020667] 0xfffffe00000b2000-0xfffffe00000b7000          20K     RW                 GLB NX pte
[    0.020679] 0xfffffe00000b7000-0xfffffe00000d8000         132K                               pte
[    0.020690] 0xfffffe00000d8000-0xfffffe00000d9000           4K     ro                 GLB NX pte
[    0.020703] 0xfffffe00000d9000-0xfffffe00000da000           4K     RW                 GLB NX pte
[    0.020717] 0xfffffe00000da000-0xfffffe00000dd000          12K     ro                 GLB NX pte
[    0.020731] 0xfffffe00000dd000-0xfffffe00000e2000          20K     RW                 GLB NX pte
[    0.020745] 0xfffffe00000e2000-0xfffffe0000103000         132K                               pte
[    0.020756] 0xfffffe0000103000-0xfffffe0000104000           4K     ro                 GLB NX pte
[    0.020767] 0xfffffe0000104000-0xfffffe0000105000           4K     RW                 GLB NX pte
[    0.020779] 0xfffffe0000105000-0xfffffe0000108000          12K     ro                 GLB NX pte
[    0.020791] 0xfffffe0000108000-0xfffffe000010d000          20K     RW                 GLB NX pte
[    0.020802] 0xfffffe000010d000-0xfffffe000012e000         132K                               pte
[    0.020813] 0xfffffe000012e000-0xfffffe000012f000           4K     ro                 GLB NX pte
[    0.020825] 0xfffffe000012f000-0xfffffe0000130000           4K     RW                 GLB NX pte
[    0.020836] 0xfffffe0000130000-0xfffffe0000133000          12K     ro                 GLB NX pte
[    0.020848] 0xfffffe0000133000-0xfffffe0000138000          20K     RW                 GLB NX pte
[    0.020860] 0xfffffe0000138000-0xfffffe0000159000         132K                               pte
[    0.020870] 0xfffffe0000159000-0xfffffe000015a000           4K     ro                 GLB NX pte
[    0.020882] 0xfffffe000015a000-0xfffffe000015b000           4K     RW                 GLB NX pte
[    0.020893] 0xfffffe000015b000-0xfffffe000015e000          12K     ro                 GLB NX pte
[    0.020905] 0xfffffe000015e000-0xfffffe0000163000          20K     RW                 GLB NX pte
[    0.020917] 0xfffffe0000163000-0xfffffe0000184000         132K                               pte
[    0.020927] 0xfffffe0000184000-0xfffffe0000185000           4K     ro                 GLB NX pte
[    0.020939] 0xfffffe0000185000-0xfffffe0000186000           4K     RW                 GLB NX pte
[    0.020951] 0xfffffe0000186000-0xfffffe0000189000          12K     ro                 GLB NX pte
[    0.020962] 0xfffffe0000189000-0xfffffe000018e000          20K     RW                 GLB NX pte
[    0.020974] 0xfffffe000018e000-0xfffffe00001af000         132K                               pte
[    0.020985] 0xfffffe00001af000-0xfffffe00001b0000           4K     ro                 GLB NX pte
[    0.020996] 0xfffffe00001b0000-0xfffffe00001b1000           4K     RW                 GLB NX pte
[    0.021008] 0xfffffe00001b1000-0xfffffe00001b4000          12K     ro                 GLB NX pte
[    0.021020] 0xfffffe00001b4000-0xfffffe00001b9000          20K     RW                 GLB NX pte
[    0.021040] 0xfffffe00001b9000-0xfffffe00001da000         132K                               pte
[    0.021050] 0xfffffe00001da000-0xfffffe00001db000           4K     ro                 GLB NX pte
[    0.021062] 0xfffffe00001db000-0xfffffe00001dc000           4K     RW                 GLB NX pte
[    0.021074] 0xfffffe00001dc000-0xfffffe00001df000          12K     ro                 GLB NX pte
[    0.021085] 0xfffffe00001df000-0xfffffe00001e4000          20K     RW                 GLB NX pte
[    0.021097] 0xfffffe00001e4000-0xfffffe0000205000         132K                               pte
[    0.021108] 0xfffffe0000205000-0xfffffe0000206000           4K     ro                 GLB NX pte
[    0.021119] 0xfffffe0000206000-0xfffffe0000207000           4K     RW                 GLB NX pte
[    0.021131] 0xfffffe0000207000-0xfffffe000020a000          12K     ro                 GLB NX pte
[    0.021143] 0xfffffe000020a000-0xfffffe000020f000          20K     RW                 GLB NX pte
[    0.021154] 0xfffffe000020f000-0xfffffe0000230000         132K                               pte
[    0.021165] 0xfffffe0000230000-0xfffffe0000231000           4K     ro                 GLB NX pte
[    0.021177] 0xfffffe0000231000-0xfffffe0000232000           4K     RW                 GLB NX pte
[    0.021188] 0xfffffe0000232000-0xfffffe0000235000          12K     ro                 GLB NX pte
[    0.021200] 0xfffffe0000235000-0xfffffe000023a000          20K     RW                 GLB NX pte
[    0.021212] 0xfffffe000023a000-0xfffffe000025b000         132K                               pte
[    0.021222] 0xfffffe000025b000-0xfffffe000025c000           4K     ro                 GLB NX pte
[    0.021234] 0xfffffe000025c000-0xfffffe000025d000           4K     RW                 GLB NX pte
[    0.021246] 0xfffffe000025d000-0xfffffe0000260000          12K     ro                 GLB NX pte
[    0.021257] 0xfffffe0000260000-0xfffffe0000265000          20K     RW                 GLB NX pte
[    0.021269] 0xfffffe0000265000-0xfffffe0000286000         132K                               pte
[    0.021280] 0xfffffe0000286000-0xfffffe0000287000           4K     ro                 GLB NX pte
[    0.021291] 0xfffffe0000287000-0xfffffe0000288000           4K     RW                 GLB NX pte
[    0.021303] 0xfffffe0000288000-0xfffffe000028b000          12K     ro                 GLB NX pte
[    0.021314] 0xfffffe000028b000-0xfffffe0000290000          20K     RW                 GLB NX pte
[    0.021328] 0xfffffe0000290000-0xfffffe0000400000        1472K                               pte
[    0.021342] 0xfffffe0000400000-0xfffffe0040000000        1020M                               pmd
[    0.021355] 0xfffffe0040000000-0xfffffe8000000000         511G                               pud
[    0.021365] 0xfffffe8000000000-0xffffff0000000000         512G                               pgd
[    0.021376] ---[ ESPfix Area ]---
[    0.021383] 0xffffff0000000000-0xffffff6700000000         412G                               pud
[    0.021394] 0xffffff6700000000-0xffffff6700002000           8K                               pte
[    0.021404] 0xffffff6700002000-0xffffff6700003000           4K     ro                 GLB NX pte
[    0.021416] 0xffffff6700003000-0xffffff6700012000          60K                               pte
[    0.021427] 0xffffff6700012000-0xffffff6700013000           4K     ro                 GLB NX pte
[    0.021438] 0xffffff6700013000-0xffffff6700022000          60K                               pte
[    0.021449] 0xffffff6700022000-0xffffff6700023000           4K     ro                 GLB NX pte
[    0.021461] 0xffffff6700023000-0xffffff6700032000          60K                               pte
[    0.021471] 0xffffff6700032000-0xffffff6700033000           4K     ro                 GLB NX pte
[    0.021483] 0xffffff6700033000-0xffffff6700042000          60K                               pte
[    0.021494] 0xffffff6700042000-0xffffff6700043000           4K     ro                 GLB NX pte
[    0.021505] 0xffffff6700043000-0xffffff6700052000          60K                               pte
[    0.021516] 0xffffff6700052000-0xffffff6700053000           4K     ro                 GLB NX pte
[    0.021528] 0xffffff6700053000-0xffffff6700062000          60K                               pte
[    0.021538] 0xffffff6700062000-0xffffff6700063000           4K     ro                 GLB NX pte
[    0.021550] 0xffffff6700063000-0xffffff6700072000          60K                               pte
[    0.029771] ... 131059 entries skipped ... 
[    0.029777] ---[ EFI Runtime Services ]---
[    0.029782] 0xffffffef00000000-0xfffffffec0000000          63G                               pud
[    0.029795] 0xfffffffec0000000-0xfffffffee9000000         656M                               pmd
[    0.029805] 0xfffffffee9000000-0xfffffffee9008000          32K     RW                     x  pte
[    0.029817] 0xfffffffee9008000-0xfffffffee903f000         220K                               pte
[    0.029828] 0xfffffffee903f000-0xfffffffee9040000           4K                               pte
[    0.029839] 0xfffffffee9040000-0xfffffffee90a0000         384K     RW                     x  pte
[    0.029853] 0xfffffffee90a0000-0xfffffffee9200000        1408K                               pte
[    0.029864] 0xfffffffee9200000-0xfffffffee9220000         128K                               pte
[    0.029876] 0xfffffffee9220000-0xfffffffee937e000        1400K                               pte
[    0.029888] 0xfffffffee937e000-0xfffffffee9400000         520K                               pte
[    0.029899] 0xfffffffee9400000-0xfffffffef2a00000         150M                               pmd
[    0.029910] 0xfffffffef2a00000-0xfffffffef2a79000         484K                               pte
[    0.029923] 0xfffffffef2a79000-0xfffffffef2c00000        1564K     RW                     x  pte
[    0.029935] 0xfffffffef2c00000-0xfffffffef5200000          38M     RW         PSE         x  pmd
[    0.029948] 0xfffffffef5200000-0xfffffffef5320000        1152K     RW                     x  pte
[    0.029962] 0xfffffffef5320000-0xfffffffef548d000        1460K                               pte
[    0.029975] 0xfffffffef548d000-0xfffffffef5600000        1484K                               pte
[    0.029986] 0xfffffffef5600000-0xfffffffef6200000          12M                               pmd
[    0.029997] 0xfffffffef6200000-0xfffffffef6244000         272K                               pte
[    0.030010] 0xfffffffef6244000-0xfffffffef641a000        1880K                               pte
[    0.030024] 0xfffffffef641a000-0xfffffffef6600000        1944K     RW                     NX pte
[    0.030030] 0xfffffffef6600000-0xfffffffef6e00000           8M     RW         PSE         NX pmd
[    0.030043] 0xfffffffef6e00000-0xfffffffef6f0b000        1068K     RW                     NX pte
[    0.030055] 0xfffffffef6f0b000-0xfffffffef6f0e000          12K     ro                     x  pte
[    0.030066] 0xfffffffef6f0e000-0xfffffffef6f13000          20K     RW                     NX pte
[    0.030078] 0xfffffffef6f13000-0xfffffffef6f14000           4K     ro                     x  pte
[    0.030090] 0xfffffffef6f14000-0xfffffffef6f18000          16K     RW                     NX pte
[    0.030101] 0xfffffffef6f18000-0xfffffffef6f1c000          16K     ro                     x  pte
[    0.030113] 0xfffffffef6f1c000-0xfffffffef6f21000          20K     RW                     NX pte
[    0.030124] 0xfffffffef6f21000-0xfffffffef6f22000           4K     ro                     x  pte
[    0.030136] 0xfffffffef6f22000-0xfffffffef6f26000          16K     RW                     NX pte
[    0.030148] 0xfffffffef6f26000-0xfffffffef6f27000           4K     ro                     x  pte
[    0.030159] 0xfffffffef6f27000-0xfffffffef6f2c000          20K     RW                     NX pte
[    0.030171] 0xfffffffef6f2c000-0xfffffffef6f39000          52K     ro                     x  pte
[    0.030183] 0xfffffffef6f39000-0xfffffffef6f40000          28K     RW                     NX pte
[    0.030194] 0xfffffffef6f40000-0xfffffffef6f43000          12K     ro                     x  pte
[    0.030206] 0xfffffffef6f43000-0xfffffffef6f49000          24K     RW                     NX pte
[    0.030218] 0xfffffffef6f49000-0xfffffffef6f4a000           4K     ro                     x  pte
[    0.030229] 0xfffffffef6f4a000-0xfffffffef6f4f000          20K     RW                     NX pte
[    0.030241] 0xfffffffef6f4f000-0xfffffffef6f50000           4K     ro                     x  pte
[    0.030252] 0xfffffffef6f50000-0xfffffffef6f55000          20K     RW                     NX pte
[    0.030264] 0xfffffffef6f55000-0xfffffffef6f56000           4K     ro                     x  pte
[    0.030276] 0xfffffffef6f56000-0xfffffffef6f5b000          20K     RW                     NX pte
[    0.030287] 0xfffffffef6f5b000-0xfffffffef6f5c000           4K     ro                     x  pte
[    0.030299] 0xfffffffef6f5c000-0xfffffffef6f61000          20K     RW                     NX pte
[    0.030310] 0xfffffffef6f61000-0xfffffffef6f62000           4K     ro                     x  pte
[    0.030322] 0xfffffffef6f62000-0xfffffffef6f67000          20K     RW                     NX pte
[    0.030334] 0xfffffffef6f67000-0xfffffffef6f68000           4K     ro                     x  pte
[    0.030345] 0xfffffffef6f68000-0xfffffffef6f6c000          16K     RW                     NX pte
[    0.030357] 0xfffffffef6f6c000-0xfffffffef6f76000          40K     ro                     x  pte
[    0.030369] 0xfffffffef6f76000-0xfffffffef6f7f000          36K     RW                     NX pte
[    0.030380] 0xfffffffef6f7f000-0xfffffffef6f84000          20K     ro                     x  pte
[    0.030392] 0xfffffffef6f84000-0xfffffffef6f89000          20K     RW                     NX pte
[    0.030404] 0xfffffffef6f89000-0xfffffffef6f8d000          16K     ro                     x  pte
[    0.030415] 0xfffffffef6f8d000-0xfffffffef6f92000          20K     RW                     NX pte
[    0.030427] 0xfffffffef6f92000-0xfffffffef7000000         440K                               pte
[    0.030438] 0xfffffffef7000000-0xfffffffef9a00000          42M                               pmd
[    0.030449] 0xfffffffef9a00000-0xfffffffefda00000          64M     RW         PSE         x  pmd
[    0.030462] 0xfffffffefda00000-0xfffffffefdb00000           1M                               pte
[    0.030474] 0xfffffffefdb00000-0xfffffffefdc00000           1M     RW                     x  pte
[    0.030486] 0xfffffffefdc00000-0xfffffffefea00000          14M     RW         PSE         x  pmd
[    0.030498] 0xfffffffefea00000-0xfffffffefea10000          64K     RW                     x  pte
[    0.030512] 0xfffffffefea10000-0xfffffffefeb80000        1472K                               pte
[    0.030523] 0xfffffffefeb80000-0xfffffffefec02000         520K     RW                     x  pte
[    0.030535] 0xfffffffefec02000-0xfffffffefec10000          56K                               pte
[    0.030545] 0xfffffffefec10000-0xfffffffefec11000           4K     RW                     x  pte
[    0.030557] 0xfffffffefec11000-0xfffffffefec30000         124K                               pte
[    0.030568] 0xfffffffefec30000-0xfffffffefec31000           4K     RW                     x  pte
[    0.030581] 0xfffffffefec31000-0xfffffffefed00000         828K                               pte
[    0.030591] 0xfffffffefed00000-0xfffffffefed01000           4K     RW                     x  pte
[    0.030603] 0xfffffffefed01000-0xfffffffefed40000         252K                               pte
[    0.030614] 0xfffffffefed40000-0xfffffffefed45000          20K     RW                     x  pte
[    0.030626] 0xfffffffefed45000-0xfffffffefed80000         236K                               pte
[    0.030636] 0xfffffffefed80000-0xfffffffefed90000          64K     RW                     x  pte
[    0.030648] 0xfffffffefed90000-0xfffffffefedc2000         200K                               pte
[    0.030659] 0xfffffffefedc2000-0xfffffffefedd0000          56K     RW                     x  pte
[    0.030670] 0xfffffffefedd0000-0xfffffffefedd4000          16K                               pte
[    0.030681] 0xfffffffefedd4000-0xfffffffefedd6000           8K     RW                     x  pte
[    0.030693] 0xfffffffefedd6000-0xfffffffefee00000         168K                               pte
[    0.030705] 0xfffffffefee00000-0xfffffffefef00000           1M     RW                     x  pte
[    0.030718] 0xfffffffefef00000-0xfffffffeff000000           1M                               pte
[    0.030729] 0xfffffffeff000000-0xffffffff00000000          16M     RW         PSE         x  pmd
[    0.030741] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.030751] ---[ High Kernel Mapping ]---
[    0.030758] 0xffffffff80000000-0xffffffff9b000000         432M                               pmd
[    0.030768] 0xffffffff9b000000-0xffffffff9e600000          54M     RW         PSE     GLB x  pmd
[    0.030781] 0xffffffff9e600000-0xffffffffc0000000         538M                               pmd
[    0.030792] ---[ Modules ]---
[    0.030799] 0xffffffffc0000000-0xffffffffff000000        1008M                               pmd
[    0.030809] ---[ End Modules ]---
[    0.030814] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.030830] 0xffffffffff200000-0xffffffffff576000        3544K                               pte
[    0.030841] ---[ Fixmap Area ]---
[    0.030846] 0xffffffffff576000-0xffffffffff5fa000         528K                               pte
[    0.030857] 0xffffffffff5fa000-0xffffffffff5fd000          12K     RW PWT PCD         GLB NX pte
[    0.030868] 0xffffffffff5fd000-0xffffffffff600000          12K                               pte
[    0.030879] 0xffffffffff600000-0xffffffffff601000           4K USR ro                 GLB NX pte
[    0.030894] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.030905] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.030966] LSM: Security Framework initializing
[    0.030972] Yama: becoming mindful.
[    0.030985] SELinux:  Initializing.
[    0.036047] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.038565] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.038675] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.038764] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.039851] mce: CPU supports 23 MCE banks
[    0.039882] LVT offset 1 assigned for vector 0xf9
[    0.039951] LVT offset 2 assigned for vector 0xf4
[    0.039967] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.039974] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.039983] Spectre V2 : Mitigation: Full AMD retpoline
[    0.039990] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.040005] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.040015] Spectre V2 : User space: Vulnerable
[    0.040024] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.040209] Freeing SMP alternatives memory: 28K
[    0.042028] smpboot: CPU0: AMD Ryzen 7 2700X Eight-Core Processor (family: 0x17, model: 0x8, stepping: 0x2)
[    0.042028] Performance Events: Fam17h core perfctr, AMD PMU driver.
[    0.042028] ... version:                0
[    0.042028] ... bit width:              48
[    0.042028] ... generic registers:      6
[    0.042028] ... value mask:             0000ffffffffffff
[    0.042028] ... max period:             00007fffffffffff
[    0.042028] ... fixed-purpose events:   0
[    0.042028] ... event mask:             000000000000003f
[    0.042028] rcu: Hierarchical SRCU implementation.
[    0.042028] random: crng done (trusting CPU's manufacturer)
[    0.042134] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.042433] smp: Bringing up secondary CPUs ...
[    0.042693] x86: Booting SMP configuration:
[    0.042705] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
[    0.063128] smp: Brought up 1 node, 16 CPUs
[    0.063128] smpboot: Max logical packages: 1
[    0.063128] smpboot: Total of 16 processors activated (118162.04 BogoMIPS)
[    0.066121] devtmpfs: initialized
[    0.066159] x86/mm: Memory block size: 128MB
[    0.072122] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a209fff] (40960 bytes)
[    0.072122] PM: Registering ACPI NVS region [mem 0xdb569000-0xdba19fff] (4919296 bytes)
[    0.073724] DMA-API: preallocated 65548 debug entries
[    0.073733] DMA-API: debugging enabled by kernel config
[    0.073742] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.073805] futex hash table entries: 4096 (order: 7, 524288 bytes)
[    0.074791] pinctrl core: initialized pinctrl subsystem

[    0.074791] *************************************************************
[    0.074791] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.074791] **                                                         **
[    0.074791] **  IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL  **
[    0.074791] **                                                         **
[    0.074791] ** This means that this kernel is built to expose internal **
[    0.074791] ** IOMMU data structures, which may compromise security on **
[    0.074791] ** your system.                                            **
[    0.074791] **                                                         **
[    0.074791] ** If you see this message and you are not debugging the   **
[    0.074791] ** kernel, report this immediately to your vendor!         **
[    0.074791] **                                                         **
[    0.074791] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.074791] *************************************************************
[    0.074791] RTC time: 15:55:11, date: 2019-01-29
[    0.074878] NET: Registered protocol family 16
[    0.075105] audit: initializing netlink subsys (disabled)
[    0.076054] audit: type=2000 audit(1548777310.084:1): state=initialized audit_enabled=0 res=1
[    0.076298] cpuidle: using governor menu
[    0.076380] ACPI: bus type PCI registered
[    0.076380] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.076380] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.076380] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.076380] PCI: Using configuration type 1 for base access
[    0.081622] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.081622] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.082048] cryptd: max_cpu_qlen set to 1000
[    0.082156] fbcon: Taking over console
[    0.082247] ACPI: Added _OSI(Module Device)
[    0.082254] ACPI: Added _OSI(Processor Device)
[    0.082260] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.082267] ACPI: Added _OSI(Processor Aggregator Device)
[    0.082275] ACPI: Added _OSI(Linux-Dell-Video)
[    0.082281] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.082289] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.112953] ACPI: 7 ACPI AML tables successfully acquired and loaded
[    0.119680] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.126841] ACPI: EC: EC started
[    0.126854] ACPI: EC: interrupt blocked
[    0.127196] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as first EC
[    0.127205] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.127216] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as boot DSDT EC to handle transactions
[    0.127225] ACPI: Interpreter enabled
[    0.127259] ACPI: (supports S0 S3 S4 S5)
[    0.127265] ACPI: Using IOAPIC for interrupt routing
[    0.128483] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.129264] ACPI: Enabled 3 GPEs in block 00 to 1F
[    0.154137] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.154155] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.154608] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME LTR]
[    0.155043] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[    0.155084] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.155987] PCI host bridge to bus 0000:00
[    0.155995] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.156004] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.156013] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.156022] pci_bus 0000:00: root bus resource [io  0x0d00-0xefff window]
[    0.156032] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.156042] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.156052] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
[    0.156061] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.156072] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.156097] pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
[    0.156356] pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
[    0.156550] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.156706] pci 0000:00:01.1: [1022:1453] type 01 class 0x060400
[    0.157058] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.157315] pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
[    0.158034] pci 0000:00:01.3: enabling Extended Tags
[    0.158128] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.158368] pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
[    0.159105] pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
[    0.159259] pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
[    0.159667] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.159907] pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
[    0.160087] pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
[    0.160241] pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
[    0.160583] pci 0000:00:07.1: enabling Extended Tags
[    0.160674] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.160910] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.161070] pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
[    0.161603] pci 0000:00:08.1: enabling Extended Tags
[    0.161695] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.161966] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.162278] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.162590] pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
[    0.162730] pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
[    0.162872] pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
[    0.163016] pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
[    0.163165] pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
[    0.163306] pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
[    0.163447] pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
[    0.163589] pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
[    0.163842] pci 0000:01:00.0: [8086:2700] type 00 class 0x010802
[    0.163862] pci 0000:01:00.0: reg 0x10: [mem 0xfe910000-0xfe913fff 64bit]
[    0.163889] pci 0000:01:00.0: reg 0x30: [mem 0xfe900000-0xfe90ffff pref]
[    0.164068] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.164079] pci 0000:00:01.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    0.164697] pci 0000:02:00.0: [1022:43d0] type 00 class 0x0c0330
[    0.164721] pci 0000:02:00.0: reg 0x10: [mem 0xfe5a0000-0xfe5a7fff 64bit]
[    0.164759] pci 0000:02:00.0: enabling Extended Tags
[    0.164820] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.164945] pci 0000:02:00.1: [1022:43c8] type 00 class 0x010601
[    0.164994] pci 0000:02:00.1: reg 0x24: [mem 0xfe580000-0xfe59ffff]
[    0.165002] pci 0000:02:00.1: reg 0x30: [mem 0xfe500000-0xfe57ffff pref]
[    0.165008] pci 0000:02:00.1: enabling Extended Tags
[    0.165064] pci 0000:02:00.1: PME# supported from D3hot D3cold
[    0.165170] pci 0000:02:00.2: [1022:43c6] type 01 class 0x060400
[    0.165210] pci 0000:02:00.2: enabling Extended Tags
[    0.165262] pci 0000:02:00.2: PME# supported from D3hot D3cold
[    0.165402] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.165412] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.165414] pci 0000:00:01.3:   bridge window [mem 0xfe300000-0xfe5fffff]
[    0.165637] pci 0000:03:00.0: [1022:43c7] type 01 class 0x060400
[    0.165682] pci 0000:03:00.0: enabling Extended Tags
[    0.165744] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.165883] pci 0000:03:01.0: [1022:43c7] type 01 class 0x060400
[    0.165928] pci 0000:03:01.0: enabling Extended Tags
[    0.165993] pci 0000:03:01.0: PME# supported from D3hot D3cold
[    0.166138] pci 0000:03:02.0: [1022:43c7] type 01 class 0x060400
[    0.166183] pci 0000:03:02.0: enabling Extended Tags
[    0.166246] pci 0000:03:02.0: PME# supported from D3hot D3cold
[    0.166384] pci 0000:03:03.0: [1022:43c7] type 01 class 0x060400
[    0.166429] pci 0000:03:03.0: enabling Extended Tags
[    0.166491] pci 0000:03:03.0: PME# supported from D3hot D3cold
[    0.166629] pci 0000:03:04.0: [1022:43c7] type 01 class 0x060400
[    0.166674] pci 0000:03:04.0: enabling Extended Tags
[    0.166736] pci 0000:03:04.0: PME# supported from D3hot D3cold
[    0.166893] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.166905] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.166908] pci 0000:02:00.2:   bridge window [mem 0xfe300000-0xfe4fffff]
[    0.167031] pci 0000:04:00.0: [8086:1539] type 00 class 0x020000
[    0.167077] pci 0000:04:00.0: reg 0x10: [mem 0xfe400000-0xfe41ffff]
[    0.167111] pci 0000:04:00.0: reg 0x18: [io  0xd000-0xd01f]
[    0.167129] pci 0000:04:00.0: reg 0x1c: [mem 0xfe420000-0xfe423fff]
[    0.167310] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.167508] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.167519] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.167523] pci 0000:03:00.0:   bridge window [mem 0xfe400000-0xfe4fffff]
[    0.167605] pci 0000:05:00.0: [10ec:b822] type 00 class 0x028000
[    0.167649] pci 0000:05:00.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.167684] pci 0000:05:00.0: reg 0x18: [mem 0xfe300000-0xfe30ffff 64bit]
[    0.167849] pci 0000:05:00.0: supports D1 D2
[    0.167850] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.168064] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.168075] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.168078] pci 0000:03:01.0:   bridge window [mem 0xfe300000-0xfe3fffff]
[    0.168134] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.168222] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.168306] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.168673] pci 0000:09:00.0: [1022:1470] type 01 class 0x060400
[    0.168694] pci 0000:09:00.0: reg 0x10: [mem 0xfe700000-0xfe703fff]
[    0.168768] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
[    0.168908] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.168917] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.168920] pci 0000:00:03.1:   bridge window [mem 0xfe600000-0xfe7fffff]
[    0.168923] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.168980] pci 0000:0a:00.0: [1022:1471] type 01 class 0x060400
[    0.169074] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold
[    0.169187] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.169198] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.169201] pci 0000:09:00.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.169206] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.169258] pci 0000:0b:00.0: [1002:687f] type 00 class 0x030000
[    0.169284] pci 0000:0b:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.169295] pci 0000:0b:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
[    0.169302] pci 0000:0b:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.169310] pci 0000:0b:00.0: reg 0x24: [mem 0xfe600000-0xfe67ffff]
[    0.169317] pci 0000:0b:00.0: reg 0x30: [mem 0xfe680000-0xfe69ffff pref]
[    0.169338] pci 0000:0b:00.0: BAR 0: assigned to efifb
[    0.169394] pci 0000:0b:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.169500] pci 0000:0b:00.1: [1002:aaf8] type 00 class 0x040300
[    0.169518] pci 0000:0b:00.1: reg 0x10: [mem 0xfe6a0000-0xfe6a3fff]
[    0.169608] pci 0000:0b:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.169727] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.169737] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.169740] pci 0000:0a:00.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.169745] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.169866] pci 0000:0c:00.0: [1022:145a] type 00 class 0x130000
[    0.169895] pci 0000:0c:00.0: enabling Extended Tags
[    0.170013] pci 0000:0c:00.2: [1022:1456] type 00 class 0x108000
[    0.170034] pci 0000:0c:00.2: reg 0x18: [mem 0xfe100000-0xfe1fffff]
[    0.170043] pci 0000:0c:00.2: reg 0x24: [mem 0xfe200000-0xfe201fff]
[    0.170050] pci 0000:0c:00.2: enabling Extended Tags
[    0.170190] pci 0000:0c:00.3: [1022:145f] type 00 class 0x0c0330
[    0.170205] pci 0000:0c:00.3: reg 0x10: [mem 0xfe000000-0xfe0fffff 64bit]
[    0.170227] pci 0000:0c:00.3: enabling Extended Tags
[    0.170271] pci 0000:0c:00.3: PME# supported from D0 D3hot D3cold
[    0.170381] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.170391] pci 0000:00:07.1:   bridge window [mem 0xfe000000-0xfe2fffff]
[    0.170703] pci 0000:0d:00.0: [1022:1455] type 00 class 0x130000
[    0.170735] pci 0000:0d:00.0: enabling Extended Tags
[    0.170855] pci 0000:0d:00.2: [1022:7901] type 00 class 0x010601
[    0.170887] pci 0000:0d:00.2: reg 0x24: [mem 0xfe808000-0xfe808fff]
[    0.170896] pci 0000:0d:00.2: enabling Extended Tags
[    0.170940] pci 0000:0d:00.2: PME# supported from D3hot D3cold
[    0.171050] pci 0000:0d:00.3: [1022:1457] type 00 class 0x040300
[    0.171062] pci 0000:0d:00.3: reg 0x10: [mem 0xfe800000-0xfe807fff]
[    0.171083] pci 0000:0d:00.3: enabling Extended Tags
[    0.171126] pci 0000:0d:00.3: PME# supported from D0 D3hot D3cold
[    0.171238] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.171248] pci 0000:00:08.1:   bridge window [mem 0xfe800000-0xfe8fffff]
[    0.172010] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    0.172147] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    0.172261] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    0.172393] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    0.172516] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.172620] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.172725] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.172828] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.173872] ACPI: EC: interrupt unblocked
[    0.173872] ACPI: EC: event unblocked
[    0.173872] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.173872] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as boot DSDT EC to handle transactions and events
[    0.174161] pci 0000:0b:00.0: vgaarb: setting as boot VGA device
[    0.174161] pci 0000:0b:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.174161] pci 0000:0b:00.0: vgaarb: bridge control possible
[    0.174161] vgaarb: loaded
[    0.174315] SCSI subsystem initialized
[    0.174534] libata version 3.00 loaded.
[    0.174534] ACPI: bus type USB registered
[    0.174534] usbcore: registered new interface driver usbfs
[    0.174534] usbcore: registered new interface driver hub
[    0.174588] usbcore: registered new device driver usb
[    0.174588] pps_core: LinuxPPS API ver. 1 registered
[    0.174588] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.174588] PTP clock support registered
[    0.175098] EDAC MC: Ver: 3.0.0
[    0.175219] Registered efivars operations
[    0.191392] PCI: Using ACPI for IRQ routing
[    0.195791] PCI: pci_cache_line_size set to 64 bytes
[    0.195869] e820: reserve RAM buffer [mem 0x09d00000-0x0bffffff]
[    0.195876] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.195877] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.195879] e820: reserve RAM buffer [mem 0xccaec018-0xcfffffff]
[    0.195881] e820: reserve RAM buffer [mem 0xccb06018-0xcfffffff]
[    0.195882] e820: reserve RAM buffer [mem 0xda044000-0xdbffffff]
[    0.195884] e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
[    0.195885] e820: reserve RAM buffer [mem 0x81f380000-0x81fffffff]
[    0.196184] NetLabel: Initializing
[    0.196190] NetLabel:  domain hash size = 128
[    0.196196] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.196227] NetLabel:  unlabeled traffic allowed by default
[    0.196266] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.196266] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.198130] clocksource: Switched to clocksource tsc-early
[    0.233915] VFS: Disk quotas dquot_6.6.0
[    0.233950] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.234106] pnp: PnP ACPI init
[    0.234335] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.234360] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.234563] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.234872] system 00:02: [io  0x02a0-0x02af] has been reserved
[    0.234882] system 00:02: [io  0x0230-0x023f] has been reserved
[    0.234893] system 00:02: [io  0x0290-0x029f] has been reserved
[    0.234906] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.235393] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.235402] system 00:03: [io  0x040b] has been reserved
[    0.235410] system 00:03: [io  0x04d6] has been reserved
[    0.235418] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    0.235427] system 00:03: [io  0x0c14] has been reserved
[    0.235435] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    0.235443] system 00:03: [io  0x0c52] has been reserved
[    0.235451] system 00:03: [io  0x0c6c] has been reserved
[    0.235459] system 00:03: [io  0x0c6f] has been reserved
[    0.235467] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    0.235475] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    0.235484] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    0.235492] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    0.235501] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    0.235509] system 00:03: [io  0x0800-0x089f] has been reserved
[    0.235518] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    0.235526] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    0.235535] system 00:03: [io  0x0900-0x090f] has been reserved
[    0.235548] system 00:03: [io  0x0910-0x091f] has been reserved
[    0.235558] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.235568] system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.235578] system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.235587] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.235597] system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.235606] system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.235615] system 00:03: [mem 0xff000000-0xffffffff] has been reserved
[    0.235628] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.236590] pnp: PnP ACPI: found 4 devices
[    0.243910] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.244041] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.244051] pci 0000:00:01.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    0.244064] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.244072] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.244083] pci 0000:03:00.0:   bridge window [mem 0xfe400000-0xfe4fffff]
[    0.244098] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.244106] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.244117] pci 0000:03:01.0:   bridge window [mem 0xfe300000-0xfe3fffff]
[    0.244131] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.244147] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.244162] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.244178] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.244186] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.244196] pci 0000:02:00.2:   bridge window [mem 0xfe300000-0xfe4fffff]
[    0.244211] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.244218] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.244228] pci 0000:00:01.3:   bridge window [mem 0xfe300000-0xfe5fffff]
[    0.244240] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.244247] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.244258] pci 0000:0a:00.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.244268] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.244281] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.244289] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.244299] pci 0000:09:00.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.244310] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.244323] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.244330] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.244340] pci 0000:00:03.1:   bridge window [mem 0xfe600000-0xfe7fffff]
[    0.244349] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.244362] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.244370] pci 0000:00:07.1:   bridge window [mem 0xfe000000-0xfe2fffff]
[    0.244382] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.244390] pci 0000:00:08.1:   bridge window [mem 0xfe800000-0xfe8fffff]
[    0.244403] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.244404] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.244406] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.244408] pci_bus 0000:00: resource 7 [io  0x0d00-0xefff window]
[    0.244409] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.244411] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.244412] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window]
[    0.244414] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[    0.244415] pci_bus 0000:01: resource 1 [mem 0xfe900000-0xfe9fffff]
[    0.244417] pci_bus 0000:02: resource 0 [io  0xc000-0xdfff]
[    0.244418] pci_bus 0000:02: resource 1 [mem 0xfe300000-0xfe5fffff]
[    0.244420] pci_bus 0000:03: resource 0 [io  0xc000-0xdfff]
[    0.244421] pci_bus 0000:03: resource 1 [mem 0xfe300000-0xfe4fffff]
[    0.244422] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
[    0.244424] pci_bus 0000:04: resource 1 [mem 0xfe400000-0xfe4fffff]
[    0.244425] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    0.244426] pci_bus 0000:05: resource 1 [mem 0xfe300000-0xfe3fffff]
[    0.244428] pci_bus 0000:09: resource 0 [io  0xe000-0xefff]
[    0.244429] pci_bus 0000:09: resource 1 [mem 0xfe600000-0xfe7fffff]
[    0.244431] pci_bus 0000:09: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.244432] pci_bus 0000:0a: resource 0 [io  0xe000-0xefff]
[    0.244433] pci_bus 0000:0a: resource 1 [mem 0xfe600000-0xfe6fffff]
[    0.244435] pci_bus 0000:0a: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.244436] pci_bus 0000:0b: resource 0 [io  0xe000-0xefff]
[    0.244438] pci_bus 0000:0b: resource 1 [mem 0xfe600000-0xfe6fffff]
[    0.244439] pci_bus 0000:0b: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.244441] pci_bus 0000:0c: resource 1 [mem 0xfe000000-0xfe2fffff]
[    0.244442] pci_bus 0000:0d: resource 1 [mem 0xfe800000-0xfe8fffff]
[    0.244655] NET: Registered protocol family 2
[    0.245104] tcp_listen_portaddr_hash hash table entries: 16384 (order: 8, 1441792 bytes)
[    0.245489] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.246149] TCP bind hash table entries: 65536 (order: 10, 5242880 bytes)
[    0.246940] TCP: Hash tables configured (established 262144 bind 65536)
[    0.247297] UDP hash table entries: 16384 (order: 9, 3145728 bytes)
[    0.247966] UDP-Lite hash table entries: 16384 (order: 9, 3145728 bytes)
[    0.248510] NET: Registered protocol family 1
[    0.248523] NET: Registered protocol family 44
[    0.248934] pci 0000:0b:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.248972] pci 0000:0b:00.1: Linked as a consumer to 0000:0b:00.0
[    0.249327] PCI: CLS 64 bytes, default 64
[    0.249460] Unpacking initramfs...
[    0.592593] Freeing initrd memory: 28096K
[    0.592690] AMD-Vi: IOMMU performance counters supported
[    0.593213] iommu: Adding device 0000:00:01.0 to group 0
[    0.593429] iommu: Adding device 0000:00:01.1 to group 1
[    0.593594] iommu: Adding device 0000:00:01.3 to group 2
[    0.593786] iommu: Adding device 0000:00:02.0 to group 3
[    0.593962] iommu: Adding device 0000:00:03.0 to group 4
[    0.594131] iommu: Adding device 0000:00:03.1 to group 5
[    0.594313] iommu: Adding device 0000:00:04.0 to group 6
[    0.594503] iommu: Adding device 0000:00:07.0 to group 7
[    0.594666] iommu: Adding device 0000:00:07.1 to group 8
[    0.594847] iommu: Adding device 0000:00:08.0 to group 9
[    0.595021] iommu: Adding device 0000:00:08.1 to group 10
[    0.595203] iommu: Adding device 0000:00:14.0 to group 11
[    0.595249] iommu: Adding device 0000:00:14.3 to group 11
[    0.595525] iommu: Adding device 0000:00:18.0 to group 12
[    0.595567] iommu: Adding device 0000:00:18.1 to group 12
[    0.595607] iommu: Adding device 0000:00:18.2 to group 12
[    0.595646] iommu: Adding device 0000:00:18.3 to group 12
[    0.595685] iommu: Adding device 0000:00:18.4 to group 12
[    0.595724] iommu: Adding device 0000:00:18.5 to group 12
[    0.595764] iommu: Adding device 0000:00:18.6 to group 12
[    0.595802] iommu: Adding device 0000:00:18.7 to group 12
[    0.595968] iommu: Adding device 0000:01:00.0 to group 13
[    0.596188] iommu: Adding device 0000:02:00.0 to group 14
[    0.596241] iommu: Adding device 0000:02:00.1 to group 14
[    0.596292] iommu: Adding device 0000:02:00.2 to group 14
[    0.596316] iommu: Adding device 0000:03:00.0 to group 14
[    0.596341] iommu: Adding device 0000:03:01.0 to group 14
[    0.596365] iommu: Adding device 0000:03:02.0 to group 14
[    0.596389] iommu: Adding device 0000:03:03.0 to group 14
[    0.596413] iommu: Adding device 0000:03:04.0 to group 14
[    0.596444] iommu: Adding device 0000:04:00.0 to group 14
[    0.596477] iommu: Adding device 0000:05:00.0 to group 14
[    0.596642] iommu: Adding device 0000:09:00.0 to group 15
[    0.596817] iommu: Adding device 0000:0a:00.0 to group 16
[    0.597040] iommu: Adding device 0000:0b:00.0 to group 17
[    0.597195] iommu: Using direct mapping for device 0000:0b:00.0
[    0.597324] iommu: Adding device 0000:0b:00.1 to group 18
[    0.597470] iommu: Adding device 0000:0c:00.0 to group 19
[    0.597626] iommu: Adding device 0000:0c:00.2 to group 20
[    0.597778] iommu: Adding device 0000:0c:00.3 to group 21
[    0.597984] iommu: Adding device 0000:0d:00.0 to group 22
[    0.598170] iommu: Adding device 0000:0d:00.2 to group 23
[    0.598365] iommu: Adding device 0000:0d:00.3 to group 24
[    0.598555] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
[    0.598563] AMD-Vi: Extended features (0xf77ef22294ada):
[    0.598570]  PPR NX GT IA GA PC GA_vAPIC
[    0.598577] AMD-Vi: Interrupt remapping enabled
[    0.598583] AMD-Vi: Virtual APIC enabled
[    0.598736] AMD-Vi: Lazy IO/TLB flushing enabled
[    0.604499] amd_uncore: AMD NB counters detected
[    0.604516] amd_uncore: AMD LLC counters detected
[    0.604875] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.607252] check: Scanning for low memory corruption every 60 seconds
[    0.607611] cryptomgr_test (114) used greatest stack depth: 14472 bytes left
[    0.609037] modprobe (115) used greatest stack depth: 13720 bytes left
[    0.610289] Initialise system trusted keyrings
[    0.610362] Key type blacklist registered
[    0.610442] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[    0.614005] zbud: loaded
[    0.615777] Platform Keyring initialized
[    0.714822] cryptomgr_test (144) used greatest stack depth: 13648 bytes left
[    0.724330] alg: No test for 842 (842-generic)
[    0.725507] alg: No test for 842 (842-scomp)
[    0.730389] cryptomgr_test (161) used greatest stack depth: 13520 bytes left
[    0.761842] NET: Registered protocol family 38
[    0.761866] Key type asymmetric registered
[    0.761880] Asymmetric key parser 'x509' registered
[    0.761915] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    0.762032] io scheduler mq-deadline registered
[    0.762589] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.763359] aer 0000:00:01.1:pcie002: AER enabled with IRQ 26
[    0.764334] aer 0000:00:01.3:pcie002: AER enabled with IRQ 27
[    0.765314] aer 0000:00:03.1:pcie002: AER enabled with IRQ 28
[    0.766301] aer 0000:00:07.1:pcie002: AER enabled with IRQ 29
[    0.768246] aer 0000:00:08.1:pcie002: AER enabled with IRQ 31
[    0.769872] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.769922] efifb: probing for efifb
[    0.769940] efifb: No BGRT, not showing boot graphics
[    0.769947] efifb: framebuffer at 0xe0000000, using 3072k, total 3072k
[    0.769955] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.769963] efifb: scrolling: redraw
[    0.769969] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.770271] Console: switching to colour frame buffer device 128x48
[    0.771415] fb0: EFI VGA frame buffer device
[    0.771628] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.771684] ACPI: Power Button [PWRB]
[    0.771761] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.771912] ACPI: Power Button [PWRF]
[    0.772019] Monitor-Mwait will be used to enter C-1 state
[    0.775037] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.795999] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.799668] Non-volatile memory driver v1.3
[    0.799739] Linux agpgart interface v0.103
[    0.802709] ahci 0000:02:00.1: version 3.0
[    0.802889] ahci 0000:02:00.1: SSS flag set, parallel bus scan disabled
[    0.802964] ahci 0000:02:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[    0.802993] ahci 0000:02:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    0.804432] scsi host0: ahci
[    0.804747] scsi host1: ahci
[    0.804929] scsi host2: ahci
[    0.805122] scsi host3: ahci
[    0.805310] scsi host4: ahci
[    0.805504] scsi host5: ahci
[    0.805672] scsi host6: ahci
[    0.805853] scsi host7: ahci
[    0.805950] ata1: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580100 irq 44
[    0.805977] ata2: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580180 irq 44
[    0.806003] ata3: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580200 irq 44
[    0.806447] ata4: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580280 irq 44
[    0.806873] ata5: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580300 irq 44
[    0.807286] ata6: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580380 irq 44
[    0.807701] ata7: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580400 irq 44
[    0.808107] ata8: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580480 irq 44
[    0.808733] ahci 0000:0d:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.809134] ahci 0000:0d:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.809817] scsi host8: ahci
[    0.810310] ata9: SATA max UDMA/133 abar m4096@0xfe808000 port 0xfe808100 irq 46
[    0.810882] libphy: Fixed MDIO Bus: probed
[    0.811424] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.811839] ehci-pci: EHCI PCI platform driver
[    0.812253] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.812670] ohci-pci: OHCI PCI platform driver
[    0.813105] uhci_hcd: USB Universal Host Controller Interface driver
[    0.813683] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.814340] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
[    0.870167] xhci_hcd 0000:02:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    0.871505] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.00
[    0.871968] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.872417] usb usb1: Product: xHCI Host Controller
[    0.872859] usb usb1: Manufacturer: Linux 5.0.0-0.rc4.git1.1.fc30.x86_64 xhci-hcd
[    0.873310] usb usb1: SerialNumber: 0000:02:00.0
[    0.874128] hub 1-0:1.0: USB hub found
[    0.874645] hub 1-0:1.0: 14 ports detected
[    0.909664] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.910236] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    0.910683] xhci_hcd 0000:02:00.0: Host supports USB 3.10 Enhanced SuperSpeed
[    0.911184] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.911679] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.00
[    0.912121] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.912558] usb usb2: Product: xHCI Host Controller
[    0.912982] usb usb2: Manufacturer: Linux 5.0.0-0.rc4.git1.1.fc30.x86_64 xhci-hcd
[    0.913416] usb usb2: SerialNumber: 0000:02:00.0
[    0.914101] hub 2-0:1.0: USB hub found
[    0.914585] hub 2-0:1.0: 8 ports detected
[    0.933940] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    0.934412] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 3
[    0.934958] xhci_hcd 0000:0c:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000000000410
[    0.935985] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.00
[    0.936438] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.936899] usb usb3: Product: xHCI Host Controller
[    0.937353] usb usb3: Manufacturer: Linux 5.0.0-0.rc4.git1.1.fc30.x86_64 xhci-hcd
[    0.937831] usb usb3: SerialNumber: 0000:0c:00.3
[    0.938476] hub 3-0:1.0: USB hub found
[    0.938961] hub 3-0:1.0: 4 ports detected
[    0.939791] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    0.940348] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 4
[    0.940855] xhci_hcd 0000:0c:00.3: Host supports USB 3.0  SuperSpeed
[    0.941381] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.941944] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.00
[    0.942477] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.943018] usb usb4: Product: xHCI Host Controller
[    0.943546] usb usb4: Manufacturer: Linux 5.0.0-0.rc4.git1.1.fc30.x86_64 xhci-hcd
[    0.944085] usb usb4: SerialNumber: 0000:0c:00.3
[    0.944820] hub 4-0:1.0: USB hub found
[    0.945357] hub 4-0:1.0: 4 ports detected
[    0.946248] usbcore: registered new interface driver usbserial_generic
[    0.946798] usbserial: USB Serial support registered for generic
[    0.947351] i8042: PNP: No PS/2 controller found.
[    0.947933] mousedev: PS/2 mouse device common for all mice
[    0.948728] rtc_cmos 00:01: RTC can wake from S4
[    0.949583] rtc_cmos 00:01: registered as rtc0
[    0.950087] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.950728] device-mapper: uevent: version 1.0.3
[    0.951344] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com
[    0.952347] hidraw: raw HID events driver (C) Jiri Kosina
[    0.952915] usbcore: registered new interface driver usbhid
[    0.953424] usbhid: USB HID core driver
[    0.954083] drop_monitor: Initializing network drop monitor service
[    0.954874] Initializing XFRM netlink socket
[    0.955600] NET: Registered protocol family 10
[    0.960407] Segment Routing with IPv6
[    0.960927] mip6: Mobile IPv6
[    0.961435] NET: Registered protocol family 17
[    0.961986] start plist test
[    0.963272] end plist test
[    0.965326] RAS: Correctable Errors collector initialized.
[    0.965898] microcode: CPU0: patch_level=0x0800820b
[    0.966406] microcode: CPU1: patch_level=0x0800820b
[    0.966897] microcode: CPU2: patch_level=0x0800820b
[    0.967378] microcode: CPU3: patch_level=0x0800820b
[    0.967846] microcode: CPU4: patch_level=0x0800820b
[    0.968307] microcode: CPU5: patch_level=0x0800820b
[    0.968769] microcode: CPU6: patch_level=0x0800820b
[    0.969231] microcode: CPU7: patch_level=0x0800820b
[    0.969705] microcode: CPU8: patch_level=0x0800820b
[    0.970146] microcode: CPU9: patch_level=0x0800820b
[    0.970568] microcode: CPU10: patch_level=0x0800820b
[    0.971001] microcode: CPU11: patch_level=0x0800820b
[    0.971405] microcode: CPU12: patch_level=0x0800820b
[    0.971802] microcode: CPU13: patch_level=0x0800820b
[    0.972192] microcode: CPU14: patch_level=0x0800820b
[    0.972569] microcode: CPU15: patch_level=0x0800820b
[    0.972978] microcode: Microcode Update Driver: v2.2.
[    0.972995] AVX2 version of gcm_enc/dec engaged.
[    0.973721] AES CTR mode by8 optimization enabled
[    1.012236] sched_clock: Marking stable (1020195033, -7971552)->(1167959042, -155735561)
[    1.013336] registered taskstats version 1
[    1.013712] Loading compiled-in X.509 certificates
[    1.036100] Loaded X.509 cert 'Fedora kernel signing key: fc65037f5a4274c252bae6102fa3ca7c4e008777'
[    1.036562] zswap: loaded using pool lzo/zbud
[    1.044826] Key type big_key registered
[    1.048630] Key type encrypted registered
[    1.050186] ima: No TPM chip found, activating TPM-bypass!
[    1.050556] ima: Allocated hash algorithm: sha1
[    1.050929] No architecture policies found
[    1.052160]   Magic number: 3:630:943
[    1.052556] tty tty0: hash matches
[    1.052916] tty console: hash matches
[    1.053406] rtc_cmos 00:01: setting system clock to 2019-01-29T15:55:12 UTC (1548777312)
[    1.116390] ata9: SATA link down (SStatus 0 SControl 300)
[    1.116614] ata1: SATA link down (SStatus 0 SControl 300)
[    1.233046] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[    1.265813] usb 4-2: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[    1.280062] usb 4-2: LPM exit latency is zeroed, disabling LPM.
[    1.281444] usb 4-2: Int endpoint with wBytesPerInterval of 1024 in config 1 interface 4 altsetting 0 ep 135: setting to 262
[    1.283173] usb 4-2: New USB device found, idVendor=07ca, idProduct=0553, bcdDevice= 3.08
[    1.283522] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.283877] usb 4-2: Product: Live Gamer Ultra-Video
[    1.284228] usb 4-2: Manufacturer: AVerMedia
[    1.284574] usb 4-2: SerialNumber: 5202584700069
[    1.364208] hid-generic 0003:07CA:0553.0001: hiddev96,hidraw0: USB HID v1.11 Device [AVerMedia Live Gamer Ultra-Video] on usb-0000:0c:00.3-2/input4
[    1.386743] usb 1-2: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    1.387335] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.387907] usb 1-2: Product: USB2.0 Hub
[    1.388451] usb 1-2: Manufacturer: VIA Labs, Inc.
[    1.395150] hub 1-2:1.0: USB hub found
[    1.398739] hub 1-2:1.0: 4 ports detected
[    1.430629] ata2: SATA link down (SStatus 0 SControl 300)
[    1.537079] usb 1-10: new full-speed USB device number 3 using xhci_hcd
[    1.623504] tsc: Refined TSC clocksource calibration: 3693.061 MHz
[    1.624149] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6a7777116fa, max_idle_ns: 881590883556 ns
[    1.624858] clocksource: Switched to clocksource tsc
[    1.740639] ata3: SATA link down (SStatus 0 SControl 300)
[    1.828422] usb 1-2.1: new high-speed USB device number 4 using xhci_hcd
[    1.845938] usb 1-10: New USB device found, idVendor=0b05, idProduct=1872, bcdDevice= 2.00
[    1.846687] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.847253] usb 1-10: Product: AURA LED Controller
[    1.847759] usb 1-10: Manufacturer: AsusTek Computer Inc.
[    1.848277] usb 1-10: SerialNumber: 00000000001A
[    1.866924] hid-generic 0003:0B05:1872.0002: hiddev97,hidraw1: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:02:00.0-10/input0
[    1.955760] usb 1-2.1: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    1.956345] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.956897] usb 1-2.1: Product: USB2.0 Hub
[    1.957452] usb 1-2.1: Manufacturer: VIA Labs, Inc.
[    1.965176] hub 1-2.1:1.0: USB hub found
[    1.968120] hub 1-2.1:1.0: 4 ports detected
[    2.054401] usb 1-12: new full-speed USB device number 5 using xhci_hcd
[    2.056003] ata4: SATA link down (SStatus 0 SControl 300)
[    2.283951] usb 1-12: New USB device found, idVendor=0b05, idProduct=185c, bcdDevice= 1.10
[    2.284756] usb 1-12: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.285497] usb 1-12: Product: Bluetooth Radio 
[    2.286038] usb 1-12: Manufacturer: Realtek 
[    2.286573] usb 1-12: SerialNumber: 00e04c000001
[    2.346054] usb 1-2.2: new full-speed USB device number 6 using xhci_hcd
[    2.367679] ata5: SATA link down (SStatus 0 SControl 300)
[    2.637413] usb 1-2.1.2: new full-speed USB device number 7 using xhci_hcd
[    2.664211] usb 1-2.2: New USB device found, idVendor=0a12, idProduct=0001, bcdDevice=88.91
[    2.665043] usb 1-2.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    2.665852] usb 1-2.2: Product: CSR8510 A10
[    2.839112] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.843895] ata6.00: ATA-10: ST12000NE0007-2GT116, EN01, max UDMA/133
[    2.844654] ata6.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    2.847978] ata6.00: configured for UDMA/133
[    2.849622] scsi 5:0:0:0: Direct-Access     ATA      ST12000NE0007-2G EN01 PQ: 0 ANSI: 5
[    2.850883] sd 5:0:0:0: [sda] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[    2.851040] sd 5:0:0:0: Attached scsi generic sg0 type 0
[    2.851495] sd 5:0:0:0: [sda] 4096-byte physical blocks
[    2.852601] sd 5:0:0:0: [sda] Write Protect is off
[    2.853146] sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.853172] sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.877567] sd 5:0:0:0: [sda] Attached SCSI disk
[    2.925420] usb 1-2.3: new high-speed USB device number 8 using xhci_hcd
[    2.989263] usb 1-2.1.2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.07
[    2.990072] usb 1-2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.990655] usb 1-2.1.2: Product: USB Receiver
[    2.991195] usb 1-2.1.2: Manufacturer: Logitech
[    3.160724] ata7: SATA link down (SStatus 0 SControl 300)
[    3.236761] usb 1-2.3: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    3.237576] usb 1-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.238361] usb 1-2.3: Product: USB2.0 Hub
[    3.239060] usb 1-2.3: Manufacturer: VIA Labs, Inc.
[    3.250333] hub 1-2.3:1.0: USB hub found
[    3.253285] hub 1-2.3:1.0: 4 ports detected
[    3.360423] usb 1-2.1.3: new low-speed USB device number 9 using xhci_hcd
[    3.468836] ata8: SATA link down (SStatus 0 SControl 300)
[    3.472581] Freeing unused decrypted memory: 2040K
[    3.474270] Freeing unused kernel image memory: 4872K
[    3.480228] Write protecting the kernel read-only data: 22528k
[    3.482630] Freeing unused kernel image memory: 2036K
[    3.483647] Freeing unused kernel image memory: 1632K
[    3.491323] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.491798] rodata_test: all tests were successful
[    3.492281] Run /init as init process
[    3.553324] systemd[1]: systemd 240 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    3.566073] systemd[1]: Detected architecture x86-64.
[    3.566613] systemd[1]: Running in initial RAM disk.
[    3.581603] systemd[1]: Set hostname to <localhost.localdomain>.
[    3.627590] ln (375) used greatest stack depth: 13280 bytes left
[    3.650228] systemd[1]: Listening on Journal Socket.
[    3.656398] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    3.659723] systemd[1]: Starting Setup Virtual Console...
[    3.661476] systemd[1]: Listening on Journal Audit Socket.
[    3.663203] systemd[1]: Condition check resulted in Load Kernel Modules being skipped.
[    3.665376] systemd[1]: Starting Apply Kernel Variables...
[    3.679287] usb 1-2.1.3: New USB device found, idVendor=046d, idProduct=c326, bcdDevice=79.00
[    3.679294] usb 1-2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.679295] usb 1-2.1.3: Product: USB Keyboard
[    3.679297] usb 1-2.1.3: Manufacturer: Logitech
[    3.703429] audit: type=1130 audit(1548777315.149:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.726830] audit: type=1130 audit(1548777315.172:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.728131] audit: type=1131 audit(1548777315.172:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.740782] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.3/1-2.1.3:1.0/0003:046D:C326.0006/input/input2
[    3.794189] audit: type=1130 audit(1548777315.240:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.795809] hid-generic 0003:046D:C326.0006: input,hidraw2: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.3/input0
[    3.805042] usb 1-2.4: new high-speed USB device number 10 using xhci_hcd
[    3.818704] audit: type=1130 audit(1548777315.264:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.830632] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.3/1-2.1.3:1.1/0003:046D:C326.0007/input/input3
[    3.857114] audit: type=1130 audit(1548777315.303:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.878236] audit: type=1130 audit(1548777315.324:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.885358] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.3/1-2.1.3:1.1/0003:046D:C326.0007/input/input4
[    3.887449] hid-generic 0003:046D:C326.0007: input,hiddev98,hidraw3: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.3/input1
[    3.951305] usb 1-2.4: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    3.952182] usb 1-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.953064] usb 1-2.4: Product: USB2.0 Hub
[    3.953906] usb 1-2.4: Manufacturer: VIA Labs, Inc.
[    3.966446] hub 1-2.4:1.0: USB hub found
[    3.970308] hub 1-2.4:1.0: 4 ports detected
[    4.059044] usb 1-2.3.3: new full-speed USB device number 11 using xhci_hcd
[    4.138818] audit: type=1130 audit(1548777315.584:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.148867] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    4.154448] logitech-djreceiver 0003:046D:C52B.0005: hiddev99,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-2.1.2/input2
[    4.161712] dca service started, version 1.12.1
[    4.168396] audit: type=1130 audit(1548777315.614:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=plymouth-start comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    4.181167] nvme nvme0: pci function 0000:01:00.0
[    4.193325] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    4.194316] igb: Copyright (c) 2007-2014 Intel Corporation.
[    4.224493] pps pps0: new PPS source ptp0
[    4.225460] igb 0000:04:00.0: added PHC on eth0
[    4.225462] igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    4.225464] igb 0000:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 4c:ed:fb:75:5b:ab
[    4.225465] igb 0000:04:00.0: eth0: PBA No: FFFFFF-0FF
[    4.225467] igb 0000:04:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    4.236393] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    4.238683] igb 0000:04:00.0 enp4s0: renamed from eth0
[    4.273878] input: Logitech Unifying Device. Wireless PID:4026 Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input5
[    4.276766] input: Logitech Unifying Device. Wireless PID:4026 Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input6
[    4.278602] input: Logitech Unifying Device. Wireless PID:4026 Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input7
[    4.280729] hid-generic 0003:046D:4026.0008: input,hidraw5: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:4026] on usb-0000:02:00.0-2.1.2:1
[    4.377343] usb 1-2.3.3: New USB device found, idVendor=054c, idProduct=09cc, bcdDevice= 1.00
[    4.378152] usb 1-2.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.378932] usb 1-2.3.3: Product: Wireless Controller
[    4.379704] usb 1-2.3.3: Manufacturer: Sony Interactive Entertainment
[    4.395106] nvme nvme0: 16/0/0 default/read/poll queues
[    4.399121]  nvme0n1: p1 p2 p3
[    4.412814] [drm] amdgpu kernel modesetting enabled.
[    4.413688] Parsing CRAT table with 1 nodes
[    4.414404] Ignoring ACPI CRAT on non-APU system
[    4.415135] Virtual CRAT table created for CPU
[    4.415826] Parsing CRAT table with 1 nodes
[    4.416559] Creating topology SYSFS entries
[    4.417322] Topology: Add CPU node
[    4.417991] Finished initializing topology
[    4.418857] checking generic (e0000000 300000) vs hw (e0000000 10000000)
[    4.418859] fb0: switching to amdgpudrmfb from EFI VGA
[    4.419631] Console: switching to colour dummy device 80x25
[    4.421780] [drm] initializing kernel modesetting (VEGA10 0x1002:0x687F 0x1458:0x2308 0xC1).
[    4.421884] [drm] register mmio base: 0xFE600000
[    4.421890] [drm] register mmio size: 524288
[    4.421907] [drm] add ip block number 0 <soc15_common>
[    4.421913] [drm] add ip block number 1 <gmc_v9_0>
[    4.421919] [drm] add ip block number 2 <vega10_ih>
[    4.421925] [drm] add ip block number 3 <psp>
[    4.421931] [drm] add ip block number 4 <gfx_v9_0>
[    4.421937] [drm] add ip block number 5 <sdma_v4_0>
[    4.421943] [drm] add ip block number 6 <powerplay>
[    4.421949] [drm] add ip block number 7 <dm>
[    4.421954] [drm] add ip block number 8 <uvd_v7_0>
[    4.421960] [drm] add ip block number 9 <vce_v4_0>
[    4.422234] [drm] UVD(0) is enabled in VM mode
[    4.422241] [drm] UVD(0) ENC is enabled in VM mode
[    4.422247] [drm] VCE enabled in VM mode
[    4.422313] amdgpu 0000:0b:00.0: No more image in the PCI ROM
[    4.422338] ATOM BIOS: xxx-xxx-xxx
[    4.422418] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    4.422434] amdgpu 0000:0b:00.0: VRAM: 8176M 0x000000F400000000 - 0x000000F5FEFFFFFF (8176M used)
[    4.422445] amdgpu 0000:0b:00.0: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[    4.422454] amdgpu 0000:0b:00.0: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[    4.422467] [drm] Detected VRAM RAM=8176M, BAR=256M
[    4.422473] [drm] RAM width 2048bits HBM
[    4.422838] [TTM] Zone  kernel: Available graphics memory: 16439740 kiB
[    4.422868] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    4.422876] [TTM] Initializing pool allocator
[    4.422896] [TTM] Initializing DMA pool allocator
[    4.423165] [drm] amdgpu: 8176M of VRAM memory ready
[    4.423173] [drm] amdgpu: 8176M of GTT memory ready.
[    4.423280] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    4.423453] [drm] PCIE GART of 512M enabled (table at 0x000000F400900000).
[    4.426899] [drm] use_doorbell being set to: [true]
[    4.426991] [drm] use_doorbell being set to: [true]
[    4.427378] [drm] Found UVD firmware Version: 1.87 Family ID: 17
[    4.427391] [drm] PSP loading UVD firmware
[    4.427968] [drm] Found VCE firmware Version: 55.3 Binary ID: 4
[    4.427983] [drm] PSP loading VCE firmware
[    4.451424] input: Sony Interactive Entertainment Wireless Controller Touchpad as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.3/1-2.3.3/1-2.3.3:1.3/0003:054C:09CC.0009/input/input12
[    4.489862] PM: Image not found (code -22)
[    4.490851] systemd-hiberna (575) used greatest stack depth: 13056 bytes left
[    4.577719] [drm] reserve 0x400000 from 0xf400d00000 for PSP TMR SIZE
[    4.593272] input: Sony Interactive Entertainment Wireless Controller Motion Sensors as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.3/1-2.3.3/1-2.3.3:1.3/0003:054C:09CC.0009/input/input13
[    4.644876] input: Logitech T400 as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input14
[    4.645627] logitech-hidpp-device 0003:046D:4026.0008: input,hidraw5: USB HID v1.11 Keyboard [Logitech T400] on usb-0000:02:00.0-2.1.2:1
[    4.661073] [drm] Display Core initialized with v3.2.08!
[    4.666089] input: Sony Interactive Entertainment Wireless Controller as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.3/1-2.3.3/1-2.3.3:1.3/0003:054C:09CC.0009/input/input11
[    4.666278] sony 0003:054C:09CC.0009: input,hidraw6: USB HID v81.11 Gamepad [Sony Interactive Entertainment Wireless Controller] on usb-0000:02:00.0-2.3.3/input3
[    4.694630] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.694641] [drm] Driver supports precise vblank timestamp query.
[    4.716294] [drm] UVD and UVD ENC initialized successfully.
[    4.816761] [drm] VCE initialized successfully.
[    4.819364] kfd kfd: Allocated 3969056 bytes on gart
[    4.819411] Virtual CRAT table created for GPU
[    4.819417] Parsing CRAT table with 1 nodes
[    4.819447] Creating topology SYSFS entries
[    4.819924] Topology: Add dGPU node [0x687f:0x1002]
[    4.820303] kfd kfd: added device 1002:687f
[    4.825723] [drm] fb mappable at 0xE1100000
[    4.825789] [drm] vram apper at 0xE0000000
[    4.825794] [drm] size 33177600
[    4.825798] [drm] fb depth is 24
[    4.825803] [drm]    pitch is 15360
[    4.826462] fbcon: amdgpudrmfb (fb0) is primary device
[    4.861186] Console: switching to colour frame buffer device 480x135
[    4.890600] amdgpu 0000:0b:00.0: fb0: amdgpudrmfb frame buffer device
[    4.897281] amdgpu 0000:0b:00.0: ring gfx uses VM inv eng 0 on hub 0
[    4.897283] amdgpu 0000:0b:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    4.897284] amdgpu 0000:0b:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    4.897285] amdgpu 0000:0b:00.0: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    4.897287] amdgpu 0000:0b:00.0: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    4.897288] amdgpu 0000:0b:00.0: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    4.897289] amdgpu 0000:0b:00.0: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    4.897290] amdgpu 0000:0b:00.0: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    4.897291] amdgpu 0000:0b:00.0: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    4.897292] amdgpu 0000:0b:00.0: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    4.897294] amdgpu 0000:0b:00.0: ring sdma0 uses VM inv eng 0 on hub 1
[    4.897296] amdgpu 0000:0b:00.0: ring sdma1 uses VM inv eng 1 on hub 1
[    4.897298] amdgpu 0000:0b:00.0: ring uvd_0 uses VM inv eng 4 on hub 1
[    4.897299] amdgpu 0000:0b:00.0: ring uvd_enc_0.0 uses VM inv eng 5 on hub 1
[    4.897301] amdgpu 0000:0b:00.0: ring uvd_enc_0.1 uses VM inv eng 6 on hub 1
[    4.897303] amdgpu 0000:0b:00.0: ring vce0 uses VM inv eng 7 on hub 1
[    4.897305] amdgpu 0000:0b:00.0: ring vce1 uses VM inv eng 8 on hub 1
[    4.897306] amdgpu 0000:0b:00.0: ring vce2 uses VM inv eng 9 on hub 1
[    4.897387] [drm] ECC is not present.
[    4.911500] [drm] Initialized amdgpu 3.27.0 20150101 for 0000:0b:00.0 on minor 0
[    4.923971] setfont (579) used greatest stack depth: 12720 bytes left
[    5.024885] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null)
[    5.163521] kauditd_printk_skb: 4 callbacks suppressed
[    5.163523] audit: type=1130 audit(1548777316.609:15): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.186544] audit: type=1130 audit(1548777316.632:16): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.186610] audit: type=1131 audit(1548777316.632:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.341561] audit: type=1130 audit(1548777316.787:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.352966] audit: type=1131 audit(1548777316.798:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.359472] audit: type=1131 audit(1548777316.805:20): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.359830] systemd-udevd (532) used greatest stack depth: 12176 bytes left
[    5.361026] systemd-udevd (499) used greatest stack depth: 12128 bytes left
[    5.361072] systemd-udevd (481) used greatest stack depth: 11632 bytes left
[    5.361704] audit: type=1131 audit(1548777316.807:21): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.363955] audit: type=1131 audit(1548777316.809:22): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.366102] audit: type=1131 audit(1548777316.812:23): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.389563] audit: type=1130 audit(1548777316.835:24): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-cleanup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.485678] systemd-journald[387]: Received SIGTERM from PID 1 (systemd).
[    5.541211] printk: systemd: 18 output lines suppressed due to ratelimiting
[    5.994267] SELinux:  Class xdp_socket not defined in policy.
[    5.994338] SELinux: the above unknown classes and permissions will be allowed
[    5.994362] SELinux:  policy capability network_peer_controls=1
[    5.994381] SELinux:  policy capability open_perms=1
[    5.994396] SELinux:  policy capability extended_socket_class=1
[    5.994415] SELinux:  policy capability always_check_network=0
[    5.994433] SELinux:  policy capability cgroup_seclabel=1
[    5.994449] SELinux:  policy capability nnp_nosuid_transition=1
[    6.049999] systemd[1]: Successfully loaded SELinux policy in 472.446ms.
[    6.095912] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 32.005ms.
[    6.098023] systemd[1]: systemd 240 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    6.110089] systemd[1]: Detected architecture x86-64.
[    6.111966] systemd[1]: Set hostname to <localhost.localdomain>.
[    6.170302] systemd[1]: /usr/lib/systemd/system/auditd.service:12: PIDFile= references path below legacy directory /var/run/, updating /var/run/auditd.pid → /run/auditd.pid; please update the unit file accordingly.
[    6.178758] systemd[1]: /usr/lib/systemd/system/gssproxy.service:9: PIDFile= references path below legacy directory /var/run/, updating /var/run/gssproxy.pid → /run/gssproxy.pid; please update the unit file accordingly.
[    6.179437] systemd[1]: /usr/lib/systemd/system/rpc-statd.service:14: PIDFile= references path below legacy directory /var/run/, updating /var/run/rpc.statd.pid → /run/rpc.statd.pid; please update the unit file accordingly.
[    6.181592] systemd[1]: /usr/lib/systemd/system/nfs-blkmap.service:10: PIDFile= references path below legacy directory /var/run/, updating /var/run/blkmapd.pid → /run/blkmapd.pid; please update the unit file accordingly.
[    6.187010] systemd[1]: /usr/lib/systemd/system/chronyd.service:9: PIDFile= references path below legacy directory /var/run/, updating /var/run/chrony/chronyd.pid → /run/chrony/chronyd.pid; please update the unit file accordingly.
[    6.194229] systemd[1]: /usr/lib/systemd/system/sssd.service:11: PIDFile= references path below legacy directory /var/run/, updating /var/run/sssd.pid → /run/sssd.pid; please update the unit file accordingly.
[    6.195389] systemd[1]: /usr/lib/systemd/system/mdmonitor.service:6: PIDFile= references path below legacy directory /var/run/, updating /var/run/mdadm/mdadm.pid → /run/mdadm/mdadm.pid; please update the unit file accordingly.
[    6.298319] EXT4-fs (nvme0n1p2): re-mounted. Opts: (null)
[    6.385545] systemd-journald[689]: Received request to flush runtime journal from PID 1
[    6.629803] acpi_cpufreq: overriding BIOS provided _PSD data
[    6.781576] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    6.781626] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    6.782019] ccp 0000:0c:00.2: enabling device (0000 -> 0002)
[    6.784706] ccp 0000:0c:00.2: ccp enabled
[    6.784780] ccp 0000:0c:00.2: psp initialization failed
[    6.784803] ccp 0000:0c:00.2: enabled
[    6.788233] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    6.788730] sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
[    6.788767] sp5100-tco sp5100-tco: Watchdog hardware is disabled
[    6.844096] Bluetooth: Core ver 2.22
[    6.844186] NET: Registered protocol family 31
[    6.844212] Bluetooth: HCI device and connection manager initialized
[    6.844321] Bluetooth: HCI socket layer initialized
[    6.844343] Bluetooth: L2CAP socket layer initialized
[    6.844391] Bluetooth: SCO socket layer initialized
[    6.868879] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    6.870246] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    6.877582] Bluetooth: hci0: RTL: rtl: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8822

[    6.878284] usbcore: registered new interface driver btusb
[    6.880436] Bluetooth: hci0: RTL: rom_version status=0 version=2

[    6.880484] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_fw.bin

[    6.881779] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_config.bin

[    6.881984] Bluetooth: hci0: RTL: cfg_sz 14, total sz 20270

[    6.884124] media: Linux media interface: v0.10
[    6.901004] asus_wmi: ASUS WMI generic driver loaded
[    6.905943] videodev: Linux video capture interface: v2.00
[    6.921144] asus_wmi: Initialization: 0x0
[    6.921277] asus_wmi: BIOS WMI version: 0.9
[    6.921515] asus_wmi: SFUN value: 0x0
[    6.933831] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input15
[    6.935714] asus_wmi: Number of fans: 1
[    6.953201] snd_hda_intel 0000:0b:00.1: Handle vga_switcheroo audio client
[    6.954455] snd_hda_intel 0000:0d:00.3: enabling device (0000 -> 0002)
[    6.961987] uvcvideo: Unknown video format 30313050-0000-0010-8000-00aa00389b71
[    6.962167] uvcvideo: Found UVC 1.00 device Live Gamer Ultra-Video (07ca:0553)
[    6.982624] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input16
[    6.984563] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input17
[    6.985849] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input18
[    6.986570] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input19
[    6.987167] input: HD-Audio Generic HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input20
[    6.988022] input: HD-Audio Generic HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card1/input21
[    6.991336] snd_hda_codec_realtek hdaudioC2D0: autoconfig for ALC1220: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    6.993711] snd_hda_codec_realtek hdaudioC2D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    6.995616] r8822be: module is from the staging directory, the quality is unknown, you have been warned.
[    6.996353] snd_hda_codec_realtek hdaudioC2D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    7.001534] snd_hda_codec_realtek hdaudioC2D0:    mono: mono_out=0x0
[    7.003439] snd_hda_codec_realtek hdaudioC2D0:    inputs:
[    7.005340] snd_hda_codec_realtek hdaudioC2D0:      Front Mic=0x19
[    7.010027] snd_hda_codec_realtek hdaudioC2D0:      Rear Mic=0x18
[    7.013605] snd_hda_codec_realtek hdaudioC2D0:      Line=0x1a
[    7.016674] r8822be 0000:05:00.0: enabling device (0000 -> 0003)
[    7.032573] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input22
[    7.034856] uvcvideo 4-2:1.0: Entity type for entity Extension 3 was not initialized!
[    7.035661] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input23
[    7.036000] r8822be: Using firmware rtlwifi/rtl8822befw.bin
[    7.038555] uvcvideo 4-2:1.0: Entity type for entity Processing 2 was not initialized!
[    7.041783] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input24
[    7.044783] uvcvideo 4-2:1.0: Entity type for entity Camera 1 was not initialized!
[    7.048809] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input25
[    7.054346] input: Live Gamer Ultra-Video: Live Ga as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb4/4-2/4-2:1.0/input/input27
[    7.056282] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card2/input26
[    7.065256] usbcore: registered new interface driver uvcvideo
[    7.068170] USB Video Class driver (1.1.1)
[    7.081363] kvm: Nested Virtualization enabled
[    7.082695] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
[    7.084668] kvm: Nested Paging enabled
[    7.086797] r8822be: rtlwifi: wireless switch is on
[    7.087876] SVM: Virtual VMLOAD VMSAVE supported
[    7.094179] SVM: Virtual GIF supported
[    7.102480] MCE: In-kernel MCE decoding enabled.
[    7.108827] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.111195] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.166613] r8822be 0000:05:00.0 wlp5s0: renamed from wlan0
[    7.183909] usbcore: registered new interface driver snd-usb-audio
[    7.189499] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.192456] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.234012] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.236086] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.286155] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.290040] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.345353] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.350372] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.402187] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.406091] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.444139] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.447894] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.479948] Adding 67108860k swap on /dev/nvme0n1p3.  Priority:-2 extents:1 across:67108860k SSFS
[    8.733184] EXT4-fs (sda): mounted filesystem with ordered data mode. Opts: (null)
[    8.917751] RPC: Registered named UNIX socket transport module.
[    8.919769] RPC: Registered udp transport module.
[    8.921732] RPC: Registered tcp transport module.
[    8.923739] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    9.153970] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    9.156681] Bluetooth: BNEP filters: protocol multicast
[    9.156704] Bluetooth: BNEP socket layer initialized
[   11.570543] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   11.581668] tun: Universal TUN/TAP device driver, 1.6
[   11.584670] virbr0: port 1(virbr0-nic) entered blocking state
[   11.584741] virbr0: port 1(virbr0-nic) entered disabled state
[   11.585180] device virbr0-nic entered promiscuous mode
[   11.817770] virbr0: port 1(virbr0-nic) entered blocking state
[   11.817816] virbr0: port 1(virbr0-nic) entered listening state
[   11.887073] virbr0: port 1(virbr0-nic) entered disabled state
[   12.604321] igb 0000:04:00.0 enp4s0: igb: enp4s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   12.711312] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready
[   18.430948] Bluetooth: RFCOMM TTY layer initialized
[   18.430958] Bluetooth: RFCOMM socket layer initialized
[   18.430992] Bluetooth: RFCOMM ver 1.11
[   19.460168] fuse init (API version 7.28)
[   21.711452] rfkill: input handler disabled
[  179.822770] show_signal_msg: 48 callbacks suppressed
[  179.822773] gnome-control-c[3325]: segfault at fffffff8 ip 00007fe2dee6a1a1 sp 00007ffcd40932f0 error 4 in libc-2.28.9000.so[7fe2dee06000+14e000]
[  179.822929] Code: 1f 84 00 00 00 00 00 66 90 f3 0f 1e fa 53 48 83 ec 10 48 8b 05 60 ad 13 00 48 8b 00 48 85 c0 0f 85 84 00 00 00 48 85 ff 74 6f <48> 8b 47 f8 48 8d 77 f0 a8 02 75 3b 48 8b 15 b4 ab 13 00 64 48 83
[  185.474955] WARNING! power/level is deprecated; use power/control instead
[  186.009102] BUG: unable to handle kernel NULL pointer dereference at 0000000000000006
[  186.009105] #PF error: [normal kernel read fault]
[  186.009107] PGD 0 P4D 0 
[  186.009109] Oops: 0000 [#1] SMP NOPTI
[  186.009111] CPU: 1 PID: 3169 Comm: inxi Tainted: G         C        5.0.0-0.rc4.git1.1.fc30.x86_64 #1
[  186.009112] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 1103 11/16/2018
[  186.009116] RIP: 0010:page_mapping+0x13/0x110
[  186.009117] Code: 01 5b 5d c3 48 c7 c6 40 87 2e 9c 48 89 ef e8 74 44 01 00 0f 0b 66 90 0f 1f 44 00 00 48 8b 47 08 48 8d 50 ff a8 01 48 0f 45 fa <48> 8b 57 08 48 8d 42 ff 83 e2 01 48 0f 44 c7 48 83 38 ff 0f 84 9a
[  186.009118] RSP: 0018:ffffa037091d7d18 EFLAGS: 00010202
[  186.009120] RAX: ffffffffffffffff RBX: ffffc4e500000000 RCX: ffffa037091d7d78
[  186.009121] RDX: fffffffffffffffe RSI: ffffffff9c2fb020 RDI: fffffffffffffffe
[  186.009122] RBP: ffffc4e5207d0000 R08: ffffffffffffffff R09: 0000000000820000
[  186.009123] R10: 0000000000820000 R11: 0000000000818000 R12: ffffffff9c2fb020
[  186.009124] R13: 0000000000000000 R14: ffff8ca029540e28 R15: ffff8ca029540e40
[  186.009125] FS:  00007f04376c1740(0000) GS:ffff8ca03ce00000(0000) knlGS:0000000000000000
[  186.009127] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  186.009128] CR2: 0000000000000006 CR3: 00000007c8434000 CR4: 00000000003406e0
[  186.009129] Call Trace:
[  186.009132]  __dump_page+0x16/0x120
[  186.009135]  test_pages_in_a_zone+0x148/0x170
[  186.009139]  valid_zones_show+0xe9/0x170
[  186.009142]  dev_attr_show+0x1d/0x40
[  186.009145]  sysfs_kf_seq_show+0xa5/0x100
[  186.009148]  seq_read+0xd4/0x410
[  186.009150]  __vfs_read+0x37/0x1b0
[  186.009153]  vfs_read+0xb2/0x170
[  186.009155]  ksys_read+0x52/0xc0
[  186.009158]  do_syscall_64+0x60/0x1e0
[  186.009161]  entry_SYSCALL_64_after_hwframe+0x49/0xbe
[  186.009163] RIP: 0033:0x7f0437957255
[  186.009164] Code: fe ff ff 50 48 8d 3d 2a 03 0a 00 e8 35 01 02 00 0f 1f 44 00 00 f3 0f 1e fa 48 8d 05 c5 94 0d 00 8b 00 85 c0 75 0f 31 c0 0f 05 <48> 3d 00 f0 ff ff 77 53 c3 66 90 41 54 49 89 d4 55 48 89 f5 53 89
[  186.009166] RSP: 002b:00007fff68338528 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
[  186.009167] RAX: ffffffffffffffda RBX: 0000000000000000 RCX: 00007f0437957255
[  186.009168] RDX: 0000000000002000 RSI: 00005580e5147160 RDI: 0000000000000003
[  186.009169] RBP: 0000000000002000 R08: 00005580e5145480 R09: 00005580e5147160
[  186.009170] R10: 0000000000000003 R11: 0000000000000246 R12: 00005580e5147160
[  186.009171] R13: 00005580e3a0c260 R14: 0000000000000003 R15: 00005580e5145400
[  186.009174] Modules linked in: uinput fuse rfcomm xt_CHECKSUM ipt_MASQUERADE tun bridge stp llc devlink nf_conntrack_netbios_ns nf_conntrack_broadcast xt_CT ip6t_rpfilter ip6t_REJECT nf_reject_ipv6 xt_conntrack ebtable_nat ip6table_nat nf_nat_ipv6 ip6table_mangle ip6table_raw ip6table_security iptable_nat nf_nat_ipv4 nf_nat iptable_mangle iptable_raw iptable_security nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 libcrc32c ip_set nfnetlink ebtable_filter ebtables ip6table_filter ip6_tables cmac bnep sunrpc vfat fat edac_mce_amd kvm_amd arc4 kvm r8822be(C) snd_hda_codec_realtek irqbypass snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi crct10dif_pclmul snd_hda_intel crc32_pclmul mac80211 uvcvideo joydev eeepc_wmi videobuf2_vmalloc videobuf2_memops videobuf2_v4l2 snd_usb_audio videobuf2_common snd_hda_codec videodev asus_wmi sparse_keymap ghash_clmulni_intel snd_usbmidi_lib video snd_hda_core snd_rawmidi wmi_bmof media snd_hwdep snd_seq btusb snd_seq_device btrtl snd_pcm cfg80211 btbcm
[  186.009198]  btintel bluetooth snd_timer snd ecdh_generic sp5100_tco rfkill soundcore i2c_piix4 k10temp ccp pcc_cpufreq gpio_amdpt gpio_generic acpi_cpufreq binfmt_misc hid_sony ff_memless amdgpu hid_logitech_hidpp chash amd_iommu_v2 gpu_sched ttm drm_kms_helper igb drm crc32c_intel nvme dca i2c_algo_bit hid_logitech_dj nvme_core wmi pinctrl_amd
[  186.009210] CR2: 0000000000000006
[  186.009212] ---[ end trace 75fb39e84be01786 ]---
[  186.009213] RIP: 0010:page_mapping+0x13/0x110
[  186.009214] Code: 01 5b 5d c3 48 c7 c6 40 87 2e 9c 48 89 ef e8 74 44 01 00 0f 0b 66 90 0f 1f 44 00 00 48 8b 47 08 48 8d 50 ff a8 01 48 0f 45 fa <48> 8b 57 08 48 8d 42 ff 83 e2 01 48 0f 44 c7 48 83 38 ff 0f 84 9a
[  186.009216] RSP: 0018:ffffa037091d7d18 EFLAGS: 00010202
[  186.009217] RAX: ffffffffffffffff RBX: ffffc4e500000000 RCX: ffffa037091d7d78
[  186.009218] RDX: fffffffffffffffe RSI: ffffffff9c2fb020 RDI: fffffffffffffffe
[  186.009219] RBP: ffffc4e5207d0000 R08: ffffffffffffffff R09: 0000000000820000
[  186.009220] R10: 0000000000820000 R11: 0000000000818000 R12: ffffffff9c2fb020
[  186.009221] R13: 0000000000000000 R14: ffff8ca029540e28 R15: ffff8ca029540e40
[  186.009222] FS:  00007f04376c1740(0000) GS:ffff8ca03ce00000(0000) knlGS:0000000000000000
[  186.009223] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  186.009224] CR2: 0000000000000006 CR3: 00000007c8434000 CR4: 00000000003406e0
[  186.009226] BUG: sleeping function called from invalid context at include/linux/percpu-rwsem.h:34
[  186.009227] in_atomic(): 0, irqs_disabled(): 1, pid: 3169, name: inxi
[  186.009228] INFO: lockdep is turned off.
[  186.009229] irq event stamp: 5845614
[  186.009230] hardirqs last  enabled at (5845613): [<ffffffff9b00452c>] do_syscall_64+0x1c/0x1e0
[  186.009232] hardirqs last disabled at (5845614): [<ffffffff9b0037fa>] trace_hardirqs_off_thunk+0x1a/0x1c
[  186.009234] softirqs last  enabled at (5844004): [<ffffffff9be0035f>] __do_softirq+0x35f/0x46a
[  186.009236] softirqs last disabled at (5843997): [<ffffffff9b0ee119>] irq_exit+0x119/0x120
[  186.009238] CPU: 1 PID: 3169 Comm: inxi Tainted: G      D  C        5.0.0-0.rc4.git1.1.fc30.x86_64 #1
[  186.009239] Hardware name: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 1103 11/16/2018
[  186.009240] Call Trace:
[  186.009242]  dump_stack+0x85/0xc0
[  186.009245]  ___might_sleep.cold+0xac/0xbc
[  186.009247]  exit_signals+0x30/0x240
[  186.009249]  do_exit+0xbc/0xcb0
[  186.009251]  ? ksys_read+0x52/0xc0
[  186.009254]  rewind_stack_do_exit+0x17/0x20

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: dmesg_git_4aa9fc2a435a_after_patch.txt --]
[-- Type: text/plain; charset="US-ASCII"; name="dmesg_git_4aa9fc2a435a_after_patch.txt", Size: 131197 bytes --]

[    0.000000] Linux version 5.0.0-0.rc4.git1.2.fc30.x86_64 (mockbuild@14fdd03c598c4a1f981e5679daa98dac) (gcc version 9.0.0 20190119 (Red Hat 9.0.0-0.3) (GCC)) #1 SMP Tue Jan 29 21:12:36 +05 2019
[    0.000000] Command line: BOOT_IMAGE=(hd1,gpt2)/boot/vmlinuz-5.0.0-0.rc4.git1.2.fc30.x86_64 root=UUID=7788c3ba-4ec6-45c8-875b-4a6900af0621 ro resume=UUID=8ae7c2bb-85ca-44f9-b884-b114e058d538 rhgb mem_encrypt=off scsi_mod.use_blk_mq=1 log_buf_len=4M sysrq_always_enabled=1 nmi_watchdog=1
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a209fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20a000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x00000000da043fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000da044000-0x00000000db540fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000db541000-0x00000000db568fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000db569000-0x00000000dba19fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000dba1a000-0x00000000dc591fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dc592000-0x00000000deffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd100000-0x00000000fdffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0xccb06018-0xccb17057] usable ==> usable
[    0.000000] e820: update [mem 0xccb06018-0xccb17057] usable ==> usable
[    0.000000] e820: update [mem 0xccaec018-0xccb05457] usable ==> usable
[    0.000000] e820: update [mem 0xccaec018-0xccb05457] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000009cfffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000009d00000-0x0000000009ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000a200000-0x000000000a209fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000000a20a000-0x000000000affffff] usable
[    0.000000] reserve setup_data: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000000b020000-0x00000000ccaec017] usable
[    0.000000] reserve setup_data: [mem 0x00000000ccaec018-0x00000000ccb05457] usable
[    0.000000] reserve setup_data: [mem 0x00000000ccb05458-0x00000000ccb06017] usable
[    0.000000] reserve setup_data: [mem 0x00000000ccb06018-0x00000000ccb17057] usable
[    0.000000] reserve setup_data: [mem 0x00000000ccb17058-0x00000000da043fff] usable
[    0.000000] reserve setup_data: [mem 0x00000000da044000-0x00000000db540fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000db541000-0x00000000db568fff] ACPI data
[    0.000000] reserve setup_data: [mem 0x00000000db569000-0x00000000dba19fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x00000000dba1a000-0x00000000dc591fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000dc592000-0x00000000deffffff] usable
[    0.000000] reserve setup_data: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fd100000-0x00000000fdffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000081f37ffff] usable
[    0.000000] efi: EFI v2.60 by American Megatrends
[    0.000000] efi:  ACPI 2.0=0xdb549000  ACPI=0xdb549000  SMBIOS=0xdc455000  SMBIOS 3.0=0xdc454000  ESRT=0xd6679c18  MEMATTR=0xd7578018 
[    0.000000] secureboot: Secure boot disabled
[    0.000000] SMBIOS 3.1.1 present.
[    0.000000] DMI: System manufacturer System Product Name/ROG STRIX X470-I GAMING, BIOS 1103 11/16/2018
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x81f380 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 write-through
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] TOM2: 0000000820000000 aka 33280M
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000000] last_pfn = 0xdf000 max_arch_pfn = 0x400000000
[    0.000000] esrt: Reserving ESRT space from 0x00000000d6679c18 to 0x00000000d6679c50.
[    0.000000] check: Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [(____ptrval____)] 96000 size 24576
[    0.000000] Using GB pages for direct mapping
[    0.000000] BRK [0x4c401000, 0x4c401fff] PGTABLE
[    0.000000] BRK [0x4c402000, 0x4c402fff] PGTABLE
[    0.000000] BRK [0x4c403000, 0x4c403fff] PGTABLE
[    0.000000] BRK [0x4c404000, 0x4c404fff] PGTABLE
[    0.000000] BRK [0x4c405000, 0x4c405fff] PGTABLE
[    0.000000] BRK [0x4c406000, 0x4c406fff] PGTABLE
[    0.000000] BRK [0x4c407000, 0x4c407fff] PGTABLE
[    0.000000] BRK [0x4c408000, 0x4c408fff] PGTABLE
[    0.000000] BRK [0x4c409000, 0x4c409fff] PGTABLE
[    0.000000] BRK [0x4c40a000, 0x4c40afff] PGTABLE
[    0.000000] printk: log_buf_len: 4194304 bytes
[    0.000000] printk: early log buf free: 253224(96%)
[    0.000000] RAMDISK: [mem 0x5b174000-0x5cce4fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000DB549000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DB549098 0000A4 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DB557490 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20181213/tbfadt-615)
[    0.000000] ACPI: DSDT 0x00000000DB5491D0 00E2BC (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.000000] ACPI: FACS 0x00000000DBA02D80 000040
[    0.000000] ACPI: APIC 0x00000000DB5575A8 0000DE (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DB557688 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x00000000DB5576D0 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DB557770 008C98 (v02 AMD    AMD ALIB 00000002 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000DB560408 002314 (v01 AMD    AMD CPU  00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x00000000DB562720 000F50 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x00000000DB563670 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x00000000DB5636A0 002DA8 (v01 AMD    AMD AOD  00000001 INTL 20120913)
[    0.000000] ACPI: MCFG 0x00000000DB566448 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: SSDT 0x00000000DB5681A8 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
[    0.000000] ACPI: HPET 0x00000000DB5664E0 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: SSDT 0x00000000DB566518 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
[    0.000000] ACPI: UEFI 0x00000000DB566540 000042 (v01                 00000000      00000000)
[    0.000000] ACPI: IVRS 0x00000000DB566588 0000D0 (v02 AMD    AMD IVRS 00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x00000000DB566658 001B4E (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000081f37ffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x81f355000-0x81f37ffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009cfffff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.000000]   node   0: [mem 0x000000000a20a000-0x000000000affffff]
[    0.000000]   node   0: [mem 0x000000000b020000-0x00000000da043fff]
[    0.000000]   node   0: [mem 0x00000000dc592000-0x00000000deffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000081f37ffff]
[    0.000000] Zeroed struct page in unavailable ranges: 14553 pages
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000081f37ffff]
[    0.000000] On node 0 totalpages: 8370855
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 26 pages reserved
[    0.000000]   DMA zone: 3999 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14047 pages used for memmap
[    0.000000]   DMA32 zone: 898952 pages, LIFO batch:63
[    0.000000]   Normal zone: 116686 pages used for memmap
[    0.000000]   Normal zone: 7467904 pages, LIFO batch:63
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
[    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 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.000000] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x09d00000-0x09ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0x0a200000-0x0a209fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xccaec000-0xccaecfff]
[    0.000000] PM: Registered nosave memory: [mem 0xccb05000-0xccb05fff]
[    0.000000] PM: Registered nosave memory: [mem 0xccb06000-0xccb06fff]
[    0.000000] PM: Registered nosave memory: [mem 0xccb17000-0xccb17fff]
[    0.000000] PM: Registered nosave memory: [mem 0xda044000-0xdb540fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb541000-0xdb568fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb569000-0xdba19fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdba1a000-0xdc591fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdf000000-0xdfffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfd0fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfd100000-0xfdffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.000000] random: get_random_bytes called from start_kernel+0x9b/0x548 with crng_init=0
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.000000] percpu: Embedded 494 pages/cpu @(____ptrval____) s1986560 r8192 d28672 u2097152
[    0.000000] pcpu-alloc: s1986560 r8192 d28672 u2097152 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 [0] 01 [0] 02 [0] 03 [0] 04 [0] 05 [0] 06 [0] 07 
[    0.000000] pcpu-alloc: [0] 08 [0] 09 [0] 10 [0] 11 [0] 12 [0] 13 [0] 14 [0] 15 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 8240032
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=(hd1,gpt2)/boot/vmlinuz-5.0.0-0.rc4.git1.2.fc30.x86_64 root=UUID=7788c3ba-4ec6-45c8-875b-4a6900af0621 ro resume=UUID=8ae7c2bb-85ca-44f9-b884-b114e058d538 rhgb mem_encrypt=off scsi_mod.use_blk_mq=1 log_buf_len=4M sysrq_always_enabled=1 nmi_watchdog=1
[    0.000000] sysrq: sysrq always enabled.
[    0.000000] Memory: 32563316K/33483420K available (14339K kernel code, 3223K rwdata, 4512K rodata, 4872K init, 18520K bss, 920104K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.000000] ftrace: allocating 39295 entries in 154 pages
[    0.000000] Running RCU self tests
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu: 	RCU lockdep checking is enabled.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[    0.000000] rcu: 	RCU callback double-/use-after-free debug enabled.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.000000] NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] printk: console [tty0] enabled
[    0.000000] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar
[    0.000000] ... MAX_LOCKDEP_SUBCLASSES:  8
[    0.000000] ... MAX_LOCK_DEPTH:          48
[    0.000000] ... MAX_LOCKDEP_KEYS:        8191
[    0.000000] ... CLASSHASH_SIZE:          4096
[    0.000000] ... MAX_LOCKDEP_ENTRIES:     32768
[    0.000000] ... MAX_LOCKDEP_CHAINS:      65536
[    0.000000] ... CHAINHASH_SIZE:          32768
[    0.000000]  memory used by lock dependency info: 7775 kB
[    0.000000]  per task-struct memory footprint: 2688 bytes
[    0.000000] kmemleak: Kernel memory leak detector disabled
[    0.000000] ACPI: Core revision 20181213
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] hpet clockevent registered
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.001000] Switched APIC routing to physical flat.
[    0.001000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.009000] tsc: Unable to calibrate against PIT
[    0.009000] tsc: using HPET reference calibration
[    0.009000] tsc: Detected 3692.632 MHz processor
[    0.000012] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6a744c529fd, max_idle_ns: 881590914926 ns
[    0.000034] Calibrating delay loop (skipped), value calculated using timer frequency.. 7385.26 BogoMIPS (lpj=3692632)
[    0.000047] pid_max: default: 32768 minimum: 301
[    0.018038] ---[ User Space ]---
[    0.018045] 0x0000000000000000-0x0000000000008000          32K     RW                     x  pte
[    0.018059] 0x0000000000008000-0x000000000003f000         220K                               pte
[    0.018070] 0x000000000003f000-0x0000000000040000           4K                               pte
[    0.018082] 0x0000000000040000-0x00000000000a0000         384K     RW                     x  pte
[    0.018097] 0x00000000000a0000-0x0000000000200000        1408K                               pte
[    0.018108] 0x0000000000200000-0x0000000001000000          14M                               pmd
[    0.018120] 0x0000000001000000-0x0000000001020000         128K                               pte
[    0.018134] 0x0000000001020000-0x0000000001200000        1920K                               pte
[    0.018148] 0x0000000001200000-0x0000000040000000        1006M                               pmd
[    0.018159] 0x0000000040000000-0x00000000c0000000           2G                               pud
[    0.018171] 0x00000000c0000000-0x00000000cce00000         206M                               pmd
[    0.018185] 0x00000000cce00000-0x00000000ccf7e000        1528K                               pte
[    0.018197] 0x00000000ccf7e000-0x00000000cd000000         520K                               pte
[    0.018209] 0x00000000cd000000-0x00000000d6600000         150M                               pmd
[    0.018221] 0x00000000d6600000-0x00000000d6679000         484K                               pte
[    0.018234] 0x00000000d6679000-0x00000000d6800000        1564K     RW                     x  pte
[    0.018247] 0x00000000d6800000-0x00000000d8e00000          38M     RW         PSE         x  pmd
[    0.018261] 0x00000000d8e00000-0x00000000d8f20000        1152K     RW                     x  pte
[    0.018275] 0x00000000d8f20000-0x00000000d9000000         896K                               pte
[    0.018286] 0x00000000d9000000-0x00000000d9200000           2M                               pmd
[    0.018298] 0x00000000d9200000-0x00000000d928d000         564K                               pte
[    0.018312] 0x00000000d928d000-0x00000000d9400000        1484K                               pte
[    0.018323] 0x00000000d9400000-0x00000000da000000          12M                               pmd
[    0.018334] 0x00000000da000000-0x00000000da044000         272K                               pte
[    0.018348] 0x00000000da044000-0x00000000da200000        1776K                               pte
[    0.018360] 0x00000000da200000-0x00000000dba00000          24M                               pmd
[    0.018371] 0x00000000dba00000-0x00000000dba1a000         104K                               pte
[    0.018385] 0x00000000dba1a000-0x00000000dbc00000        1944K     RW                     NX pte
[    0.018398] 0x00000000dbc00000-0x00000000dc400000           8M     RW         PSE         NX pmd
[    0.018412] 0x00000000dc400000-0x00000000dc50b000        1068K     RW                     NX pte
[    0.018424] 0x00000000dc50b000-0x00000000dc50e000          12K     ro                     x  pte
[    0.018436] 0x00000000dc50e000-0x00000000dc513000          20K     RW                     NX pte
[    0.018448] 0x00000000dc513000-0x00000000dc514000           4K     ro                     x  pte
[    0.018461] 0x00000000dc514000-0x00000000dc518000          16K     RW                     NX pte
[    0.018473] 0x00000000dc518000-0x00000000dc51c000          16K     ro                     x  pte
[    0.018485] 0x00000000dc51c000-0x00000000dc521000          20K     RW                     NX pte
[    0.018497] 0x00000000dc521000-0x00000000dc522000           4K     ro                     x  pte
[    0.018509] 0x00000000dc522000-0x00000000dc526000          16K     RW                     NX pte
[    0.018522] 0x00000000dc526000-0x00000000dc527000           4K     ro                     x  pte
[    0.018534] 0x00000000dc527000-0x00000000dc52c000          20K     RW                     NX pte
[    0.018546] 0x00000000dc52c000-0x00000000dc539000          52K     ro                     x  pte
[    0.018558] 0x00000000dc539000-0x00000000dc540000          28K     RW                     NX pte
[    0.018570] 0x00000000dc540000-0x00000000dc543000          12K     ro                     x  pte
[    0.018583] 0x00000000dc543000-0x00000000dc549000          24K     RW                     NX pte
[    0.018595] 0x00000000dc549000-0x00000000dc54a000           4K     ro                     x  pte
[    0.018607] 0x00000000dc54a000-0x00000000dc54f000          20K     RW                     NX pte
[    0.018619] 0x00000000dc54f000-0x00000000dc550000           4K     ro                     x  pte
[    0.018631] 0x00000000dc550000-0x00000000dc555000          20K     RW                     NX pte
[    0.018644] 0x00000000dc555000-0x00000000dc556000           4K     ro                     x  pte
[    0.018656] 0x00000000dc556000-0x00000000dc55b000          20K     RW                     NX pte
[    0.018668] 0x00000000dc55b000-0x00000000dc55c000           4K     ro                     x  pte
[    0.018680] 0x00000000dc55c000-0x00000000dc561000          20K     RW                     NX pte
[    0.018693] 0x00000000dc561000-0x00000000dc562000           4K     ro                     x  pte
[    0.018705] 0x00000000dc562000-0x00000000dc567000          20K     RW                     NX pte
[    0.018717] 0x00000000dc567000-0x00000000dc568000           4K     ro                     x  pte
[    0.018729] 0x00000000dc568000-0x00000000dc56c000          16K     RW                     NX pte
[    0.018741] 0x00000000dc56c000-0x00000000dc576000          40K     ro                     x  pte
[    0.018754] 0x00000000dc576000-0x00000000dc57f000          36K     RW                     NX pte
[    0.018766] 0x00000000dc57f000-0x00000000dc584000          20K     ro                     x  pte
[    0.018778] 0x00000000dc584000-0x00000000dc589000          20K     RW                     NX pte
[    0.018790] 0x00000000dc589000-0x00000000dc58d000          16K     ro                     x  pte
[    0.018802] 0x00000000dc58d000-0x00000000dc592000          20K     RW                     NX pte
[    0.018815] 0x00000000dc592000-0x00000000dc600000         440K                               pte
[    0.018827] 0x00000000dc600000-0x00000000df000000          42M                               pmd
[    0.018839] 0x00000000df000000-0x00000000f8000000         400M                               pmd
[    0.018850] 0x00000000f8000000-0x00000000fc000000          64M     RW         PSE         x  pmd
[    0.018862] 0x00000000fc000000-0x00000000fd000000          16M                               pmd
[    0.018875] 0x00000000fd000000-0x00000000fd100000           1M                               pte
[    0.018888] 0x00000000fd100000-0x00000000fd200000           1M     RW                     x  pte
[    0.018900] 0x00000000fd200000-0x00000000fe000000          14M     RW         PSE         x  pmd
[    0.018913] 0x00000000fe000000-0x00000000fea00000          10M                               pmd
[    0.018924] 0x00000000fea00000-0x00000000fea10000          64K     RW                     x  pte
[    0.018939] 0x00000000fea10000-0x00000000feb80000        1472K                               pte
[    0.018951] 0x00000000feb80000-0x00000000fec02000         520K     RW                     x  pte
[    0.018963] 0x00000000fec02000-0x00000000fec10000          56K                               pte
[    0.018974] 0x00000000fec10000-0x00000000fec11000           4K     RW                     x  pte
[    0.018986] 0x00000000fec11000-0x00000000fec30000         124K                               pte
[    0.018998] 0x00000000fec30000-0x00000000fec31000           4K     RW                     x  pte
[    0.019011] 0x00000000fec31000-0x00000000fed00000         828K                               pte
[    0.019022] 0x00000000fed00000-0x00000000fed01000           4K     RW                     x  pte
[    0.019042] 0x00000000fed01000-0x00000000fed40000         252K                               pte
[    0.019053] 0x00000000fed40000-0x00000000fed45000          20K     RW                     x  pte
[    0.019066] 0x00000000fed45000-0x00000000fed80000         236K                               pte
[    0.019077] 0x00000000fed80000-0x00000000fed90000          64K     RW                     x  pte
[    0.019090] 0x00000000fed90000-0x00000000fedc2000         200K                               pte
[    0.019101] 0x00000000fedc2000-0x00000000fedd0000          56K     RW                     x  pte
[    0.019113] 0x00000000fedd0000-0x00000000fedd4000          16K                               pte
[    0.019124] 0x00000000fedd4000-0x00000000fedd6000           8K     RW                     x  pte
[    0.019137] 0x00000000fedd6000-0x00000000fee00000         168K                               pte
[    0.019149] 0x00000000fee00000-0x00000000fef00000           1M     RW                     x  pte
[    0.019163] 0x00000000fef00000-0x00000000ff000000           1M                               pte
[    0.019174] 0x00000000ff000000-0x0000000100000000          16M     RW         PSE         x  pmd
[    0.019187] 0x0000000100000000-0x00000007c0000000          27G                               pud
[    0.019201] 0x00000007c0000000-0x00000007fc400000         964M                               pmd
[    0.019215] 0x00000007fc400000-0x00000007fc5c0000        1792K                               pte
[    0.019226] 0x00000007fc5c0000-0x00000007fc5c2000           8K     RW                     NX pte
[    0.019238] 0x00000007fc5c2000-0x00000007fc600000         248K                               pte
[    0.019250] 0x00000007fc600000-0x0000000800000000          58M                               pmd
[    0.019264] 0x0000000800000000-0x0000008000000000         480G                               pud
[    0.019279] 0x0000008000000000-0xffff800000000000   17179737600G                               pgd
[    0.019290] ---[ Kernel Space ]---
[    0.019295] 0xffff800000000000-0xffff808000000000         512G                               pgd
[    0.019306] ---[ LDT remap ]---
[    0.019311] 0xffff808000000000-0xffff810000000000         512G                               pgd
[    0.019322] ---[ Low Kernel Mapping ]---
[    0.019328] 0xffff810000000000-0xffff818000000000         512G                               pgd
[    0.019339] ---[ vmalloc() Area ]---
[    0.019344] 0xffff818000000000-0xffff820000000000         512G                               pgd
[    0.019355] ---[ Vmemmap ]---
[    0.019361] 0xffff820000000000-0xffff990000000000          23T                               pgd
[    0.019374] 0xffff990000000000-0xffff997900000000         484G                               pud
[    0.019389] 0xffff997900000000-0xffff997900200000           2M     RW                 GLB NX pte
[    0.019402] 0xffff997900200000-0xffff997909c00000         154M     RW         PSE     GLB NX pmd
[    0.019416] 0xffff997909c00000-0xffff997909d00000           1M     RW                 GLB NX pte
[    0.019430] 0xffff997909d00000-0xffff997909e00000           1M                               pte
[    0.019441] 0xffff997909e00000-0xffff99790a000000           2M                               pmd
[    0.019452] 0xffff99790a000000-0xffff99790a200000           2M     RW         PSE     GLB NX pmd
[    0.019464] 0xffff99790a200000-0xffff99790a20a000          40K                               pte
[    0.019479] 0xffff99790a20a000-0xffff99790a400000        2008K     RW                 GLB NX pte
[    0.019491] 0xffff99790a400000-0xffff99790b000000          12M     RW         PSE     GLB NX pmd
[    0.019504] 0xffff99790b000000-0xffff99790b020000         128K                               pte
[    0.019518] 0xffff99790b020000-0xffff99790b200000        1920K     RW                 GLB NX pte
[    0.019533] 0xffff99790b200000-0xffff997940000000         846M     RW         PSE     GLB NX pmd
[    0.019545] 0xffff997940000000-0xffff9979c0000000           2G     RW         PSE     GLB NX pud
[    0.019559] 0xffff9979c0000000-0xffff9979da000000         416M     RW         PSE     GLB NX pmd
[    0.019571] 0xffff9979da000000-0xffff9979da044000         272K     RW                 GLB NX pte
[    0.019587] 0xffff9979da044000-0xffff9979da200000        1776K                               pte
[    0.019598] 0xffff9979da200000-0xffff9979dc400000          34M                               pmd
[    0.019612] 0xffff9979dc400000-0xffff9979dc592000        1608K                               pte
[    0.019624] 0xffff9979dc592000-0xffff9979dc600000         440K     RW                 GLB NX pte
[    0.019636] 0xffff9979dc600000-0xffff9979df000000          42M     RW         PSE     GLB NX pmd
[    0.019650] 0xffff9979df000000-0xffff997a00000000         528M                               pmd
[    0.019661] 0xffff997a00000000-0xffff998100000000          28G     RW         PSE     GLB NX pud
[    0.019675] 0xffff998100000000-0xffff99811f200000         498M     RW         PSE     GLB NX pmd
[    0.019690] 0xffff99811f200000-0xffff99811f380000        1536K     RW                 GLB NX pte
[    0.019703] 0xffff99811f380000-0xffff99811f400000         512K                               pte
[    0.019715] 0xffff99811f400000-0xffff998140000000         524M                               pmd
[    0.019729] 0xffff998140000000-0xffff9a0000000000         507G                               pud
[    0.019741] 0xffff9a0000000000-0xffffbf0000000000          37T                               pgd
[    0.019755] 0xffffbf0000000000-0xffffbf6240000000         393G                               pud
[    0.019766] 0xffffbf6240000000-0xffffbf6240001000           4K     RW                 GLB NX pte
[    0.019778] 0xffffbf6240001000-0xffffbf6240002000           4K                               pte
[    0.019789] 0xffffbf6240002000-0xffffbf6240003000           4K     RW                 GLB NX pte
[    0.019801] 0xffffbf6240003000-0xffffbf6240004000           4K                               pte
[    0.019812] 0xffffbf6240004000-0xffffbf6240007000          12K     RW                 GLB NX pte
[    0.019825] 0xffffbf6240007000-0xffffbf6240008000           4K                               pte
[    0.019836] 0xffffbf6240008000-0xffffbf624000a000           8K     RW                 GLB NX pte
[    0.019848] 0xffffbf624000a000-0xffffbf624000b000           4K                               pte
[    0.019859] 0xffffbf624000b000-0xffffbf624000c000           4K     RW                 GLB NX pte
[    0.019871] 0xffffbf624000c000-0xffffbf624000d000           4K                               pte
[    0.019882] 0xffffbf624000d000-0xffffbf624000e000           4K     RW     PCD         GLB NX pte
[    0.019894] 0xffffbf624000e000-0xffffbf6240010000           8K                               pte
[    0.019906] 0xffffbf6240010000-0xffffbf624001f000          60K     RW                 GLB NX pte
[    0.019918] 0xffffbf624001f000-0xffffbf6240020000           4K                               pte
[    0.019929] 0xffffbf6240020000-0xffffbf624002a000          40K     RW                 GLB NX pte
[    0.019941] 0xffffbf624002a000-0xffffbf624002c000           8K                               pte
[    0.019952] 0xffffbf624002c000-0xffffbf6240030000          16K     RW                 GLB NX pte
[    0.019964] 0xffffbf6240030000-0xffffbf6240034000          16K                               pte
[    0.019976] 0xffffbf6240034000-0xffffbf6240037000          12K     RW                 GLB NX pte
[    0.019988] 0xffffbf6240037000-0xffffbf6240080000         292K                               pte
[    0.020000] 0xffffbf6240080000-0xffffbf6240100000         512K     RW     PCD         GLB NX pte
[    0.020014] 0xffffbf6240100000-0xffffbf6240200000           1M                               pte
[    0.020030] 0xffffbf6240200000-0xffffbf6280000000        1022M                               pmd
[    0.020042] 0xffffbf6280000000-0xffffbf8000000000         118G                               pud
[    0.020054] 0xffffbf8000000000-0xffffe28000000000          35T                               pgd
[    0.020068] 0xffffe28000000000-0xffffe2fb80000000         494G                               pud
[    0.020080] 0xffffe2fb80000000-0xffffe2fb83800000          56M     RW         PSE     GLB NX pmd
[    0.020092] 0xffffe2fb83800000-0xffffe2fb84000000           8M                               pmd
[    0.020104] 0xffffe2fb84000000-0xffffe2fba0800000         456M     RW         PSE     GLB NX pmd
[    0.020118] 0xffffe2fba0800000-0xffffe2fbc0000000         504M                               pmd
[    0.020129] 0xffffe2fbc0000000-0xffffe30000000000          17G                               pud
[    0.020141] 0xffffe30000000000-0xfffffe0000000000          27T                               pgd
[    0.020152] ---[ CPU entry Area ]---
[    0.020158] 0xfffffe0000000000-0xfffffe0000002000           8K     ro                 GLB NX pte
[    0.020170] 0xfffffe0000002000-0xfffffe0000003000           4K     RW                 GLB NX pte
[    0.020182] 0xfffffe0000003000-0xfffffe0000006000          12K     ro                 GLB NX pte
[    0.020194] 0xfffffe0000006000-0xfffffe000000b000          20K     RW                 GLB NX pte
[    0.020207] 0xfffffe000000b000-0xfffffe000002c000         132K                               pte
[    0.020218] 0xfffffe000002c000-0xfffffe000002d000           4K     ro                 GLB NX pte
[    0.020230] 0xfffffe000002d000-0xfffffe000002e000           4K     RW                 GLB NX pte
[    0.020242] 0xfffffe000002e000-0xfffffe0000031000          12K     ro                 GLB NX pte
[    0.020255] 0xfffffe0000031000-0xfffffe0000036000          20K     RW                 GLB NX pte
[    0.020267] 0xfffffe0000036000-0xfffffe0000057000         132K                               pte
[    0.020278] 0xfffffe0000057000-0xfffffe0000058000           4K     ro                 GLB NX pte
[    0.020290] 0xfffffe0000058000-0xfffffe0000059000           4K     RW                 GLB NX pte
[    0.020303] 0xfffffe0000059000-0xfffffe000005c000          12K     ro                 GLB NX pte
[    0.020315] 0xfffffe000005c000-0xfffffe0000061000          20K     RW                 GLB NX pte
[    0.020327] 0xfffffe0000061000-0xfffffe0000082000         132K                               pte
[    0.020338] 0xfffffe0000082000-0xfffffe0000083000           4K     ro                 GLB NX pte
[    0.020351] 0xfffffe0000083000-0xfffffe0000084000           4K     RW                 GLB NX pte
[    0.020363] 0xfffffe0000084000-0xfffffe0000087000          12K     ro                 GLB NX pte
[    0.020375] 0xfffffe0000087000-0xfffffe000008c000          20K     RW                 GLB NX pte
[    0.020387] 0xfffffe000008c000-0xfffffe00000ad000         132K                               pte
[    0.020399] 0xfffffe00000ad000-0xfffffe00000ae000           4K     ro                 GLB NX pte
[    0.020411] 0xfffffe00000ae000-0xfffffe00000af000           4K     RW                 GLB NX pte
[    0.020423] 0xfffffe00000af000-0xfffffe00000b2000          12K     ro                 GLB NX pte
[    0.020435] 0xfffffe00000b2000-0xfffffe00000b7000          20K     RW                 GLB NX pte
[    0.020448] 0xfffffe00000b7000-0xfffffe00000d8000         132K                               pte
[    0.020459] 0xfffffe00000d8000-0xfffffe00000d9000           4K     ro                 GLB NX pte
[    0.020472] 0xfffffe00000d9000-0xfffffe00000da000           4K     RW                 GLB NX pte
[    0.020487] 0xfffffe00000da000-0xfffffe00000dd000          12K     ro                 GLB NX pte
[    0.020501] 0xfffffe00000dd000-0xfffffe00000e2000          20K     RW                 GLB NX pte
[    0.020513] 0xfffffe00000e2000-0xfffffe0000103000         132K                               pte
[    0.020523] 0xfffffe0000103000-0xfffffe0000104000           4K     ro                 GLB NX pte
[    0.020535] 0xfffffe0000104000-0xfffffe0000105000           4K     RW                 GLB NX pte
[    0.020547] 0xfffffe0000105000-0xfffffe0000108000          12K     ro                 GLB NX pte
[    0.020558] 0xfffffe0000108000-0xfffffe000010d000          20K     RW                 GLB NX pte
[    0.020570] 0xfffffe000010d000-0xfffffe000012e000         132K                               pte
[    0.020580] 0xfffffe000012e000-0xfffffe000012f000           4K     ro                 GLB NX pte
[    0.020592] 0xfffffe000012f000-0xfffffe0000130000           4K     RW                 GLB NX pte
[    0.020604] 0xfffffe0000130000-0xfffffe0000133000          12K     ro                 GLB NX pte
[    0.020615] 0xfffffe0000133000-0xfffffe0000138000          20K     RW                 GLB NX pte
[    0.020627] 0xfffffe0000138000-0xfffffe0000159000         132K                               pte
[    0.020638] 0xfffffe0000159000-0xfffffe000015a000           4K     ro                 GLB NX pte
[    0.020649] 0xfffffe000015a000-0xfffffe000015b000           4K     RW                 GLB NX pte
[    0.020661] 0xfffffe000015b000-0xfffffe000015e000          12K     ro                 GLB NX pte
[    0.020672] 0xfffffe000015e000-0xfffffe0000163000          20K     RW                 GLB NX pte
[    0.020684] 0xfffffe0000163000-0xfffffe0000184000         132K                               pte
[    0.020695] 0xfffffe0000184000-0xfffffe0000185000           4K     ro                 GLB NX pte
[    0.020706] 0xfffffe0000185000-0xfffffe0000186000           4K     RW                 GLB NX pte
[    0.020718] 0xfffffe0000186000-0xfffffe0000189000          12K     ro                 GLB NX pte
[    0.020729] 0xfffffe0000189000-0xfffffe000018e000          20K     RW                 GLB NX pte
[    0.020741] 0xfffffe000018e000-0xfffffe00001af000         132K                               pte
[    0.020752] 0xfffffe00001af000-0xfffffe00001b0000           4K     ro                 GLB NX pte
[    0.020763] 0xfffffe00001b0000-0xfffffe00001b1000           4K     RW                 GLB NX pte
[    0.020775] 0xfffffe00001b1000-0xfffffe00001b4000          12K     ro                 GLB NX pte
[    0.020786] 0xfffffe00001b4000-0xfffffe00001b9000          20K     RW                 GLB NX pte
[    0.020798] 0xfffffe00001b9000-0xfffffe00001da000         132K                               pte
[    0.020809] 0xfffffe00001da000-0xfffffe00001db000           4K     ro                 GLB NX pte
[    0.020820] 0xfffffe00001db000-0xfffffe00001dc000           4K     RW                 GLB NX pte
[    0.020832] 0xfffffe00001dc000-0xfffffe00001df000          12K     ro                 GLB NX pte
[    0.020843] 0xfffffe00001df000-0xfffffe00001e4000          20K     RW                 GLB NX pte
[    0.020855] 0xfffffe00001e4000-0xfffffe0000205000         132K                               pte
[    0.020866] 0xfffffe0000205000-0xfffffe0000206000           4K     ro                 GLB NX pte
[    0.020877] 0xfffffe0000206000-0xfffffe0000207000           4K     RW                 GLB NX pte
[    0.020889] 0xfffffe0000207000-0xfffffe000020a000          12K     ro                 GLB NX pte
[    0.020900] 0xfffffe000020a000-0xfffffe000020f000          20K     RW                 GLB NX pte
[    0.020912] 0xfffffe000020f000-0xfffffe0000230000         132K                               pte
[    0.020923] 0xfffffe0000230000-0xfffffe0000231000           4K     ro                 GLB NX pte
[    0.020934] 0xfffffe0000231000-0xfffffe0000232000           4K     RW                 GLB NX pte
[    0.020946] 0xfffffe0000232000-0xfffffe0000235000          12K     ro                 GLB NX pte
[    0.020957] 0xfffffe0000235000-0xfffffe000023a000          20K     RW                 GLB NX pte
[    0.020969] 0xfffffe000023a000-0xfffffe000025b000         132K                               pte
[    0.020980] 0xfffffe000025b000-0xfffffe000025c000           4K     ro                 GLB NX pte
[    0.020991] 0xfffffe000025c000-0xfffffe000025d000           4K     RW                 GLB NX pte
[    0.021003] 0xfffffe000025d000-0xfffffe0000260000          12K     ro                 GLB NX pte
[    0.021015] 0xfffffe0000260000-0xfffffe0000265000          20K     RW                 GLB NX pte
[    0.021026] 0xfffffe0000265000-0xfffffe0000286000         132K                               pte
[    0.021039] 0xfffffe0000286000-0xfffffe0000287000           4K     ro                 GLB NX pte
[    0.021051] 0xfffffe0000287000-0xfffffe0000288000           4K     RW                 GLB NX pte
[    0.021062] 0xfffffe0000288000-0xfffffe000028b000          12K     ro                 GLB NX pte
[    0.021074] 0xfffffe000028b000-0xfffffe0000290000          20K     RW                 GLB NX pte
[    0.021088] 0xfffffe0000290000-0xfffffe0000400000        1472K                               pte
[    0.021101] 0xfffffe0000400000-0xfffffe0040000000        1020M                               pmd
[    0.021114] 0xfffffe0040000000-0xfffffe8000000000         511G                               pud
[    0.021125] 0xfffffe8000000000-0xffffff0000000000         512G                               pgd
[    0.021135] ---[ ESPfix Area ]---
[    0.021141] 0xffffff0000000000-0xffffff3700000000         220G                               pud
[    0.021152] 0xffffff3700000000-0xffffff3700003000          12K                               pte
[    0.021162] 0xffffff3700003000-0xffffff3700004000           4K     ro                 GLB NX pte
[    0.021174] 0xffffff3700004000-0xffffff3700013000          60K                               pte
[    0.021184] 0xffffff3700013000-0xffffff3700014000           4K     ro                 GLB NX pte
[    0.021196] 0xffffff3700014000-0xffffff3700023000          60K                               pte
[    0.021207] 0xffffff3700023000-0xffffff3700024000           4K     ro                 GLB NX pte
[    0.021218] 0xffffff3700024000-0xffffff3700033000          60K                               pte
[    0.021229] 0xffffff3700033000-0xffffff3700034000           4K     ro                 GLB NX pte
[    0.021240] 0xffffff3700034000-0xffffff3700043000          60K                               pte
[    0.021251] 0xffffff3700043000-0xffffff3700044000           4K     ro                 GLB NX pte
[    0.021263] 0xffffff3700044000-0xffffff3700053000          60K                               pte
[    0.021273] 0xffffff3700053000-0xffffff3700054000           4K     ro                 GLB NX pte
[    0.021285] 0xffffff3700054000-0xffffff3700063000          60K                               pte
[    0.021295] 0xffffff3700063000-0xffffff3700064000           4K     ro                 GLB NX pte
[    0.021307] 0xffffff3700064000-0xffffff3700073000          60K                               pte
[    0.028598] ... 131059 entries skipped ... 
[    0.028603] ---[ EFI Runtime Services ]---
[    0.028609] 0xffffffef00000000-0xfffffffec0000000          63G                               pud
[    0.028621] 0xfffffffec0000000-0xfffffffee9000000         656M                               pmd
[    0.028632] 0xfffffffee9000000-0xfffffffee9008000          32K     RW                     x  pte
[    0.028644] 0xfffffffee9008000-0xfffffffee903f000         220K                               pte
[    0.028654] 0xfffffffee903f000-0xfffffffee9040000           4K                               pte
[    0.028665] 0xfffffffee9040000-0xfffffffee90a0000         384K     RW                     x  pte
[    0.028679] 0xfffffffee90a0000-0xfffffffee9200000        1408K                               pte
[    0.028690] 0xfffffffee9200000-0xfffffffee9220000         128K                               pte
[    0.028703] 0xfffffffee9220000-0xfffffffee937e000        1400K                               pte
[    0.028714] 0xfffffffee937e000-0xfffffffee9400000         520K                               pte
[    0.028725] 0xfffffffee9400000-0xfffffffef2a00000         150M                               pmd
[    0.028737] 0xfffffffef2a00000-0xfffffffef2a79000         484K                               pte
[    0.028750] 0xfffffffef2a79000-0xfffffffef2c00000        1564K     RW                     x  pte
[    0.028761] 0xfffffffef2c00000-0xfffffffef5200000          38M     RW         PSE         x  pmd
[    0.028775] 0xfffffffef5200000-0xfffffffef5320000        1152K     RW                     x  pte
[    0.028789] 0xfffffffef5320000-0xfffffffef548d000        1460K                               pte
[    0.028802] 0xfffffffef548d000-0xfffffffef5600000        1484K                               pte
[    0.028812] 0xfffffffef5600000-0xfffffffef6200000          12M                               pmd
[    0.028823] 0xfffffffef6200000-0xfffffffef6244000         272K                               pte
[    0.028837] 0xfffffffef6244000-0xfffffffef641a000        1880K                               pte
[    0.028850] 0xfffffffef641a000-0xfffffffef6600000        1944K     RW                     NX pte
[    0.028862] 0xfffffffef6600000-0xfffffffef6e00000           8M     RW         PSE         NX pmd
[    0.028875] 0xfffffffef6e00000-0xfffffffef6f0b000        1068K     RW                     NX pte
[    0.028887] 0xfffffffef6f0b000-0xfffffffef6f0e000          12K     ro                     x  pte
[    0.028898] 0xfffffffef6f0e000-0xfffffffef6f13000          20K     RW                     NX pte
[    0.028910] 0xfffffffef6f13000-0xfffffffef6f14000           4K     ro                     x  pte
[    0.028922] 0xfffffffef6f14000-0xfffffffef6f18000          16K     RW                     NX pte
[    0.028933] 0xfffffffef6f18000-0xfffffffef6f1c000          16K     ro                     x  pte
[    0.028945] 0xfffffffef6f1c000-0xfffffffef6f21000          20K     RW                     NX pte
[    0.028956] 0xfffffffef6f21000-0xfffffffef6f22000           4K     ro                     x  pte
[    0.028968] 0xfffffffef6f22000-0xfffffffef6f26000          16K     RW                     NX pte
[    0.028979] 0xfffffffef6f26000-0xfffffffef6f27000           4K     ro                     x  pte
[    0.028991] 0xfffffffef6f27000-0xfffffffef6f2c000          20K     RW                     NX pte
[    0.029003] 0xfffffffef6f2c000-0xfffffffef6f39000          52K     ro                     x  pte
[    0.029014] 0xfffffffef6f39000-0xfffffffef6f40000          28K     RW                     NX pte
[    0.029026] 0xfffffffef6f40000-0xfffffffef6f43000          12K     ro                     x  pte
[    0.029039] 0xfffffffef6f43000-0xfffffffef6f49000          24K     RW                     NX pte
[    0.029051] 0xfffffffef6f49000-0xfffffffef6f4a000           4K     ro                     x  pte
[    0.029062] 0xfffffffef6f4a000-0xfffffffef6f4f000          20K     RW                     NX pte
[    0.029074] 0xfffffffef6f4f000-0xfffffffef6f50000           4K     ro                     x  pte
[    0.029086] 0xfffffffef6f50000-0xfffffffef6f55000          20K     RW                     NX pte
[    0.029097] 0xfffffffef6f55000-0xfffffffef6f56000           4K     ro                     x  pte
[    0.029109] 0xfffffffef6f56000-0xfffffffef6f5b000          20K     RW                     NX pte
[    0.029120] 0xfffffffef6f5b000-0xfffffffef6f5c000           4K     ro                     x  pte
[    0.029132] 0xfffffffef6f5c000-0xfffffffef6f61000          20K     RW                     NX pte
[    0.029143] 0xfffffffef6f61000-0xfffffffef6f62000           4K     ro                     x  pte
[    0.029155] 0xfffffffef6f62000-0xfffffffef6f67000          20K     RW                     NX pte
[    0.029167] 0xfffffffef6f67000-0xfffffffef6f68000           4K     ro                     x  pte
[    0.029178] 0xfffffffef6f68000-0xfffffffef6f6c000          16K     RW                     NX pte
[    0.029190] 0xfffffffef6f6c000-0xfffffffef6f76000          40K     ro                     x  pte
[    0.029201] 0xfffffffef6f76000-0xfffffffef6f7f000          36K     RW                     NX pte
[    0.029213] 0xfffffffef6f7f000-0xfffffffef6f84000          20K     ro                     x  pte
[    0.029225] 0xfffffffef6f84000-0xfffffffef6f89000          20K     RW                     NX pte
[    0.029236] 0xfffffffef6f89000-0xfffffffef6f8d000          16K     ro                     x  pte
[    0.029248] 0xfffffffef6f8d000-0xfffffffef6f92000          20K     RW                     NX pte
[    0.029260] 0xfffffffef6f92000-0xfffffffef7000000         440K                               pte
[    0.029271] 0xfffffffef7000000-0xfffffffef9a00000          42M                               pmd
[    0.029281] 0xfffffffef9a00000-0xfffffffefda00000          64M     RW         PSE         x  pmd
[    0.029295] 0xfffffffefda00000-0xfffffffefdb00000           1M                               pte
[    0.029307] 0xfffffffefdb00000-0xfffffffefdc00000           1M     RW                     x  pte
[    0.029318] 0xfffffffefdc00000-0xfffffffefea00000          14M     RW         PSE         x  pmd
[    0.029330] 0xfffffffefea00000-0xfffffffefea10000          64K     RW                     x  pte
[    0.029344] 0xfffffffefea10000-0xfffffffefeb80000        1472K                               pte
[    0.029355] 0xfffffffefeb80000-0xfffffffefec02000         520K     RW                     x  pte
[    0.029367] 0xfffffffefec02000-0xfffffffefec10000          56K                               pte
[    0.029378] 0xfffffffefec10000-0xfffffffefec11000           4K     RW                     x  pte
[    0.029389] 0xfffffffefec11000-0xfffffffefec30000         124K                               pte
[    0.029400] 0xfffffffefec30000-0xfffffffefec31000           4K     RW                     x  pte
[    0.029413] 0xfffffffefec31000-0xfffffffefed00000         828K                               pte
[    0.029423] 0xfffffffefed00000-0xfffffffefed01000           4K     RW                     x  pte
[    0.029435] 0xfffffffefed01000-0xfffffffefed40000         252K                               pte
[    0.029446] 0xfffffffefed40000-0xfffffffefed45000          20K     RW                     x  pte
[    0.029458] 0xfffffffefed45000-0xfffffffefed80000         236K                               pte
[    0.029469] 0xfffffffefed80000-0xfffffffefed90000          64K     RW                     x  pte
[    0.029480] 0xfffffffefed90000-0xfffffffefedc2000         200K                               pte
[    0.029491] 0xfffffffefedc2000-0xfffffffefedd0000          56K     RW                     x  pte
[    0.029503] 0xfffffffefedd0000-0xfffffffefedd4000          16K                               pte
[    0.029516] 0xfffffffefedd4000-0xfffffffefedd6000           8K     RW                     x  pte
[    0.029530] 0xfffffffefedd6000-0xfffffffefee00000         168K                               pte
[    0.029543] 0xfffffffefee00000-0xfffffffefef00000           1M     RW                     x  pte
[    0.029556] 0xfffffffefef00000-0xfffffffeff000000           1M                               pte
[    0.029567] 0xfffffffeff000000-0xffffffff00000000          16M     RW         PSE         x  pmd
[    0.029578] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.029589] ---[ High Kernel Mapping ]---
[    0.029595] 0xffffffff80000000-0xffffffff8b000000         176M                               pmd
[    0.029605] 0xffffffff8b000000-0xffffffff8e600000          54M     RW         PSE     GLB x  pmd
[    0.029619] 0xffffffff8e600000-0xffffffffc0000000         794M                               pmd
[    0.029630] ---[ Modules ]---
[    0.029637] 0xffffffffc0000000-0xffffffffff000000        1008M                               pmd
[    0.029647] ---[ End Modules ]---
[    0.029652] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.029668] 0xffffffffff200000-0xffffffffff576000        3544K                               pte
[    0.029679] ---[ Fixmap Area ]---
[    0.029684] 0xffffffffff576000-0xffffffffff5fa000         528K                               pte
[    0.029695] 0xffffffffff5fa000-0xffffffffff5fd000          12K     RW PWT PCD         GLB NX pte
[    0.029707] 0xffffffffff5fd000-0xffffffffff600000          12K                               pte
[    0.029717] 0xffffffffff600000-0xffffffffff601000           4K USR ro                 GLB NX pte
[    0.029732] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.029743] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.029805] LSM: Security Framework initializing
[    0.029813] Yama: becoming mindful.
[    0.029825] SELinux:  Initializing.
[    0.035807] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes)
[    0.038306] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes)
[    0.038414] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.038495] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.038947] mce: CPU supports 23 MCE banks
[    0.038979] LVT offset 1 assigned for vector 0xf9
[    0.039050] LVT offset 2 assigned for vector 0xf4
[    0.039066] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.039073] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.039082] Spectre V2 : Mitigation: Full AMD retpoline
[    0.039088] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.039103] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.039112] Spectre V2 : User space: Vulnerable
[    0.039122] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.039309] Freeing SMP alternatives memory: 28K
[    0.041028] smpboot: CPU0: AMD Ryzen 7 2700X Eight-Core Processor (family: 0x17, model: 0x8, stepping: 0x2)
[    0.041028] Performance Events: Fam17h core perfctr, AMD PMU driver.
[    0.041028] ... version:                0
[    0.041028] ... bit width:              48
[    0.041028] ... generic registers:      6
[    0.041028] ... value mask:             0000ffffffffffff
[    0.041028] ... max period:             00007fffffffffff
[    0.041028] ... fixed-purpose events:   0
[    0.041028] ... event mask:             000000000000003f
[    0.041028] rcu: Hierarchical SRCU implementation.
[    0.041028] random: crng done (trusting CPU's manufacturer)
[    0.041124] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.041426] smp: Bringing up secondary CPUs ...
[    0.041689] x86: Booting SMP configuration:
[    0.041702] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
[    0.062130] smp: Brought up 1 node, 16 CPUs
[    0.062130] smpboot: Max logical packages: 1
[    0.062130] smpboot: Total of 16 processors activated (118164.22 BogoMIPS)
[    0.065099] devtmpfs: initialized
[    0.065160] x86/mm: Memory block size: 128MB
[    0.071084] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a209fff] (40960 bytes)
[    0.071097] PM: Registering ACPI NVS region [mem 0xdb569000-0xdba19fff] (4919296 bytes)
[    0.072579] DMA-API: preallocated 65548 debug entries
[    0.072589] DMA-API: debugging enabled by kernel config
[    0.072597] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.072662] futex hash table entries: 4096 (order: 7, 524288 bytes)
[    0.073643] pinctrl core: initialized pinctrl subsystem

[    0.073643] *************************************************************
[    0.073643] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.073643] **                                                         **
[    0.073643] **  IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL  **
[    0.073643] **                                                         **
[    0.073643] ** This means that this kernel is built to expose internal **
[    0.073643] ** IOMMU data structures, which may compromise security on **
[    0.073643] ** your system.                                            **
[    0.073643] **                                                         **
[    0.073643] ** If you see this message and you are not debugging the   **
[    0.073643] ** kernel, report this immediately to your vendor!         **
[    0.073643] **                                                         **
[    0.073643] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.073643] *************************************************************
[    0.073643] RTC time: 17:14:50, date: 2019-01-29
[    0.073727] NET: Registered protocol family 16
[    0.073952] audit: initializing netlink subsys (disabled)
[    0.074367] audit: type=2000 audit(1548782090.083:1): state=initialized audit_enabled=0 res=1
[    0.075034] cpuidle: using governor menu
[    0.075230] ACPI: bus type PCI registered
[    0.075230] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.075230] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.075230] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.075230] PCI: Using configuration type 1 for base access
[    0.080446] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.080446] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.080446] cryptd: max_cpu_qlen set to 1000
[    0.081153] fbcon: Taking over console
[    0.081254] ACPI: Added _OSI(Module Device)
[    0.081261] ACPI: Added _OSI(Processor Device)
[    0.081268] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.081274] ACPI: Added _OSI(Processor Aggregator Device)
[    0.081282] ACPI: Added _OSI(Linux-Dell-Video)
[    0.081289] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.081296] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.111307] ACPI: 7 ACPI AML tables successfully acquired and loaded
[    0.118064] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.125073] ACPI: EC: EC started
[    0.125087] ACPI: EC: interrupt blocked
[    0.125415] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as first EC
[    0.125424] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.125434] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as boot DSDT EC to handle transactions
[    0.125444] ACPI: Interpreter enabled
[    0.125478] ACPI: (supports S0 S3 S4 S5)
[    0.125484] ACPI: Using IOAPIC for interrupt routing
[    0.126692] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.127459] ACPI: Enabled 3 GPEs in block 00 to 1F
[    0.152197] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.152216] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.152666] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME LTR]
[    0.153099] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[    0.153140] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.154057] PCI host bridge to bus 0000:00
[    0.154066] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.154075] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.154084] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.154093] pci_bus 0000:00: root bus resource [io  0x0d00-0xefff window]
[    0.154102] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.154112] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.154122] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
[    0.154132] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.154142] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.154167] pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
[    0.154424] pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
[    0.154621] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.154779] pci 0000:00:01.1: [1022:1453] type 01 class 0x060400
[    0.155120] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    0.155378] pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
[    0.156034] pci 0000:00:01.3: enabling Extended Tags
[    0.156128] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.156368] pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
[    0.156539] pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
[    0.157083] pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
[    0.157506] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.157747] pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
[    0.157921] pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
[    0.158083] pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
[    0.158418] pci 0000:00:07.1: enabling Extended Tags
[    0.158509] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.158748] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.158903] pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
[    0.159035] pci 0000:00:08.1: enabling Extended Tags
[    0.159127] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.159403] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.160106] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.160419] pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
[    0.160562] pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
[    0.160706] pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
[    0.160850] pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
[    0.160995] pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
[    0.161144] pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
[    0.161288] pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
[    0.161433] pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
[    0.161686] pci 0000:01:00.0: [8086:2700] type 00 class 0x010802
[    0.161707] pci 0000:01:00.0: reg 0x10: [mem 0xfe910000-0xfe913fff 64bit]
[    0.161733] pci 0000:01:00.0: reg 0x30: [mem 0xfe900000-0xfe90ffff pref]
[    0.161906] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.161917] pci 0000:00:01.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    0.162144] pci 0000:02:00.0: [1022:43d0] type 00 class 0x0c0330
[    0.162168] pci 0000:02:00.0: reg 0x10: [mem 0xfe5a0000-0xfe5a7fff 64bit]
[    0.162206] pci 0000:02:00.0: enabling Extended Tags
[    0.162268] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.162397] pci 0000:02:00.1: [1022:43c8] type 00 class 0x010601
[    0.162445] pci 0000:02:00.1: reg 0x24: [mem 0xfe580000-0xfe59ffff]
[    0.162453] pci 0000:02:00.1: reg 0x30: [mem 0xfe500000-0xfe57ffff pref]
[    0.162460] pci 0000:02:00.1: enabling Extended Tags
[    0.162511] pci 0000:02:00.1: PME# supported from D3hot D3cold
[    0.162620] pci 0000:02:00.2: [1022:43c6] type 01 class 0x060400
[    0.163059] pci 0000:02:00.2: enabling Extended Tags
[    0.163112] pci 0000:02:00.2: PME# supported from D3hot D3cold
[    0.163252] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.163262] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.163265] pci 0000:00:01.3:   bridge window [mem 0xfe300000-0xfe5fffff]
[    0.163491] pci 0000:03:00.0: [1022:43c7] type 01 class 0x060400
[    0.163536] pci 0000:03:00.0: enabling Extended Tags
[    0.163599] pci 0000:03:00.0: PME# supported from D3hot D3cold
[    0.163740] pci 0000:03:01.0: [1022:43c7] type 01 class 0x060400
[    0.163785] pci 0000:03:01.0: enabling Extended Tags
[    0.163848] pci 0000:03:01.0: PME# supported from D3hot D3cold
[    0.163994] pci 0000:03:02.0: [1022:43c7] type 01 class 0x060400
[    0.164043] pci 0000:03:02.0: enabling Extended Tags
[    0.164107] pci 0000:03:02.0: PME# supported from D3hot D3cold
[    0.164249] pci 0000:03:03.0: [1022:43c7] type 01 class 0x060400
[    0.164294] pci 0000:03:03.0: enabling Extended Tags
[    0.164356] pci 0000:03:03.0: PME# supported from D3hot D3cold
[    0.164496] pci 0000:03:04.0: [1022:43c7] type 01 class 0x060400
[    0.164541] pci 0000:03:04.0: enabling Extended Tags
[    0.164603] pci 0000:03:04.0: PME# supported from D3hot D3cold
[    0.164763] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.164774] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.164777] pci 0000:02:00.2:   bridge window [mem 0xfe300000-0xfe4fffff]
[    0.164895] pci 0000:04:00.0: [8086:1539] type 00 class 0x020000
[    0.164942] pci 0000:04:00.0: reg 0x10: [mem 0xfe400000-0xfe41ffff]
[    0.164977] pci 0000:04:00.0: reg 0x18: [io  0xd000-0xd01f]
[    0.164994] pci 0000:04:00.0: reg 0x1c: [mem 0xfe420000-0xfe423fff]
[    0.165179] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.165379] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.165390] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.165394] pci 0000:03:00.0:   bridge window [mem 0xfe400000-0xfe4fffff]
[    0.165477] pci 0000:05:00.0: [10ec:b822] type 00 class 0x028000
[    0.165521] pci 0000:05:00.0: reg 0x10: [io  0xc000-0xc0ff]
[    0.165556] pci 0000:05:00.0: reg 0x18: [mem 0xfe300000-0xfe30ffff 64bit]
[    0.165722] pci 0000:05:00.0: supports D1 D2
[    0.165723] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.165931] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.165945] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.165948] pci 0000:03:01.0:   bridge window [mem 0xfe300000-0xfe3fffff]
[    0.166004] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.166099] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.166185] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.166507] pci 0000:09:00.0: [1022:1470] type 01 class 0x060400
[    0.166528] pci 0000:09:00.0: reg 0x10: [mem 0xfe700000-0xfe703fff]
[    0.166602] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
[    0.166742] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.166752] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.166754] pci 0000:00:03.1:   bridge window [mem 0xfe600000-0xfe7fffff]
[    0.166758] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.166813] pci 0000:0a:00.0: [1022:1471] type 01 class 0x060400
[    0.166903] pci 0000:0a:00.0: PME# supported from D0 D3hot D3cold
[    0.167019] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.167034] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.167037] pci 0000:09:00.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.167041] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.167094] pci 0000:0b:00.0: [1002:687f] type 00 class 0x030000
[    0.167120] pci 0000:0b:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.167131] pci 0000:0b:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
[    0.167138] pci 0000:0b:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.167145] pci 0000:0b:00.0: reg 0x24: [mem 0xfe600000-0xfe67ffff]
[    0.167153] pci 0000:0b:00.0: reg 0x30: [mem 0xfe680000-0xfe69ffff pref]
[    0.167174] pci 0000:0b:00.0: BAR 0: assigned to efifb
[    0.167230] pci 0000:0b:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.167338] pci 0000:0b:00.1: [1002:aaf8] type 00 class 0x040300
[    0.167356] pci 0000:0b:00.1: reg 0x10: [mem 0xfe6a0000-0xfe6a3fff]
[    0.167446] pci 0000:0b:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.167567] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.167577] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.167580] pci 0000:0a:00.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.167585] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.167708] pci 0000:0c:00.0: [1022:145a] type 00 class 0x130000
[    0.167737] pci 0000:0c:00.0: enabling Extended Tags
[    0.167854] pci 0000:0c:00.2: [1022:1456] type 00 class 0x108000
[    0.167870] pci 0000:0c:00.2: reg 0x18: [mem 0xfe100000-0xfe1fffff]
[    0.167880] pci 0000:0c:00.2: reg 0x24: [mem 0xfe200000-0xfe201fff]
[    0.167887] pci 0000:0c:00.2: enabling Extended Tags
[    0.168026] pci 0000:0c:00.3: [1022:145f] type 00 class 0x0c0330
[    0.168045] pci 0000:0c:00.3: reg 0x10: [mem 0xfe000000-0xfe0fffff 64bit]
[    0.168068] pci 0000:0c:00.3: enabling Extended Tags
[    0.168112] pci 0000:0c:00.3: PME# supported from D0 D3hot D3cold
[    0.168224] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.168235] pci 0000:00:07.1:   bridge window [mem 0xfe000000-0xfe2fffff]
[    0.168537] pci 0000:0d:00.0: [1022:1455] type 00 class 0x130000
[    0.168569] pci 0000:0d:00.0: enabling Extended Tags
[    0.168690] pci 0000:0d:00.2: [1022:7901] type 00 class 0x010601
[    0.168722] pci 0000:0d:00.2: reg 0x24: [mem 0xfe808000-0xfe808fff]
[    0.168730] pci 0000:0d:00.2: enabling Extended Tags
[    0.168775] pci 0000:0d:00.2: PME# supported from D3hot D3cold
[    0.168880] pci 0000:0d:00.3: [1022:1457] type 00 class 0x040300
[    0.168892] pci 0000:0d:00.3: reg 0x10: [mem 0xfe800000-0xfe807fff]
[    0.168913] pci 0000:0d:00.3: enabling Extended Tags
[    0.168957] pci 0000:0d:00.3: PME# supported from D0 D3hot D3cold
[    0.169075] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.169086] pci 0000:00:08.1:   bridge window [mem 0xfe800000-0xfe8fffff]
[    0.169857] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    0.169994] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    0.170116] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    0.170249] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    0.170373] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.170478] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.170583] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.170688] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.171828] ACPI: EC: interrupt unblocked
[    0.171852] ACPI: EC: event unblocked
[    0.171868] ACPI: \_SB_.PCI0.SBRG.EC0_: GPE=0x2, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.171881] ACPI: \_SB_.PCI0.SBRG.EC0_: Used as boot DSDT EC to handle transactions and events
[    0.172170] pci 0000:0b:00.0: vgaarb: setting as boot VGA device
[    0.172170] pci 0000:0b:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.172170] pci 0000:0b:00.0: vgaarb: bridge control possible
[    0.172170] vgaarb: loaded
[    0.172316] SCSI subsystem initialized
[    0.172522] libata version 3.00 loaded.
[    0.172522] ACPI: bus type USB registered
[    0.172522] usbcore: registered new interface driver usbfs
[    0.172522] usbcore: registered new interface driver hub
[    0.172581] usbcore: registered new device driver usb
[    0.172581] pps_core: LinuxPPS API ver. 1 registered
[    0.172581] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.172581] PTP clock support registered
[    0.173101] EDAC MC: Ver: 3.0.0
[    0.173255] Registered efivars operations
[    0.191058] PCI: Using ACPI for IRQ routing
[    0.195081] PCI: pci_cache_line_size set to 64 bytes
[    0.195160] e820: reserve RAM buffer [mem 0x09d00000-0x0bffffff]
[    0.195167] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.195169] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.195170] e820: reserve RAM buffer [mem 0xccaec018-0xcfffffff]
[    0.195172] e820: reserve RAM buffer [mem 0xccb06018-0xcfffffff]
[    0.195173] e820: reserve RAM buffer [mem 0xda044000-0xdbffffff]
[    0.195175] e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
[    0.195177] e820: reserve RAM buffer [mem 0x81f380000-0x81fffffff]
[    0.195476] NetLabel: Initializing
[    0.195482] NetLabel:  domain hash size = 128
[    0.195488] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.195522] NetLabel:  unlabeled traffic allowed by default
[    0.195558] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.195558] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.197130] clocksource: Switched to clocksource tsc-early
[    0.232653] VFS: Disk quotas dquot_6.6.0
[    0.232688] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.232854] pnp: PnP ACPI init
[    0.233079] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.233104] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.233302] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.233610] system 00:02: [io  0x02a0-0x02af] has been reserved
[    0.233620] system 00:02: [io  0x0230-0x023f] has been reserved
[    0.233628] system 00:02: [io  0x0290-0x029f] has been reserved
[    0.233641] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.234112] system 00:03: [io  0x04d0-0x04d1] has been reserved
[    0.234122] system 00:03: [io  0x040b] has been reserved
[    0.234130] system 00:03: [io  0x04d6] has been reserved
[    0.234138] system 00:03: [io  0x0c00-0x0c01] has been reserved
[    0.234147] system 00:03: [io  0x0c14] has been reserved
[    0.234154] system 00:03: [io  0x0c50-0x0c51] has been reserved
[    0.234163] system 00:03: [io  0x0c52] has been reserved
[    0.234171] system 00:03: [io  0x0c6c] has been reserved
[    0.234179] system 00:03: [io  0x0c6f] has been reserved
[    0.234186] system 00:03: [io  0x0cd0-0x0cd1] has been reserved
[    0.234195] system 00:03: [io  0x0cd2-0x0cd3] has been reserved
[    0.234203] system 00:03: [io  0x0cd4-0x0cd5] has been reserved
[    0.234212] system 00:03: [io  0x0cd6-0x0cd7] has been reserved
[    0.234220] system 00:03: [io  0x0cd8-0x0cdf] has been reserved
[    0.234229] system 00:03: [io  0x0800-0x089f] has been reserved
[    0.234237] system 00:03: [io  0x0b00-0x0b0f] has been reserved
[    0.234246] system 00:03: [io  0x0b20-0x0b3f] has been reserved
[    0.234254] system 00:03: [io  0x0900-0x090f] has been reserved
[    0.234262] system 00:03: [io  0x0910-0x091f] has been reserved
[    0.234272] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.234282] system 00:03: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.234292] system 00:03: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.234301] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.234311] system 00:03: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.234320] system 00:03: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.234329] system 00:03: [mem 0xff000000-0xffffffff] has been reserved
[    0.234343] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.235298] pnp: PnP ACPI: found 4 devices
[    0.242752] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.242880] pci 0000:00:01.1: PCI bridge to [bus 01]
[    0.242891] pci 0000:00:01.1:   bridge window [mem 0xfe900000-0xfe9fffff]
[    0.242903] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.242912] pci 0000:03:00.0:   bridge window [io  0xd000-0xdfff]
[    0.242923] pci 0000:03:00.0:   bridge window [mem 0xfe400000-0xfe4fffff]
[    0.242937] pci 0000:03:01.0: PCI bridge to [bus 05]
[    0.242945] pci 0000:03:01.0:   bridge window [io  0xc000-0xcfff]
[    0.242956] pci 0000:03:01.0:   bridge window [mem 0xfe300000-0xfe3fffff]
[    0.242970] pci 0000:03:02.0: PCI bridge to [bus 06]
[    0.242986] pci 0000:03:03.0: PCI bridge to [bus 07]
[    0.243001] pci 0000:03:04.0: PCI bridge to [bus 08]
[    0.243016] pci 0000:02:00.2: PCI bridge to [bus 03-08]
[    0.243025] pci 0000:02:00.2:   bridge window [io  0xc000-0xdfff]
[    0.243035] pci 0000:02:00.2:   bridge window [mem 0xfe300000-0xfe4fffff]
[    0.243049] pci 0000:00:01.3: PCI bridge to [bus 02-08]
[    0.243057] pci 0000:00:01.3:   bridge window [io  0xc000-0xdfff]
[    0.243066] pci 0000:00:01.3:   bridge window [mem 0xfe300000-0xfe5fffff]
[    0.243078] pci 0000:0a:00.0: PCI bridge to [bus 0b]
[    0.243086] pci 0000:0a:00.0:   bridge window [io  0xe000-0xefff]
[    0.243096] pci 0000:0a:00.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.243106] pci 0000:0a:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.243119] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
[    0.243127] pci 0000:09:00.0:   bridge window [io  0xe000-0xefff]
[    0.243138] pci 0000:09:00.0:   bridge window [mem 0xfe600000-0xfe6fffff]
[    0.243148] pci 0000:09:00.0:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.243161] pci 0000:00:03.1: PCI bridge to [bus 09-0b]
[    0.243168] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.243178] pci 0000:00:03.1:   bridge window [mem 0xfe600000-0xfe7fffff]
[    0.243187] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.243199] pci 0000:00:07.1: PCI bridge to [bus 0c]
[    0.243208] pci 0000:00:07.1:   bridge window [mem 0xfe000000-0xfe2fffff]
[    0.243219] pci 0000:00:08.1: PCI bridge to [bus 0d]
[    0.243228] pci 0000:00:08.1:   bridge window [mem 0xfe800000-0xfe8fffff]
[    0.243240] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.243242] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.243243] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.243245] pci_bus 0000:00: resource 7 [io  0x0d00-0xefff window]
[    0.243246] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.243248] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.243249] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window]
[    0.243251] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[    0.243252] pci_bus 0000:01: resource 1 [mem 0xfe900000-0xfe9fffff]
[    0.243254] pci_bus 0000:02: resource 0 [io  0xc000-0xdfff]
[    0.243255] pci_bus 0000:02: resource 1 [mem 0xfe300000-0xfe5fffff]
[    0.243257] pci_bus 0000:03: resource 0 [io  0xc000-0xdfff]
[    0.243258] pci_bus 0000:03: resource 1 [mem 0xfe300000-0xfe4fffff]
[    0.243260] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
[    0.243261] pci_bus 0000:04: resource 1 [mem 0xfe400000-0xfe4fffff]
[    0.243262] pci_bus 0000:05: resource 0 [io  0xc000-0xcfff]
[    0.243264] pci_bus 0000:05: resource 1 [mem 0xfe300000-0xfe3fffff]
[    0.243265] pci_bus 0000:09: resource 0 [io  0xe000-0xefff]
[    0.243267] pci_bus 0000:09: resource 1 [mem 0xfe600000-0xfe7fffff]
[    0.243268] pci_bus 0000:09: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.243269] pci_bus 0000:0a: resource 0 [io  0xe000-0xefff]
[    0.243271] pci_bus 0000:0a: resource 1 [mem 0xfe600000-0xfe6fffff]
[    0.243272] pci_bus 0000:0a: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.243274] pci_bus 0000:0b: resource 0 [io  0xe000-0xefff]
[    0.243275] pci_bus 0000:0b: resource 1 [mem 0xfe600000-0xfe6fffff]
[    0.243276] pci_bus 0000:0b: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.243278] pci_bus 0000:0c: resource 1 [mem 0xfe000000-0xfe2fffff]
[    0.243279] pci_bus 0000:0d: resource 1 [mem 0xfe800000-0xfe8fffff]
[    0.243490] NET: Registered protocol family 2
[    0.244001] tcp_listen_portaddr_hash hash table entries: 16384 (order: 8, 1441792 bytes)
[    0.244394] TCP established hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.245041] TCP bind hash table entries: 65536 (order: 10, 5242880 bytes)
[    0.245846] TCP: Hash tables configured (established 262144 bind 65536)
[    0.246225] UDP hash table entries: 16384 (order: 9, 3145728 bytes)
[    0.246882] UDP-Lite hash table entries: 16384 (order: 9, 3145728 bytes)
[    0.247439] NET: Registered protocol family 1
[    0.247452] NET: Registered protocol family 44
[    0.247880] pci 0000:0b:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.247918] pci 0000:0b:00.1: Linked as a consumer to 0000:0b:00.0
[    0.248311] PCI: CLS 64 bytes, default 64
[    0.248453] Unpacking initramfs...
[    0.589866] Freeing initrd memory: 28100K
[    0.589893] AMD-Vi: IOMMU performance counters supported
[    0.590392] iommu: Adding device 0000:00:01.0 to group 0
[    0.590535] iommu: Adding device 0000:00:01.1 to group 1
[    0.590707] iommu: Adding device 0000:00:01.3 to group 2
[    0.590912] iommu: Adding device 0000:00:02.0 to group 3
[    0.591064] iommu: Adding device 0000:00:03.0 to group 4
[    0.591257] iommu: Adding device 0000:00:03.1 to group 5
[    0.591410] iommu: Adding device 0000:00:04.0 to group 6
[    0.591590] iommu: Adding device 0000:00:07.0 to group 7
[    0.591778] iommu: Adding device 0000:00:07.1 to group 8
[    0.591929] iommu: Adding device 0000:00:08.0 to group 9
[    0.592110] iommu: Adding device 0000:00:08.1 to group 10
[    0.592342] iommu: Adding device 0000:00:14.0 to group 11
[    0.592381] iommu: Adding device 0000:00:14.3 to group 11
[    0.592645] iommu: Adding device 0000:00:18.0 to group 12
[    0.592685] iommu: Adding device 0000:00:18.1 to group 12
[    0.592722] iommu: Adding device 0000:00:18.2 to group 12
[    0.592759] iommu: Adding device 0000:00:18.3 to group 12
[    0.592795] iommu: Adding device 0000:00:18.4 to group 12
[    0.592833] iommu: Adding device 0000:00:18.5 to group 12
[    0.592872] iommu: Adding device 0000:00:18.6 to group 12
[    0.592909] iommu: Adding device 0000:00:18.7 to group 12
[    0.593093] iommu: Adding device 0000:01:00.0 to group 13
[    0.593285] iommu: Adding device 0000:02:00.0 to group 14
[    0.593334] iommu: Adding device 0000:02:00.1 to group 14
[    0.593381] iommu: Adding device 0000:02:00.2 to group 14
[    0.593407] iommu: Adding device 0000:03:00.0 to group 14
[    0.593433] iommu: Adding device 0000:03:01.0 to group 14
[    0.593458] iommu: Adding device 0000:03:02.0 to group 14
[    0.593484] iommu: Adding device 0000:03:03.0 to group 14
[    0.593509] iommu: Adding device 0000:03:04.0 to group 14
[    0.593540] iommu: Adding device 0000:04:00.0 to group 14
[    0.593574] iommu: Adding device 0000:05:00.0 to group 14
[    0.593762] iommu: Adding device 0000:09:00.0 to group 15
[    0.593904] iommu: Adding device 0000:0a:00.0 to group 16
[    0.594131] iommu: Adding device 0000:0b:00.0 to group 17
[    0.594296] iommu: Using direct mapping for device 0000:0b:00.0
[    0.594421] iommu: Adding device 0000:0b:00.1 to group 18
[    0.594607] iommu: Adding device 0000:0c:00.0 to group 19
[    0.594747] iommu: Adding device 0000:0c:00.2 to group 20
[    0.594932] iommu: Adding device 0000:0c:00.3 to group 21
[    0.595079] iommu: Adding device 0000:0d:00.0 to group 22
[    0.595264] iommu: Adding device 0000:0d:00.2 to group 23
[    0.595450] iommu: Adding device 0000:0d:00.3 to group 24
[    0.595639] AMD-Vi: Found IOMMU at 0000:00:00.2 cap 0x40
[    0.595649] AMD-Vi: Extended features (0xf77ef22294ada):
[    0.595658]  PPR NX GT IA GA PC GA_vAPIC
[    0.595665] AMD-Vi: Interrupt remapping enabled
[    0.595671] AMD-Vi: Virtual APIC enabled
[    0.595819] AMD-Vi: Lazy IO/TLB flushing enabled
[    0.601683] amd_uncore: AMD NB counters detected
[    0.601701] amd_uncore: AMD LLC counters detected
[    0.602064] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.604435] check: Scanning for low memory corruption every 60 seconds
[    0.604786] cryptomgr_test (115) used greatest stack depth: 14472 bytes left
[    0.606194] modprobe (116) used greatest stack depth: 13720 bytes left
[    0.607429] Initialise system trusted keyrings
[    0.607500] Key type blacklist registered
[    0.607577] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[    0.611146] zbud: loaded
[    0.612930] Platform Keyring initialized
[    0.712202] cryptomgr_test (149) used greatest stack depth: 13648 bytes left
[    0.721952] alg: No test for 842 (842-generic)
[    0.723134] alg: No test for 842 (842-scomp)
[    0.727924] cryptomgr_test (167) used greatest stack depth: 13520 bytes left
[    0.758806] NET: Registered protocol family 38
[    0.758832] Key type asymmetric registered
[    0.758845] Asymmetric key parser 'x509' registered
[    0.758874] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    0.758992] io scheduler mq-deadline registered
[    0.759514] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.761105] aer 0000:00:01.1:pcie002: AER enabled with IRQ 26
[    0.762926] aer 0000:00:01.3:pcie002: AER enabled with IRQ 27
[    0.763909] aer 0000:00:03.1:pcie002: AER enabled with IRQ 28
[    0.764909] aer 0000:00:07.1:pcie002: AER enabled with IRQ 29
[    0.766032] aer 0000:00:08.1:pcie002: AER enabled with IRQ 31
[    0.768384] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.768433] efifb: probing for efifb
[    0.768451] efifb: No BGRT, not showing boot graphics
[    0.768459] efifb: framebuffer at 0xe0000000, using 3072k, total 3072k
[    0.768467] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    0.768474] efifb: scrolling: redraw
[    0.768480] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.768793] Console: switching to colour frame buffer device 128x48
[    0.769932] fb0: EFI VGA frame buffer device
[    0.770148] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.770200] ACPI: Power Button [PWRB]
[    0.770276] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.770433] ACPI: Power Button [PWRF]
[    0.770541] Monitor-Mwait will be used to enter C-1 state
[    0.773330] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.794293] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.797962] Non-volatile memory driver v1.3
[    0.798029] Linux agpgart interface v0.103
[    0.801020] ahci 0000:02:00.1: version 3.0
[    0.801196] ahci 0000:02:00.1: SSS flag set, parallel bus scan disabled
[    0.801272] ahci 0000:02:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0xff impl SATA mode
[    0.801308] ahci 0000:02:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    0.802769] scsi host0: ahci
[    0.803065] scsi host1: ahci
[    0.803239] scsi host2: ahci
[    0.803424] scsi host3: ahci
[    0.803591] scsi host4: ahci
[    0.803767] scsi host5: ahci
[    0.803937] scsi host6: ahci
[    0.804111] scsi host7: ahci
[    0.804206] ata1: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580100 irq 44
[    0.804233] ata2: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580180 irq 44
[    0.804259] ata3: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580200 irq 44
[    0.804706] ata4: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580280 irq 44
[    0.805134] ata5: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580300 irq 44
[    0.805553] ata6: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580380 irq 44
[    0.805971] ata7: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580400 irq 44
[    0.806378] ata8: SATA max UDMA/133 abar m131072@0xfe580000 port 0xfe580480 irq 44
[    0.806997] ahci 0000:0d:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.807405] ahci 0000:0d:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.808059] scsi host8: ahci
[    0.808537] ata9: SATA max UDMA/133 abar m4096@0xfe808000 port 0xfe808100 irq 46
[    0.809110] libphy: Fixed MDIO Bus: probed
[    0.809652] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.810065] ehci-pci: EHCI PCI platform driver
[    0.810489] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.810909] ohci-pci: OHCI PCI platform driver
[    0.811344] uhci_hcd: USB Universal Host Controller Interface driver
[    0.811937] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.812607] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 1
[    0.868670] xhci_hcd 0000:02:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    0.870091] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.00
[    0.870559] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.871011] usb usb1: Product: xHCI Host Controller
[    0.871459] usb usb1: Manufacturer: Linux 5.0.0-0.rc4.git1.2.fc30.x86_64 xhci-hcd
[    0.871914] usb usb1: SerialNumber: 0000:02:00.0
[    0.872754] hub 1-0:1.0: USB hub found
[    0.873288] hub 1-0:1.0: 14 ports detected
[    0.909188] xhci_hcd 0000:02:00.0: xHCI Host Controller
[    0.909747] xhci_hcd 0000:02:00.0: new USB bus registered, assigned bus number 2
[    0.910185] xhci_hcd 0000:02:00.0: Host supports USB 3.10 Enhanced SuperSpeed
[    0.910690] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.911183] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.00
[    0.911623] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.912056] usb usb2: Product: xHCI Host Controller
[    0.912479] usb usb2: Manufacturer: Linux 5.0.0-0.rc4.git1.2.fc30.x86_64 xhci-hcd
[    0.912919] usb usb2: SerialNumber: 0000:02:00.0
[    0.913629] hub 2-0:1.0: USB hub found
[    0.914109] hub 2-0:1.0: 8 ports detected
[    0.934327] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    0.934806] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 3
[    0.935341] xhci_hcd 0000:0c:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000000000410
[    0.936341] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.00
[    0.936790] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.937239] usb usb3: Product: xHCI Host Controller
[    0.937696] usb usb3: Manufacturer: Linux 5.0.0-0.rc4.git1.2.fc30.x86_64 xhci-hcd
[    0.938166] usb usb3: SerialNumber: 0000:0c:00.3
[    0.938812] hub 3-0:1.0: USB hub found
[    0.939291] hub 3-0:1.0: 4 ports detected
[    0.940134] xhci_hcd 0000:0c:00.3: xHCI Host Controller
[    0.940692] xhci_hcd 0000:0c:00.3: new USB bus registered, assigned bus number 4
[    0.941186] xhci_hcd 0000:0c:00.3: Host supports USB 3.0  SuperSpeed
[    0.941716] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    0.942271] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.00
[    0.942808] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.943355] usb usb4: Product: xHCI Host Controller
[    0.943890] usb usb4: Manufacturer: Linux 5.0.0-0.rc4.git1.2.fc30.x86_64 xhci-hcd
[    0.944434] usb usb4: SerialNumber: 0000:0c:00.3
[    0.945162] hub 4-0:1.0: USB hub found
[    0.945695] hub 4-0:1.0: 4 ports detected
[    0.946571] usbcore: registered new interface driver usbserial_generic
[    0.947112] usbserial: USB Serial support registered for generic
[    0.947666] i8042: PNP: No PS/2 controller found.
[    0.948243] mousedev: PS/2 mouse device common for all mice
[    0.949054] rtc_cmos 00:01: RTC can wake from S4
[    0.949902] rtc_cmos 00:01: registered as rtc0
[    0.950413] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.951055] device-mapper: uevent: version 1.0.3
[    0.951682] device-mapper: ioctl: 4.39.0-ioctl (2018-04-03) initialised: dm-devel@redhat.com
[    0.952701] hidraw: raw HID events driver (C) Jiri Kosina
[    0.953261] usbcore: registered new interface driver usbhid
[    0.953776] usbhid: USB HID core driver
[    0.954424] drop_monitor: Initializing network drop monitor service
[    0.955199] Initializing XFRM netlink socket
[    0.955927] NET: Registered protocol family 10
[    0.960573] Segment Routing with IPv6
[    0.961092] mip6: Mobile IPv6
[    0.961599] NET: Registered protocol family 17
[    0.962178] start plist test
[    0.963161] end plist test
[    0.965188] RAS: Correctable Errors collector initialized.
[    0.965764] microcode: CPU0: patch_level=0x0800820b
[    0.966264] microcode: CPU1: patch_level=0x0800820b
[    0.966753] microcode: CPU2: patch_level=0x0800820b
[    0.967233] microcode: CPU3: patch_level=0x0800820b
[    0.967699] microcode: CPU4: patch_level=0x0800820b
[    0.968163] microcode: CPU5: patch_level=0x0800820b
[    0.968617] microcode: CPU6: patch_level=0x0800820b
[    0.969081] microcode: CPU7: patch_level=0x0800820b
[    0.969555] microcode: CPU8: patch_level=0x0800820b
[    0.969994] microcode: CPU9: patch_level=0x0800820b
[    0.970417] microcode: CPU10: patch_level=0x0800820b
[    0.970831] microcode: CPU11: patch_level=0x0800820b
[    0.971236] microcode: CPU12: patch_level=0x0800820b
[    0.971630] microcode: CPU13: patch_level=0x0800820b
[    0.972021] microcode: CPU14: patch_level=0x0800820b
[    0.972395] microcode: CPU15: patch_level=0x0800820b
[    0.972802] microcode: Microcode Update Driver: v2.2.
[    0.972821] AVX2 version of gcm_enc/dec engaged.
[    0.973548] AES CTR mode by8 optimization enabled
[    1.012544] sched_clock: Marking stable (1021504527, -8971022)->(1173268199, -160734694)
[    1.013647] registered taskstats version 1
[    1.014068] Loading compiled-in X.509 certificates
[    1.036536] Loaded X.509 cert 'Fedora kernel signing key: 01fa4881d756656e66a8d054c4b1f857d24b6de7'
[    1.037011] zswap: loaded using pool lzo/zbud
[    1.045394] Key type big_key registered
[    1.049330] Key type encrypted registered
[    1.050868] ima: No TPM chip found, activating TPM-bypass!
[    1.051254] ima: Allocated hash algorithm: sha1
[    1.051645] No architecture policies found
[    1.052980]   Magic number: 3:121:240
[    1.053446] memory memory118: hash matches
[    1.053930] rtc_cmos 00:01: setting system clock to 2019-01-29T17:14:51 UTC (1548782091)
[    1.115234] ata1: SATA link down (SStatus 0 SControl 300)
[    1.115682] ata9: SATA link down (SStatus 0 SControl 300)
[    1.232045] usb 1-2: new high-speed USB device number 2 using xhci_hcd
[    1.272147] usb 4-2: new SuperSpeed Gen 1 USB device number 2 using xhci_hcd
[    1.285631] usb 4-2: LPM exit latency is zeroed, disabling LPM.
[    1.287008] usb 4-2: Int endpoint with wBytesPerInterval of 1024 in config 1 interface 4 altsetting 0 ep 135: setting to 262
[    1.288753] usb 4-2: New USB device found, idVendor=07ca, idProduct=0553, bcdDevice= 3.08
[    1.289114] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.289467] usb 4-2: Product: Live Gamer Ultra-Video
[    1.289823] usb 4-2: Manufacturer: AVerMedia
[    1.290171] usb 4-2: SerialNumber: 5202584700069
[    1.364115] hid-generic 0003:07CA:0553.0001: hiddev96,hidraw0: USB HID v1.11 Device [AVerMedia Live Gamer Ultra-Video] on usb-0000:0c:00.3-2/input4
[    1.384117] usb 1-2: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    1.384702] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.385158] usb 1-2: Product: USB2.0 Hub
[    1.385534] usb 1-2: Manufacturer: VIA Labs, Inc.
[    1.392127] hub 1-2:1.0: USB hub found
[    1.395086] hub 1-2:1.0: 4 ports detected
[    1.419838] ata2: SATA link down (SStatus 0 SControl 300)
[    1.533050] usb 1-10: new full-speed USB device number 3 using xhci_hcd
[    1.622495] tsc: Refined TSC clocksource calibration: 3693.060 MHz
[    1.623155] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6a77744cfd5, max_idle_ns: 881590969987 ns
[    1.623948] clocksource: Switched to clocksource tsc
[    1.733128] ata3: SATA link down (SStatus 0 SControl 300)
[    1.825419] usb 1-2.1: new high-speed USB device number 4 using xhci_hcd
[    1.844010] usb 1-10: New USB device found, idVendor=0b05, idProduct=1872, bcdDevice= 2.00
[    1.844528] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.845036] usb 1-10: Product: AURA LED Controller
[    1.845540] usb 1-10: Manufacturer: AsusTek Computer Inc.
[    1.846060] usb 1-10: SerialNumber: 00000000001A
[    1.864965] hid-generic 0003:0B05:1872.0002: hiddev97,hidraw1: USB HID v1.11 Device [AsusTek Computer Inc. AURA LED Controller] on usb-0000:02:00.0-10/input0
[    1.953669] usb 1-2.1: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    1.954497] usb 1-2.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.955059] usb 1-2.1: Product: USB2.0 Hub
[    1.955606] usb 1-2.1: Manufacturer: VIA Labs, Inc.
[    1.964262] hub 1-2.1:1.0: USB hub found
[    1.967207] hub 1-2.1:1.0: 4 ports detected
[    2.047017] ata4: SATA link down (SStatus 0 SControl 300)
[    2.052391] usb 1-12: new full-speed USB device number 5 using xhci_hcd
[    2.284028] usb 1-12: New USB device found, idVendor=0b05, idProduct=185c, bcdDevice= 1.10
[    2.284601] usb 1-12: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.285153] usb 1-12: Product: Bluetooth Radio 
[    2.285688] usb 1-12: Manufacturer: Realtek 
[    2.286231] usb 1-12: SerialNumber: 00e04c000001
[    2.347326] usb 1-2.2: new full-speed USB device number 6 using xhci_hcd
[    2.358170] ata5: SATA link down (SStatus 0 SControl 300)
[    2.640044] usb 1-2.1.2: new full-speed USB device number 7 using xhci_hcd
[    2.666259] usb 1-2.2: New USB device found, idVendor=0a12, idProduct=0001, bcdDevice=88.91
[    2.667088] usb 1-2.2: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    2.667722] usb 1-2.2: Product: CSR8510 A10
[    2.830429] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.834572] ata6.00: ATA-10: ST12000NE0007-2GT116, EN01, max UDMA/133
[    2.835304] ata6.00: 23437770752 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    2.838517] ata6.00: configured for UDMA/133
[    2.839844] scsi 5:0:0:0: Direct-Access     ATA      ST12000NE0007-2G EN01 PQ: 0 ANSI: 5
[    2.841165] sd 5:0:0:0: Attached scsi generic sg0 type 0
[    2.841197] sd 5:0:0:0: [sda] 23437770752 512-byte logical blocks: (12.0 TB/10.9 TiB)
[    2.842423] sd 5:0:0:0: [sda] 4096-byte physical blocks
[    2.843006] sd 5:0:0:0: [sda] Write Protect is off
[    2.843543] sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.843589] sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.854682] sd 5:0:0:0: [sda] Attached SCSI disk
[    2.925421] usb 1-2.3: new high-speed USB device number 8 using xhci_hcd
[    2.990318] usb 1-2.1.2: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=12.07
[    2.991099] usb 1-2.1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.991633] usb 1-2.1.2: Product: USB Receiver
[    2.992176] usb 1-2.1.2: Manufacturer: Logitech
[    3.151984] ata7: SATA link down (SStatus 0 SControl 300)
[    3.237764] usb 1-2.3: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    3.238578] usb 1-2.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.239359] usb 1-2.3: Product: USB2.0 Hub
[    3.239978] usb 1-2.3: Manufacturer: VIA Labs, Inc.
[    3.251370] hub 1-2.3:1.0: USB hub found
[    3.254339] hub 1-2.3:1.0: 4 ports detected
[    3.362404] usb 1-2.1.3: new low-speed USB device number 9 using xhci_hcd
[    3.459832] ata8: SATA link down (SStatus 0 SControl 300)
[    3.463678] Freeing unused decrypted memory: 2040K
[    3.465319] Freeing unused kernel image memory: 4872K
[    3.471215] Write protecting the kernel read-only data: 22528k
[    3.472693] Freeing unused kernel image memory: 2036K
[    3.473670] Freeing unused kernel image memory: 1632K
[    3.481374] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.481847] rodata_test: all tests were successful
[    3.482333] Run /init as init process
[    3.539873] systemd[1]: systemd 240 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    3.553075] systemd[1]: Detected architecture x86-64.
[    3.553613] systemd[1]: Running in initial RAM disk.
[    3.568475] systemd[1]: Set hostname to <localhost.localdomain>.
[    3.583813] systemd-gpt-aut (351) used greatest stack depth: 13352 bytes left
[    3.606501] ln (372) used greatest stack depth: 13280 bytes left
[    3.628046] systemd[1]: Listening on Journal Audit Socket.
[    3.629721] systemd[1]: Reached target Timers.
[    3.631404] systemd[1]: Listening on udev Control Socket.
[    3.638086] systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice.
[    3.639838] systemd[1]: Listening on Journal Socket.
[    3.642854] systemd[1]: Starting Create list of required static device nodes for the current kernel...
[    3.666341] usb 1-2.1.3: New USB device found, idVendor=046d, idProduct=c326, bcdDevice=79.00
[    3.666350] usb 1-2.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.666351] usb 1-2.1.3: Product: USB Keyboard
[    3.666353] usb 1-2.1.3: Manufacturer: Logitech
[    3.669383] audit: type=1130 audit(1548782094.115:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=kmod-static-nodes comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.671627] audit: type=1130 audit(1548782094.117:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.685914] audit: type=1130 audit(1548782094.131:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.713038] audit: type=1130 audit(1548782094.158:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.714433] audit: type=1131 audit(1548782094.159:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.727891] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.3/1-2.1.3:1.0/0003:046D:C326.0006/input/input2
[    3.765767] audit: type=1130 audit(1548782094.211:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.782069] hid-generic 0003:046D:C326.0006: input,hidraw2: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.3/input0
[    3.792045] usb 1-2.4: new high-speed USB device number 10 using xhci_hcd
[    3.800824] audit: type=1130 audit(1548782094.246:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.817750] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.3/1-2.1.3:1.1/0003:046D:C326.0007/input/input3
[    3.836381] audit: type=1130 audit(1548782094.282:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.857348] audit: type=1130 audit(1548782094.303:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.871274] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.3/1-2.1.3:1.1/0003:046D:C326.0007/input/input4
[    3.873276] hid-generic 0003:046D:C326.0007: input,hiddev98,hidraw3: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:02:00.0-2.1.3/input1
[    3.939354] usb 1-2.4: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[    3.940283] usb 1-2.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.941211] usb 1-2.4: Product: USB2.0 Hub
[    3.942128] usb 1-2.4: Manufacturer: VIA Labs, Inc.
[    3.954426] hub 1-2.4:1.0: USB hub found
[    3.958354] hub 1-2.4:1.0: 4 ports detected
[    4.047043] usb 1-2.3.3: new full-speed USB device number 11 using xhci_hcd
[    4.090392] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    4.120994] logitech-djreceiver 0003:046D:C52B.0005: hiddev99,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:02:00.0-2.1.2/input2
[    4.124121] nvme nvme0: pci function 0000:01:00.0
[    4.130957] dca service started, version 1.12.1
[    4.166437] igb: Intel(R) Gigabit Ethernet Network Driver - version 5.4.0-k
[    4.167538] igb: Copyright (c) 2007-2014 Intel Corporation.
[    4.194876] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    4.198440] pps pps0: new PPS source ptp0
[    4.199268] igb 0000:04:00.0: added PHC on eth0
[    4.200076] igb 0000:04:00.0: Intel(R) Gigabit Ethernet Network Connection
[    4.200864] igb 0000:04:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 4c:ed:fb:75:5b:ab
[    4.201680] igb 0000:04:00.0: eth0: PBA No: FFFFFF-0FF
[    4.202459] igb 0000:04:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    4.205596] igb 0000:04:00.0 enp4s0: renamed from eth0
[    4.241056] input: Logitech Unifying Device. Wireless PID:4026 Keyboard as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input5
[    4.243650] input: Logitech Unifying Device. Wireless PID:4026 Mouse as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input6
[    4.245539] input: Logitech Unifying Device. Wireless PID:4026 Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input7
[    4.247502] hid-generic 0003:046D:4026.0008: input,hidraw5: USB HID v1.11 Keyboard [Logitech Unifying Device. Wireless PID:4026] on usb-0000:02:00.0-2.1.2:1
[    4.338054] nvme nvme0: 16/0/0 default/read/poll queues
[    4.342193]  nvme0n1: p1 p2 p3
[    4.372239] [drm] amdgpu kernel modesetting enabled.
[    4.373109] Parsing CRAT table with 1 nodes
[    4.373829] Ignoring ACPI CRAT on non-APU system
[    4.374565] Virtual CRAT table created for CPU
[    4.375268] Parsing CRAT table with 1 nodes
[    4.375963] Creating topology SYSFS entries
[    4.376709] Topology: Add CPU node
[    4.377364] Finished initializing topology
[    4.377403] usb 1-2.3.3: New USB device found, idVendor=054c, idProduct=09cc, bcdDevice= 1.00
[    4.378192] checking generic (e0000000 300000) vs hw (e0000000 10000000)
[    4.378786] usb 1-2.3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.378795] fb0: switching to amdgpudrmfb from EFI VGA
[    4.378796] usb 1-2.3.3: Product: Wireless Controller
[    4.378798] usb 1-2.3.3: Manufacturer: Sony Interactive Entertainment
[    4.382203] Console: switching to colour dummy device 80x25
[    4.384402] [drm] initializing kernel modesetting (VEGA10 0x1002:0x687F 0x1458:0x2308 0xC1).
[    4.384506] [drm] register mmio base: 0xFE600000
[    4.384512] [drm] register mmio size: 524288
[    4.384529] [drm] add ip block number 0 <soc15_common>
[    4.384535] [drm] add ip block number 1 <gmc_v9_0>
[    4.384541] [drm] add ip block number 2 <vega10_ih>
[    4.384547] [drm] add ip block number 3 <psp>
[    4.384553] [drm] add ip block number 4 <gfx_v9_0>
[    4.384559] [drm] add ip block number 5 <sdma_v4_0>
[    4.384565] [drm] add ip block number 6 <powerplay>
[    4.384571] [drm] add ip block number 7 <dm>
[    4.384577] [drm] add ip block number 8 <uvd_v7_0>
[    4.384583] [drm] add ip block number 9 <vce_v4_0>
[    4.384856] [drm] UVD(0) is enabled in VM mode
[    4.384863] [drm] UVD(0) ENC is enabled in VM mode
[    4.384869] [drm] VCE enabled in VM mode
[    4.384933] amdgpu 0000:0b:00.0: No more image in the PCI ROM
[    4.384955] ATOM BIOS: xxx-xxx-xxx
[    4.385049] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    4.385068] amdgpu 0000:0b:00.0: VRAM: 8176M 0x000000F400000000 - 0x000000F5FEFFFFFF (8176M used)
[    4.385079] amdgpu 0000:0b:00.0: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF
[    4.385089] amdgpu 0000:0b:00.0: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[    4.385103] [drm] Detected VRAM RAM=8176M, BAR=256M
[    4.385110] [drm] RAM width 2048bits HBM
[    4.385513] [TTM] Zone  kernel: Available graphics memory: 16440086 kiB
[    4.385545] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
[    4.385553] [TTM] Initializing pool allocator
[    4.385575] [TTM] Initializing DMA pool allocator
[    4.385836] [drm] amdgpu: 8176M of VRAM memory ready
[    4.385844] [drm] amdgpu: 8176M of GTT memory ready.
[    4.385948] [drm] GART: num cpu pages 131072, num gpu pages 131072
[    4.386135] [drm] PCIE GART of 512M enabled (table at 0x000000F400900000).
[    4.389493] [drm] use_doorbell being set to: [true]
[    4.389582] [drm] use_doorbell being set to: [true]
[    4.389975] [drm] Found UVD firmware Version: 1.87 Family ID: 17
[    4.389988] [drm] PSP loading UVD firmware
[    4.390582] [drm] Found VCE firmware Version: 55.3 Binary ID: 4
[    4.390598] [drm] PSP loading VCE firmware
[    4.434061] PM: Image not found (code -22)
[    4.434914] systemd-hiberna (569) used greatest stack depth: 13056 bytes left
[    4.449482] input: Sony Interactive Entertainment Wireless Controller Touchpad as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.3/1-2.3.3/1-2.3.3:1.3/0003:054C:09CC.0009/input/input12
[    4.540251] [drm] reserve 0x400000 from 0xf400d00000 for PSP TMR SIZE
[    4.546312] input: Sony Interactive Entertainment Wireless Controller Motion Sensors as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.3/1-2.3.3/1-2.3.3:1.3/0003:054C:09CC.0009/input/input13
[    4.568528] input: Logitech T400 as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.1/1-2.1.2/1-2.1.2:1.2/0003:046D:C52B.0005/0003:046D:4026.0008/input/input14
[    4.569359] logitech-hidpp-device 0003:046D:4026.0008: input,hidraw5: USB HID v1.11 Keyboard [Logitech T400] on usb-0000:02:00.0-2.1.2:1
[    4.599106] input: Sony Interactive Entertainment Wireless Controller as /devices/pci0000:00/0000:00:01.3/0000:02:00.0/usb1/1-2/1-2.3/1-2.3.3/1-2.3.3:1.3/0003:054C:09CC.0009/input/input11
[    4.599285] sony 0003:054C:09CC.0009: input,hidraw6: USB HID v81.11 Gamepad [Sony Interactive Entertainment Wireless Controller] on usb-0000:02:00.0-2.3.3/input3
[    4.632072] [drm] Display Core initialized with v3.2.08!
[    4.664183] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    4.664192] [drm] Driver supports precise vblank timestamp query.
[    4.685503] [drm] UVD and UVD ENC initialized successfully.
[    4.786051] [drm] VCE initialized successfully.
[    4.788795] kfd kfd: Allocated 3969056 bytes on gart
[    4.788833] Virtual CRAT table created for GPU
[    4.788839] Parsing CRAT table with 1 nodes
[    4.788868] Creating topology SYSFS entries
[    4.789362] Topology: Add dGPU node [0x687f:0x1002]
[    4.789728] kfd kfd: added device 1002:687f
[    4.795127] [drm] fb mappable at 0xE1100000
[    4.795179] [drm] vram apper at 0xE0000000
[    4.795185] [drm] size 33177600
[    4.795189] [drm] fb depth is 24
[    4.795194] [drm]    pitch is 15360
[    4.795852] fbcon: amdgpudrmfb (fb0) is primary device
[    4.831835] Console: switching to colour frame buffer device 480x135
[    4.859524] amdgpu 0000:0b:00.0: fb0: amdgpudrmfb frame buffer device
[    4.870275] amdgpu 0000:0b:00.0: ring gfx uses VM inv eng 0 on hub 0
[    4.870277] amdgpu 0000:0b:00.0: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    4.870278] amdgpu 0000:0b:00.0: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    4.870279] amdgpu 0000:0b:00.0: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    4.870280] amdgpu 0000:0b:00.0: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    4.870281] amdgpu 0000:0b:00.0: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    4.870282] amdgpu 0000:0b:00.0: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    4.870283] amdgpu 0000:0b:00.0: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    4.870285] amdgpu 0000:0b:00.0: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    4.870286] amdgpu 0000:0b:00.0: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    4.870287] amdgpu 0000:0b:00.0: ring sdma0 uses VM inv eng 0 on hub 1
[    4.870289] amdgpu 0000:0b:00.0: ring sdma1 uses VM inv eng 1 on hub 1
[    4.870291] amdgpu 0000:0b:00.0: ring uvd_0 uses VM inv eng 4 on hub 1
[    4.870292] amdgpu 0000:0b:00.0: ring uvd_enc_0.0 uses VM inv eng 5 on hub 1
[    4.870294] amdgpu 0000:0b:00.0: ring uvd_enc_0.1 uses VM inv eng 6 on hub 1
[    4.870296] amdgpu 0000:0b:00.0: ring vce0 uses VM inv eng 7 on hub 1
[    4.870297] amdgpu 0000:0b:00.0: ring vce1 uses VM inv eng 8 on hub 1
[    4.870299] amdgpu 0000:0b:00.0: ring vce2 uses VM inv eng 9 on hub 1
[    4.870379] [drm] ECC is not present.
[    4.882012] [drm] Initialized amdgpu 3.27.0 20150101 for 0000:0b:00.0 on minor 0
[    4.894538] setfont (573) used greatest stack depth: 12720 bytes left
[    4.994902] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null)
[    5.032252] systemd-fstab-g (589) used greatest stack depth: 12272 bytes left
[    5.131069] kauditd_printk_skb: 6 callbacks suppressed
[    5.131071] audit: type=1130 audit(1548782095.577:17): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.155897] audit: type=1130 audit(1548782095.601:18): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.155964] audit: type=1131 audit(1548782095.601:19): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=initrd-parse-etc comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.317227] audit: type=1130 audit(1548782095.763:20): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.330765] audit: type=1131 audit(1548782095.776:21): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-pivot comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.332622] audit: type=1131 audit(1548782095.778:22): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.334402] systemd-udevd (521) used greatest stack depth: 12128 bytes left
[    5.335495] systemd-udevd (490) used greatest stack depth: 11904 bytes left
[    5.335519] audit: type=1131 audit(1548782095.781:23): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.336916] systemd-udevd (529) used greatest stack depth: 11640 bytes left
[    5.337435] audit: type=1131 audit(1548782095.783:24): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-initqueue comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.339074] audit: type=1131 audit(1548782095.785:25): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.347171] audit: type=1131 audit(1548782095.793:26): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.475155] systemd-journald[380]: Received SIGTERM from PID 1 (systemd).
[    5.531288] printk: systemd: 18 output lines suppressed due to ratelimiting
[    5.979419] SELinux:  Class xdp_socket not defined in policy.
[    5.979492] SELinux: the above unknown classes and permissions will be allowed
[    5.979516] SELinux:  policy capability network_peer_controls=1
[    5.979535] SELinux:  policy capability open_perms=1
[    5.979550] SELinux:  policy capability extended_socket_class=1
[    5.979569] SELinux:  policy capability always_check_network=0
[    5.979587] SELinux:  policy capability cgroup_seclabel=1
[    5.979604] SELinux:  policy capability nnp_nosuid_transition=1
[    6.034987] systemd[1]: Successfully loaded SELinux policy in 470.047ms.
[    6.079246] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 30.966ms.
[    6.081470] systemd[1]: systemd 240 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
[    6.094086] systemd[1]: Detected architecture x86-64.
[    6.095812] systemd[1]: Set hostname to <localhost.localdomain>.
[    6.154171] systemd[1]: /usr/lib/systemd/system/auditd.service:12: PIDFile= references path below legacy directory /var/run/, updating /var/run/auditd.pid → /run/auditd.pid; please update the unit file accordingly.
[    6.162378] systemd[1]: /usr/lib/systemd/system/gssproxy.service:9: PIDFile= references path below legacy directory /var/run/, updating /var/run/gssproxy.pid → /run/gssproxy.pid; please update the unit file accordingly.
[    6.163020] systemd[1]: /usr/lib/systemd/system/rpc-statd.service:14: PIDFile= references path below legacy directory /var/run/, updating /var/run/rpc.statd.pid → /run/rpc.statd.pid; please update the unit file accordingly.
[    6.165201] systemd[1]: /usr/lib/systemd/system/nfs-blkmap.service:10: PIDFile= references path below legacy directory /var/run/, updating /var/run/blkmapd.pid → /run/blkmapd.pid; please update the unit file accordingly.
[    6.170474] systemd[1]: /usr/lib/systemd/system/chronyd.service:9: PIDFile= references path below legacy directory /var/run/, updating /var/run/chrony/chronyd.pid → /run/chrony/chronyd.pid; please update the unit file accordingly.
[    6.177525] systemd[1]: /usr/lib/systemd/system/sssd.service:11: PIDFile= references path below legacy directory /var/run/, updating /var/run/sssd.pid → /run/sssd.pid; please update the unit file accordingly.
[    6.178475] systemd[1]: /usr/lib/systemd/system/mdmonitor.service:6: PIDFile= references path below legacy directory /var/run/, updating /var/run/mdadm/mdadm.pid → /run/mdadm/mdadm.pid; please update the unit file accordingly.
[    6.319062] EXT4-fs (nvme0n1p2): re-mounted. Opts: (null)
[    6.362865] systemd-journald[678]: Received request to flush runtime journal from PID 1
[    6.585001] acpi_cpufreq: overriding BIOS provided _PSD data
[    6.699637] ccp 0000:0c:00.2: enabling device (0000 -> 0002)
[    6.706675] ccp 0000:0c:00.2: ccp enabled
[    6.706752] ccp 0000:0c:00.2: psp initialization failed
[    6.706773] ccp 0000:0c:00.2: enabled
[    6.710307] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    6.710346] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    6.712861] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    6.713130] sp5100-tco sp5100-tco: Using 0xfed80b00 for watchdog MMIO address
[    6.713182] sp5100-tco sp5100-tco: Watchdog hardware is disabled
[    6.779869] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    6.780926] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    6.788743] Bluetooth: Core ver 2.22
[    6.788805] NET: Registered protocol family 31
[    6.788830] Bluetooth: HCI device and connection manager initialized
[    6.788918] Bluetooth: HCI socket layer initialized
[    6.788948] Bluetooth: L2CAP socket layer initialized
[    6.789113] Bluetooth: SCO socket layer initialized
[    6.820616] usbcore: registered new interface driver btusb
[    6.823749] Bluetooth: hci0: RTL: rtl: examining hci_ver=07 hci_rev=000b lmp_ver=07 lmp_subver=8822

[    6.826225] Bluetooth: hci0: RTL: rom_version status=0 version=2

[    6.826273] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_fw.bin

[    6.828109] Bluetooth: hci0: RTL: rtl: loading rtl_bt/rtl8822b_config.bin

[    6.828387] Bluetooth: hci0: RTL: cfg_sz 14, total sz 20270

[    6.831066] asus_wmi: ASUS WMI generic driver loaded
[    6.831463] snd_hda_intel 0000:0b:00.1: Handle vga_switcheroo audio client
[    6.836332] snd_hda_intel 0000:0d:00.3: enabling device (0000 -> 0002)
[    6.838141] asus_wmi: Initialization: 0x0
[    6.838253] asus_wmi: BIOS WMI version: 0.9
[    6.838445] asus_wmi: SFUN value: 0x0
[    6.840937] input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input15
[    6.841730] asus_wmi: Number of fans: 1
[    6.870126] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input16
[    6.871832] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input17
[    6.872510] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input18
[    6.873105] input: HD-Audio Generic HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input19
[    6.873998] input: HD-Audio Generic HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input20
[    6.879117] input: HD-Audio Generic HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:09:00.0/0000:0a:00.0/0000:0b:00.1/sound/card0/input21
[    6.886746] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1220: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    6.886806] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    6.886843] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    6.886877] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    6.889716] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    6.889730] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    6.889732] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    6.889734] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    6.906421] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input22
[    6.909365] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input23
[    6.912372] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input24
[    6.915512] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input25
[    6.918717] r8822be: module is from the staging directory, the quality is unknown, you have been warned.
[    6.918837] media: Linux media interface: v0.10
[    6.920724] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:0d:00.3/sound/card1/input26
[    6.929361] r8822be 0000:05:00.0: enabling device (0000 -> 0003)
[    6.946142] videodev: Linux video capture interface: v2.00
[    6.949556] r8822be: Using firmware rtlwifi/rtl8822befw.bin
[    6.983258] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
[    6.984449] r8822be: rtlwifi: wireless switch is on
[    6.988809] uvcvideo: Unknown video format 30313050-0000-0010-8000-00aa00389b71
[    6.991354] uvcvideo: Found UVC 1.00 device Live Gamer Ultra-Video (07ca:0553)
[    6.991831] kvm: Nested Virtualization enabled
[    6.996875] kvm: Nested Paging enabled
[    6.999768] SVM: Virtual VMLOAD VMSAVE supported
[    7.002881] SVM: Virtual GIF supported
[    7.009770] MCE: In-kernel MCE decoding enabled.
[    7.017149] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.020058] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.043785] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.043788] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.048399] uvcvideo 4-2:1.0: Entity type for entity Extension 3 was not initialized!
[    7.048445] uvcvideo 4-2:1.0: Entity type for entity Processing 2 was not initialized!
[    7.048449] uvcvideo 4-2:1.0: Entity type for entity Camera 1 was not initialized!
[    7.049678] input: Live Gamer Ultra-Video: Live Ga as /devices/pci0000:00/0000:00:07.1/0000:0c:00.3/usb4/4-2/4-2:1.0/input/input27
[    7.051210] usbcore: registered new interface driver uvcvideo
[    7.051212] USB Video Class driver (1.1.1)
[    7.055976] r8822be 0000:05:00.0 wlp5s0: renamed from wlan0
[    7.091490] EDAC amd64: Node 0: DRAM ECC disabled.
[    7.091492] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                (Note that use of the override may cause unknown side effects.)
[    7.121382] usbcore: registered new interface driver snd-usb-audio
[    7.208336] logitech-hidpp-device 0003:046D:4026.0008: HID++ 2.0 device connected.
[    7.403636] Adding 67108860k swap on /dev/nvme0n1p3.  Priority:-2 extents:1 across:67108860k SSFS
[    7.879005] EXT4-fs (sda): mounted filesystem with ordered data mode. Opts: (null)
[    8.055959] RPC: Registered named UNIX socket transport module.
[    8.058392] RPC: Registered udp transport module.
[    8.058394] RPC: Registered tcp transport module.
[    8.058395] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    8.293446] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.296534] Bluetooth: BNEP filters: protocol multicast
[    8.296551] Bluetooth: BNEP socket layer initialized
[   10.730265] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   10.740959] tun: Universal TUN/TAP device driver, 1.6
[   10.744974] virbr0: port 1(virbr0-nic) entered blocking state
[   10.745065] virbr0: port 1(virbr0-nic) entered disabled state
[   10.745275] device virbr0-nic entered promiscuous mode
[   10.969832] virbr0: port 1(virbr0-nic) entered blocking state
[   10.969893] virbr0: port 1(virbr0-nic) entered listening state
[   11.041875] virbr0: port 1(virbr0-nic) entered disabled state
[   11.678564] igb 0000:04:00.0 enp4s0: igb: enp4s0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
[   11.782320] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready
[   17.010540] Bluetooth: RFCOMM TTY layer initialized
[   17.010549] Bluetooth: RFCOMM socket layer initialized
[   17.010586] Bluetooth: RFCOMM ver 1.11
[   18.065597] fuse init (API version 7.28)
[   20.283827] rfkill: input handler disabled
[  168.505753] WARNING! power/level is deprecated; use power/control instead

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

* Re: [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
  2019-01-29 17:38     ` Mikhail Gavrilov
@ 2019-01-29 20:24       ` Michal Hocko
  2019-01-29 20:56         ` Mikhail Gavrilov
  0 siblings, 1 reply; 17+ messages in thread
From: Michal Hocko @ 2019-01-29 20:24 UTC (permalink / raw)
  To: Mikhail Gavrilov
  Cc: Gerald Schaefer, Mikhail Zaslonko, Andrew Morton, Pavel Tatashin,
	schwidefsky, heiko.carstens, linux-mm, LKML

On Tue 29-01-19 22:38:19, Mikhail Gavrilov wrote:
> On Tue, 29 Jan 2019 at 18:49, Michal Hocko <mhocko@kernel.org> wrote:
> >
> > On Tue 29-01-19 14:14:47, Gerald Schaefer wrote:
> > > On Mon, 28 Jan 2019 15:45:04 +0100
> > > Michal Hocko <mhocko@kernel.org> wrote:
> > >
> > > > Hi,
> > > > Mikhail has posted fixes for the two bugs quite some time ago [1]. I
> > > > have pushed back on those fixes because I believed that it is much
> > > > better to plug the problem at the initialization time rather than play
> > > > whack-a-mole all over the hotplug code and find all the places which
> > > > expect the full memory section to be initialized. We have ended up with
> > > > 2830bf6f05fb ("mm, memory_hotplug: initialize struct pages for the full
> > > > memory section") merged and cause a regression [2][3]. The reason is
> > > > that there might be memory layouts when two NUMA nodes share the same
> > > > memory section so the merged fix is simply incorrect.
> > > >
> > > > In order to plug this hole we really have to be zone range aware in
> > > > those handlers. I have split up the original patch into two. One is
> > > > unchanged (patch 2) and I took a different approach for `removable'
> > > > crash. It would be great if Mikhail could test it still works for his
> > > > memory layout.
> > > >
> > > > [1] http://lkml.kernel.org/r/20181105150401.97287-2-zaslonko@linux.ibm.com
> > > > [2] https://bugzilla.redhat.com/show_bug.cgi?id=1666948
> > > > [3] http://lkml.kernel.org/r/20190125163938.GA20411@dhcp22.suse.cz
> > >
> > > I verified that both patches fix the issues we had with valid_zones
> > > (with mem=2050M) and removable (with mem=3075M).
> > >
> > > However, the call trace in the description of your patch 1 is wrong.
> > > You basically have the same call trace for test_pages_in_a_zone in
> > > both patches. The "removable" patch should have the call trace for
> > > is_mem_section_removable from Mikhails original patches:
> >
> > Thanks for testing. Can I use you Tested-by?
> >
> > >  CONFIG_DEBUG_VM_PGFLAGS=y
> > >  kernel parameter mem=3075M
> > >  --------------------------
> > >  page:000003d08300c000 is uninitialized and poisoned
> > >  page dumped because: VM_BUG_ON_PAGE(PagePoisoned(p))
> > >  Call Trace:
> > >  ([<000000000038596c>] is_mem_section_removable+0xb4/0x190)
> > >   [<00000000008f12fa>] show_mem_removable+0x9a/0xd8
> > >   [<00000000008cf9c4>] dev_attr_show+0x34/0x70
> > >   [<0000000000463ad0>] sysfs_kf_seq_show+0xc8/0x148
> > >   [<00000000003e4194>] seq_read+0x204/0x480
> > >   [<00000000003b53ea>] __vfs_read+0x32/0x178
> > >   [<00000000003b55b2>] vfs_read+0x82/0x138
> > >   [<00000000003b5be2>] ksys_read+0x5a/0xb0
> > >   [<0000000000b86ba0>] system_call+0xdc/0x2d8
> > >  Last Breaking-Event-Address:
> > >   [<000000000038596c>] is_mem_section_removable+0xb4/0x190
> > >  Kernel panic - not syncing: Fatal exception: panic_on_oops
> >
> > Yeah, this is c&p mistake on my end. I will use this trace instead.
> > Thanks for spotting.
> 
> 
> Michal, I am late?

I do not think so. I plan to repost tomorrow with the updated changelog
and gathered review and tested-by tags. Can I assume yours as well?

> I am also tested these patches and can confirm that issue fixed again
> with new approach.
> I also attach two dmesg first when issue was reproduced and second
> with applied patch (problem not reproduced).

Thanks!
-- 
Michal Hocko
SUSE Labs

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

* Re: [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts.
  2019-01-29 20:24       ` Michal Hocko
@ 2019-01-29 20:56         ` Mikhail Gavrilov
  0 siblings, 0 replies; 17+ messages in thread
From: Mikhail Gavrilov @ 2019-01-29 20:56 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Gerald Schaefer, Mikhail Zaslonko, Andrew Morton, Pavel Tatashin,
	schwidefsky, heiko.carstens, linux-mm, LKML

On Wed, 30 Jan 2019 at 01:24, Michal Hocko <mhocko@kernel.org> wrote:
> I do not think so. I plan to repost tomorrow with the updated changelog
> and gathered review and tested-by tags. Can I assume yours as well?

Sure

--
Best Regards,
Mike Gavrilov.

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

* Re: [PATCH 1/2] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone
  2019-01-29  9:12     ` Michal Hocko
@ 2019-01-30  7:54       ` Oscar Salvador
  0 siblings, 0 replies; 17+ messages in thread
From: Oscar Salvador @ 2019-01-30  7:54 UTC (permalink / raw)
  To: Michal Hocko
  Cc: Mikhail Zaslonko, Mikhail Gavrilov, Andrew Morton,
	Pavel Tatashin, schwidefsky, heiko.carstens, gerald.schaefer,
	linux-mm, LKML

On Tue, Jan 29, 2019 at 10:12:24AM +0100, Michal Hocko wrote:
> Yes, those pages should be unreachable because they are out of the zone.
> Reasons might be various. The memory range is not mem section aligned,
> or cut due to mem parameter etc.

I see, thanks.

Reviewed-by: Oscar Salvador <osalvador@suse.de>

-- 
Oscar Salvador
SUSE L3

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

end of thread, other threads:[~2019-01-30  7:54 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-28 14:45 [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts Michal Hocko
2019-01-28 14:45 ` [PATCH 1/2] mm, memory_hotplug: is_mem_section_removable do not pass the end of a zone Michal Hocko
2019-01-29  9:06   ` Oscar Salvador
2019-01-29  9:12     ` Michal Hocko
2019-01-30  7:54       ` Oscar Salvador
2019-01-28 14:45 ` [PATCH 2/2] mm, memory_hotplug: test_pages_in_a_zone do not pass the end of zone Michal Hocko
2019-01-29  9:09   ` Oscar Salvador
2019-01-29  9:13     ` Michal Hocko
2019-01-28 17:50 ` [PATCH 0/2] mm, memory_hotplug: fix uninitialized pages fallouts Andrew Morton
2019-01-28 18:41   ` Michal Hocko
2019-01-28 18:45     ` Michal Hocko
2019-01-29 13:14 ` Gerald Schaefer
2019-01-29 13:49   ` Michal Hocko
2019-01-29 14:08     ` Gerald Schaefer
2019-01-29 17:38     ` Mikhail Gavrilov
2019-01-29 20:24       ` Michal Hocko
2019-01-29 20:56         ` Mikhail Gavrilov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).