linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed
       [not found] <PH0PR11MB4839B4D2FB8B8D8D52A62C7F9A629@PH0PR11MB4839.namprd11.prod.outlook.com>
@ 2022-08-17 10:56 ` Peter Zijlstra
  2022-08-17 16:26   ` [tip: core/urgent] " tip-bot2 for Peter Zijlstra
                     ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Peter Zijlstra @ 2022-08-17 10:56 UTC (permalink / raw)
  To: Xu, Pengfei
  Cc: Yang, Weijiang, Su, Heng, linux-kernel, Josh Poimboeuf, pbonzini, x86

On Tue, Aug 09, 2022 at 02:44:28AM +0000, Xu, Pengfei wrote:
> Hi Peter,
> 
> Greeting!

You again forgot to Cc LKML and relevant people...

> Platform: ADL-P (I tried that TGL-H could reproduce this issue also)
> Kernel: 5.19 mainline kernel with kernel IBT enabled.
> 
> Boot up ADL-P,  and then run syzkaller fuzzing tests, syzkaller will start up guests(Guest kernel is 5.19 mainline also but doesn't enable kernel IBT) to do fuzzing tests.
> After about 1 hour later,  there was "traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]" info generated.
> 
> [ 5048.057266] traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]
> [ 5048.057440] ------------[ cut here ]------------
> [ 5048.057457] kernel BUG at arch/x86/kernel/traps.c:253!
> [ 5048.057482] invalid opcode: 0000 [#1] PREEMPT SMP NOPTI
> [ 5048.057908]  <TASK>
> [ 5048.057919]  asm_exc_control_protection+0x2b/0x30
> [ 5048.057940] RIP: 0010:andw_ax_dx+0x0/0x10 [kvm]
> [ 5048.057999] Code: c3 cc cc cc cc 0f 1f 44 00 00 66 0f 1f 00 48 19 d0 c3 cc cc cc cc 0f 1f 40 00 f3 0f 1e fa 20 d0 c3 cc cc cc cc 0f 1f 44 00 00 <66> 0f 1f 00 66 21 d0 c3 cc cc cc cc 0f 1f 40 00 66 0f 1f 00 21 d0
> ...
> [ 5048.058209]  ? andb_al_dl+0x10/0x10 [kvm]
> [ 5048.058265]  ? fastop+0x5d/0xa0 [kvm]
> [ 5048.058320]  x86_emulate_insn+0x822/0x1060 [kvm]
> [ 5048.058376]  x86_emulate_instruction+0x46f/0x750 [kvm]
> [ 5048.058433]  complete_emulated_mmio+0x216/0x2c0 [kvm]
> [ 5048.058488]  kvm_arch_vcpu_ioctl_run+0x604/0x650 [kvm]
> [ 5048.058543]  kvm_vcpu_ioctl+0x2f4/0x6b0 [kvm]
> [ 5048.058590]  ? wake_up_q+0xa0/0xa0
> ...
> [ 6324.778942] traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]
> ...
> [ 8760.430810] traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]

Urgh, fastops again :/

> Dmesg and all the ko files  in "/lib/modules/5.19.0-m2/kernel/arch/x86" are in attached.

From your kvm.ko:

00000000000376f0 <andw_ax_dx>:
   376f0:       f3 0f 1e fa             endbr64
   376f4:       66 21 d0                and    %dx,%ax
   376f7:       e9 00 00 00 00          jmp    376fc <andw_ax_dx+0xc>   376f8: R_X86_64_PLT32   __x86_return_thunk-0x4
   376fc:       0f 1f 40 00             nopl   0x0(%rax)

However, the Code: thing above gives:

  2a:*  66 0f 1f 00             nopw   (%rax)           <-- trapping instruction
  2e:   66 21 d0                and    %dx,%ax
  31:   c3                      ret
  32:   cc                      int3
  33:   cc                      int3
  34:   cc                      int3
  35:   cc                      int3
  36:   0f 1f 40 00             nopl   0x0(%rax)

From that we can tell gen_endbr_poison() has been used to scribble the
endbr -- so clearly objtool didn't manage to find code references here.

And indeed, kvm.ko's .rela.ibt_endbr_seal section includes:

00000000000002c0  0000000100000002 R_X86_64_PC32          0000000000000000 .text + 376f0

---
Subject: x86/kvm, objtool: Avoid fastop ENDBR from being sealed

Xu reported a number of "Missing ENDBR" triggers for the KVM fastop
emulation code. It turns out that because of how the fastops are set up,
only the first of a series -- the 8 byte variants that overlap with the
em_ symbols -- is found referenced.

Specifically:

        .pushsection .text, "ax"
        .global em_and
        .align 16
        em_and:
        .align 16
        .type andb_al_dl, @function
        andb_al_dl:
        endbr64
        andb %dl, %al
        11: jmp __x86_return_thunk
        .size andb_al_dl, .-andb_al_dl
        .align 16
        .type andw_ax_dx, @function
        andw_ax_dx:
        endbr64
        andw %dx, %ax
        11: jmp __x86_return_thunk
        .size andw_ax_dx, .-andw_ax_dx
        .align 16
        .type andl_eax_edx, @function
        andl_eax_edx:
        endbr64
        andl %edx, %eax
        11: jmp __x86_return_thunk
        .size andl_eax_edx, .-andl_eax_edx
        .align 16
        .type andq_rax_rdx, @function
        andq_rax_rdx:
        endbr64
        andq %rdx, %rax
        11: jmp __x86_return_thunk
        .size andq_rax_rdx, .-andq_rax_rdx
        .popsection

Only has the em_and symbol referenced, resulting in and{w,l,q}_* getting
sealed.

Add (yet another) annotation to inhibit objtool from sealing a specific
ENDBR instance.

Fixes: 6649fa876da4 ("x86/ibt,kvm: Add ENDBR to fastops")
Reported-by: "Xu, Pengfei" <pengfei.xu@intel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
---
 arch/x86/include/asm/ibt.h |  5 +++++
 arch/x86/kvm/emulate.c     |  4 ++--
 include/linux/objtool.h    |  6 ++++++
 tools/objtool/check.c      | 44 ++++++++++++++++++++++++++++++++++++++------
 4 files changed, 51 insertions(+), 8 deletions(-)

diff --git a/arch/x86/include/asm/ibt.h b/arch/x86/include/asm/ibt.h
index 689880eca9ba..f32ba1c4e619 100644
--- a/arch/x86/include/asm/ibt.h
+++ b/arch/x86/include/asm/ibt.h
@@ -29,6 +29,10 @@
 #define ASM_ENDBR	"endbr32\n\t"
 #endif
 
+#define ASM_ENDBR_NOSEAL	\
+	ANNOTATE_NOSEAL		\
+	ASM_ENDBR
+
 #define __noendbr	__attribute__((nocf_check))
 
 static inline __attribute_const__ u32 gen_endbr(void)
@@ -84,6 +88,7 @@ extern __noendbr void ibt_restore(u64 save);
 #ifndef __ASSEMBLY__
 
 #define ASM_ENDBR
+#define ASM_ENDBR_NOSEAL
 
 #define __noendbr
 
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index b4eeb7c75dfa..d51ee8a3bcae 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -326,7 +326,7 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
 	".align " __stringify(FASTOP_SIZE) " \n\t" \
 	".type " name ", @function \n\t" \
 	name ":\n\t" \
-	ASM_ENDBR
+	ASM_ENDBR_NOSEAL
 
 #define FOP_FUNC(name) \
 	__FOP_FUNC(#name)
@@ -461,7 +461,7 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
 	".align " __stringify(SETCC_ALIGN) " \n\t" \
 	".type " #op ", @function \n\t" \
 	#op ": \n\t" \
-	ASM_ENDBR \
+	ASM_ENDBR_NOSEAL \
 	#op " %al \n\t" \
 	__FOP_RET(#op) \
 	".skip " __stringify(SETCC_ALIGN) " - (.-" #op "), 0xcc \n\t"
diff --git a/include/linux/objtool.h b/include/linux/objtool.h
index 62c54ffbeeaa..ad752f8b3b36 100644
--- a/include/linux/objtool.h
+++ b/include/linux/objtool.h
@@ -90,6 +90,12 @@ struct unwind_hint {
 	_ASM_PTR " 986b\n\t"					\
 	".popsection\n\t"
 
+#define ANNOTATE_NOSEAL						\
+	"986: \n\t"						\
+	".pushsection .discard.noseal\n\t"			\
+	_ASM_PTR " 986b\n\t"					\
+	".popsection\n\t"
+
 #define ASM_REACHABLE							\
 	"998:\n\t"							\
 	".pushsection .discard.reachable\n\t"				\
diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index 0cec74da7ffe..0d04d0a707f4 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -2111,6 +2111,40 @@ static int read_noendbr_hints(struct objtool_file *file)
 	return 0;
 }
 
+static void mark_endbr_used(struct instruction *insn)
+{
+	if (!list_empty(&insn->call_node))
+		list_del_init(&insn->call_node);
+}
+
+static int read_noseal_hints(struct objtool_file *file)
+{
+	struct section *sec;
+	struct instruction *insn;
+	struct reloc *reloc;
+
+	sec = find_section_by_name(file->elf, ".rela.discard.noseal");
+	if (!sec)
+		return 0;
+
+	list_for_each_entry(reloc, &sec->reloc_list, list) {
+		insn = find_insn(file, reloc->sym->sec, reloc->sym->offset + reloc->addend);
+		if (!insn) {
+			WARN("bad .discard.noseal entry");
+			return -1;
+		}
+
+		if (insn->type != INSN_ENDBR) {
+			WARN_FUNC("ANNOTATE_NOSEAL not on ENDBR", insn->sec, insn->offset);
+			continue;
+		}
+
+		mark_endbr_used(insn);
+	}
+
+	return 0;
+}
+
 static int read_retpoline_hints(struct objtool_file *file)
 {
 	struct section *sec;
@@ -2356,6 +2390,10 @@ static int decode_sections(struct objtool_file *file)
 	if (ret)
 		return ret;
 
+	ret = read_noseal_hints(file);
+	if (ret)
+		return ret;
+
 	/*
 	 * Must be before add_{jump_call}_destination.
 	 */
@@ -3952,12 +3990,6 @@ static int validate_functions(struct objtool_file *file)
 	return warnings;
 }
 
-static void mark_endbr_used(struct instruction *insn)
-{
-	if (!list_empty(&insn->call_node))
-		list_del_init(&insn->call_node);
-}
-
 static int validate_ibt_insn(struct objtool_file *file, struct instruction *insn)
 {
 	struct instruction *dest;

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

* [tip: core/urgent] x86/kvm, objtool: Avoid fastop ENDBR from being sealed
  2022-08-17 10:56 ` [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed Peter Zijlstra
@ 2022-08-17 16:26   ` tip-bot2 for Peter Zijlstra
  2022-08-18  1:10   ` [PATCH] " Josh Poimboeuf
  2022-08-18  5:04   ` Pengfei Xu
  2 siblings, 0 replies; 8+ messages in thread
From: tip-bot2 for Peter Zijlstra @ 2022-08-17 16:26 UTC (permalink / raw)
  To: linux-tip-commits
  Cc: Xu, Pengfei, Peter Zijlstra (Intel), Ingo Molnar, x86, linux-kernel

The following commit has been merged into the core/urgent branch of tip:

Commit-ID:     52ad1c24d213f176a2424552dfd0db2f870d96bd
Gitweb:        https://git.kernel.org/tip/52ad1c24d213f176a2424552dfd0db2f870d96bd
Author:        Peter Zijlstra <peterz@infradead.org>
AuthorDate:    Wed, 17 Aug 2022 12:56:15 +02:00
Committer:     Ingo Molnar <mingo@kernel.org>
CommitterDate: Wed, 17 Aug 2022 18:05:51 +02:00

x86/kvm, objtool: Avoid fastop ENDBR from being sealed

Subject: x86/kvm, objtool: Avoid fastop ENDBR from being sealed

Xu reported a number of "Missing ENDBR" triggers for the KVM fastop
emulation code. It turns out that because of how the fastops are set up,
only the first of a series -- the 8-byte variants that overlap with the
em_ symbols -- is found referenced.

Specifically:

        .pushsection .text, "ax"
        .global em_and
        .align 16
        em_and:
        .align 16
        .type andb_al_dl, @function
        andb_al_dl:
        endbr64
        andb %dl, %al
        11: jmp __x86_return_thunk
        .size andb_al_dl, .-andb_al_dl
        .align 16
        .type andw_ax_dx, @function
        andw_ax_dx:
        endbr64
        andw %dx, %ax
        11: jmp __x86_return_thunk
        .size andw_ax_dx, .-andw_ax_dx
        .align 16
        .type andl_eax_edx, @function
        andl_eax_edx:
        endbr64
        andl %edx, %eax
        11: jmp __x86_return_thunk
        .size andl_eax_edx, .-andl_eax_edx
        .align 16
        .type andq_rax_rdx, @function
        andq_rax_rdx:
        endbr64
        andq %rdx, %rax
        11: jmp __x86_return_thunk
        .size andq_rax_rdx, .-andq_rax_rdx
        .popsection

Only has the em_and symbol referenced, resulting in and{w,l,q}_* getting
sealed.

Add (yet another) annotation to inhibit objtool from sealing a specific
ENDBR instance.

[ mingo: Sync up tools/include/linux/objtool.h to include/linux/objtool.h. ]

Fixes: 6649fa876da4 ("x86/ibt,kvm: Add ENDBR to fastops")
Reported-by: "Xu, Pengfei" <pengfei.xu@intel.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/YvzJTxOwmikAlZ6j@worktop.programming.kicks-ass.net
---
 arch/x86/include/asm/ibt.h    |  5 ++++-
 arch/x86/kvm/emulate.c        |  4 +--
 include/linux/objtool.h       |  6 +++++-
 tools/include/linux/objtool.h |  6 +++++-
 tools/objtool/check.c         | 44 +++++++++++++++++++++++++++++-----
 5 files changed, 57 insertions(+), 8 deletions(-)

diff --git a/arch/x86/include/asm/ibt.h b/arch/x86/include/asm/ibt.h
index 689880e..f32ba1c 100644
--- a/arch/x86/include/asm/ibt.h
+++ b/arch/x86/include/asm/ibt.h
@@ -29,6 +29,10 @@
 #define ASM_ENDBR	"endbr32\n\t"
 #endif
 
+#define ASM_ENDBR_NOSEAL	\
+	ANNOTATE_NOSEAL		\
+	ASM_ENDBR
+
 #define __noendbr	__attribute__((nocf_check))
 
 static inline __attribute_const__ u32 gen_endbr(void)
@@ -84,6 +88,7 @@ extern __noendbr void ibt_restore(u64 save);
 #ifndef __ASSEMBLY__
 
 #define ASM_ENDBR
+#define ASM_ENDBR_NOSEAL
 
 #define __noendbr
 
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index b4eeb7c..d51ee8a 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -326,7 +326,7 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
 	".align " __stringify(FASTOP_SIZE) " \n\t" \
 	".type " name ", @function \n\t" \
 	name ":\n\t" \
-	ASM_ENDBR
+	ASM_ENDBR_NOSEAL
 
 #define FOP_FUNC(name) \
 	__FOP_FUNC(#name)
@@ -461,7 +461,7 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
 	".align " __stringify(SETCC_ALIGN) " \n\t" \
 	".type " #op ", @function \n\t" \
 	#op ": \n\t" \
-	ASM_ENDBR \
+	ASM_ENDBR_NOSEAL \
 	#op " %al \n\t" \
 	__FOP_RET(#op) \
 	".skip " __stringify(SETCC_ALIGN) " - (.-" #op "), 0xcc \n\t"
diff --git a/include/linux/objtool.h b/include/linux/objtool.h
index 62c54ff..ad752f8 100644
--- a/include/linux/objtool.h
+++ b/include/linux/objtool.h
@@ -90,6 +90,12 @@ struct unwind_hint {
 	_ASM_PTR " 986b\n\t"					\
 	".popsection\n\t"
 
+#define ANNOTATE_NOSEAL						\
+	"986: \n\t"						\
+	".pushsection .discard.noseal\n\t"			\
+	_ASM_PTR " 986b\n\t"					\
+	".popsection\n\t"
+
 #define ASM_REACHABLE							\
 	"998:\n\t"							\
 	".pushsection .discard.reachable\n\t"				\
diff --git a/tools/include/linux/objtool.h b/tools/include/linux/objtool.h
index 62c54ff..ad752f8 100644
--- a/tools/include/linux/objtool.h
+++ b/tools/include/linux/objtool.h
@@ -90,6 +90,12 @@ struct unwind_hint {
 	_ASM_PTR " 986b\n\t"					\
 	".popsection\n\t"
 
+#define ANNOTATE_NOSEAL						\
+	"986: \n\t"						\
+	".pushsection .discard.noseal\n\t"			\
+	_ASM_PTR " 986b\n\t"					\
+	".popsection\n\t"
+
 #define ASM_REACHABLE							\
 	"998:\n\t"							\
 	".pushsection .discard.reachable\n\t"				\
diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index 0cec74d..0d04d0a 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -2111,6 +2111,40 @@ static int read_noendbr_hints(struct objtool_file *file)
 	return 0;
 }
 
+static void mark_endbr_used(struct instruction *insn)
+{
+	if (!list_empty(&insn->call_node))
+		list_del_init(&insn->call_node);
+}
+
+static int read_noseal_hints(struct objtool_file *file)
+{
+	struct section *sec;
+	struct instruction *insn;
+	struct reloc *reloc;
+
+	sec = find_section_by_name(file->elf, ".rela.discard.noseal");
+	if (!sec)
+		return 0;
+
+	list_for_each_entry(reloc, &sec->reloc_list, list) {
+		insn = find_insn(file, reloc->sym->sec, reloc->sym->offset + reloc->addend);
+		if (!insn) {
+			WARN("bad .discard.noseal entry");
+			return -1;
+		}
+
+		if (insn->type != INSN_ENDBR) {
+			WARN_FUNC("ANNOTATE_NOSEAL not on ENDBR", insn->sec, insn->offset);
+			continue;
+		}
+
+		mark_endbr_used(insn);
+	}
+
+	return 0;
+}
+
 static int read_retpoline_hints(struct objtool_file *file)
 {
 	struct section *sec;
@@ -2356,6 +2390,10 @@ static int decode_sections(struct objtool_file *file)
 	if (ret)
 		return ret;
 
+	ret = read_noseal_hints(file);
+	if (ret)
+		return ret;
+
 	/*
 	 * Must be before add_{jump_call}_destination.
 	 */
@@ -3952,12 +3990,6 @@ static int validate_functions(struct objtool_file *file)
 	return warnings;
 }
 
-static void mark_endbr_used(struct instruction *insn)
-{
-	if (!list_empty(&insn->call_node))
-		list_del_init(&insn->call_node);
-}
-
 static int validate_ibt_insn(struct objtool_file *file, struct instruction *insn)
 {
 	struct instruction *dest;

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

* Re: [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed
  2022-08-17 10:56 ` [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed Peter Zijlstra
  2022-08-17 16:26   ` [tip: core/urgent] " tip-bot2 for Peter Zijlstra
@ 2022-08-18  1:10   ` Josh Poimboeuf
  2022-08-18  7:28     ` Peter Zijlstra
  2022-08-18  5:04   ` Pengfei Xu
  2 siblings, 1 reply; 8+ messages in thread
From: Josh Poimboeuf @ 2022-08-18  1:10 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Xu, Pengfei, Yang, Weijiang, Su, Heng, linux-kernel,
	Josh Poimboeuf, pbonzini, x86

On Wed, Aug 17, 2022 at 12:56:15PM +0200, Peter Zijlstra wrote:
> Add (yet another) annotation to inhibit objtool from sealing a specific
> ENDBR instance.

Nah, just add a throwaway reference to the function.  Then no objtool
change is needed:

diff --git a/arch/x86/include/asm/ibt.h b/arch/x86/include/asm/ibt.h
index 689880eca9ba..3ae795150374 100644
--- a/arch/x86/include/asm/ibt.h
+++ b/arch/x86/include/asm/ibt.h
@@ -31,6 +31,16 @@
 
 #define __noendbr	__attribute__((nocf_check))
 
+/*
+ * Create a dummy function pointer reference to prevent objtool from marking
+ * the function as needing to be "sealed" (i.e. ENDBR converted to NOP by
+ * apply_ibt_endbr()).
+ */
+#define IBT_NOSEAL(fname)				\
+	".pushsection .discard.endbr.noseal\n\t"	\
+	_ASM_PTR fname "\n\t"				\
+	".popsection\n\t"
+
 static inline __attribute_const__ u32 gen_endbr(void)
 {
 	u32 endbr;
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index f8382abe22ff..88623add0db4 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -316,7 +316,8 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
 	".align " __stringify(FASTOP_SIZE) " \n\t" \
 	".type " name ", @function \n\t" \
 	name ":\n\t" \
-	ASM_ENDBR
+	ASM_ENDBR \
+	IBT_NOSEAL(name)
 
 #define FOP_FUNC(name) \
 	__FOP_FUNC(#name)

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

* Re: [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed
  2022-08-17 10:56 ` [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed Peter Zijlstra
  2022-08-17 16:26   ` [tip: core/urgent] " tip-bot2 for Peter Zijlstra
  2022-08-18  1:10   ` [PATCH] " Josh Poimboeuf
@ 2022-08-18  5:04   ` Pengfei Xu
  2 siblings, 0 replies; 8+ messages in thread
From: Pengfei Xu @ 2022-08-18  5:04 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Yang, Weijiang, Su, Heng, linux-kernel, Josh Poimboeuf, pbonzini, x86

Hi Peter,

On 2022-08-17 at 12:56:15 +0200, Peter Zijlstra wrote:
> On Tue, Aug 09, 2022 at 02:44:28AM +0000, Xu, Pengfei wrote:
> > Hi Peter,
> > 
> > Greeting!
> 
> You again forgot to Cc LKML and relevant people...
  Ah, I will Cc LKML and relevant people if I report new issue next time.

  I have tested your patch, and I could not rerproduce this issue
  when starting the syzkaller test for more than 6 hours.

  And I will test Josh Poimboeuf's patch, will update email if I find
  some problem.

  Thanks!
  BR.

> 
> > Platform: ADL-P (I tried that TGL-H could reproduce this issue also)
> > Kernel: 5.19 mainline kernel with kernel IBT enabled.
> > 
> > Boot up ADL-P,  and then run syzkaller fuzzing tests, syzkaller will start up guests(Guest kernel is 5.19 mainline also but doesn't enable kernel IBT) to do fuzzing tests.
> > After about 1 hour later,  there was "traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]" info generated.
> > 
> > [ 5048.057266] traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]
> > [ 5048.057440] ------------[ cut here ]------------
> > [ 5048.057457] kernel BUG at arch/x86/kernel/traps.c:253!
> > [ 5048.057482] invalid opcode: 0000 [#1] PREEMPT SMP NOPTI
> > [ 5048.057908]  <TASK>
> > [ 5048.057919]  asm_exc_control_protection+0x2b/0x30
> > [ 5048.057940] RIP: 0010:andw_ax_dx+0x0/0x10 [kvm]
> > [ 5048.057999] Code: c3 cc cc cc cc 0f 1f 44 00 00 66 0f 1f 00 48 19 d0 c3 cc cc cc cc 0f 1f 40 00 f3 0f 1e fa 20 d0 c3 cc cc cc cc 0f 1f 44 00 00 <66> 0f 1f 00 66 21 d0 c3 cc cc cc cc 0f 1f 40 00 66 0f 1f 00 21 d0
> > ...
> > [ 5048.058209]  ? andb_al_dl+0x10/0x10 [kvm]
> > [ 5048.058265]  ? fastop+0x5d/0xa0 [kvm]
> > [ 5048.058320]  x86_emulate_insn+0x822/0x1060 [kvm]
> > [ 5048.058376]  x86_emulate_instruction+0x46f/0x750 [kvm]
> > [ 5048.058433]  complete_emulated_mmio+0x216/0x2c0 [kvm]
> > [ 5048.058488]  kvm_arch_vcpu_ioctl_run+0x604/0x650 [kvm]
> > [ 5048.058543]  kvm_vcpu_ioctl+0x2f4/0x6b0 [kvm]
> > [ 5048.058590]  ? wake_up_q+0xa0/0xa0
> > ...
> > [ 6324.778942] traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]
> > ...
> > [ 8760.430810] traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]
> 
> Urgh, fastops again :/
> 
> > Dmesg and all the ko files  in "/lib/modules/5.19.0-m2/kernel/arch/x86" are in attached.
> 
> From your kvm.ko:
> 
> 00000000000376f0 <andw_ax_dx>:
>    376f0:       f3 0f 1e fa             endbr64
>    376f4:       66 21 d0                and    %dx,%ax
>    376f7:       e9 00 00 00 00          jmp    376fc <andw_ax_dx+0xc>   376f8: R_X86_64_PLT32   __x86_return_thunk-0x4
>    376fc:       0f 1f 40 00             nopl   0x0(%rax)
> 
> However, the Code: thing above gives:
> 
>   2a:*  66 0f 1f 00             nopw   (%rax)           <-- trapping instruction
>   2e:   66 21 d0                and    %dx,%ax
>   31:   c3                      ret
>   32:   cc                      int3
>   33:   cc                      int3
>   34:   cc                      int3
>   35:   cc                      int3
>   36:   0f 1f 40 00             nopl   0x0(%rax)
> 
> From that we can tell gen_endbr_poison() has been used to scribble the
> endbr -- so clearly objtool didn't manage to find code references here.
> 
> And indeed, kvm.ko's .rela.ibt_endbr_seal section includes:
> 
> 00000000000002c0  0000000100000002 R_X86_64_PC32          0000000000000000 .text + 376f0
> 
> ---
> Subject: x86/kvm, objtool: Avoid fastop ENDBR from being sealed
> 
> Xu reported a number of "Missing ENDBR" triggers for the KVM fastop
> emulation code. It turns out that because of how the fastops are set up,
> only the first of a series -- the 8 byte variants that overlap with the
> em_ symbols -- is found referenced.
> 
> Specifically:
> 
>         .pushsection .text, "ax"
>         .global em_and
>         .align 16
>         em_and:
>         .align 16
>         .type andb_al_dl, @function
>         andb_al_dl:
>         endbr64
>         andb %dl, %al
>         11: jmp __x86_return_thunk
>         .size andb_al_dl, .-andb_al_dl
>         .align 16
>         .type andw_ax_dx, @function
>         andw_ax_dx:
>         endbr64
>         andw %dx, %ax
>         11: jmp __x86_return_thunk
>         .size andw_ax_dx, .-andw_ax_dx
>         .align 16
>         .type andl_eax_edx, @function
>         andl_eax_edx:
>         endbr64
>         andl %edx, %eax
>         11: jmp __x86_return_thunk
>         .size andl_eax_edx, .-andl_eax_edx
>         .align 16
>         .type andq_rax_rdx, @function
>         andq_rax_rdx:
>         endbr64
>         andq %rdx, %rax
>         11: jmp __x86_return_thunk
>         .size andq_rax_rdx, .-andq_rax_rdx
>         .popsection
> 
> Only has the em_and symbol referenced, resulting in and{w,l,q}_* getting
> sealed.
> 
> Add (yet another) annotation to inhibit objtool from sealing a specific
> ENDBR instance.
> 
> Fixes: 6649fa876da4 ("x86/ibt,kvm: Add ENDBR to fastops")
> Reported-by: "Xu, Pengfei" <pengfei.xu@intel.com>
> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
> ---
>  arch/x86/include/asm/ibt.h |  5 +++++
>  arch/x86/kvm/emulate.c     |  4 ++--
>  include/linux/objtool.h    |  6 ++++++
>  tools/objtool/check.c      | 44 ++++++++++++++++++++++++++++++++++++++------
>  4 files changed, 51 insertions(+), 8 deletions(-)
> 
> diff --git a/arch/x86/include/asm/ibt.h b/arch/x86/include/asm/ibt.h
> index 689880eca9ba..f32ba1c4e619 100644
> --- a/arch/x86/include/asm/ibt.h
> +++ b/arch/x86/include/asm/ibt.h
> @@ -29,6 +29,10 @@
>  #define ASM_ENDBR	"endbr32\n\t"
>  #endif
>  
> +#define ASM_ENDBR_NOSEAL	\
> +	ANNOTATE_NOSEAL		\
> +	ASM_ENDBR
> +
>  #define __noendbr	__attribute__((nocf_check))
>  
>  static inline __attribute_const__ u32 gen_endbr(void)
> @@ -84,6 +88,7 @@ extern __noendbr void ibt_restore(u64 save);
>  #ifndef __ASSEMBLY__
>  
>  #define ASM_ENDBR
> +#define ASM_ENDBR_NOSEAL
>  
>  #define __noendbr
>  
> diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
> index b4eeb7c75dfa..d51ee8a3bcae 100644
> --- a/arch/x86/kvm/emulate.c
> +++ b/arch/x86/kvm/emulate.c
> @@ -326,7 +326,7 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
>  	".align " __stringify(FASTOP_SIZE) " \n\t" \
>  	".type " name ", @function \n\t" \
>  	name ":\n\t" \
> -	ASM_ENDBR
> +	ASM_ENDBR_NOSEAL
>  
>  #define FOP_FUNC(name) \
>  	__FOP_FUNC(#name)
> @@ -461,7 +461,7 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
>  	".align " __stringify(SETCC_ALIGN) " \n\t" \
>  	".type " #op ", @function \n\t" \
>  	#op ": \n\t" \
> -	ASM_ENDBR \
> +	ASM_ENDBR_NOSEAL \
>  	#op " %al \n\t" \
>  	__FOP_RET(#op) \
>  	".skip " __stringify(SETCC_ALIGN) " - (.-" #op "), 0xcc \n\t"
> diff --git a/include/linux/objtool.h b/include/linux/objtool.h
> index 62c54ffbeeaa..ad752f8b3b36 100644
> --- a/include/linux/objtool.h
> +++ b/include/linux/objtool.h
> @@ -90,6 +90,12 @@ struct unwind_hint {
>  	_ASM_PTR " 986b\n\t"					\
>  	".popsection\n\t"
>  
> +#define ANNOTATE_NOSEAL						\
> +	"986: \n\t"						\
> +	".pushsection .discard.noseal\n\t"			\
> +	_ASM_PTR " 986b\n\t"					\
> +	".popsection\n\t"
> +
>  #define ASM_REACHABLE							\
>  	"998:\n\t"							\
>  	".pushsection .discard.reachable\n\t"				\
> diff --git a/tools/objtool/check.c b/tools/objtool/check.c
> index 0cec74da7ffe..0d04d0a707f4 100644
> --- a/tools/objtool/check.c
> +++ b/tools/objtool/check.c
> @@ -2111,6 +2111,40 @@ static int read_noendbr_hints(struct objtool_file *file)
>  	return 0;
>  }
>  
> +static void mark_endbr_used(struct instruction *insn)
> +{
> +	if (!list_empty(&insn->call_node))
> +		list_del_init(&insn->call_node);
> +}
> +
> +static int read_noseal_hints(struct objtool_file *file)
> +{
> +	struct section *sec;
> +	struct instruction *insn;
> +	struct reloc *reloc;
> +
> +	sec = find_section_by_name(file->elf, ".rela.discard.noseal");
> +	if (!sec)
> +		return 0;
> +
> +	list_for_each_entry(reloc, &sec->reloc_list, list) {
> +		insn = find_insn(file, reloc->sym->sec, reloc->sym->offset + reloc->addend);
> +		if (!insn) {
> +			WARN("bad .discard.noseal entry");
> +			return -1;
> +		}
> +
> +		if (insn->type != INSN_ENDBR) {
> +			WARN_FUNC("ANNOTATE_NOSEAL not on ENDBR", insn->sec, insn->offset);
> +			continue;
> +		}
> +
> +		mark_endbr_used(insn);
> +	}
> +
> +	return 0;
> +}
> +
>  static int read_retpoline_hints(struct objtool_file *file)
>  {
>  	struct section *sec;
> @@ -2356,6 +2390,10 @@ static int decode_sections(struct objtool_file *file)
>  	if (ret)
>  		return ret;
>  
> +	ret = read_noseal_hints(file);
> +	if (ret)
> +		return ret;
> +
>  	/*
>  	 * Must be before add_{jump_call}_destination.
>  	 */
> @@ -3952,12 +3990,6 @@ static int validate_functions(struct objtool_file *file)
>  	return warnings;
>  }
>  
> -static void mark_endbr_used(struct instruction *insn)
> -{
> -	if (!list_empty(&insn->call_node))
> -		list_del_init(&insn->call_node);
> -}
> -
>  static int validate_ibt_insn(struct objtool_file *file, struct instruction *insn)
>  {
>  	struct instruction *dest;

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

* Re: [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed
  2022-08-18  1:10   ` [PATCH] " Josh Poimboeuf
@ 2022-08-18  7:28     ` Peter Zijlstra
  2022-08-18  7:38       ` Pengfei Xu
  0 siblings, 1 reply; 8+ messages in thread
From: Peter Zijlstra @ 2022-08-18  7:28 UTC (permalink / raw)
  To: Josh Poimboeuf
  Cc: Xu, Pengfei, Yang, Weijiang, Su, Heng, linux-kernel,
	Josh Poimboeuf, pbonzini, x86

On Wed, Aug 17, 2022 at 06:10:45PM -0700, Josh Poimboeuf wrote:
> On Wed, Aug 17, 2022 at 12:56:15PM +0200, Peter Zijlstra wrote:
> > Add (yet another) annotation to inhibit objtool from sealing a specific
> > ENDBR instance.
> 
> Nah, just add a throwaway reference to the function.  Then no objtool
> change is needed:

Nice!, should I 'borrow' this and respin the patch or you want to make a
real patch out of it?

> diff --git a/arch/x86/include/asm/ibt.h b/arch/x86/include/asm/ibt.h
> index 689880eca9ba..3ae795150374 100644
> --- a/arch/x86/include/asm/ibt.h
> +++ b/arch/x86/include/asm/ibt.h
> @@ -31,6 +31,16 @@
>  
>  #define __noendbr	__attribute__((nocf_check))
>  
> +/*
> + * Create a dummy function pointer reference to prevent objtool from marking
> + * the function as needing to be "sealed" (i.e. ENDBR converted to NOP by
> + * apply_ibt_endbr()).
> + */
> +#define IBT_NOSEAL(fname)				\
> +	".pushsection .discard.endbr.noseal\n\t"	\
> +	_ASM_PTR fname "\n\t"				\
> +	".popsection\n\t"
> +
>  static inline __attribute_const__ u32 gen_endbr(void)
>  {
>  	u32 endbr;
> diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
> index f8382abe22ff..88623add0db4 100644
> --- a/arch/x86/kvm/emulate.c
> +++ b/arch/x86/kvm/emulate.c
> @@ -316,7 +316,8 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
>  	".align " __stringify(FASTOP_SIZE) " \n\t" \
>  	".type " name ", @function \n\t" \
>  	name ":\n\t" \
> -	ASM_ENDBR
> +	ASM_ENDBR \
> +	IBT_NOSEAL(name)
>  
>  #define FOP_FUNC(name) \
>  	__FOP_FUNC(#name)

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

* Re: [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed
  2022-08-18  7:28     ` Peter Zijlstra
@ 2022-08-18  7:38       ` Pengfei Xu
  2022-08-18 11:06         ` Peter Zijlstra
  0 siblings, 1 reply; 8+ messages in thread
From: Pengfei Xu @ 2022-08-18  7:38 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Josh Poimboeuf, Yang, Weijiang, Su, Heng, linux-kernel,
	Josh Poimboeuf, pbonzini, x86

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

Hi Poimboeuf and Peter,

  I installed the new patch based on v5.19 mainline kernel.

  And this "Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]" issue was
  reproduced again after ran syzkaller 5min on ADL-P.

  I'm not sure is there something missed for attached patch.

  Patch, kvm.ko and dmesg are in attached.

  Thanks!
  BR.

On 2022-08-18 at 09:28:28 +0200, Peter Zijlstra wrote:
> On Wed, Aug 17, 2022 at 06:10:45PM -0700, Josh Poimboeuf wrote:
> > On Wed, Aug 17, 2022 at 12:56:15PM +0200, Peter Zijlstra wrote:
> > > Add (yet another) annotation to inhibit objtool from sealing a specific
> > > ENDBR instance.
> > 
> > Nah, just add a throwaway reference to the function.  Then no objtool
> > change is needed:
> 
> Nice!, should I 'borrow' this and respin the patch or you want to make a
> real patch out of it?
> 
> > diff --git a/arch/x86/include/asm/ibt.h b/arch/x86/include/asm/ibt.h
> > index 689880eca9ba..3ae795150374 100644
> > --- a/arch/x86/include/asm/ibt.h
> > +++ b/arch/x86/include/asm/ibt.h
> > @@ -31,6 +31,16 @@
> >  
> >  #define __noendbr	__attribute__((nocf_check))
> >  
> > +/*
> > + * Create a dummy function pointer reference to prevent objtool from marking
> > + * the function as needing to be "sealed" (i.e. ENDBR converted to NOP by
> > + * apply_ibt_endbr()).
> > + */
> > +#define IBT_NOSEAL(fname)				\
> > +	".pushsection .discard.endbr.noseal\n\t"	\
> > +	_ASM_PTR fname "\n\t"				\
> > +	".popsection\n\t"
> > +
> >  static inline __attribute_const__ u32 gen_endbr(void)
> >  {
> >  	u32 endbr;
> > diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
> > index f8382abe22ff..88623add0db4 100644
> > --- a/arch/x86/kvm/emulate.c
> > +++ b/arch/x86/kvm/emulate.c
> > @@ -316,7 +316,8 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
> >  	".align " __stringify(FASTOP_SIZE) " \n\t" \
> >  	".type " name ", @function \n\t" \
> >  	name ":\n\t" \
> > -	ASM_ENDBR
> > +	ASM_ENDBR \
> > +	IBT_NOSEAL(name)
> >  
> >  #define FOP_FUNC(name) \
> >  	__FOP_FUNC(#name)

[-- Attachment #2: 0001-x86-kvm-objtool-Avoid-fastop-ENDBR-from-being-sealed.patch --]
[-- Type: text/plain, Size: 1685 bytes --]

From 4a7887c6dbbac4f9e05870455581a3e526b2d5d9 Mon Sep 17 00:00:00 2001
From: Josh Poimboeuf <jpoimboe@kernel.org>
Date: Wed, 17 Aug 2022 18:10:45 -0700
Subject: [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed

On Wed, Aug 17, 2022 at 12:56:15PM +0200, Peter Zijlstra wrote:
> Add (yet another) annotation to inhibit objtool from sealing a specific
> ENDBR instance.

Nah, just add a throwaway reference to the function.  Then no objtool
change is needed:
---
 arch/x86/include/asm/ibt.h | 10 ++++++++++
 arch/x86/kvm/emulate.c     |  3 ++-
 2 files changed, 12 insertions(+), 1 deletion(-)

diff --git a/arch/x86/include/asm/ibt.h b/arch/x86/include/asm/ibt.h
index 689880eca9ba..3ae795150374 100644
--- a/arch/x86/include/asm/ibt.h
+++ b/arch/x86/include/asm/ibt.h
@@ -31,6 +31,16 @@
 
 #define __noendbr	__attribute__((nocf_check))
 
+/*
+ * Create a dummy function pointer reference to prevent objtool from marking
+ * the function as needing to be "sealed" (i.e. ENDBR converted to NOP by
+ * apply_ibt_endbr()).
+ */
+#define IBT_NOSEAL(fname)				\
+	".pushsection .discard.endbr.noseal\n\t"	\
+	_ASM_PTR fname "\n\t"				\
+	".popsection\n\t"
+
 static inline __attribute_const__ u32 gen_endbr(void)
 {
 	u32 endbr;
diff --git a/arch/x86/kvm/emulate.c b/arch/x86/kvm/emulate.c
index f8382abe22ff..88623add0db4 100644
--- a/arch/x86/kvm/emulate.c
+++ b/arch/x86/kvm/emulate.c
@@ -316,7 +316,8 @@ static int fastop(struct x86_emulate_ctxt *ctxt, fastop_t fop);
 	".align " __stringify(FASTOP_SIZE) " \n\t" \
 	".type " name ", @function \n\t" \
 	name ":\n\t" \
-	ASM_ENDBR
+	ASM_ENDBR \
+	IBT_NOSEAL(name)
 
 #define FOP_FUNC(name) \
 	__FOP_FUNC(#name)
-- 
2.31.1


[-- Attachment #3: adlp_fix2nd_patch_still_Missing_ENDBR.txt --]
[-- Type: text/plain, Size: 300263 bytes --]

[    0.000000] Linux version 5.19.0-mfix2+ (root@xpf.sh.intel.com) (gcc (GCC) 8.5.0 20210514 (Red Hat 8.5.0-10), GNU ld version 2.36.1-2.el8) #2 SMP PREEMPT_DYNAMIC Thu Aug 18 13:25:20 CST 2022
[    0.000000] Command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.19.0-mfix2+ root=UUID=bd87f1b8-5961-4f61-9add-0b182079eaec ro crashkernel=auto resume=UUID=bf31b892-d4e1-479e-84f2-93cbb865d825 rhgb quiet text initcall_debug resume=/dev/nvme0n1p3 log_buf_len=200M no_console_suspend ignore_loglevel thunderbolt.dyndbg
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    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: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[9]:  832, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 3632
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000040668fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040669000-0x00000000439d9fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000439da000-0x0000000043ac1fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000043ac2000-0x0000000043bfefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000043bff000-0x0000000043bfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000043c00000-0x0000000047ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000048c00000-0x0000000048ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000049e00000-0x00000000503fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000004afbfffff] usable
[    0.000000] printk: debug: ignoring loglevel setting.
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by Intel
[    0.000000] efi: ACPI=0x43bfe000 ACPI 2.0=0x43bfe014 SMBIOS=0x4073d000 MEMATTR=0x3d2c0018 ESRT=0x3d2d7898 
[    0.000000] SMBIOS 3.4 present.
[    0.000000] DMI: Intel Corporation Alder Lake Client Platform/AlderLake-P DDR5 RVP, BIOS RPLPFWI1.R00.3257.A00.2206200744 06/20/2022
[    0.000000] tsc: Detected 1900.000 MHz processor
[    0.000000] tsc: Detected 1881.600 MHz TSC
[    0.000007] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000009] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000013] last_pfn = 0x4afc00 max_arch_pfn = 0x400000000
[    0.000180] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000931] total RAM covered: 29888M
[    0.000992] Found optimal setting for mtrr clean up
[    0.000993]  gran_size: 64K  chunk_size: 64K         num_reg: 6      lose cover RAM: 0G
[    0.001409] e820: update [mem 0x4c000000-0xffffffff] usable ==> reserved
[    0.001412] last_pfn = 0x43c00 max_arch_pfn = 0x400000000
[    0.005553] esrt: Reserving ESRT space from 0x000000003d2d7898 to 0x000000003d2d7a60.
[    0.005562] e820: update [mem 0x3d2d7000-0x3d2d7fff] usable ==> reserved
[    0.005586] Using GB pages for direct mapping
[    0.160866] printk: log_buf_len: 268435456 bytes
[    0.160867] printk: early log buf free: 258584(98%)
[    0.160868] Secure boot disabled
[    0.160868] RAMDISK: [mem 0x25a1d000-0x28bd3fff]
[    0.160870] ACPI: Early table checksum verification disabled
[    0.160873] ACPI: RSDP 0x0000000043BFE014 000024 (v02 INTEL )
[    0.160876] ACPI: XSDT 0x0000000043B11188 00012C (v01 INTEL  ADL-P-M  00000002      01000013)
[    0.160880] ACPI: FACP 0x0000000043BEC000 000114 (v06 INTEL  ADL-P-M  00000002      01000013)
[    0.160884] ACPI: DSDT 0x0000000043B4C000 09CC0A (v02 INTEL  ADL-P-M  00000002      01000013)
[    0.160885] ACPI: FACS 0x0000000043A2B000 000040
[    0.160887] ACPI: SSDT 0x0000000043BFC000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
[    0.160888] ACPI: SSDT 0x0000000043BF6000 005D34 (v02 CpuRef CpuSsdt  00003000 INTL 20200717)
[    0.160890] ACPI: SSDT 0x0000000043BEE000 007028 (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[    0.160892] ACPI: ECDT 0x0000000043BED000 000069 (v01 INTEL  ADL-P-M  00000002      01000013)
[    0.160893] ACPI: HPET 0x0000000043BEB000 000038 (v01 INTEL  ADL-P-M  00000002      01000013)
[    0.160895] ACPI: APIC 0x0000000043BEA000 0001DC (v05 INTEL  ADL-P-M  00000002      01000013)
[    0.160897] ACPI: MCFG 0x0000000043BE9000 00003C (v01 INTEL  ADL-P-M  00000002      01000013)
[    0.160898] ACPI: SSDT 0x0000000043B3B000 010A9F (v02 INTEL  AdlP_Rvp 00001000 INTL 20200717)
[    0.160900] ACPI: SSDT 0x0000000043B39000 001F32 (v02 INTEL  Ther_Rvp 00001000 INTL 20200717)
[    0.160901] ACPI: SSDT 0x0000000043B35000 00393F (v02 SaSsdt SaSsdt   00003000 INTL 20200717)
[    0.160903] ACPI: SSDT 0x0000000043B31000 003683 (v02 INTEL  IgfxSsdt 00003000 INTL 20200717)
[    0.160905] ACPI: SSDT 0x0000000043B23000 00DB8D (v02 INTEL  TcssSsdt 00001000 INTL 20200717)
[    0.160906] ACPI: SSDT 0x0000000043B22000 000150 (v02 INTEL  IpuSsdt  00001000 INTL 20200717)
[    0.160908] ACPI: LPIT 0x0000000043B21000 0000CC (v01 INTEL  ADL-P-M  00000002      01000013)
[    0.160909] ACPI: WSMT 0x0000000043B20000 000028 (v01 INTEL  ADL-P-M  00000002      01000013)
[    0.160911] ACPI: SSDT 0x0000000043B1D000 002A83 (v02 INTEL  PtidDevc 00001000 INTL 20200717)
[    0.160912] ACPI: SSDT 0x0000000043B15000 007279 (v02 INTEL  TbtTypeC 00000000 INTL 20200717)
[    0.160914] ACPI: DBGP 0x0000000043B14000 000034 (v01 INTEL  ADL-P-M  00000002      01000013)
[    0.160916] ACPI: DBG2 0x0000000043B13000 000054 (v00 INTEL  ADL-P-M  00000002      01000013)
[    0.160917] ACPI: NHLT 0x0000000043B12000 0002F1 (v00 INTEL  ADL-P-M  00000002      01000013)
[    0.160919] ACPI: SSDT 0x0000000043B0F000 001919 (v02 INTEL  UsbCTabl 00001000 INTL 20200717)
[    0.160920] ACPI: DMAR 0x0000000043BFD000 0000A0 (v02 INTEL  ICL      00000002      01000013)
[    0.160922] ACPI: UEFI 0x0000000043A21000 00063A (v01 INTEL  RstVmdE  00000000 INTL 00000000)
[    0.160924] ACPI: UEFI 0x0000000043A20000 00005C (v01 INTEL  RstVmdV  00000000 INTL 00000000)
[    0.160925] ACPI: FPDT 0x0000000043B0E000 000044 (v01 INTEL  ADL-P-M  00000002      01000013)
[    0.160927] ACPI: SSDT 0x0000000043B0D000 000CAB (v02 INTEL  xh_adlLP 00000000 INTL 20200717)
[    0.160928] ACPI: SSDT 0x0000000043B09000 003BD3 (v02 SocGpe SocGpe   00003000 INTL 20200717)
[    0.160930] ACPI: SSDT 0x0000000043B05000 0039DA (v02 SocCmn SocCmn   00003000 INTL 20200717)
[    0.160932] ACPI: SSDT 0x0000000043B04000 000144 (v02 Intel  ADebTabl 00001000 INTL 20200717)
[    0.160933] ACPI: ASF! 0x0000000043B03000 000074 (v32 INTEL  ADL-P-M  00000002      01000013)
[    0.160935] ACPI: BGRT 0x0000000043B02000 000038 (v01 INTEL  ADL-P-M  00000002      01000013)
[    0.160936] ACPI: PHAT 0x0000000043B01000 0006ED (v01 INTEL  ADL-P-M  00000005 MSFT 0100000D)
[    0.160938] ACPI: Reserving FACP table memory at [mem 0x43bec000-0x43bec113]
[    0.160939] ACPI: Reserving DSDT table memory at [mem 0x43b4c000-0x43be8c09]
[    0.160939] ACPI: Reserving FACS table memory at [mem 0x43a2b000-0x43a2b03f]
[    0.160940] ACPI: Reserving SSDT table memory at [mem 0x43bfc000-0x43bfc38b]
[    0.160940] ACPI: Reserving SSDT table memory at [mem 0x43bf6000-0x43bfbd33]
[    0.160940] ACPI: Reserving SSDT table memory at [mem 0x43bee000-0x43bf5027]
[    0.160941] ACPI: Reserving ECDT table memory at [mem 0x43bed000-0x43bed068]
[    0.160941] ACPI: Reserving HPET table memory at [mem 0x43beb000-0x43beb037]
[    0.160942] ACPI: Reserving APIC table memory at [mem 0x43bea000-0x43bea1db]
[    0.160942] ACPI: Reserving MCFG table memory at [mem 0x43be9000-0x43be903b]
[    0.160943] ACPI: Reserving SSDT table memory at [mem 0x43b3b000-0x43b4ba9e]
[    0.160943] ACPI: Reserving SSDT table memory at [mem 0x43b39000-0x43b3af31]
[    0.160944] ACPI: Reserving SSDT table memory at [mem 0x43b35000-0x43b3893e]
[    0.160944] ACPI: Reserving SSDT table memory at [mem 0x43b31000-0x43b34682]
[    0.160944] ACPI: Reserving SSDT table memory at [mem 0x43b23000-0x43b30b8c]
[    0.160945] ACPI: Reserving SSDT table memory at [mem 0x43b22000-0x43b2214f]
[    0.160945] ACPI: Reserving LPIT table memory at [mem 0x43b21000-0x43b210cb]
[    0.160946] ACPI: Reserving WSMT table memory at [mem 0x43b20000-0x43b20027]
[    0.160946] ACPI: Reserving SSDT table memory at [mem 0x43b1d000-0x43b1fa82]
[    0.160946] ACPI: Reserving SSDT table memory at [mem 0x43b15000-0x43b1c278]
[    0.160947] ACPI: Reserving DBGP table memory at [mem 0x43b14000-0x43b14033]
[    0.160947] ACPI: Reserving DBG2 table memory at [mem 0x43b13000-0x43b13053]
[    0.160948] ACPI: Reserving NHLT table memory at [mem 0x43b12000-0x43b122f0]
[    0.160948] ACPI: Reserving SSDT table memory at [mem 0x43b0f000-0x43b10918]
[    0.160949] ACPI: Reserving DMAR table memory at [mem 0x43bfd000-0x43bfd09f]
[    0.160949] ACPI: Reserving UEFI table memory at [mem 0x43a21000-0x43a21639]
[    0.160950] ACPI: Reserving UEFI table memory at [mem 0x43a20000-0x43a2005b]
[    0.160950] ACPI: Reserving FPDT table memory at [mem 0x43b0e000-0x43b0e043]
[    0.160951] ACPI: Reserving SSDT table memory at [mem 0x43b0d000-0x43b0dcaa]
[    0.160951] ACPI: Reserving SSDT table memory at [mem 0x43b09000-0x43b0cbd2]
[    0.160951] ACPI: Reserving SSDT table memory at [mem 0x43b05000-0x43b089d9]
[    0.160952] ACPI: Reserving SSDT table memory at [mem 0x43b04000-0x43b04143]
[    0.160952] ACPI: Reserving ASF! table memory at [mem 0x43b03000-0x43b03073]
[    0.160953] ACPI: Reserving BGRT table memory at [mem 0x43b02000-0x43b02037]
[    0.160953] ACPI: Reserving PHAT table memory at [mem 0x43b01000-0x43b016ec]
[    0.161366] No NUMA configuration found
[    0.161367] Faking a node at [mem 0x0000000000000000-0x00000004afbfffff]
[    0.161372] NODE_DATA(0) allocated [mem 0x467bd5000-0x467bfffff]
[    0.161489] crashkernel: memory value expected
[    0.161514] Zone ranges:
[    0.161514]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.161515]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.161516]   Normal   [mem 0x0000000100000000-0x00000004afbfffff]
[    0.161517]   Device   empty
[    0.161518] Movable zone start for each node
[    0.161519] Early memory node ranges
[    0.161519]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.161520]   node   0: [mem 0x0000000000100000-0x0000000040668fff]
[    0.161520]   node   0: [mem 0x0000000043bff000-0x0000000043bfffff]
[    0.161521]   node   0: [mem 0x0000000100000000-0x00000004afbfffff]
[    0.161522] Initmem setup node 0 [mem 0x0000000000001000-0x00000004afbfffff]
[    0.161525] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.161543] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.162860] On node 0, zone DMA32: 13718 pages in unavailable ranges
[    0.181504] On node 0, zone Normal: 17408 pages in unavailable ranges
[    0.181512] On node 0, zone Normal: 1024 pages in unavailable ranges
[    0.181549] Reserving Intel graphics memory at [mem 0x4c800000-0x503fffff]
[    0.183008] ACPI: PM-Timer IO Port: 0x1808
[    0.183014] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.183015] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.183016] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.183016] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.183017] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.183017] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.183017] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.183018] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.183018] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.183018] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.183019] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.183019] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.183020] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.183020] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.183020] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.183021] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.183021] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.183022] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.183022] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.183022] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.183023] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.183023] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.183023] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.183024] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.183107] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.183109] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.183110] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.183112] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.183113] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.183123] e820: update [mem 0x3d277000-0x3d291fff] usable ==> reserved
[    0.183129] TSC deadline timer available
[    0.183130] smpboot: Allowing 16 CPUs, 0 hotplug CPUs
[    0.183149] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.183151] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.183153] PM: hibernation: Registered nosave memory: [mem 0x3d277000-0x3d291fff]
[    0.183154] PM: hibernation: Registered nosave memory: [mem 0x3d2d7000-0x3d2d7fff]
[    0.183156] PM: hibernation: Registered nosave memory: [mem 0x40669000-0x439d9fff]
[    0.183156] PM: hibernation: Registered nosave memory: [mem 0x439da000-0x43ac1fff]
[    0.183156] PM: hibernation: Registered nosave memory: [mem 0x43ac2000-0x43bfefff]
[    0.183158] PM: hibernation: Registered nosave memory: [mem 0x43c00000-0x47ffffff]
[    0.183158] PM: hibernation: Registered nosave memory: [mem 0x48000000-0x48bfffff]
[    0.183159] PM: hibernation: Registered nosave memory: [mem 0x48c00000-0x48ffffff]
[    0.183159] PM: hibernation: Registered nosave memory: [mem 0x49000000-0x49dfffff]
[    0.183159] PM: hibernation: Registered nosave memory: [mem 0x49e00000-0x503fffff]
[    0.183160] PM: hibernation: Registered nosave memory: [mem 0x50400000-0xbfffffff]
[    0.183160] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
[    0.183160] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfed1ffff]
[    0.183161] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[    0.183161] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfeffffff]
[    0.183161] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.183162] [mem 0x50400000-0xbfffffff] available for PCI devices
[    0.183163] Booting paravirtualized kernel on bare hardware
[    0.183165] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.183170] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
[    0.183642] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u262144
[    0.183649] pcpu-alloc: s217088 r8192 d28672 u262144 alloc=1*2097152
[    0.183651] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.183679] Fallback order for Node 0: 0 
[    0.183681] Built 1 zonelists, mobility grouping on.  Total pages: 4064608
[    0.183682] Policy zone: Normal
[    0.183683] Kernel command line: BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.19.0-mfix2+ root=UUID=bd87f1b8-5961-4f61-9add-0b182079eaec ro crashkernel=auto resume=UUID=bf31b892-d4e1-479e-84f2-93cbb865d825 rhgb quiet text initcall_debug resume=/dev/nvme0n1p3 log_buf_len=200M no_console_suspend ignore_loglevel thunderbolt.dyndbg
[    0.183744] Unknown kernel command line parameters "rhgb text BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.19.0-mfix2+", will be passed to user space.
[    0.184894] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.185479] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.185565] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.217763] Memory: 14820740K/16517152K available (20493K kernel code, 3442K rwdata, 6820K rodata, 3344K init, 9412K bss, 1696152K reserved, 0K cma-reserved)
[    0.218698] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
[    0.218700] kmemleak: Kernel memory leak detector disabled
[    0.218714] ftrace: allocating 60691 entries in 238 pages
[    0.224745] ftrace: allocated 238 pages with 6 groups
[    0.225436] Dynamic Preempt: voluntary
[    0.225475] rcu: Preemptible hierarchical RCU implementation.
[    0.225476] rcu:     RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
[    0.225477]  Trampoline variant of Tasks RCU enabled.
[    0.225477]  Rude variant of Tasks RCU enabled.
[    0.225477]  Tracing variant of Tasks RCU enabled.
[    0.225478] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.225478] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
[    0.228126] NR_IRQS: 524544, nr_irqs: 2184, preallocated irqs: 16
[    0.228468] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.228777] calling  con_init+0x0/0x242 @ 0
[    0.228786] Console: colour dummy device 80x25
[    0.228938] printk: console [tty0] enabled
[    0.228939] initcall con_init+0x0/0x242 returned 0 after 0 usecs
[    0.228941] calling  hvc_console_init+0x0/0x21 @ 0
[    0.228942] initcall hvc_console_init+0x0/0x21 returned 0 after 0 usecs
[    0.228944] calling  xen_cons_init+0x0/0x60 @ 0
[    0.228947] initcall xen_cons_init+0x0/0x60 returned 0 after 0 usecs
[    0.228949] calling  univ8250_console_init+0x0/0x39 @ 0
[    0.228952] initcall univ8250_console_init+0x0/0x39 returned 0 after 0 usecs
[    0.228954] calling  kgdboc_earlycon_late_init+0x0/0x31 @ 0
[    0.228955] initcall kgdboc_earlycon_late_init+0x0/0x31 returned 0 after 0 usecs
[    0.228973] ACPI: Core revision 20220331
[    0.229283] hpet: HPET dysfunctional in PC10. Force disabled.
[    0.229285] APIC: Switch to symmetric I/O mode setup
[    0.229287] DMAR: Host address width 39
[    0.229288] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.229293] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[    0.229295] DMAR: DRHD base: 0x000000fed92000 flags: 0x0
[    0.229297] DMAR: dmar1: reg_base_addr fed92000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.229299] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.229303] DMAR: dmar2: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[    0.229305] DMAR: RMRR base: 0x0000004c000000 end: 0x000000503fffff
[    0.229307] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 2
[    0.229309] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.229310] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.233504] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.233507] x2apic enabled
[    0.233571] Switched APIC routing to cluster x2apic.
[    0.244992] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x363e8c91135, max_idle_ns: 881590568389 ns
[    0.244999] Calibrating delay loop (skipped), value calculated using timer frequency.. 3763.20 BogoMIPS (lpj=7526400)
[    0.245002] pid_max: default: 32768 minimum: 301
[    0.246902] LSM: Security Framework initializing
[    0.246907] Yama: becoming mindful.
[    0.247004] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.247033] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.247295] x86/tme: not enabled by BIOS
[    0.247302] CPU0: Thermal monitoring enabled (TM1)
[    0.247303] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.247415] process: using mwait in idle threads
[    0.247416] CET detected: Indirect Branch Tracking enabled
[    0.247419] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.247420] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.247424] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.247427] Spectre V2 : WARNING: Unprivileged eBPF is enabled with eIBRS on, data leaks possible via Spectre v2 BHB attacks!
[    0.247428] Spectre V2 : Mitigation: Enhanced IBRS
[    0.247429] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.247431] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.247433] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.248997] Freeing SMP alternatives memory: 52K
[    0.248997] smpboot: CPU0: Genuine Intel(R) 0000 (family: 0x6, model: 0xba, stepping: 0x2)
[    0.248997] cblist_init_generic: Setting adjustable number of callback queues.
[    0.248997] cblist_init_generic: Setting shift to 4 and lim to 1.
[    0.248997] cblist_init_generic: Setting shift to 4 and lim to 1.
[    0.248997] cblist_init_generic: Setting shift to 4 and lim to 1.
[    0.248997] calling  init_hw_perf_events+0x0/0x627 @ 1
[    0.248997] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline,  AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.248997] core: cpu_core PMU driver: 
[    0.248997] ... version:                5
[    0.248997] ... bit width:              48
[    0.248997] ... generic registers:      8
[    0.248997] ... value mask:             0000ffffffffffff
[    0.248997] ... max period:             00007fffffffffff
[    0.248997] ... fixed-purpose events:   4
[    0.248997] ... event mask:             0001000f000000ff
[    0.248997] initcall init_hw_perf_events+0x0/0x627 returned 0 after 0 usecs
[    0.248997] calling  init_real_mode+0x0/0x23b @ 1
[    0.248997] initcall init_real_mode+0x0/0x23b returned 0 after 0 usecs
[    0.248997] calling  trace_init_perf_perm_irq_work_exit+0x0/0x20 @ 1
[    0.248997] initcall trace_init_perf_perm_irq_work_exit+0x0/0x20 returned 0 after 0 usecs
[    0.248997] calling  bp_init_aperfmperf+0x0/0x274 @ 1
[    0.248997] Estimated ratio of average max frequency by base frequency (times 1024): 2317
[    0.248997] initcall bp_init_aperfmperf+0x0/0x274 returned 0 after 0 usecs
[    0.248997] calling  register_nmi_cpu_backtrace_handler+0x0/0x23 @ 1
[    0.248997] initcall register_nmi_cpu_backtrace_handler+0x0/0x23 returned 0 after 0 usecs
[    0.248997] calling  numachip_system_init+0x0/0x73 @ 1
[    0.248997] initcall numachip_system_init+0x0/0x73 returned 0 after 0 usecs
[    0.248997] calling  kvm_setup_vsyscall_timeinfo+0x0/0x156 @ 1
[    0.248997] initcall kvm_setup_vsyscall_timeinfo+0x0/0x156 returned 0 after 0 usecs
[    0.248997] calling  spawn_ksoftirqd+0x0/0x46 @ 1
[    0.248997] initcall spawn_ksoftirqd+0x0/0x46 returned 0 after 0 usecs
[    0.248997] calling  migration_init+0x0/0x3f @ 1
[    0.248997] initcall migration_init+0x0/0x3f returned 0 after 0 usecs
[    0.248997] calling  srcu_bootup_announce+0x0/0x85 @ 1
[    0.248997] rcu: Hierarchical SRCU implementation.
[    0.248997] rcu:     Max phase no-delay instances is 1000.
[    0.248997] initcall srcu_bootup_announce+0x0/0x85 returned 0 after 0 usecs
[    0.248997] calling  rcu_spawn_gp_kthread+0x0/0x1a8 @ 1
[    0.248997] initcall rcu_spawn_gp_kthread+0x0/0x1a8 returned 0 after 0 usecs
[    0.248997] calling  check_cpu_stall_init+0x0/0x28 @ 1
[    0.248997] initcall check_cpu_stall_init+0x0/0x28 returned 0 after 0 usecs
[    0.248997] calling  rcu_sysrq_init+0x0/0x34 @ 1
[    0.248997] initcall rcu_sysrq_init+0x0/0x34 returned 0 after 0 usecs
[    0.248997] calling  trace_init_flags_sys_enter+0x0/0x1c @ 1
[    0.248997] initcall trace_init_flags_sys_enter+0x0/0x1c returned 0 after 0 usecs
[    0.248997] calling  trace_init_flags_sys_exit+0x0/0x1c @ 1
[    0.248997] initcall trace_init_flags_sys_exit+0x0/0x1c returned 0 after 0 usecs
[    0.248997] calling  cpu_stop_init+0x0/0xa2 @ 1
[    0.248997] initcall cpu_stop_init+0x0/0xa2 returned 0 after 0 usecs
[    0.248997] calling  init_kprobes+0x0/0x184 @ 1
[    0.248997] initcall init_kprobes+0x0/0x184 returned 0 after 0 usecs
[    0.248997] calling  init_events+0x0/0x61 @ 1
[    0.248997] initcall init_events+0x0/0x61 returned 0 after 0 usecs
[    0.248997] calling  init_trace_printk+0x0/0x1a @ 1
[    0.248997] initcall init_trace_printk+0x0/0x1a returned 0 after 0 usecs
[    0.248997] calling  event_trace_enable_again+0x0/0x50 @ 1
[    0.248997] initcall event_trace_enable_again+0x0/0x50 returned 0 after 0 usecs
[    0.248997] calling  irq_work_init_threads+0x0/0xb @ 1
[    0.248997] initcall irq_work_init_threads+0x0/0xb returned 0 after 0 usecs
[    0.248997] calling  static_call_init+0x0/0x90 @ 1
[    0.248997] initcall static_call_init+0x0/0x90 returned 0 after 0 usecs
[    0.248997] calling  jump_label_init_module+0x0/0x1f @ 1
[    0.248997] initcall jump_label_init_module+0x0/0x1f returned 0 after 0 usecs
[    0.248997] calling  init_zero_pfn+0x0/0x45 @ 1
[    0.248997] initcall init_zero_pfn+0x0/0x45 returned 0 after 0 usecs
[    0.248997] calling  init_fs_inode_sysctls+0x0/0x2f @ 1
[    0.248997] initcall init_fs_inode_sysctls+0x0/0x2f returned 0 after 0 usecs
[    0.248997] calling  init_fs_locks_sysctls+0x0/0x2f @ 1
[    0.248997] initcall init_fs_locks_sysctls+0x0/0x2f returned 0 after 0 usecs
[    0.248997] calling  dynamic_debug_init+0x0/0x183 @ 1
[    0.248997] initcall dynamic_debug_init+0x0/0x183 returned 0 after 0 usecs
[    0.248997] calling  unpopulated_init+0x0/0x4e @ 1
[    0.248997] initcall unpopulated_init+0x0/0x4e returned -19 after 0 usecs
[    0.248997] calling  efi_memreserve_root_init+0x0/0x3a @ 1
[    0.248997] initcall efi_memreserve_root_init+0x0/0x3a returned 0 after 0 usecs
[    0.248997] calling  efi_earlycon_remap_fb+0x0/0x63 @ 1
[    0.248997] initcall efi_earlycon_remap_fb+0x0/0x63 returned 0 after 0 usecs
[    0.248997] calling  idle_inject_init+0x0/0x1f @ 1
[    0.248997] initcall idle_inject_init+0x0/0x1f returned 0 after 0 usecs
[    0.248997] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.248997] smp: Bringing up secondary CPUs ...
[    0.248997] x86: Booting SMP configuration:
[    0.248997] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8
[    0.020242] core: cpu_atom PMU driver: PEBS-via-PT 
[    0.020242] ... version:                5
[    0.020242] ... bit width:              48
[    0.020242] ... generic registers:      6
[    0.020242] ... value mask:             0000ffffffffffff
[    0.020242] ... max period:             00007fffffffffff
[    0.020242] ... fixed-purpose events:   3
[    0.020242] ... event mask:             000000070000003f
[    0.257289]   #9 #10 #11 #12 #13 #14 #15
[    0.273703] smp: Brought up 1 node, 16 CPUs
[    0.273703] smpboot: Max logical packages: 1
[    0.273703] smpboot: Total of 16 processors activated (60211.20 BogoMIPS)
[    0.277539] devtmpfs: initialized
[    0.277539] x86/mm: Memory block size: 128MB
[    0.277841] calling  bpf_jit_charge_init+0x0/0x49 @ 1
[    0.277847] initcall bpf_jit_charge_init+0x0/0x49 returned 0 after 0 usecs
[    0.277849] calling  ipc_ns_init+0x0/0x4c @ 1
[    0.277854] initcall ipc_ns_init+0x0/0x4c returned 0 after 0 usecs
[    0.277855] calling  init_mmap_min_addr+0x0/0x23 @ 1
[    0.277857] initcall init_mmap_min_addr+0x0/0x23 returned 0 after 0 usecs
[    0.277858] calling  pci_realloc_setup_params+0x0/0x5b @ 1
[    0.277860] initcall pci_realloc_setup_params+0x0/0x5b returned 0 after 0 usecs
[    0.277862] calling  inet_frag_wq_init+0x0/0x4a @ 1
[    0.277871] initcall inet_frag_wq_init+0x0/0x4a returned 0 after 0 usecs
[    0.277871] calling  xen_pvh_gnttab_setup+0x0/0x46 @ 1
[    0.277871] initcall xen_pvh_gnttab_setup+0x0/0x46 returned -19 after 0 usecs
[    0.277871] calling  e820__register_nvs_regions+0x0/0x45 @ 1
[    0.277871] ACPI: PM: Registering ACPI NVS region [mem 0x439da000-0x43ac1fff] (950272 bytes)
[    0.277871] initcall e820__register_nvs_regions+0x0/0x45 returned 0 after 0 usecs
[    0.277871] calling  cpufreq_register_tsc_scaling+0x0/0x3e @ 1
[    0.277871] initcall cpufreq_register_tsc_scaling+0x0/0x3e returned 0 after 0 usecs
[    0.277871] calling  reboot_init+0x0/0x51 @ 1
[    0.277871] initcall reboot_init+0x0/0x51 returned 0 after 0 usecs
[    0.277871] calling  init_lapic_sysfs+0x0/0x35 @ 1
[    0.277871] initcall init_lapic_sysfs+0x0/0x35 returned 0 after 0 usecs
[    0.277871] calling  alloc_frozen_cpus+0x0/0x2b @ 1
[    0.277871] initcall alloc_frozen_cpus+0x0/0x2b returned 0 after 0 usecs
[    0.277871] calling  cpu_hotplug_pm_sync_init+0x0/0x21 @ 1
[    0.277871] initcall cpu_hotplug_pm_sync_init+0x0/0x21 returned 0 after 0 usecs
[    0.277871] calling  wq_sysfs_init+0x0/0x38 @ 1
[    0.277871] initcall wq_sysfs_init+0x0/0x38 returned 0 after 0 usecs
[    0.277871] calling  ksysfs_init+0x0/0xa4 @ 1
[    0.277871] initcall ksysfs_init+0x0/0xa4 returned 0 after 0 usecs
[    0.277871] calling  schedutil_gov_init+0x0/0x1f @ 1
[    0.277871] initcall schedutil_gov_init+0x0/0x1f returned 0 after 0 usecs
[    0.277871] calling  pm_init+0x0/0x81 @ 1
[    0.277871] initcall pm_init+0x0/0x81 returned 0 after 0 usecs
[    0.277871] calling  pm_disk_init+0x0/0x26 @ 1
[    0.277871] initcall pm_disk_init+0x0/0x26 returned 0 after 0 usecs
[    0.277871] calling  swsusp_header_init+0x0/0x39 @ 1
[    0.277871] initcall swsusp_header_init+0x0/0x39 returned 0 after 0 usecs
[    0.277871] calling  rcu_set_runtime_mode+0x0/0x24 @ 1
[    0.277871] initcall rcu_set_runtime_mode+0x0/0x24 returned 0 after 0 usecs
[    0.277871] calling  init_jiffies_clocksource+0x0/0x26 @ 1
[    0.277871] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.277871] initcall init_jiffies_clocksource+0x0/0x26 returned 0 after 0 usecs
[    0.277871] calling  futex_init+0x0/0xde @ 1
[    0.277871] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[    0.277871] initcall futex_init+0x0/0xde returned 0 after 0 usecs
[    0.277871] calling  cgroup_wq_init+0x0/0x36 @ 1
[    0.277871] initcall cgroup_wq_init+0x0/0x36 returned 0 after 0 usecs
[    0.277871] calling  cgroup1_wq_init+0x0/0x36 @ 1
[    0.277871] initcall cgroup1_wq_init+0x0/0x36 returned 0 after 0 usecs
[    0.277871] calling  ftrace_mod_cmd_init+0x0/0x1a @ 1
[    0.277871] initcall ftrace_mod_cmd_init+0x0/0x1a returned 0 after 0 usecs
[    0.277871] calling  init_wakeup_tracer+0x0/0x3a @ 1
[    0.277871] initcall init_wakeup_tracer+0x0/0x3a returned 0 after 0 usecs
[    0.277871] calling  init_graph_trace+0x0/0x6c @ 1
[    0.277871] initcall init_graph_trace+0x0/0x6c returned 0 after 0 usecs
[    0.277871] calling  trace_events_eprobe_init_early+0x0/0x30 @ 1
[    0.277871] initcall trace_events_eprobe_init_early+0x0/0x30 returned 0 after 0 usecs
[    0.277871] calling  trace_events_synth_init_early+0x0/0x30 @ 1
[    0.277871] initcall trace_events_synth_init_early+0x0/0x30 returned 0 after 0 usecs
[    0.277871] calling  init_kprobe_trace_early+0x0/0x33 @ 1
[    0.277871] initcall init_kprobe_trace_early+0x0/0x33 returned 0 after 0 usecs
[    0.277871] calling  mem_cgroup_swap_init+0x0/0x76 @ 1
[    0.277871] initcall mem_cgroup_swap_init+0x0/0x76 returned 0 after 0 usecs
[    0.277871] calling  memory_failure_init+0x0/0xb5 @ 1
[    0.277871] initcall memory_failure_init+0x0/0xb5 returned 0 after 0 usecs
[    0.277871] calling  cma_init_reserved_areas+0x0/0x229 @ 1
[    0.277871] initcall cma_init_reserved_areas+0x0/0x229 returned 0 after 0 usecs
[    0.277871] calling  fsnotify_init+0x0/0x56 @ 1
[    0.277871] initcall fsnotify_init+0x0/0x56 returned 0 after 0 usecs
[    0.277871] calling  filelock_init+0x0/0xac @ 1
[    0.277871] initcall filelock_init+0x0/0xac returned 0 after 0 usecs
[    0.277871] calling  init_script_binfmt+0x0/0x23 @ 1
[    0.277871] initcall init_script_binfmt+0x0/0x23 returned 0 after 0 usecs
[    0.277871] calling  init_elf_binfmt+0x0/0x23 @ 1
[    0.277871] initcall init_elf_binfmt+0x0/0x23 returned 0 after 0 usecs
[    0.277871] calling  init_compat_elf_binfmt+0x0/0x23 @ 1
[    0.277871] initcall init_compat_elf_binfmt+0x0/0x23 returned 0 after 0 usecs
[    0.277871] calling  configfs_init+0x0/0xa1 @ 1
[    0.277871] initcall configfs_init+0x0/0xa1 returned 0 after 0 usecs
[    0.277871] calling  debugfs_init+0x0/0x6a @ 1
[    0.277871] initcall debugfs_init+0x0/0x6a returned 0 after 0 usecs
[    0.277871] calling  tracefs_init+0x0/0x48 @ 1
[    0.277871] initcall tracefs_init+0x0/0x48 returned 0 after 0 usecs
[    0.277871] calling  securityfs_init+0x0/0x76 @ 1
[    0.277871] initcall securityfs_init+0x0/0x76 returned 0 after 0 usecs
[    0.277871] calling  pinctrl_init+0x0/0xbb @ 1
[    0.277871] pinctrl core: initialized pinctrl subsystem
[    0.277871] initcall pinctrl_init+0x0/0xbb returned 0 after 0 usecs
[    0.277871] calling  gpiolib_dev_init+0x0/0x110 @ 1
[    0.277871] initcall gpiolib_dev_init+0x0/0x110 returned 0 after 0 usecs
[    0.277871] calling  virtio_init+0x0/0x30 @ 1
[    0.277871] initcall virtio_init+0x0/0x30 returned 0 after 0 usecs
[    0.277871] calling  regulator_init+0x0/0xa5 @ 1
[    0.277871] initcall regulator_init+0x0/0xa5 returned 0 after 0 usecs
[    0.277871] calling  iommu_init+0x0/0x3d @ 1

[    0.277871] *************************************************************
[    0.277871] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.277871] **                                                         **
[    0.277871] **  IOMMU DebugFS SUPPORT HAS BEEN ENABLED IN THIS KERNEL  **
[    0.277871] **                                                         **
[    0.277871] ** This means that this kernel is built to expose internal **
[    0.277871] ** IOMMU data structures, which may compromise security on **
[    0.277871] ** your system.                                            **
[    0.277871] **                                                         **
[    0.277871] ** If you see this message and you are not debugging the   **
[    0.277871] ** kernel, report this immediately to your vendor!         **
[    0.277871] **                                                         **
[    0.277871] **     NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE NOTICE    **
[    0.277871] *************************************************************
[    0.277871] initcall iommu_init+0x0/0x3d returned 0 after 0 usecs
[    0.277871] calling  component_debug_init+0x0/0x2a @ 1
[    0.277871] initcall component_debug_init+0x0/0x2a returned 0 after 0 usecs
[    0.277871] calling  early_resume_init+0x0/0xc1 @ 1
[    0.277871] PM: RTC time: 06:44:01, date: 2022-08-18
[    0.277871] initcall early_resume_init+0x0/0xc1 returned 0 after 0 usecs
[    0.277871] calling  genpd_bus_init+0x0/0x1f @ 1
[    0.277871] initcall genpd_bus_init+0x0/0x1f returned 0 after 0 usecs
[    0.277871] calling  opp_debug_init+0x0/0x2a @ 1
[    0.277871] initcall opp_debug_init+0x0/0x2a returned 0 after 0 usecs
[    0.277871] calling  cpufreq_core_init+0x0/0x72 @ 1
[    0.277871] initcall cpufreq_core_init+0x0/0x72 returned 0 after 0 usecs
[    0.277871] calling  cpufreq_gov_performance_init+0x0/0x1f @ 1
[    0.277871] initcall cpufreq_gov_performance_init+0x0/0x1f returned 0 after 0 usecs
[    0.277871] calling  cpufreq_gov_powersave_init+0x0/0x1f @ 1
[    0.277871] initcall cpufreq_gov_powersave_init+0x0/0x1f returned 0 after 0 usecs
[    0.277871] calling  cpufreq_gov_userspace_init+0x0/0x1f @ 1
[    0.277871] initcall cpufreq_gov_userspace_init+0x0/0x1f returned 0 after 0 usecs
[    0.277871] calling  CPU_FREQ_GOV_ONDEMAND_init+0x0/0x1f @ 1
[    0.277871] initcall CPU_FREQ_GOV_ONDEMAND_init+0x0/0x1f returned 0 after 0 usecs
[    0.277871] calling  CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x1f @ 1
[    0.277871] initcall CPU_FREQ_GOV_CONSERVATIVE_init+0x0/0x1f returned 0 after 0 usecs
[    0.277871] calling  cpuidle_init+0x0/0x32 @ 1
[    0.277871] initcall cpuidle_init+0x0/0x32 returned 0 after 0 usecs
[    0.277871] calling  capsule_reboot_register+0x0/0x1f @ 1
[    0.277871] initcall capsule_reboot_register+0x0/0x1f returned 0 after 0 usecs
[    0.277871] calling  sock_init+0x0/0xa9 @ 1
[    0.277958] initcall sock_init+0x0/0xa9 returned 0 after 0 usecs
[    0.277960] calling  net_inuse_init+0x0/0x31 @ 1
[    0.277963] initcall net_inuse_init+0x0/0x31 returned 0 after 0 usecs
[    0.277964] calling  net_defaults_init+0x0/0x31 @ 1
[    0.277967] initcall net_defaults_init+0x0/0x31 returned 0 after 0 usecs
[    0.277969] calling  init_default_flow_dissectors+0x0/0x5d @ 1
[    0.277971] initcall init_default_flow_dissectors+0x0/0x5d returned 0 after 0 usecs
[    0.277973] calling  netpoll_init+0x0/0x35 @ 1
[    0.277975] initcall netpoll_init+0x0/0x35 returned 0 after 0 usecs
[    0.277977] calling  netlink_proto_init+0x0/0x197 @ 1
[    0.278078] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.278085] initcall netlink_proto_init+0x0/0x197 returned 0 after 0 usecs
[    0.278087] calling  genl_init+0x0/0x43 @ 1
[    0.278090] initcall genl_init+0x0/0x43 returned 0 after 0 usecs
[    0.278092] calling  bsp_pm_check_init+0x0/0x21 @ 1
[    0.278094] initcall bsp_pm_check_init+0x0/0x21 returned 0 after 0 usecs
[    0.278096] calling  __gnttab_init+0x0/0x50 @ 1
[    0.278098] initcall __gnttab_init+0x0/0x50 returned -19 after 0 usecs
[    0.278126] calling  irq_sysfs_init+0x0/0xa3 @ 1
[    0.278166] initcall irq_sysfs_init+0x0/0xa3 returned 0 after 0 usecs
[    0.278168] calling  dma_atomic_pool_init+0x0/0x15b @ 1
[    0.278177] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.278182] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.278191] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.278195] initcall dma_atomic_pool_init+0x0/0x15b returned 0 after 0 usecs
[    0.278197] calling  audit_init+0x0/0x17e @ 1
[    0.278205] audit: initializing netlink subsys (disabled)
[    0.278208] initcall audit_init+0x0/0x17e returned 0 after 0 usecs
[    0.278208] calling  release_early_probes+0x0/0x45 @ 1
[    0.278208] audit: type=2000 audit(1660805041.032:1): state=initialized audit_enabled=0 res=1
[    0.278208] initcall release_early_probes+0x0/0x45 returned 0 after 0 usecs
[    0.278208] calling  bdi_class_init+0x0/0x56 @ 1
[    0.278208] initcall bdi_class_init+0x0/0x56 returned 0 after 0 usecs
[    0.278208] calling  mm_sysfs_init+0x0/0x36 @ 1
[    0.278208] initcall mm_sysfs_init+0x0/0x36 returned 0 after 0 usecs
[    0.278208] calling  init_per_zone_wmark_min+0x0/0x33 @ 1
[    0.278208] initcall init_per_zone_wmark_min+0x0/0x33 returned 0 after 0 usecs
[    0.278208] calling  mpi_init+0x0/0x5f @ 1
[    0.278208] initcall mpi_init+0x0/0x5f returned 0 after 0 usecs
[    0.278208] calling  kobject_uevent_init+0x0/0x1a @ 1
[    0.278208] initcall kobject_uevent_init+0x0/0x1a returned 0 after 0 usecs
[    0.278208] calling  gpiolib_sysfs_init+0x0/0xb2 @ 1
[    0.278208] initcall gpiolib_sysfs_init+0x0/0xb2 returned 0 after 0 usecs
[    0.278208] calling  acpi_gpio_setup_params+0x0/0x75 @ 1
[    0.278208] initcall acpi_gpio_setup_params+0x0/0x75 returned 0 after 0 usecs
[    0.278208] calling  pcibus_class_init+0x0/0x26 @ 1
[    0.278208] initcall pcibus_class_init+0x0/0x26 returned 0 after 0 usecs
[    0.278208] calling  pci_driver_init+0x0/0x2f @ 1
[    0.278208] initcall pci_driver_init+0x0/0x2f returned 0 after 0 usecs
[    0.278208] calling  rio_bus_init+0x0/0x4e @ 1
[    0.278208] initcall rio_bus_init+0x0/0x4e returned 0 after 0 usecs
[    0.278208] calling  backlight_class_init+0x0/0xb4 @ 1
[    0.278208] initcall backlight_class_init+0x0/0xb4 returned 0 after 0 usecs
[    0.278208] calling  xenbus_init+0x0/0x31a @ 1
[    0.278208] initcall xenbus_init+0x0/0x31a returned -19 after 0 usecs
[    0.278208] calling  tty_class_init+0x0/0x41 @ 1
[    0.278208] initcall tty_class_init+0x0/0x41 returned 0 after 0 usecs
[    0.278208] calling  vtconsole_class_init+0x0/0xeb @ 1
[    0.278208] initcall vtconsole_class_init+0x0/0xeb returned 0 after 0 usecs
[    0.278208] calling  serdev_init+0x0/0x2a @ 1
[    0.278208] initcall serdev_init+0x0/0x2a returned 0 after 0 usecs
[    0.278208] calling  iommu_dev_init+0x0/0x26 @ 1
[    0.278208] initcall iommu_dev_init+0x0/0x26 returned 0 after 0 usecs
[    0.278208] calling  mipi_dsi_bus_init+0x0/0x1f @ 1
[    0.278208] initcall mipi_dsi_bus_init+0x0/0x1f returned 0 after 0 usecs
[    0.278208] calling  devlink_class_init+0x0/0x4e @ 1
[    0.278208] initcall devlink_class_init+0x0/0x4e returned 0 after 0 usecs
[    0.278208] calling  software_node_init+0x0/0x38 @ 1
[    0.278208] initcall software_node_init+0x0/0x38 returned 0 after 0 usecs
[    0.278208] calling  wakeup_sources_debugfs_init+0x0/0x31 @ 1
[    0.278208] initcall wakeup_sources_debugfs_init+0x0/0x31 returned 0 after 0 usecs
[    0.278208] calling  wakeup_sources_sysfs_init+0x0/0x3d @ 1
[    0.278208] initcall wakeup_sources_sysfs_init+0x0/0x3d returned 0 after 0 usecs
[    0.278208] calling  isa_bus_init+0x0/0x47 @ 1
[    0.278208] initcall isa_bus_init+0x0/0x47 returned 0 after 0 usecs
[    0.278208] calling  regmap_initcall+0x0/0x1a @ 1
[    0.278208] initcall regmap_initcall+0x0/0x1a returned 0 after 0 usecs
[    0.278208] calling  sram_init+0x0/0x21 @ 1
[    0.278208] initcall sram_init+0x0/0x21 returned 0 after 0 usecs
[    0.278208] calling  syscon_init+0x0/0x21 @ 1
[    0.278208] initcall syscon_init+0x0/0x21 returned 0 after 0 usecs
[    0.278208] calling  spi_init+0x0/0xcf @ 1
[    0.278208] initcall spi_init+0x0/0xcf returned 0 after 0 usecs
[    0.278208] calling  i2c_init+0x0/0xcc @ 1
[    0.278208] initcall i2c_init+0x0/0xcc returned 0 after 0 usecs
[    0.278208] calling  thermal_init+0x0/0x12d @ 1
[    0.278208] thermal_sys: Registered thermal governor 'fair_share'
[    0.278208] thermal_sys: Registered thermal governor 'bang_bang'
[    0.278208] thermal_sys: Registered thermal governor 'step_wise'
[    0.278208] thermal_sys: Registered thermal governor 'user_space'
[    0.278208] initcall thermal_init+0x0/0x12d returned 0 after 0 usecs
[    0.278208] calling  init_ladder+0x0/0x32 @ 1
[    0.278208] cpuidle: using governor ladder
[    0.278208] initcall init_ladder+0x0/0x32 returned 0 after 0 usecs
[    0.278208] calling  init_menu+0x0/0x1f @ 1
[    0.278208] cpuidle: using governor menu
[    0.278208] initcall init_menu+0x0/0x1f returned 0 after 0 usecs
[    0.278208] calling  pcc_init+0x0/0xa1 @ 1
[    0.278208] initcall pcc_init+0x0/0xa1 returned -19 after 0 usecs
[    0.278208] calling  amd_postcore_init+0x0/0x12a @ 1
[    0.278208] initcall amd_postcore_init+0x0/0x12a returned 0 after 0 usecs
[    0.278208] calling  bts_init+0x0/0xce @ 1
[    0.278208] initcall bts_init+0x0/0xce returned 0 after 0 usecs
[    0.278208] calling  pt_init+0x0/0x35e @ 1
[    0.278208] initcall pt_init+0x0/0x35e returned 0 after 0 usecs
[    0.278208] calling  boot_params_ksysfs_init+0x0/0x2de @ 1
[    0.278208] initcall boot_params_ksysfs_init+0x0/0x2de returned 0 after 0 usecs
[    0.278208] calling  sbf_init+0x0/0xe1 @ 1
[    0.278208] initcall sbf_init+0x0/0xe1 returned 0 after 0 usecs
[    0.278208] calling  arch_kdebugfs_init+0x0/0x2a @ 1
[    0.278208] initcall arch_kdebugfs_init+0x0/0x2a returned 0 after 0 usecs
[    0.278208] calling  xfd_update_static_branch+0x0/0x32 @ 1
[    0.278208] initcall xfd_update_static_branch+0x0/0x32 returned 0 after 0 usecs
[    0.278208] calling  intel_pconfig_init+0x0/0xf7 @ 1
[    0.278208] initcall intel_pconfig_init+0x0/0xf7 returned 0 after 0 usecs
[    0.278208] calling  mtrr_if_init+0x0/0x70 @ 1
[    0.278208] initcall mtrr_if_init+0x0/0x70 returned 0 after 0 usecs
[    0.278208] calling  activate_jump_labels+0x0/0x46 @ 1
[    0.278208] initcall activate_jump_labels+0x0/0x46 returned 0 after 0 usecs
[    0.278208] calling  init_s4_sigcheck+0x0/0x31 @ 1
[    0.278208] initcall init_s4_sigcheck+0x0/0x31 returned 0 after 0 usecs
[    0.278208] calling  ffh_cstate_init+0x0/0x43 @ 1
[    0.278208] initcall ffh_cstate_init+0x0/0x43 returned 0 after 0 usecs
[    0.278208] calling  kvm_alloc_cpumask+0x0/0xa7 @ 1
[    0.278208] initcall kvm_alloc_cpumask+0x0/0xa7 returned 0 after 0 usecs
[    0.278208] calling  activate_jump_labels+0x0/0x46 @ 1
[    0.278208] initcall activate_jump_labels+0x0/0x46 returned 0 after 0 usecs
[    0.278208] calling  report_cpuid_table+0x0/0x9f @ 1
[    0.278208] initcall report_cpuid_table+0x0/0x9f returned 0 after 0 usecs
[    0.278208] calling  gigantic_pages_init+0x0/0x34 @ 1
[    0.278208] HugeTLB: can optimize 4095 vmemmap pages for hugepages-1048576kB
[    0.278208] initcall gigantic_pages_init+0x0/0x34 returned 0 after 0 usecs
[    0.278208] calling  kcmp_cookies_init+0x0/0x45 @ 1
[    0.278208] initcall kcmp_cookies_init+0x0/0x45 returned 0 after 0 usecs
[    0.278208] calling  cryptomgr_init+0x0/0x1f @ 1
[    0.278208] initcall cryptomgr_init+0x0/0x1f returned 0 after 0 usecs
[    0.278208] calling  acpi_pci_init+0x0/0x5c @ 1
[    0.278208] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.278208] initcall acpi_pci_init+0x0/0x5c returned 0 after 0 usecs
[    0.278208] calling  dma_channel_table_init+0x0/0xd7 @ 1
[    0.278208] initcall dma_channel_table_init+0x0/0xd7 returned 0 after 0 usecs
[    0.278208] calling  dma_bus_init+0x0/0x11b @ 1
[    0.278208] initcall dma_bus_init+0x0/0x11b returned 0 after 0 usecs
[    0.278208] calling  register_xen_pci_notifier+0x0/0x3f @ 1
[    0.278208] initcall register_xen_pci_notifier+0x0/0x3f returned 0 after 0 usecs
[    0.278208] calling  xen_pcpu_init+0x0/0xc0 @ 1
[    0.278208] initcall xen_pcpu_init+0x0/0xc0 returned -19 after 0 usecs
[    0.278208] calling  iommu_dma_init+0x0/0x30 @ 1
[    0.278208] initcall iommu_dma_init+0x0/0x30 returned 0 after 0 usecs
[    0.278208] calling  dmi_id_init+0x0/0x38a @ 1
[    0.278208] initcall dmi_id_init+0x0/0x38a returned 0 after 0 usecs
[    0.278208] calling  numachip_timer_init+0x0/0x66 @ 1
[    0.278208] initcall numachip_timer_init+0x0/0x66 returned -19 after 0 usecs
[    0.278208] calling  pci_arch_init+0x0/0x83 @ 1
[    0.278208] PCI: MMCONFIG for domain 0000 [bus 00-e0] at [mem 0xc0000000-0xce0fffff] (base 0xc0000000)
[    0.278208] PCI: MMCONFIG at [mem 0xc0000000-0xce0fffff] reserved in E820
[    0.278208] PCI: Using configuration type 1 for base access
[    0.278208] initcall pci_arch_init+0x0/0x83 returned 0 after 0 usecs
[    0.278208] calling  of_platform_default_populate_init+0x0/0xc6 @ 1
[    0.278208] initcall of_platform_default_populate_init+0x0/0xc6 returned -19 after 0 usecs
[    0.278208] calling  init_vdso+0x0/0x21 @ 1
[    0.278208] initcall init_vdso+0x0/0x21 returned 0 after 0 usecs
[    0.278208] calling  sysenter_setup+0x0/0x21 @ 1
[    0.278208] initcall sysenter_setup+0x0/0x21 returned 0 after 0 usecs
[    0.278208] calling  fixup_ht_bug+0x0/0xc5 @ 1
[    0.278208] initcall fixup_ht_bug+0x0/0xc5 returned 0 after 0 usecs
[    0.278208] calling  topology_init+0x0/0x42 @ 1
[    0.278208] initcall topology_init+0x0/0x42 returned 0 after 0 usecs
[    0.278208] calling  intel_epb_init+0x0/0x91 @ 1
[    0.278208] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.281055] initcall intel_epb_init+0x0/0x91 returned 0 after 4000 usecs
[    0.281055] calling  mtrr_init_finialize+0x0/0x53 @ 1
[    0.281055] initcall mtrr_init_finialize+0x0/0x53 returned 0 after 0 usecs
[    0.281055] calling  uid_cache_init+0x0/0xca @ 1
[    0.281055] initcall uid_cache_init+0x0/0xca returned 0 after 0 usecs
[    0.281055] calling  param_sysfs_init+0x0/0x1c1 @ 1
[    0.282007] initcall param_sysfs_init+0x0/0x1c1 returned 0 after 0 usecs
[    0.282009] calling  user_namespace_sysctl_init+0x0/0xde @ 1
[    0.282017] initcall user_namespace_sysctl_init+0x0/0xde returned 0 after 0 usecs
[    0.282019] calling  proc_schedstat_init+0x0/0x32 @ 1
[    0.282021] initcall proc_schedstat_init+0x0/0x32 returned 0 after 0 usecs
[    0.282023] calling  pm_sysrq_init+0x0/0x26 @ 1
[    0.282028] initcall pm_sysrq_init+0x0/0x26 returned 0 after 0 usecs
[    0.282030] calling  create_proc_profile+0x0/0xf0 @ 1
[    0.282032] initcall create_proc_profile+0x0/0xf0 returned 0 after 0 usecs
[    0.282034] calling  crash_save_vmcoreinfo_init+0x0/0x68a @ 1
[    0.282048] initcall crash_save_vmcoreinfo_init+0x0/0x68a returned 0 after 0 usecs
[    0.282050] calling  crash_notes_memory_init+0x0/0x43 @ 1
[    0.282052] initcall crash_notes_memory_init+0x0/0x43 returned 0 after 0 usecs
[    0.282054] calling  cgroup_sysfs_init+0x0/0x26 @ 1
[    0.282056] initcall cgroup_sysfs_init+0x0/0x26 returned 0 after 0 usecs
[    0.282057] calling  cgroup_namespaces_init+0x0/0x15 @ 1
[    0.282058] initcall cgroup_namespaces_init+0x0/0x15 returned 0 after 0 usecs
[    0.282060] calling  user_namespaces_init+0x0/0x3a @ 1
[    0.282067] initcall user_namespaces_init+0x0/0x3a returned 0 after 0 usecs
[    0.282068] calling  init_optprobes+0x0/0x2f @ 1
[    0.282070] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.282071] initcall init_optprobes+0x0/0x2f returned 0 after 0 usecs
[    0.282073] calling  hung_task_init+0x0/0x82 @ 1
[    0.282082] initcall hung_task_init+0x0/0x82 returned 0 after 0 usecs
[    0.282082] calling  ftrace_check_for_weak_functions+0x0/0x6e @ 1
[    0.282082] initcall ftrace_check_for_weak_functions+0x0/0x6e returned 0 after 0 usecs
[    0.282082] calling  trace_eval_init+0x0/0x92 @ 1
[    0.282082] initcall trace_eval_init+0x0/0x92 returned 0 after 0 usecs
[    0.282082] calling  send_signal_irq_work_init+0x0/0x6f @ 1
[    0.282082] initcall send_signal_irq_work_init+0x0/0x6f returned 0 after 0 usecs
[    0.282082] calling  dev_map_init+0x0/0x61 @ 1
[    0.282082] initcall dev_map_init+0x0/0x61 returned 0 after 0 usecs
[    0.282082] calling  cpu_map_init+0x0/0x55 @ 1
[    0.282082] initcall cpu_map_init+0x0/0x55 returned 0 after 0 usecs
[    0.282082] calling  netns_bpf_init+0x0/0x1f @ 1
[    0.282082] initcall netns_bpf_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  oom_init+0x0/0x57 @ 1
[    0.282082] initcall oom_init+0x0/0x57 returned 0 after 0 usecs
[    0.282082] calling  default_bdi_init+0x0/0x36 @ 1
[    0.282082] initcall default_bdi_init+0x0/0x36 returned 0 after 0 usecs
[    0.282082] calling  cgwb_init+0x0/0x36 @ 1
[    0.282082] initcall cgwb_init+0x0/0x36 returned 0 after 0 usecs
[    0.282082] calling  percpu_enable_async+0x0/0x1c @ 1
[    0.282082] initcall percpu_enable_async+0x0/0x1c returned 0 after 0 usecs
[    0.282082] calling  kcompactd_init+0x0/0xb0 @ 1
[    0.282082] initcall kcompactd_init+0x0/0xb0 returned 0 after 0 usecs
[    0.282082] calling  init_user_reserve+0x0/0x50 @ 1
[    0.282082] initcall init_user_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.282082] calling  init_admin_reserve+0x0/0x50 @ 1
[    0.282082] initcall init_admin_reserve+0x0/0x50 returned 0 after 0 usecs
[    0.282082] calling  init_reserve_notifier+0x0/0x2c @ 1
[    0.282082] initcall init_reserve_notifier+0x0/0x2c returned 0 after 0 usecs
[    0.282082] calling  swap_init_sysfs+0x0/0x72 @ 1
[    0.282082] initcall swap_init_sysfs+0x0/0x72 returned 0 after 0 usecs
[    0.282082] calling  swapfile_init+0x0/0xb1 @ 1
[    0.282082] initcall swapfile_init+0x0/0xb1 returned 0 after 0 usecs
[    0.282082] calling  hugetlb_init+0x0/0x545 @ 1
[    0.282082] HugeTLB: can optimize 7 vmemmap pages for hugepages-2048kB
[    0.282082] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.282082] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.282082] initcall hugetlb_init+0x0/0x545 returned 0 after 0 usecs
[    0.282082] calling  ksm_init+0x0/0x1a7 @ 1
[    0.282082] initcall ksm_init+0x0/0x1a7 returned 0 after 0 usecs
[    0.282082] calling  numa_init_sysfs+0x0/0x72 @ 1
[    0.282082] initcall numa_init_sysfs+0x0/0x72 returned 0 after 0 usecs
[    0.282082] calling  hugepage_init+0x0/0x16a @ 1
[    0.282082] initcall hugepage_init+0x0/0x16a returned 0 after 0 usecs
[    0.282082] calling  mem_cgroup_init+0x0/0x154 @ 1
[    0.282082] initcall mem_cgroup_init+0x0/0x154 returned 0 after 0 usecs
[    0.282082] calling  page_idle_init+0x0/0x3c @ 1
[    0.282082] initcall page_idle_init+0x0/0x3c returned 0 after 0 usecs
[    0.282082] calling  io_wq_init+0x0/0x46 @ 1
[    0.282082] initcall io_wq_init+0x0/0x46 returned 0 after 0 usecs
[    0.282082] calling  sel_ib_pkey_init+0x0/0x48 @ 1
[    0.282082] initcall sel_ib_pkey_init+0x0/0x48 returned 0 after 0 usecs
[    0.282082] calling  seqiv_module_init+0x0/0x1f @ 1
[    0.282082] initcall seqiv_module_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  dh_init+0x0/0x60 @ 1
[    0.282082] initcall dh_init+0x0/0x60 returned 0 after 0 usecs
[    0.282082] calling  rsa_init+0x0/0x50 @ 1
[    0.282082] initcall rsa_init+0x0/0x50 returned 0 after 0 usecs
[    0.282082] calling  hmac_module_init+0x0/0x1f @ 1
[    0.282082] initcall hmac_module_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  crypto_null_mod_init+0x0/0x73 @ 1
[    0.282082] initcall crypto_null_mod_init+0x0/0x73 returned 0 after 0 usecs
[    0.282082] calling  md5_mod_init+0x0/0x1f @ 1
[    0.282082] initcall md5_mod_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  sha1_generic_mod_init+0x0/0x1f @ 1
[    0.282082] initcall sha1_generic_mod_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  sha256_generic_mod_init+0x0/0x24 @ 1
[    0.282082] initcall sha256_generic_mod_init+0x0/0x24 returned 0 after 0 usecs
[    0.282082] calling  sha512_generic_mod_init+0x0/0x24 @ 1
[    0.282082] initcall sha512_generic_mod_init+0x0/0x24 returned 0 after 0 usecs
[    0.282082] calling  crypto_ecb_module_init+0x0/0x1f @ 1
[    0.282082] initcall crypto_ecb_module_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  crypto_cbc_module_init+0x0/0x1f @ 1
[    0.282082] initcall crypto_cbc_module_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  crypto_ctr_module_init+0x0/0x24 @ 1
[    0.282082] initcall crypto_ctr_module_init+0x0/0x24 returned 0 after 0 usecs
[    0.282082] calling  crypto_gcm_module_init+0x0/0x72 @ 1
[    0.282082] initcall crypto_gcm_module_init+0x0/0x72 returned 0 after 0 usecs
[    0.282082] calling  aes_init+0x0/0x1f @ 1
[    0.282082] initcall aes_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  deflate_mod_init+0x0/0x4c @ 1
[    0.282082] initcall deflate_mod_init+0x0/0x4c returned 0 after 0 usecs
[    0.282082] calling  crc32c_mod_init+0x0/0x1f @ 1
[    0.282082] initcall crc32c_mod_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  crct10dif_mod_init+0x0/0x1f @ 1
[    0.282082] initcall crct10dif_mod_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  lzo_mod_init+0x0/0x47 @ 1
[    0.282082] initcall lzo_mod_init+0x0/0x47 returned 0 after 0 usecs
[    0.282082] calling  lzorle_mod_init+0x0/0x47 @ 1
[    0.282082] initcall lzorle_mod_init+0x0/0x47 returned 0 after 0 usecs
[    0.282082] calling  drbg_init+0x0/0x9b @ 1
[    0.282082] initcall drbg_init+0x0/0x9b returned 0 after 0 usecs
[    0.282082] calling  ghash_mod_init+0x0/0x1f @ 1
[    0.282082] initcall ghash_mod_init+0x0/0x1f returned 0 after 0 usecs
[    0.282082] calling  init_bio+0x0/0xbb @ 1
[    0.282082] initcall init_bio+0x0/0xbb returned 0 after 0 usecs
[    0.282082] calling  blk_ioc_init+0x0/0x37 @ 1
[    0.282082] initcall blk_ioc_init+0x0/0x37 returned 0 after 0 usecs
[    0.282082] calling  blk_mq_init+0x0/0xcf @ 1
[    0.282082] initcall blk_mq_init+0x0/0xcf returned 0 after 0 usecs
[    0.282082] calling  genhd_device_init+0x0/0x6b @ 1
[    0.282082] initcall genhd_device_init+0x0/0x6b returned 0 after 0 usecs
[    0.282082] calling  blkcg_init+0x0/0x36 @ 1
[    0.282082] initcall blkcg_init+0x0/0x36 returned 0 after 0 usecs
[    0.282082] calling  bio_crypt_ctx_init+0x0/0x69 @ 1
[    0.282082] initcall bio_crypt_ctx_init+0x0/0x69 returned 0 after 0 usecs
[    0.282082] calling  blk_crypto_sysfs_init+0x0/0x97 @ 1
[    0.282082] initcall blk_crypto_sysfs_init+0x0/0x97 returned 0 after 0 usecs
[    0.282082] calling  irq_poll_setup+0x0/0x80 @ 1
[    0.282082] initcall irq_poll_setup+0x0/0x80 returned 0 after 0 usecs
[    0.282082] calling  sx150x_init+0x0/0x21 @ 1
[    0.282082] initcall sx150x_init+0x0/0x21 returned 0 after 0 usecs
[    0.282082] calling  gpiolib_debugfs_init+0x0/0x31 @ 1
[    0.282082] initcall gpiolib_debugfs_init+0x0/0x31 returned 0 after 0 usecs
[    0.282082] calling  palmas_gpio_init+0x0/0x21 @ 1
[    0.282082] initcall palmas_gpio_init+0x0/0x21 returned 0 after 0 usecs
[    0.282082] calling  rc5t583_gpio_init+0x0/0x21 @ 1
[    0.282082] initcall rc5t583_gpio_init+0x0/0x21 returned 0 after 0 usecs
[    0.282082] calling  tps6586x_gpio_init+0x0/0x21 @ 1
[    0.282082] initcall tps6586x_gpio_init+0x0/0x21 returned 0 after 0 usecs
[    0.282082] calling  tps65910_gpio_init+0x0/0x21 @ 1
[    0.282082] initcall tps65910_gpio_init+0x0/0x21 returned 0 after 0 usecs
[    0.282082] calling  pwm_debugfs_init+0x0/0x31 @ 1
[    0.282082] initcall pwm_debugfs_init+0x0/0x31 returned 0 after 0 usecs
[    0.282082] calling  pwm_sysfs_init+0x0/0x26 @ 1
[    0.282082] initcall pwm_sysfs_init+0x0/0x26 returned 0 after 0 usecs
[    0.282082] calling  pci_slot_init+0x0/0x50 @ 1
[    0.282082] initcall pci_slot_init+0x0/0x50 returned 0 after 0 usecs
[    0.282082] calling  fbmem_init+0x0/0xe8 @ 1
[    0.282082] initcall fbmem_init+0x0/0xe8 returned 0 after 0 usecs
[    0.282082] calling  scan_for_dmi_ipmi+0x0/0x271 @ 1
[    0.282082] initcall scan_for_dmi_ipmi+0x0/0x271 returned 0 after 0 usecs
[    0.282082] calling  acpi_init+0x0/0x4a6 @ 1
[    0.282082] ACPI: Added _OSI(Module Device)
[    0.282082] ACPI: Added _OSI(Processor Device)
[    0.282082] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.282082] ACPI: Added _OSI(Processor Aggregator Device)
[    0.282082] ACPI: Added _OSI(Linux-Dell-Video)
[    0.282082] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.282082] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.363115] ACPI: 17 ACPI AML tables successfully acquired and loaded
[    0.364249] ACPI: EC: EC started
[    0.364252] ACPI: EC: interrupt blocked
[    0.397567] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.397569] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.429320] ACPI: Dynamic OEM Table Load:
[    0.429340] ACPI: SSDT 0xFFFF94CE4240E000 0001AB (v02 PmRef  Cpu0Psd  00003000 INTL 20200717)
[    0.430300] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    0.431674] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[    0.431676] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[    0.433275] ACPI: Dynamic OEM Table Load:
[    0.433282] ACPI: SSDT 0xFFFF94CE41319800 00047F (v02 PmRef  Cpu0Cst  00003001 INTL 20200717)
[    0.434405] ACPI: Dynamic OEM Table Load:
[    0.434412] ACPI: SSDT 0xFFFF94CE4131D000 00051E (v02 PmRef  Cpu0Ist  00003000 INTL 20200717)
[    0.435595] ACPI: Dynamic OEM Table Load:
[    0.435602] ACPI: SSDT 0xFFFF94CE41319000 0004BA (v02 PmRef  Cpu0Hwp  00003000 INTL 20200717)
[    0.437008] ACPI: Dynamic OEM Table Load:
[    0.437017] ACPI: SSDT 0xFFFF94CE412FE000 001BAF (v02 PmRef  ApIst    00003000 INTL 20200717)
[    0.438687] ACPI: Dynamic OEM Table Load:
[    0.438695] ACPI: SSDT 0xFFFF94CE412F8000 001038 (v02 PmRef  ApHwp    00003000 INTL 20200717)
[    0.440148] ACPI: Dynamic OEM Table Load:
[    0.440155] ACPI: SSDT 0xFFFF94CE412FA000 001349 (v02 PmRef  ApPsd    00003000 INTL 20200717)
[    0.441652] ACPI: Dynamic OEM Table Load:
[    0.441659] ACPI: SSDT 0xFFFF94CE41308000 000FBB (v02 PmRef  ApCst    00003000 INTL 20200717)
[    0.447504] ACPI: Interpreter enabled
[    0.447553] ACPI: PM: (supports S0 S3 S4 S5)
[    0.447554] ACPI: Using IOAPIC for interrupt routing
[    0.447592] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.447593] PCI: Using E820 reservations for host bridge windows
[    0.449314] ACPI: Enabled 9 GPEs in block 00 to 7F
[    0.450177] ACPI: PM: Power Resource [PXP]
[    0.450953] ACPI: PM: Power Resource [PXP]
[    0.451611] ACPI: PM: Power Resource [PXP]
[    0.460683] ACPI: PM: Power Resource [PAUD]
[    0.469834] ACPI: PM: Power Resource [WRST]
[    0.472120] ACPI: PM: Power Resource [PXP]
[    0.473336] ACPI: PM: Power Resource [PXP]
[    0.474017] ACPI: PM: Power Resource [PXP]
[    0.482346] ACPI: PM: Power Resource [NVPR]
[    0.482751] ACPI: PM: Power Resource [V0PR]
[    0.482835] ACPI: PM: Power Resource [V1PR]
[    0.482916] ACPI: PM: Power Resource [V2PR]
[    0.483007] ACPI: PM: Power Resource [V3PR]
[    0.483114] ACPI: PM: Power Resource [TBT0]
[    0.483153] ACPI: PM: Power Resource [TBT1]
[    0.483196] ACPI: PM: Power Resource [D3C]
[    0.961356] ACPI: PM: Power Resource [FN00]
[    0.961402] ACPI: PM: Power Resource [FN01]
[    0.961451] ACPI: PM: Power Resource [FN02]
[    0.961498] ACPI: PM: Power Resource [FN03]
[    0.961538] ACPI: PM: Power Resource [FN04]
[    0.962031] ACPI: PM: Power Resource [PIN]
[    0.962312] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[    0.962317] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.963863] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.966915] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
[    0.970350] PCI host bridge to bus 0000:00
[    0.970353] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.970355] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.970356] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.970358] pci_bus 0000:00: root bus resource [mem 0x50400000-0xbfffffff window]
[    0.970359] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.970363] pci_bus 0000:00: root bus resource [bus 00-e0]
[    0.971938] pci 0000:00:00.0: calling  quirk_mmio_always_on+0x0/0x20 @ 1
[    0.971942] pci 0000:00:00.0: quirk_mmio_always_on+0x0/0x20 took 0 usecs
[    0.971946] pci 0000:00:00.0: [8086:a707] type 00 class 0x060000
[    0.972135] pci 0000:00:00.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.972138] pci 0000:00:00.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.972300] pci 0000:00:02.0: [8086:a7a0] type 00 class 0x030000
[    0.972311] pci 0000:00:02.0: reg 0x10: [mem 0x607f000000-0x607fffffff 64bit]
[    0.972318] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.972323] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
[    0.972340] pci 0000:00:02.0: calling  efifb_fixup_resources+0x0/0xf0 @ 1
[    0.972344] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.972345] pci 0000:00:02.0: efifb_fixup_resources+0x0/0xf0 took 0 usecs
[    0.972346] pci 0000:00:02.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.972349] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.972350] pci 0000:00:02.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.972352] pci 0000:00:02.0: calling  pci_fixup_video+0x0/0xe0 @ 1
[    0.972358] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.972359] pci 0000:00:02.0: pci_fixup_video+0x0/0xe0 took 0 usecs
[    0.972395] pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
[    0.972397] pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
[    0.972403] pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
[    0.972405] pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
[    0.972519] pci 0000:00:04.0: [8086:a71d] type 00 class 0x118000
[    0.972534] pci 0000:00:04.0: reg 0x10: [mem 0x6080280000-0x608029ffff 64bit]
[    0.972562] pci 0000:00:04.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.972564] pci 0000:00:04.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.972743] pci 0000:00:05.0: [8086:a75d] type 00 class 0x048000
[    0.972752] pci 0000:00:05.0: reg 0x10: [mem 0x607e000000-0x607effffff 64bit]
[    0.972770] pci 0000:00:05.0: enabling Extended Tags
[    0.972776] pci 0000:00:05.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.972779] pci 0000:00:05.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.972878] pci 0000:00:06.0: [8086:09ab] type 00 class 0x088000
[    0.972900] pci 0000:00:06.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.972902] pci 0000:00:06.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.973552] pci 0000:00:07.0: calling  quirk_cmd_compl+0x0/0x70 @ 1
[    0.973556] pci 0000:00:07.0: quirk_cmd_compl+0x0/0x70 took 0 usecs
[    0.973559] pci 0000:00:07.0: calling  quirk_no_aersid+0x0/0x40 @ 1
[    0.973561] pci 0000:00:07.0: quirk_no_aersid+0x0/0x40 took 0 usecs
[    0.973563] pci 0000:00:07.0: [8086:a76e] type 01 class 0x060400
[    0.973609] pci 0000:00:07.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.973614] pci 0000:00:07.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.973616] pci 0000:00:07.0: calling  pci_fixup_transparent_bridge+0x0/0x30 @ 1
[    0.973619] pci 0000:00:07.0: pci_fixup_transparent_bridge+0x0/0x30 took 0 usecs
[    0.973662] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.973694] pci 0000:00:07.0: PTM enabled (root), 4ns granularity
[    0.973700] pci 0000:00:07.0: DPC: RP PIO log size 0 is invalid
[    0.974285] pci 0000:00:07.1: calling  quirk_cmd_compl+0x0/0x70 @ 1
[    0.974289] pci 0000:00:07.1: quirk_cmd_compl+0x0/0x70 took 0 usecs
[    0.974291] pci 0000:00:07.1: calling  quirk_no_aersid+0x0/0x40 @ 1
[    0.974293] pci 0000:00:07.1: quirk_no_aersid+0x0/0x40 took 0 usecs
[    0.974294] pci 0000:00:07.1: [8086:a73f] type 01 class 0x060400
[    0.974337] pci 0000:00:07.1: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.974340] pci 0000:00:07.1: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.974342] pci 0000:00:07.1: calling  pci_fixup_transparent_bridge+0x0/0x30 @ 1
[    0.974344] pci 0000:00:07.1: pci_fixup_transparent_bridge+0x0/0x30 took 0 usecs
[    0.974386] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.974419] pci 0000:00:07.1: PTM enabled (root), 4ns granularity
[    0.974424] pci 0000:00:07.1: DPC: RP PIO log size 0 is invalid
[    0.975004] pci 0000:00:07.2: calling  quirk_cmd_compl+0x0/0x70 @ 1
[    0.975007] pci 0000:00:07.2: quirk_cmd_compl+0x0/0x70 took 0 usecs
[    0.975009] pci 0000:00:07.2: calling  quirk_no_aersid+0x0/0x40 @ 1
[    0.975011] pci 0000:00:07.2: quirk_no_aersid+0x0/0x40 took 0 usecs
[    0.975012] pci 0000:00:07.2: [8086:a72f] type 01 class 0x060400
[    0.975055] pci 0000:00:07.2: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.975057] pci 0000:00:07.2: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.975060] pci 0000:00:07.2: calling  pci_fixup_transparent_bridge+0x0/0x30 @ 1
[    0.975061] pci 0000:00:07.2: pci_fixup_transparent_bridge+0x0/0x30 took 0 usecs
[    0.975104] pci 0000:00:07.2: PME# supported from D0 D3hot D3cold
[    0.975134] pci 0000:00:07.2: PTM enabled (root), 4ns granularity
[    0.975139] pci 0000:00:07.2: DPC: RP PIO log size 0 is invalid
[    0.975723] pci 0000:00:07.3: calling  quirk_cmd_compl+0x0/0x70 @ 1
[    0.975726] pci 0000:00:07.3: quirk_cmd_compl+0x0/0x70 took 0 usecs
[    0.975728] pci 0000:00:07.3: calling  quirk_no_aersid+0x0/0x40 @ 1
[    0.975730] pci 0000:00:07.3: quirk_no_aersid+0x0/0x40 took 0 usecs
[    0.975732] pci 0000:00:07.3: [8086:a71f] type 01 class 0x060400
[    0.975774] pci 0000:00:07.3: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.975777] pci 0000:00:07.3: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.975779] pci 0000:00:07.3: calling  pci_fixup_transparent_bridge+0x0/0x30 @ 1
[    0.975781] pci 0000:00:07.3: pci_fixup_transparent_bridge+0x0/0x30 took 0 usecs
[    0.975823] pci 0000:00:07.3: PME# supported from D0 D3hot D3cold
[    0.975854] pci 0000:00:07.3: PTM enabled (root), 4ns granularity
[    0.975859] pci 0000:00:07.3: DPC: RP PIO log size 0 is invalid
[    0.976503] pci 0000:00:08.0: [8086:a74f] type 00 class 0x088000
[    0.976513] pci 0000:00:08.0: reg 0x10: [mem 0x60802eb000-0x60802ebfff 64bit]
[    0.976532] pci 0000:00:08.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.976535] pci 0000:00:08.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.976619] pci 0000:00:0a.0: [8086:a77d] type 00 class 0x118000
[    0.976628] pci 0000:00:0a.0: reg 0x10: [mem 0x60802d0000-0x60802d7fff 64bit]
[    0.976652] pci 0000:00:0a.0: enabling Extended Tags
[    0.976659] pci 0000:00:0a.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.976661] pci 0000:00:0a.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.976762] pci 0000:00:0d.0: [8086:a71e] type 00 class 0x0c0330
[    0.976772] pci 0000:00:0d.0: reg 0x10: [mem 0x60802c0000-0x60802cffff 64bit]
[    0.976794] pci 0000:00:0d.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.976796] pci 0000:00:0d.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.976822] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[    0.977134] pci 0000:00:0d.2: [8086:a73e] type 00 class 0x0c0340
[    0.977146] pci 0000:00:0d.2: reg 0x10: [mem 0x6080240000-0x608027ffff 64bit]
[    0.977155] pci 0000:00:0d.2: reg 0x18: [mem 0x60802ea000-0x60802eafff 64bit]
[    0.977173] pci 0000:00:0d.2: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.977176] pci 0000:00:0d.2: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.977197] pci 0000:00:0d.2: supports D1 D2
[    0.977198] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
[    0.977302] pci 0000:00:0d.3: [8086:a76d] type 00 class 0x0c0340
[    0.977314] pci 0000:00:0d.3: reg 0x10: [mem 0x6080200000-0x608023ffff 64bit]
[    0.977322] pci 0000:00:0d.3: reg 0x18: [mem 0x60802e9000-0x60802e9fff 64bit]
[    0.977341] pci 0000:00:0d.3: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.977343] pci 0000:00:0d.3: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.977365] pci 0000:00:0d.3: supports D1 D2
[    0.977366] pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold
[    0.977566] pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400
[    0.977581] pci 0000:00:0e.0: reg 0x10: [mem 0x607c000000-0x607dffffff 64bit]
[    0.977588] pci 0000:00:0e.0: reg 0x18: [mem 0x52000000-0x53ffffff]
[    0.977605] pci 0000:00:0e.0: reg 0x20: [mem 0x6080100000-0x60801fffff 64bit]
[    0.977622] pci 0000:00:0e.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.977624] pci 0000:00:0e.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.977886] pci 0000:00:12.0: [8086:51fc] type 00 class 0x070000
[    0.977913] pci 0000:00:12.0: reg 0x10: [mem 0x60802b0000-0x60802bffff 64bit]
[    0.977957] pci 0000:00:12.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.977959] pci 0000:00:12.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.978008] pci 0000:00:12.0: PME# supported from D0 D3hot
[    0.978597] pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330
[    0.978624] pci 0000:00:14.0: reg 0x10: [mem 0x60802a0000-0x60802affff 64bit]
[    0.978677] pci 0000:00:14.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.978679] pci 0000:00:14.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.978737] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.979081] pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000
[    0.979106] pci 0000:00:14.2: reg 0x10: [mem 0x60802dc000-0x60802dffff 64bit]
[    0.979121] pci 0000:00:14.2: reg 0x18: [mem 0x60802e8000-0x60802e8fff 64bit]
[    0.979150] pci 0000:00:14.2: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.979152] pci 0000:00:14.2: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.979822] pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000
[    0.980554] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.981829] pci 0000:00:15.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.981831] pci 0000:00:15.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.984188] pci 0000:00:15.1: [8086:51e9] type 00 class 0x0c8000
[    0.984920] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.990217] pci 0000:00:15.1: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.990219] pci 0000:00:15.1: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.992147] pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000
[    0.992174] pci 0000:00:16.0: reg 0x10: [mem 0x60802e5000-0x60802e5fff 64bit]
[    0.992221] pci 0000:00:16.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.992224] pci 0000:00:16.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.992280] pci 0000:00:16.0: PME# supported from D3hot
[    0.992808] pci 0000:00:16.3: [8086:51e3] type 00 class 0x070002
[    0.992830] pci 0000:00:16.3: reg 0x10: [io  0x3060-0x3067]
[    0.992840] pci 0000:00:16.3: reg 0x14: [mem 0x8a221000-0x8a221fff]
[    0.992892] pci 0000:00:16.3: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.992894] pci 0000:00:16.3: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.993601] pci 0000:00:19.0: [8086:51c5] type 00 class 0x0c8000
[    0.994333] pci 0000:00:19.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.995650] pci 0000:00:19.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.995653] pci 0000:00:19.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    0.997858] pci 0000:00:19.1: [8086:51c6] type 00 class 0x0c8000
[    0.998589] pci 0000:00:19.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.999908] pci 0000:00:19.1: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    0.999910] pci 0000:00:19.1: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.002395] pci 0000:00:1e.0: [8086:51a8] type 00 class 0x078000
[    1.003127] pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    1.004445] pci 0000:00:1e.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    1.004448] pci 0000:00:1e.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.006851] pci 0000:00:1e.3: [8086:51ab] type 00 class 0x0c8000
[    1.007582] pci 0000:00:1e.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    1.008900] pci 0000:00:1e.3: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    1.008902] pci 0000:00:1e.3: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.010761] pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100
[    1.010859] pci 0000:00:1f.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    1.010861] pci 0000:00:1f.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.011105] pci 0000:00:1f.3: [8086:51ca] type 00 class 0x040100
[    1.011162] pci 0000:00:1f.3: reg 0x10: [mem 0x60802d8000-0x60802dbfff 64bit]
[    1.011233] pci 0000:00:1f.3: reg 0x20: [mem 0x6080000000-0x60800fffff 64bit]
[    1.011263] pci 0000:00:1f.3: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    1.011266] pci 0000:00:1f.3: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.011386] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    1.012078] pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500
[    1.012115] pci 0000:00:1f.4: reg 0x10: [mem 0x60802e0000-0x60802e00ff 64bit]
[    1.012148] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    1.012175] pci 0000:00:1f.4: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    1.012177] pci 0000:00:1f.4: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.012386] pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000
[    1.012410] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    1.012488] pci 0000:00:1f.5: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    1.012491] pci 0000:00:1f.5: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.012595] pci 0000:00:1f.6: calling  quirk_f0_vpd_link+0x0/0x70 @ 1
[    1.012598] pci 0000:00:1f.6: quirk_f0_vpd_link+0x0/0x70 took 0 usecs
[    1.012601] pci 0000:00:1f.6: [8086:1a1e] type 00 class 0x020000
[    1.012672] pci 0000:00:1f.6: reg 0x10: [mem 0x8a200000-0x8a21ffff]
[    1.012818] pci 0000:00:1f.6: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    1.012820] pci 0000:00:1f.6: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.012954] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[    1.013200] pci 0000:00:07.0: PCI bridge to [bus 01-2a]
[    1.013204] pci 0000:00:07.0:   bridge window [mem 0x7e000000-0x8a1fffff]
[    1.013209] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    1.013242] pci 0000:00:07.1: PCI bridge to [bus 2b-54]
[    1.013246] pci 0000:00:07.1:   bridge window [mem 0x70000000-0x7c1fffff]
[    1.013250] pci 0000:00:07.1:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[    1.013280] pci 0000:00:07.2: PCI bridge to [bus 55-7e]
[    1.013284] pci 0000:00:07.2:   bridge window [mem 0x62000000-0x6e1fffff]
[    1.013288] pci 0000:00:07.2:   bridge window [mem 0x6040000000-0x605bffffff 64bit pref]
[    1.013321] pci 0000:00:07.3: PCI bridge to [bus 7f-a8]
[    1.013325] pci 0000:00:07.3:   bridge window [mem 0x54000000-0x601fffff]
[    1.013329] pci 0000:00:07.3:   bridge window [mem 0x6060000000-0x607bffffff 64bit pref]
[    1.337423] ACPI: EC: interrupt unblocked
[    1.337427] ACPI: EC: event unblocked
[    1.337461] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    1.337462] ACPI: EC: GPE=0x6e
[    1.337464] ACPI: \_SB_.PC00.LPCB.H_EC: Boot ECDT EC initialization complete
[    1.337466] ACPI: \_SB_.PC00.LPCB.H_EC: EC: Used to handle transactions and events
[    1.337537] initcall acpi_init+0x0/0x4a6 returned 0 after 1060000 usecs
[    1.337541] calling  adxl_init+0x0/0x198 @ 1
[    1.337545] initcall adxl_init+0x0/0x198 returned -19 after 0 usecs
[    1.337547] calling  pnp_init+0x0/0x1f @ 1
[    1.337552] initcall pnp_init+0x0/0x1f returned 0 after 0 usecs
[    1.337554] calling  balloon_init+0x0/0x1fe @ 1
[    1.337556] initcall balloon_init+0x0/0x1fe returned -19 after 0 usecs
[    1.337558] calling  xen_setup_shutdown_event+0x0/0x50 @ 1
[    1.337561] initcall xen_setup_shutdown_event+0x0/0x50 returned -19 after 0 usecs
[    1.337562] calling  xenbus_probe_backend_init+0x0/0x74 @ 1
[    1.337567] initcall xenbus_probe_backend_init+0x0/0x74 returned 0 after 0 usecs
[    1.337569] calling  xenbus_probe_frontend_init+0x0/0x58 @ 1
[    1.337576] initcall xenbus_probe_frontend_init+0x0/0x58 returned 0 after 0 usecs
[    1.337579] calling  xen_acpi_pad_init+0x0/0x55 @ 1
[    1.337581] initcall xen_acpi_pad_init+0x0/0x55 returned -19 after 0 usecs
[    1.337583] calling  misc_init+0x0/0xce @ 1
[    1.337586] initcall misc_init+0x0/0xce returned 0 after 0 usecs
[    1.337588] calling  tpm_init+0x0/0xf7 @ 1
[    1.341019] initcall tpm_init+0x0/0xf7 returned 0 after 0 usecs
[    1.341019] calling  iommu_subsys_init+0x0/0xd0 @ 1
[    1.341019] iommu: Default domain type: Translated 
[    1.341019] iommu: DMA domain TLB invalidation policy: lazy mode 
[    1.341019] initcall iommu_subsys_init+0x0/0xd0 returned 0 after 0 usecs
[    1.341019] calling  cn_init+0x0/0xf0 @ 1
[    1.341024] initcall cn_init+0x0/0xf0 returned 0 after 0 usecs
[    1.341026] calling  uacce_init+0x0/0x69 @ 1
[    1.341028] initcall uacce_init+0x0/0x69 returned 0 after 0 usecs
[    1.341030] calling  pm860x_i2c_init+0x0/0x39 @ 1
[    1.341034] initcall pm860x_i2c_init+0x0/0x39 returned 0 after 0 usecs
[    1.341036] calling  wm8400_driver_init+0x0/0x39 @ 1
[    1.341039] initcall wm8400_driver_init+0x0/0x39 returned 0 after 0 usecs
[    1.341040] calling  wm831x_i2c_init+0x0/0x39 @ 1
[    1.341043] initcall wm831x_i2c_init+0x0/0x39 returned 0 after 0 usecs
[    1.341045] calling  wm831x_spi_init+0x0/0x35 @ 1
[    1.341048] initcall wm831x_spi_init+0x0/0x35 returned 0 after 0 usecs
[    1.341050] calling  wm8350_i2c_init+0x0/0x21 @ 1
[    1.341053] initcall wm8350_i2c_init+0x0/0x21 returned 0 after 0 usecs
[    1.341055] calling  tps65910_i2c_init+0x0/0x21 @ 1
[    1.341057] initcall tps65910_i2c_init+0x0/0x21 returned 0 after 0 usecs
[    1.341059] calling  ezx_pcap_init+0x0/0x21 @ 1
[    1.341062] initcall ezx_pcap_init+0x0/0x21 returned 0 after 0 usecs
[    1.341063] calling  da903x_init+0x0/0x21 @ 1
[    1.341070] initcall da903x_init+0x0/0x21 returned 0 after 0 usecs
[    1.341071] calling  da9052_spi_init+0x0/0x39 @ 1
[    1.341074] initcall da9052_spi_init+0x0/0x39 returned 0 after 0 usecs
[    1.341076] calling  da9052_i2c_init+0x0/0x39 @ 1
[    1.341078] initcall da9052_i2c_init+0x0/0x39 returned 0 after 0 usecs
[    1.341080] calling  lp8788_init+0x0/0x21 @ 1
[    1.341083] initcall lp8788_init+0x0/0x21 returned 0 after 0 usecs
[    1.341084] calling  da9055_i2c_init+0x0/0x39 @ 1
[    1.341087] initcall da9055_i2c_init+0x0/0x39 returned 0 after 0 usecs
[    1.341089] calling  max77843_i2c_init+0x0/0x21 @ 1
[    1.341092] initcall max77843_i2c_init+0x0/0x21 returned 0 after 0 usecs
[    1.341093] calling  max8925_i2c_init+0x0/0x39 @ 1
[    1.341096] initcall max8925_i2c_init+0x0/0x39 returned 0 after 0 usecs
[    1.341098] calling  max8997_i2c_init+0x0/0x21 @ 1
[    1.341101] initcall max8997_i2c_init+0x0/0x21 returned 0 after 0 usecs
[    1.341103] calling  max8998_i2c_init+0x0/0x21 @ 1
[    1.341105] initcall max8998_i2c_init+0x0/0x21 returned 0 after 0 usecs
[    1.341107] calling  tps6586x_init+0x0/0x21 @ 1
[    1.341110] initcall tps6586x_init+0x0/0x21 returned 0 after 0 usecs
[    1.341111] calling  tps65090_init+0x0/0x21 @ 1
[    1.341117] initcall tps65090_init+0x0/0x21 returned 0 after 0 usecs
[    1.341119] calling  aat2870_init+0x0/0x21 @ 1
[    1.341122] initcall aat2870_init+0x0/0x21 returned 0 after 0 usecs
[    1.341123] calling  palmas_i2c_init+0x0/0x21 @ 1
[    1.341126] initcall palmas_i2c_init+0x0/0x21 returned 0 after 0 usecs
[    1.341128] calling  rc5t583_i2c_init+0x0/0x21 @ 1
[    1.341131] initcall rc5t583_i2c_init+0x0/0x21 returned 0 after 0 usecs
[    1.341133] calling  as3711_i2c_init+0x0/0x21 @ 1
[    1.341136] initcall as3711_i2c_init+0x0/0x21 returned 0 after 0 usecs
[    1.341138] calling  libnvdimm_init+0x0/0x4b @ 1
[    1.341156] initcall libnvdimm_init+0x0/0x4b returned 0 after 0 usecs
[    1.341158] calling  dax_core_init+0x0/0xc9 @ 1
[    1.341196] initcall dax_core_init+0x0/0xc9 returned 0 after 0 usecs
[    1.341198] calling  dma_buf_init+0x0/0xd3 @ 1
[    1.341206] initcall dma_buf_init+0x0/0xd3 returned 0 after 0 usecs
[    1.341208] calling  init_scsi+0x0/0x8c @ 1
[    1.341242] SCSI subsystem initialized
[    1.341242] initcall init_scsi+0x0/0x8c returned 0 after 0 usecs
[    1.341244] calling  ata_init+0x0/0x340 @ 1
[    1.341256] libata version 3.00 loaded.
[    1.341256] initcall ata_init+0x0/0x340 returned 0 after 0 usecs
[    1.341256] calling  phy_init+0x0/0x2d7 @ 1
[    1.341256] initcall phy_init+0x0/0x2d7 returned 0 after 0 usecs
[    1.341256] calling  mdev_init+0x0/0x1f @ 1
[    1.341256] initcall mdev_init+0x0/0x1f returned 0 after 0 usecs
[    1.341256] calling  usb_common_init+0x0/0x2f @ 1
[    1.341256] initcall usb_common_init+0x0/0x2f returned 0 after 0 usecs
[    1.341256] calling  usb_init+0x0/0x128 @ 1
[    1.341256] ACPI: bus type USB registered
[    1.341256] usbcore: registered new interface driver usbfs
[    1.341256] usbcore: registered new interface driver hub
[    1.341256] usbcore: registered new device driver usb
[    1.341256] initcall usb_init+0x0/0x128 returned 0 after 0 usecs
[    1.341256] calling  usb_roles_init+0x0/0x3d @ 1
[    1.341256] initcall usb_roles_init+0x0/0x3d returned 0 after 0 usecs
[    1.341256] calling  serio_init+0x0/0x37 @ 1
[    1.341256] initcall serio_init+0x0/0x37 returned 0 after 0 usecs
[    1.341256] calling  input_init+0x0/0x10a @ 1
[    1.341256] initcall input_init+0x0/0x10a returned 0 after 0 usecs
[    1.341256] calling  rtc_init+0x0/0x5a @ 1
[    1.341256] initcall rtc_init+0x0/0x5a returned 0 after 0 usecs
[    1.341256] calling  dw_i2c_init_driver+0x0/0x21 @ 1
[    1.341256] initcall dw_i2c_init_driver+0x0/0x21 returned 0 after 0 usecs
[    1.341256] calling  pps_init+0x0/0xb7 @ 1
[    1.341256] pps_core: LinuxPPS API ver. 1 registered
[    1.341256] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.341256] initcall pps_init+0x0/0xb7 returned 0 after 0 usecs
[    1.341256] calling  ptp_init+0x0/0xa6 @ 1
[    1.341256] PTP clock support registered
[    1.341256] initcall ptp_init+0x0/0xa6 returned 0 after 0 usecs
[    1.341256] calling  power_supply_class_init+0x0/0x4d @ 1
[    1.341256] initcall power_supply_class_init+0x0/0x4d returned 0 after 0 usecs
[    1.341256] calling  hwmon_init+0x0/0xf9 @ 1
[    1.341256] initcall hwmon_init+0x0/0xf9 returned 0 after 0 usecs
[    1.341256] calling  md_init+0x0/0x160 @ 1
[    1.341256] initcall md_init+0x0/0x160 returned 0 after 0 usecs
[    1.341256] calling  edac_init+0x0/0x87 @ 1
[    1.341256] EDAC MC: Ver: 3.0.0
[    1.341708] EDAC DEBUG: edac_mc_sysfs_init: device mc created
[    1.341713] initcall edac_init+0x0/0x87 returned 0 after 0 usecs
[    1.341713] calling  mmc_init+0x0/0x42 @ 1
[    1.341713] initcall mmc_init+0x0/0x42 returned 0 after 0 usecs
[    1.341713] calling  leds_init+0x0/0x49 @ 1
[    1.341713] initcall leds_init+0x0/0x49 returned 0 after 0 usecs
[    1.341713] calling  dmi_init+0x0/0x123 @ 1
[    1.341713] initcall dmi_init+0x0/0x123 returned 0 after 0 usecs
[    1.341713] calling  efisubsys_init+0x0/0x560 @ 1
[    1.341713] Registered efivars operations
[    1.341713] initcall efisubsys_init+0x0/0x560 returned 0 after 0 usecs
[    1.341713] calling  intel_scu_ipc_init+0x0/0x26 @ 1
[    1.341713] initcall intel_scu_ipc_init+0x0/0x26 returned 0 after 0 usecs
[    1.341713] calling  devfreq_init+0x0/0xd9 @ 1
[    1.341713] initcall devfreq_init+0x0/0xd9 returned 0 after 0 usecs
[    1.341713] calling  devfreq_event_init+0x0/0x5c @ 1
[    1.341713] initcall devfreq_event_init+0x0/0x5c returned 0 after 0 usecs
[    1.341713] calling  devfreq_simple_ondemand_init+0x0/0x1f @ 1
[    1.341713] initcall devfreq_simple_ondemand_init+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  devfreq_performance_init+0x0/0x1f @ 1
[    1.341713] initcall devfreq_performance_init+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  devfreq_powersave_init+0x0/0x1f @ 1
[    1.341713] initcall devfreq_powersave_init+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  devfreq_userspace_init+0x0/0x1f @ 1
[    1.341713] initcall devfreq_userspace_init+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  devfreq_passive_init+0x0/0x1f @ 1
[    1.341713] initcall devfreq_passive_init+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  vme_init+0x0/0x1f @ 1
[    1.341713] initcall vme_init+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  ras_init+0x0/0x1d @ 1
[    1.341713] initcall ras_init+0x0/0x1d returned 0 after 0 usecs
[    1.341713] calling  nvmem_init+0x0/0x1f @ 1
[    1.341713] initcall nvmem_init+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  counter_init+0x0/0x59 @ 1
[    1.341713] initcall counter_init+0x0/0x59 returned 0 after 0 usecs
[    1.341713] calling  proto_init+0x0/0x1f @ 1
[    1.341713] initcall proto_init+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  net_dev_init+0x0/0x278 @ 1
[    1.341713] initcall net_dev_init+0x0/0x278 returned 0 after 0 usecs
[    1.341713] calling  neigh_init+0x0/0x92 @ 1
[    1.341713] initcall neigh_init+0x0/0x92 returned 0 after 0 usecs
[    1.341713] calling  fib_notifier_init+0x0/0x1f @ 1
[    1.341713] initcall fib_notifier_init+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  fib_rules_init+0x0/0xb9 @ 1
[    1.341713] initcall fib_rules_init+0x0/0xb9 returned 0 after 0 usecs
[    1.341713] calling  init_cgroup_netprio+0x0/0x21 @ 1
[    1.341713] initcall init_cgroup_netprio+0x0/0x21 returned 0 after 0 usecs
[    1.341713] calling  bpf_lwt_init+0x0/0x24 @ 1
[    1.341713] initcall bpf_lwt_init+0x0/0x24 returned 0 after 0 usecs
[    1.341713] calling  devlink_init+0x0/0x35 @ 1
[    1.341713] initcall devlink_init+0x0/0x35 returned 0 after 0 usecs
[    1.341713] calling  pktsched_init+0x0/0x11c @ 1
[    1.341713] initcall pktsched_init+0x0/0x11c returned 0 after 0 usecs
[    1.341713] calling  tc_filter_init+0x0/0x108 @ 1
[    1.341713] initcall tc_filter_init+0x0/0x108 returned 0 after 0 usecs
[    1.341713] calling  tc_action_init+0x0/0x62 @ 1
[    1.341713] initcall tc_action_init+0x0/0x62 returned 0 after 0 usecs
[    1.341713] calling  ethnl_init+0x0/0x60 @ 1
[    1.341713] initcall ethnl_init+0x0/0x60 returned 0 after 0 usecs
[    1.341713] calling  nexthop_init+0x0/0x103 @ 1
[    1.341713] initcall nexthop_init+0x0/0x103 returned 0 after 0 usecs
[    1.341713] calling  cipso_v4_init+0x0/0x71 @ 1
[    1.341713] initcall cipso_v4_init+0x0/0x71 returned 0 after 0 usecs
[    1.341713] calling  wireless_nlevent_init+0x0/0x47 @ 1
[    1.341713] initcall wireless_nlevent_init+0x0/0x47 returned 0 after 0 usecs
[    1.341713] calling  netlbl_init+0x0/0x86 @ 1
[    1.341713] NetLabel: Initializing
[    1.341713] NetLabel:  domain hash size = 128
[    1.341713] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    1.341713] NetLabel:  unlabeled traffic allowed by default
[    1.341713] initcall netlbl_init+0x0/0x86 returned 0 after 0 usecs
[    1.341713] calling  rfkill_init+0x0/0x11e @ 1
[    1.341713] initcall rfkill_init+0x0/0x11e returned 0 after 0 usecs
[    1.341713] calling  ncsi_init_netlink+0x0/0x1f @ 1
[    1.341713] initcall ncsi_init_netlink+0x0/0x1f returned 0 after 0 usecs
[    1.341713] calling  pci_subsys_init+0x0/0x74 @ 1
[    1.341713] PCI: Using ACPI for IRQ routing
[    1.367307] PCI: pci_cache_line_size set to 64 bytes
[    1.367657] pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
[    1.368011] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    1.368013] e820: reserve RAM buffer [mem 0x3d277000-0x3fffffff]
[    1.368014] e820: reserve RAM buffer [mem 0x3d2d7000-0x3fffffff]
[    1.368015] e820: reserve RAM buffer [mem 0x40669000-0x43ffffff]
[    1.368016] e820: reserve RAM buffer [mem 0x43c00000-0x43ffffff]
[    1.368018] e820: reserve RAM buffer [mem 0x4afc00000-0x4afffffff]
[    1.368019] initcall pci_subsys_init+0x0/0x74 returned 0 after 28000 usecs
[    1.368022] calling  vga_arb_device_init+0x0/0x99 @ 1
[    1.369018] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    1.369018] pci 0000:00:02.0: vgaarb: bridge control possible
[    1.369018] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    1.369018] vgaarb: loaded
[    1.369018] initcall vga_arb_device_init+0x0/0x99 returned 0 after 0 usecs
[    1.369018] calling  watchdog_init+0x0/0x97 @ 1
[    1.369022] initcall watchdog_init+0x0/0x97 returned 0 after 0 usecs
[    1.369038] calling  nmi_warning_debugfs+0x0/0x34 @ 1
[    1.369041] initcall nmi_warning_debugfs+0x0/0x34 returned 0 after 0 usecs
[    1.369042] calling  save_microcode_in_initrd+0x0/0xa0 @ 1
[    1.369048] initcall save_microcode_in_initrd+0x0/0xa0 returned 0 after 0 usecs
[    1.369050] calling  hpet_late_init+0x0/0x383 @ 1
[    1.369052] initcall hpet_late_init+0x0/0x383 returned -19 after 0 usecs
[    1.369054] calling  init_amd_nbs+0x0/0x3a6 @ 1
[    1.369059] initcall init_amd_nbs+0x0/0x3a6 returned 0 after 0 usecs
[    1.369061] calling  iomem_init_inode+0x0/0x8d @ 1
[    1.369070] initcall iomem_init_inode+0x0/0x8d returned 0 after 0 usecs
[    1.369072] calling  em_debug_init+0x0/0x2a @ 1
[    1.369074] initcall em_debug_init+0x0/0x2a returned 0 after 0 usecs
[    1.369076] calling  clocksource_done_booting+0x0/0x4f @ 1
[    1.369127] clocksource: Switched to clocksource tsc-early
[    1.369127] initcall clocksource_done_booting+0x0/0x4f returned 0 after 17 usecs
[    1.369127] calling  tracer_init_tracefs+0x0/0xba @ 1
[    1.369127] initcall tracer_init_tracefs+0x0/0xba returned 0 after 3 usecs
[    1.369127] calling  init_trace_printk_function_export+0x0/0x35 @ 1
[    1.369127] initcall init_trace_printk_function_export+0x0/0x35 returned 0 after 13 usecs
[    1.369127] calling  init_graph_tracefs+0x0/0x35 @ 1
[    1.369127] initcall init_graph_tracefs+0x0/0x35 returned 0 after 1 usecs
[    1.369127] calling  trace_events_synth_init+0x0/0x4f @ 1
[    1.369127] initcall trace_events_synth_init+0x0/0x4f returned 0 after 1 usecs
[    1.369127] calling  bpf_event_init+0x0/0x1c @ 1
[    1.369127] initcall bpf_event_init+0x0/0x1c returned 0 after 0 usecs
[    1.369127] calling  init_kprobe_trace+0x0/0x163 @ 1
[    1.380684] initcall init_kprobe_trace+0x0/0x163 returned 0 after 11627 usecs
[    1.380722] calling  init_dynamic_event+0x0/0x35 @ 1
[    1.380739] initcall init_dynamic_event+0x0/0x35 returned 0 after 15 usecs
[    1.380741] calling  init_uprobe_trace+0x0/0x65 @ 1
[    1.380746] initcall init_uprobe_trace+0x0/0x65 returned 0 after 2 usecs
[    1.380748] calling  bpf_init+0x0/0x55 @ 1
[    1.380752] initcall bpf_init+0x0/0x55 returned 0 after 2 usecs
[    1.380753] calling  secretmem_init+0x0/0x50 @ 1
[    1.380756] initcall secretmem_init+0x0/0x50 returned 0 after 0 usecs
[    1.380757] calling  init_fs_stat_sysctls+0x0/0x43 @ 1
[    1.380769] initcall init_fs_stat_sysctls+0x0/0x43 returned 0 after 10 usecs
[    1.380771] calling  init_fs_exec_sysctls+0x0/0x2f @ 1
[    1.380777] initcall init_fs_exec_sysctls+0x0/0x2f returned 0 after 4 usecs
[    1.380779] calling  init_pipe_fs+0x0/0x6c @ 1
[    1.380799] initcall init_pipe_fs+0x0/0x6c returned 0 after 18 usecs
[    1.380801] calling  init_fs_namei_sysctls+0x0/0x2f @ 1
[    1.380807] initcall init_fs_namei_sysctls+0x0/0x2f returned 0 after 4 usecs
[    1.380809] calling  init_fs_dcache_sysctls+0x0/0x2f @ 1
[    1.380811] initcall init_fs_dcache_sysctls+0x0/0x2f returned 0 after 0 usecs
[    1.380812] calling  init_fs_namespace_sysctls+0x0/0x2f @ 1
[    1.380814] initcall init_fs_namespace_sysctls+0x0/0x2f returned 0 after 0 usecs
[    1.380816] calling  cgroup_writeback_init+0x0/0x33 @ 1
[    1.380821] initcall cgroup_writeback_init+0x0/0x33 returned 0 after 3 usecs
[    1.380823] calling  inotify_user_setup+0x0/0xde @ 1
[    1.380829] initcall inotify_user_setup+0x0/0xde returned 0 after 3 usecs
[    1.380831] calling  eventpoll_init+0x0/0xe5 @ 1
[    1.380853] initcall eventpoll_init+0x0/0xe5 returned 0 after 20 usecs
[    1.380855] calling  anon_inode_init+0x0/0x66 @ 1
[    1.380870] initcall anon_inode_init+0x0/0x66 returned 0 after 13 usecs
[    1.380872] calling  init_dax_wait_table+0x0/0x4f @ 1
[    1.380885] initcall init_dax_wait_table+0x0/0x4f returned 0 after 11 usecs
[    1.380887] calling  proc_locks_init+0x0/0x35 @ 1
[    1.380889] initcall proc_locks_init+0x0/0x35 returned 0 after 1 usecs
[    1.380891] calling  init_fs_coredump_sysctls+0x0/0x2f @ 1
[    1.380894] initcall init_fs_coredump_sysctls+0x0/0x2f returned 0 after 1 usecs
[    1.380896] calling  iomap_init+0x0/0x2e @ 1
[    1.380932] initcall iomap_init+0x0/0x2e returned 0 after 34 usecs
[    1.380934] calling  dquot_init+0x0/0x12b @ 1
[    1.380936] VFS: Disk quotas dquot_6.6.0
[    1.380957] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.380959] initcall dquot_init+0x0/0x12b returned 0 after 23 usecs
[    1.380961] calling  quota_init+0x0/0x31 @ 1
[    1.380971] initcall quota_init+0x0/0x31 returned 0 after 8 usecs
[    1.380973] calling  proc_cmdline_init+0x0/0x2f @ 1
[    1.380975] initcall proc_cmdline_init+0x0/0x2f returned 0 after 0 usecs
[    1.380977] calling  proc_consoles_init+0x0/0x32 @ 1
[    1.380979] initcall proc_consoles_init+0x0/0x32 returned 0 after 0 usecs
[    1.380981] calling  proc_cpuinfo_init+0x0/0x2c @ 1
[    1.380983] initcall proc_cpuinfo_init+0x0/0x2c returned 0 after 0 usecs
[    1.380985] calling  proc_devices_init+0x0/0x32 @ 1
[    1.380987] initcall proc_devices_init+0x0/0x32 returned 0 after 0 usecs
[    1.380988] calling  proc_interrupts_init+0x0/0x32 @ 1
[    1.380990] initcall proc_interrupts_init+0x0/0x32 returned 0 after 0 usecs
[    1.380992] calling  proc_loadavg_init+0x0/0x2f @ 1
[    1.380994] initcall proc_loadavg_init+0x0/0x2f returned 0 after 0 usecs
[    1.380996] calling  proc_meminfo_init+0x0/0x2f @ 1
[    1.381003] initcall proc_meminfo_init+0x0/0x2f returned 0 after 0 usecs
[    1.381005] calling  proc_stat_init+0x0/0x2c @ 1
[    1.381007] initcall proc_stat_init+0x0/0x2c returned 0 after 0 usecs
[    1.381009] calling  proc_uptime_init+0x0/0x2f @ 1
[    1.381011] initcall proc_uptime_init+0x0/0x2f returned 0 after 0 usecs
[    1.381013] calling  proc_version_init+0x0/0x2f @ 1
[    1.381015] initcall proc_version_init+0x0/0x2f returned 0 after 0 usecs
[    1.381016] calling  proc_softirqs_init+0x0/0x2f @ 1
[    1.381018] initcall proc_softirqs_init+0x0/0x2f returned 0 after 0 usecs
[    1.381020] calling  proc_kcore_init+0x0/0x11e @ 1
[    1.381025] initcall proc_kcore_init+0x0/0x11e returned 0 after 3 usecs
[    1.381027] calling  vmcore_init+0x0/0x16f @ 1
[    1.381029] initcall vmcore_init+0x0/0x16f returned 0 after 0 usecs
[    1.381031] calling  proc_kmsg_init+0x0/0x2f @ 1
[    1.381033] initcall proc_kmsg_init+0x0/0x2f returned 0 after 0 usecs
[    1.381035] calling  proc_page_init+0x0/0x63 @ 1
[    1.381037] initcall proc_page_init+0x0/0x63 returned 0 after 0 usecs
[    1.381039] calling  init_ramfs_fs+0x0/0x1f @ 1
[    1.381042] initcall init_ramfs_fs+0x0/0x1f returned 0 after 0 usecs
[    1.381044] calling  init_hugetlbfs_fs+0x0/0x12a @ 1
[    1.381066] initcall init_hugetlbfs_fs+0x0/0x12a returned 0 after 20 usecs
[    1.381068] calling  tomoyo_initerface_init+0x0/0x18c @ 1
[    1.381070] initcall tomoyo_initerface_init+0x0/0x18c returned 0 after 1 usecs
[    1.381072] calling  aa_create_aafs+0x0/0x3b3 @ 1
[    1.381074] initcall aa_create_aafs+0x0/0x3b3 returned 0 after 0 usecs
[    1.381075] calling  dynamic_debug_init_control+0x0/0x84 @ 1
[    1.381079] initcall dynamic_debug_init_control+0x0/0x84 returned 0 after 2 usecs
[    1.381081] calling  acpi_event_init+0x0/0x41 @ 1
[    1.381084] initcall acpi_event_init+0x0/0x41 returned 0 after 1 usecs
[    1.381086] calling  pnp_system_init+0x0/0x1f @ 1
[    1.381092] initcall pnp_system_init+0x0/0x1f returned 0 after 4 usecs
[    1.381094] calling  pnpacpi_init+0x0/0x77 @ 1
[    1.381096] pnp: PnP ACPI init
[    1.381386] system 00:00: [io  0x06a4] has been reserved
[    1.381388] system 00:00: [io  0x06a0] has been reserved
[    1.381669] system 00:01: [io  0x0680-0x069f] has been reserved
[    1.381670] system 00:01: [io  0x164e-0x164f] has been reserved
[    1.381756] system 00:02: [io  0x1854-0x1857] has been reserved
[    1.384665] pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    1.384669] pnp 00:04: disabling [mem 0x4138b000-0x4139afff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    1.384690] system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
[    1.384692] system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
[    1.384693] system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
[    1.384694] system 00:04: [mem 0xfed20000-0xfed7ffff] has been reserved
[    1.384695] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[    1.384697] system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    1.384698] system 00:04: [mem 0xfee00000-0xfeefffff] has been reserved
[    1.385520] system 00:05: [io  0x2000-0x20fe] has been reserved
[    1.385886] pnp 00:07: disabling [mem 0x00000000-0x0009cfff] because it overlaps 0000:00:02.0 BAR 7 [mem 0x00000000-0x06ffffff 64bit]
[    1.385889] pnp 00:07: disabling [mem 0x00000000-0x0009cfff disabled] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    1.386212] pnp: PnP ACPI: found 8 devices
[    1.386213] initcall pnpacpi_init+0x0/0x77 returned 0 after 5117 usecs
[    1.386217] calling  chr_dev_init+0x0/0xb3 @ 1
[    1.387370] initcall chr_dev_init+0x0/0xb3 returned 0 after 1151 usecs
[    1.387372] calling  hwrng_modinit+0x0/0x8a @ 1
[    1.387387] initcall hwrng_modinit+0x0/0x8a returned 0 after 13 usecs
[    1.387389] calling  firmware_class_init+0x0/0xf9 @ 1
[    1.387395] initcall firmware_class_init+0x0/0xf9 returned 0 after 4 usecs
[    1.387397] calling  map_properties+0x0/0x517 @ 1
[    1.387399] initcall map_properties+0x0/0x517 returned 0 after 0 usecs
[    1.387401] calling  init_acpi_pm_clocksource+0x0/0xe8 @ 1
[    1.391884] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.391887] initcall init_acpi_pm_clocksource+0x0/0xe8 returned 0 after 4483 usecs
[    1.391888] calling  powercap_init+0x0/0x290 @ 1
[    1.391904] initcall powercap_init+0x0/0x290 returned 0 after 13 usecs
[    1.391906] calling  sysctl_core_init+0x0/0x39 @ 1
[    1.391920] initcall sysctl_core_init+0x0/0x39 returned 0 after 12 usecs
[    1.391923] calling  eth_offload_init+0x0/0x21 @ 1
[    1.391925] initcall eth_offload_init+0x0/0x21 returned 0 after 0 usecs
[    1.391927] calling  ipv4_offload_init+0x0/0x81 @ 1
[    1.391930] initcall ipv4_offload_init+0x0/0x81 returned 0 after 1 usecs
[    1.391931] calling  inet_init+0x0/0x284 @ 1
[    1.391989] NET: Registered PF_INET protocol family
[    1.392298] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.394025] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    1.394044] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    1.394048] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.394175] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    1.394293] TCP: Hash tables configured (established 131072 bind 65536)
[    1.394336] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    1.394370] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    1.394443] initcall inet_init+0x0/0x284 returned 0 after 2510 usecs
[    1.394446] calling  af_unix_init+0x0/0xb7 @ 1
[    1.394456] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    1.394460] initcall af_unix_init+0x0/0xb7 returned 0 after 12 usecs
[    1.394461] calling  ipv6_offload_init+0x0/0x8c @ 1
[    1.394464] initcall ipv6_offload_init+0x0/0x8c returned 0 after 1 usecs
[    1.394466] calling  vlan_offload_init+0x0/0x2d @ 1
[    1.394467] initcall vlan_offload_init+0x0/0x2d returned 0 after 0 usecs
[    1.394469] calling  pcibios_assign_resources+0x0/0xcf @ 1
[    1.394475] pci_bus 0000:00: max bus depth: 1 pci_try_num: 2
[    1.394487] clipped [mem size 0x00000000 64bit pref] to [mem size 0xfffffffffffa0000 64bit pref] for e820 entry [mem 0x0009f000-0x000fffff]
[    1.394491] pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
[    1.394495] clipped [mem size 0x00000000 64bit] to [mem size 0xfffffffffffa0000 64bit] for e820 entry [mem 0x0009f000-0x000fffff]
[    1.394497] pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
[    1.394501] pci 0000:00:07.0: BAR 13: assigned [io  0x4000-0x4fff]
[    1.394502] pci 0000:00:07.1: BAR 13: assigned [io  0x5000-0x5fff]
[    1.394504] pci 0000:00:07.2: BAR 13: assigned [io  0x6000-0x6fff]
[    1.394505] pci 0000:00:07.3: BAR 13: assigned [io  0x7000-0x7fff]
[    1.394506] clipped [mem size 0x00000000 64bit] to [mem size 0xfffffffffffa0000 64bit] for e820 entry [mem 0x0009f000-0x000fffff]
[    1.394508] pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
[    1.394861] clipped [mem size 0x00000000 64bit] to [mem size 0xfffffffffffa0000 64bit] for e820 entry [mem 0x0009f000-0x000fffff]
[    1.394863] pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
[    1.395215] clipped [mem size 0x00000000 64bit] to [mem size 0xfffffffffffa0000 64bit] for e820 entry [mem 0x0009f000-0x000fffff]
[    1.395216] pci 0000:00:19.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
[    1.395568] clipped [mem size 0x00000000 64bit] to [mem size 0xfffffffffffa0000 64bit] for e820 entry [mem 0x0009f000-0x000fffff]
[    1.395570] pci 0000:00:19.1: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
[    1.395921] clipped [mem size 0x00000000 64bit] to [mem size 0xfffffffffffa0000 64bit] for e820 entry [mem 0x0009f000-0x000fffff]
[    1.395923] pci 0000:00:1e.0: BAR 0: assigned [mem 0x4017004000-0x4017004fff 64bit]
[    1.396274] clipped [mem size 0x00000000 64bit] to [mem size 0xfffffffffffa0000 64bit] for e820 entry [mem 0x0009f000-0x000fffff]
[    1.396276] pci 0000:00:1e.3: BAR 0: assigned [mem 0x4017005000-0x4017005fff 64bit]
[    1.396627] clipped [mem size 0x00020000] to [mem size 0xfffffffffffc0000] for e820 entry [mem 0x0009f000-0x000fffff]
[    1.396629] pci 0000:00:1f.5: BAR 0: assigned [mem 0x50400000-0x50400fff]
[    1.396656] pci 0000:00:07.0: PCI bridge to [bus 01-2a]
[    1.396658] pci 0000:00:07.0:   bridge window [io  0x4000-0x4fff]
[    1.396662] pci 0000:00:07.0:   bridge window [mem 0x7e000000-0x8a1fffff]
[    1.396664] pci 0000:00:07.0:   bridge window [mem 0x6000000000-0x601bffffff 64bit pref]
[    1.396669] pci 0000:00:07.1: PCI bridge to [bus 2b-54]
[    1.396671] pci 0000:00:07.1:   bridge window [io  0x5000-0x5fff]
[    1.396674] pci 0000:00:07.1:   bridge window [mem 0x70000000-0x7c1fffff]
[    1.396677] pci 0000:00:07.1:   bridge window [mem 0x6020000000-0x603bffffff 64bit pref]
[    1.396682] pci 0000:00:07.2: PCI bridge to [bus 55-7e]
[    1.396683] pci 0000:00:07.2:   bridge window [io  0x6000-0x6fff]
[    1.396687] pci 0000:00:07.2:   bridge window [mem 0x62000000-0x6e1fffff]
[    1.396689] pci 0000:00:07.2:   bridge window [mem 0x6040000000-0x605bffffff 64bit pref]
[    1.396694] pci 0000:00:07.3: PCI bridge to [bus 7f-a8]
[    1.396696] pci 0000:00:07.3:   bridge window [io  0x7000-0x7fff]
[    1.396699] pci 0000:00:07.3:   bridge window [mem 0x54000000-0x601fffff]
[    1.396702] pci 0000:00:07.3:   bridge window [mem 0x6060000000-0x607bffffff 64bit pref]
[    1.396707] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    1.396708] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    1.396709] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    1.396711] pci_bus 0000:00: resource 7 [mem 0x50400000-0xbfffffff window]
[    1.396712] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    1.396713] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    1.396714] pci_bus 0000:01: resource 1 [mem 0x7e000000-0x8a1fffff]
[    1.396715] pci_bus 0000:01: resource 2 [mem 0x6000000000-0x601bffffff 64bit pref]
[    1.396717] pci_bus 0000:2b: resource 0 [io  0x5000-0x5fff]
[    1.396718] pci_bus 0000:2b: resource 1 [mem 0x70000000-0x7c1fffff]
[    1.396719] pci_bus 0000:2b: resource 2 [mem 0x6020000000-0x603bffffff 64bit pref]
[    1.396720] pci_bus 0000:55: resource 0 [io  0x6000-0x6fff]
[    1.396721] pci_bus 0000:55: resource 1 [mem 0x62000000-0x6e1fffff]
[    1.396723] pci_bus 0000:55: resource 2 [mem 0x6040000000-0x605bffffff 64bit pref]
[    1.396724] pci_bus 0000:7f: resource 0 [io  0x7000-0x7fff]
[    1.396725] pci_bus 0000:7f: resource 1 [mem 0x54000000-0x601fffff]
[    1.396726] pci_bus 0000:7f: resource 2 [mem 0x6060000000-0x607bffffff 64bit pref]
[    1.396904] initcall pcibios_assign_resources+0x0/0xcf returned 0 after 2433 usecs
[    1.396906] calling  pci_apply_final_quirks+0x0/0x13d @ 1
[    1.396927] pci 0000:00:0d.0: calling  quirk_usb_early_handoff+0x0/0x680 @ 1
[    1.396936] pci 0000:00:0d.0: enabling device (0000 -> 0002)
[    1.396964] pci 0000:00:0d.0: quirk_usb_early_handoff+0x0/0x680 took 33 usecs
[    1.396968] pci 0000:00:0d.2: calling  quirk_usb_early_handoff+0x0/0x680 @ 1
[    1.396970] pci 0000:00:0d.2: quirk_usb_early_handoff+0x0/0x680 took 0 usecs
[    1.396973] pci 0000:00:0d.3: calling  quirk_usb_early_handoff+0x0/0x680 @ 1
[    1.396975] pci 0000:00:0d.3: quirk_usb_early_handoff+0x0/0x680 took 0 usecs
[    1.396995] pci 0000:00:14.0: calling  quirk_usb_early_handoff+0x0/0x680 @ 1
[    1.397258] pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x680 took 255 usecs
[    1.397592] pci 0000:00:1f.6: calling  quirk_e100_interrupt+0x0/0x170 @ 1
[    1.397595] pci 0000:00:1f.6: quirk_e100_interrupt+0x0/0x170 took 0 usecs
[    1.397615] PCI: CLS 0 bytes, default 64
[    1.397616] initcall pci_apply_final_quirks+0x0/0x13d returned 0 after 707 usecs
[    1.397618] calling  acpi_reserve_resources+0x0/0xf8 @ 1
[    1.397620] initcall acpi_reserve_resources+0x0/0xf8 returned 0 after 0 usecs
[    1.397622] calling  populate_rootfs+0x0/0x49 @ 1
[    1.397628] initcall populate_rootfs+0x0/0x49 returned 0 after 4 usecs
[    1.397630] calling  pci_iommu_init+0x0/0x3f @ 1
[    1.397649] DMAR: No ATSR found
[    1.397650] DMAR: No SATC found
[    1.397652] DMAR: IOMMU feature fl1gp_support inconsistent
[    1.397653] DMAR: IOMMU feature pgsel_inv inconsistent
[    1.397655] DMAR: IOMMU feature nwfs inconsistent
[    1.397655] DMAR: IOMMU feature dit inconsistent
[    1.397656] DMAR: IOMMU feature sc_support inconsistent
[    1.397657] DMAR: IOMMU feature dev_iotlb_support inconsistent
[    1.397658] DMAR: dmar1: Using Queued invalidation
[    1.397663] DMAR: dmar0: Using Queued invalidation
[    1.397665] DMAR: dmar2: Using Queued invalidation
[    1.397702] Trying to unpack rootfs image as initramfs...
[    1.397876] pci 0000:00:00.0: Adding to iommu group 0
[    1.397884] pci 0000:00:02.0: Adding to iommu group 1
[    1.397890] pci 0000:00:04.0: Adding to iommu group 2
[    1.397899] pci 0000:00:05.0: Adding to iommu group 3
[    1.397907] pci 0000:00:06.0: Adding to iommu group 4
[    1.397914] pci 0000:00:07.0: Adding to iommu group 5
[    1.397922] pci 0000:00:07.1: Adding to iommu group 6
[    1.397932] pci 0000:00:07.2: Adding to iommu group 7
[    1.397939] pci 0000:00:07.3: Adding to iommu group 8
[    1.397945] pci 0000:00:08.0: Adding to iommu group 9
[    1.397954] pci 0000:00:0a.0: Adding to iommu group 10
[    1.397970] pci 0000:00:0d.0: Adding to iommu group 11
[    1.397976] pci 0000:00:0d.2: Adding to iommu group 11
[    1.397983] pci 0000:00:0d.3: Adding to iommu group 11
[    1.397988] pci 0000:00:0e.0: Adding to iommu group 12
[    1.397996] pci 0000:00:12.0: Adding to iommu group 13
[    1.398009] pci 0000:00:14.0: Adding to iommu group 14
[    1.398015] pci 0000:00:14.2: Adding to iommu group 14
[    1.398025] pci 0000:00:15.0: Adding to iommu group 15
[    1.398031] pci 0000:00:15.1: Adding to iommu group 15
[    1.398041] pci 0000:00:16.0: Adding to iommu group 16
[    1.398047] pci 0000:00:16.3: Adding to iommu group 16
[    1.398060] pci 0000:00:19.0: Adding to iommu group 17
[    1.398068] pci 0000:00:19.1: Adding to iommu group 17
[    1.398078] pci 0000:00:1e.0: Adding to iommu group 18
[    1.398085] pci 0000:00:1e.3: Adding to iommu group 18
[    1.398106] pci 0000:00:1f.0: Adding to iommu group 19
[    1.398115] pci 0000:00:1f.3: Adding to iommu group 19
[    1.398122] pci 0000:00:1f.4: Adding to iommu group 19
[    1.398129] pci 0000:00:1f.5: Adding to iommu group 19
[    1.398136] pci 0000:00:1f.6: Adding to iommu group 19
[    1.401411] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    1.401414] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.401415] software IO TLB: mapped [mem 0x000000003766a000-0x000000003b66a000] (64MB)
[    1.401418] initcall pci_iommu_init+0x0/0x3f returned 0 after 3786 usecs
[    1.401421] calling  ir_dev_scope_init+0x0/0x40 @ 1
[    1.401423] initcall ir_dev_scope_init+0x0/0x40 returned 0 after 0 usecs
[    1.401459] calling  ia32_binfmt_init+0x0/0x21 @ 1
[    1.401464] initcall ia32_binfmt_init+0x0/0x21 returned 0 after 2 usecs
[    1.401465] calling  amd_ibs_init+0x0/0x2ba @ 1
[    1.401467] initcall amd_ibs_init+0x0/0x2ba returned -19 after 0 usecs
[    1.401469] calling  amd_uncore_init+0x0/0x30d @ 1
[    1.401471] initcall amd_uncore_init+0x0/0x30d returned -19 after 0 usecs
[    1.401472] calling  amd_iommu_pc_init+0x0/0x250 @ 1
[    1.401474] initcall amd_iommu_pc_init+0x0/0x250 returned -19 after 0 usecs
[    1.401476] calling  msr_init+0x0/0x63 @ 1
[    1.401481] initcall msr_init+0x0/0x63 returned 0 after 3 usecs
[    1.401483] calling  intel_uncore_init+0x0/0x4fe @ 1
[    1.401949] initcall intel_uncore_init+0x0/0x4fe returned 0 after 464 usecs
[    1.401954] calling  register_kernel_offset_dumper+0x0/0x28 @ 1
[    1.401956] initcall register_kernel_offset_dumper+0x0/0x28 returned 0 after 0 usecs
[    1.401958] calling  i8259A_init_ops+0x0/0x35 @ 1
[    1.401960] initcall i8259A_init_ops+0x0/0x35 returned 0 after 0 usecs
[    1.401962] calling  init_tsc_clocksource+0x0/0xb4 @ 1
[    1.401964] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x363e8c91135, max_idle_ns: 881590568389 ns
[    1.402053] clocksource: Switched to clocksource tsc
[    1.402055] initcall init_tsc_clocksource+0x0/0xb4 returned 0 after 91 usecs
[    1.402057] calling  add_rtc_cmos+0x0/0xd9 @ 1
[    1.402078] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    1.402079] initcall add_rtc_cmos+0x0/0xd9 returned 0 after 20 usecs
[    1.402081] calling  i8237A_init_ops+0x0/0x47 @ 1
[    1.402115] initcall i8237A_init_ops+0x0/0x47 returned -19 after 32 usecs
[    1.402117] calling  umwait_init+0x0/0x84 @ 1
[    1.402337] initcall umwait_init+0x0/0x84 returned 0 after 218 usecs
[    1.402339] calling  sgx_init+0x0/0x3fe @ 1
[    1.402342] initcall sgx_init+0x0/0x3fe returned -19 after 0 usecs
[    1.402344] calling  msr_init+0x0/0xea @ 1
[    1.403614] initcall msr_init+0x0/0xea returned 0 after 1268 usecs
[    1.403616] calling  ioapic_init_ops+0x0/0x21 @ 1
[    1.403618] initcall ioapic_init_ops+0x0/0x21 returned 0 after 0 usecs
[    1.403620] calling  register_e820_pmem+0x0/0x51 @ 1
[    1.403627] initcall register_e820_pmem+0x0/0x51 returned 0 after 5 usecs
[    1.403628] calling  add_pcspkr+0x0/0x78 @ 1
[    1.403641] initcall add_pcspkr+0x0/0x78 returned 0 after 11 usecs
[    1.403643] calling  start_periodic_check_for_corruption+0x0/0x40 @ 1
[    1.403647] initcall start_periodic_check_for_corruption+0x0/0x40 returned 0 after 0 usecs
[    1.403649] calling  add_bus_probe+0x0/0x34 @ 1
[    1.403651] initcall add_bus_probe+0x0/0x34 returned 0 after 0 usecs
[    1.403652] calling  snp_init_platform_device+0x0/0x95 @ 1
[    1.403654] initcall snp_init_platform_device+0x0/0x95 returned -19 after 0 usecs
[    1.403656] calling  audit_classes_init+0x0/0xbc @ 1
[    1.403664] initcall audit_classes_init+0x0/0xbc returned 0 after 5 usecs
[    1.403666] calling  pt_dump_init+0x0/0x56 @ 1
[    1.403667] initcall pt_dump_init+0x0/0x56 returned 0 after 0 usecs
[    1.403669] calling  crc32c_intel_mod_init+0x0/0x64 @ 1
[    1.403682] initcall crc32c_intel_mod_init+0x0/0x64 returned 0 after 11 usecs
[    1.403683] calling  iosf_mbi_init+0x0/0xac @ 1
[    1.403709] initcall iosf_mbi_init+0x0/0xac returned 0 after 24 usecs
[    1.403711] calling  proc_execdomains_init+0x0/0x2f @ 1
[    1.403715] initcall proc_execdomains_init+0x0/0x2f returned 0 after 2 usecs
[    1.403716] calling  register_warn_debugfs+0x0/0x31 @ 1
[    1.403718] initcall register_warn_debugfs+0x0/0x31 returned 0 after 0 usecs
[    1.403720] calling  cpuhp_sysfs_init+0x0/0x94 @ 1
[    1.403743] initcall cpuhp_sysfs_init+0x0/0x94 returned 0 after 22 usecs
[    1.403745] calling  ioresources_init+0x0/0x57 @ 1
[    1.403748] initcall ioresources_init+0x0/0x57 returned 0 after 1 usecs
[    1.403749] calling  snapshot_device_init+0x0/0x1f @ 1
[    1.403767] initcall snapshot_device_init+0x0/0x1f returned 0 after 15 usecs
[    1.403769] calling  irq_gc_init_ops+0x0/0x21 @ 1
[    1.403771] initcall irq_gc_init_ops+0x0/0x21 returned 0 after 0 usecs
[    1.403773] calling  irq_pm_init_ops+0x0/0x21 @ 1
[    1.403775] initcall irq_pm_init_ops+0x0/0x21 returned 0 after 0 usecs
[    1.403777] calling  klp_init+0x0/0x36 @ 1
[    1.403780] initcall klp_init+0x0/0x36 returned 0 after 0 usecs
[    1.403782] calling  proc_modules_init+0x0/0x2c @ 1
[    1.403785] initcall proc_modules_init+0x0/0x2c returned 0 after 0 usecs
[    1.403787] calling  timer_sysctl_init+0x0/0x28 @ 1
[    1.403790] initcall timer_sysctl_init+0x0/0x28 returned 0 after 1 usecs
[    1.403792] calling  timekeeping_init_ops+0x0/0x21 @ 1
[    1.403794] initcall timekeeping_init_ops+0x0/0x21 returned 0 after 0 usecs
[    1.403797] calling  init_clocksource_sysfs+0x0/0x31 @ 1
[    1.403814] initcall init_clocksource_sysfs+0x0/0x31 returned 0 after 16 usecs
[    1.403816] calling  init_timer_list_procfs+0x0/0x3f @ 1
[    1.403818] initcall init_timer_list_procfs+0x0/0x3f returned 0 after 0 usecs
[    1.403819] calling  alarmtimer_init+0x0/0xe7 @ 1
[    1.403837] initcall alarmtimer_init+0x0/0xe7 returned 0 after 16 usecs
[    1.403838] calling  init_posix_timers+0x0/0x37 @ 1
[    1.403842] initcall init_posix_timers+0x0/0x37 returned 0 after 2 usecs
[    1.403844] calling  clockevents_init_sysfs+0x0/0xd3 @ 1
[    1.403926] initcall clockevents_init_sysfs+0x0/0xd3 returned 0 after 80 usecs
[    1.403928] calling  proc_dma_init+0x0/0x2f @ 1
[    1.403930] initcall proc_dma_init+0x0/0x2f returned 0 after 0 usecs
[    1.403931] calling  kallsyms_init+0x0/0x2f @ 1
[    1.403933] initcall kallsyms_init+0x0/0x2f returned 0 after 0 usecs
[    1.403935] calling  pid_namespaces_init+0x0/0x4d @ 1
[    1.403948] initcall pid_namespaces_init+0x0/0x4d returned 0 after 11 usecs
[    1.403950] calling  audit_watch_init+0x0/0x4b @ 1
[    1.403951] initcall audit_watch_init+0x0/0x4b returned 0 after 0 usecs
[    1.403953] calling  audit_fsnotify_init+0x0/0x4e @ 1
[    1.403954] initcall audit_fsnotify_init+0x0/0x4e returned 0 after 0 usecs
[    1.403956] calling  audit_tree_init+0x0/0x81 @ 1
[    1.403958] initcall audit_tree_init+0x0/0x81 returned 0 after 0 usecs
[    1.403960] calling  seccomp_sysctl_init+0x0/0x43 @ 1
[    1.403963] initcall seccomp_sysctl_init+0x0/0x43 returned 0 after 1 usecs
[    1.403965] calling  utsname_sysctl_init+0x0/0x21 @ 1
[    1.403973] initcall utsname_sysctl_init+0x0/0x21 returned 0 after 7 usecs
[    1.403975] calling  init_tracepoints+0x0/0x35 @ 1
[    1.403977] initcall init_tracepoints+0x0/0x35 returned 0 after 0 usecs
[    1.403978] calling  stack_trace_init+0x0/0xb1 @ 1
[    1.403983] initcall stack_trace_init+0x0/0xb1 returned 0 after 3 usecs
[    1.403985] calling  init_mmio_trace+0x0/0x1a @ 1
[    1.403988] initcall init_mmio_trace+0x0/0x1a returned 0 after 1 usecs
[    1.403990] calling  init_blk_tracer+0x0/0x5e @ 1
[    1.403995] initcall init_blk_tracer+0x0/0x5e returned 0 after 3 usecs
[    1.403997] calling  perf_event_sysfs_init+0x0/0x9a @ 1
[    1.404175] initcall perf_event_sysfs_init+0x0/0x9a returned 0 after 175 usecs
[    1.404177] calling  system_trusted_keyring_init+0x0/0x103 @ 1
[    1.404180] Initialise system trusted keyrings
[    1.404206] initcall system_trusted_keyring_init+0x0/0x103 returned 0 after 26 usecs
[    1.404208] calling  blacklist_init+0x0/0xe0 @ 1
[    1.404211] Key type blacklist registered
[    1.404215] initcall blacklist_init+0x0/0xe0 returned 0 after 5 usecs
[    1.404217] calling  kswapd_init+0x0/0x7f @ 1
[    1.404286] initcall kswapd_init+0x0/0x7f returned 0 after 66 usecs
[    1.404289] calling  extfrag_debug_init+0x0/0x62 @ 1
[    1.404293] initcall extfrag_debug_init+0x0/0x62 returned 0 after 2 usecs
[    1.404295] calling  mm_compute_batch_init+0x0/0x2c @ 1
[    1.404297] initcall mm_compute_batch_init+0x0/0x2c returned 0 after 0 usecs
[    1.404299] calling  slab_proc_init+0x0/0x2f @ 1
[    1.404302] initcall slab_proc_init+0x0/0x2f returned 0 after 0 usecs
[    1.404304] calling  workingset_init+0x0/0x9a @ 1
[    1.404306] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[    1.404308] initcall workingset_init+0x0/0x9a returned 0 after 2 usecs
[    1.404310] calling  proc_vmalloc_init+0x0/0x3d @ 1
[    1.404313] initcall proc_vmalloc_init+0x0/0x3d returned 0 after 0 usecs
[    1.404315] calling  procswaps_init+0x0/0x2c @ 1
[    1.404317] initcall procswaps_init+0x0/0x2c returned 0 after 0 usecs
[    1.404319] calling  init_frontswap+0x0/0x9e @ 1
[    1.404327] initcall init_frontswap+0x0/0x9e returned 0 after 7 usecs
[    1.404328] calling  slab_sysfs_init+0x0/0x104 @ 1
[    1.405232] initcall slab_sysfs_init+0x0/0x104 returned 0 after 901 usecs
[    1.405235] calling  slab_debugfs_init+0x0/0x5b @ 1
[    1.405239] initcall slab_debugfs_init+0x0/0x5b returned 0 after 2 usecs
[    1.405241] calling  init_zbud+0x0/0x2d @ 1
[    1.405242] zbud: loaded
[    1.405243] initcall init_zbud+0x0/0x2d returned 0 after 1 usecs
[    1.405245] calling  zs_init+0x0/0x7f @ 1
[    1.405270] initcall zs_init+0x0/0x7f returned 0 after 23 usecs
[    1.405271] calling  fcntl_init+0x0/0x37 @ 1
[    1.405275] initcall fcntl_init+0x0/0x37 returned 0 after 1 usecs
[    1.405277] calling  proc_filesystems_init+0x0/0x2f @ 1
[    1.405279] initcall proc_filesystems_init+0x0/0x2f returned 0 after 0 usecs
[    1.405280] calling  start_dirtytime_writeback+0x0/0x37 @ 1
[    1.405283] initcall start_dirtytime_writeback+0x0/0x37 returned 0 after 1 usecs
[    1.405285] calling  dio_init+0x0/0x3a @ 1
[    1.405288] initcall dio_init+0x0/0x3a returned 0 after 0 usecs
[    1.405289] calling  dnotify_init+0x0/0xa5 @ 1
[    1.405310] initcall dnotify_init+0x0/0xa5 returned 0 after 18 usecs
[    1.405312] calling  fanotify_user_setup+0x0/0x14c @ 1
[    1.405317] initcall fanotify_user_setup+0x0/0x14c returned 0 after 4 usecs
[    1.405319] calling  userfaultfd_init+0x0/0x3b @ 1
[    1.405334] initcall userfaultfd_init+0x0/0x3b returned 0 after 13 usecs
[    1.405336] calling  aio_setup+0x0/0xa0 @ 1
[    1.405357] initcall aio_setup+0x0/0xa0 returned 0 after 19 usecs
[    1.405359] calling  io_uring_init+0x0/0x3a @ 1
[    1.405361] initcall io_uring_init+0x0/0x3a returned 0 after 0 usecs
[    1.405363] calling  mbcache_init+0x0/0x3e @ 1
[    1.405379] initcall mbcache_init+0x0/0x3e returned 0 after 14 usecs
[    1.405381] calling  init_devpts_fs+0x0/0x35 @ 1
[    1.405386] initcall init_devpts_fs+0x0/0x35 returned 0 after 3 usecs
[    1.405388] calling  ext4_init_fs+0x0/0x1dc @ 1
[    1.405517] initcall ext4_init_fs+0x0/0x1dc returned 0 after 127 usecs
[    1.405520] calling  journal_init+0x0/0x132 @ 1
[    1.405557] initcall journal_init+0x0/0x132 returned 0 after 35 usecs
[    1.405559] calling  init_squashfs_fs+0x0/0x78 @ 1
[    1.405576] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.405577] initcall init_squashfs_fs+0x0/0x78 returned 0 after 16 usecs
[    1.405579] calling  init_fat_fs+0x0/0x57 @ 1
[    1.405610] initcall init_fat_fs+0x0/0x57 returned 0 after 29 usecs
[    1.405612] calling  init_vfat_fs+0x0/0x1f @ 1
[    1.405614] initcall init_vfat_fs+0x0/0x1f returned 0 after 0 usecs
[    1.405616] calling  ecryptfs_init+0x0/0x1b1 @ 1
[    1.405760] initcall ecryptfs_init+0x0/0x1b1 returned 0 after 142 usecs
[    1.405762] calling  init_nls_cp437+0x0/0x21 @ 1
[    1.405765] initcall init_nls_cp437+0x0/0x21 returned 0 after 0 usecs
[    1.405767] calling  init_nls_iso8859_1+0x0/0x21 @ 1
[    1.405768] initcall init_nls_iso8859_1+0x0/0x21 returned 0 after 0 usecs
[    1.405770] calling  init_nls_utf8+0x0/0x34 @ 1
[    1.405773] initcall init_nls_utf8+0x0/0x34 returned 0 after 0 usecs
[    1.405774] calling  init_autofs_fs+0x0/0x33 @ 1
[    1.405789] initcall init_autofs_fs+0x0/0x33 returned 0 after 12 usecs
[    1.405791] calling  fuse_init+0x0/0x1b3 @ 1
[    1.405793] fuse: init (API version 7.36)
[    1.405840] initcall fuse_init+0x0/0x1b3 returned 0 after 47 usecs
[    1.405842] calling  init_xfs_fs+0x0/0x1f7 @ 1
[    1.405844] SGI XFS with ACLs, security attributes, realtime, quota, no debug enabled
[    1.406180] initcall init_xfs_fs+0x0/0x1f7 returned 0 after 336 usecs
[    1.406182] calling  efivarfs_init+0x0/0x31 @ 1
[    1.406183] initcall efivarfs_init+0x0/0x31 returned 0 after 0 usecs
[    1.406185] calling  ipc_init+0x0/0x32 @ 1
[    1.406193] initcall ipc_init+0x0/0x32 returned 0 after 7 usecs
[    1.406194] calling  ipc_sysctl_init+0x0/0x38 @ 1
[    1.406203] initcall ipc_sysctl_init+0x0/0x38 returned 0 after 7 usecs
[    1.406204] calling  init_mqueue_fs+0x0/0xed @ 1
[    1.406239] initcall init_mqueue_fs+0x0/0xed returned 0 after 33 usecs
[    1.406241] calling  key_proc_init+0x0/0x71 @ 1
[    1.406243] initcall key_proc_init+0x0/0x71 returned 0 after 0 usecs
[    1.406244] calling  selinux_nf_ip_init+0x0/0x5a @ 1
[    1.406246] initcall selinux_nf_ip_init+0x0/0x5a returned 0 after 0 usecs
[    1.406247] calling  init_sel_fs+0x0/0x128 @ 1
[    1.406249] initcall init_sel_fs+0x0/0x128 returned 0 after 0 usecs
[    1.406250] calling  selnl_init+0x0/0x84 @ 1
[    1.406254] initcall selnl_init+0x0/0x84 returned 0 after 3 usecs
[    1.406256] calling  sel_netif_init+0x0/0x4f @ 1
[    1.406257] initcall sel_netif_init+0x0/0x4f returned 0 after 0 usecs
[    1.406259] calling  sel_netnode_init+0x0/0x48 @ 1
[    1.406260] initcall sel_netnode_init+0x0/0x48 returned 0 after 0 usecs
[    1.406261] calling  sel_netport_init+0x0/0x48 @ 1
[    1.406263] initcall sel_netport_init+0x0/0x48 returned 0 after 0 usecs
[    1.406264] calling  aurule_init+0x0/0x38 @ 1
[    1.406266] initcall aurule_init+0x0/0x38 returned 0 after 0 usecs
[    1.406267] calling  init_smk_fs+0x0/0x123 @ 1
[    1.406268] initcall init_smk_fs+0x0/0x123 returned 0 after 0 usecs
[    1.406270] calling  smack_nf_ip_init+0x0/0x3a @ 1
[    1.406271] initcall smack_nf_ip_init+0x0/0x3a returned 0 after 0 usecs
[    1.406272] calling  apparmor_nf_ip_init+0x0/0x43 @ 1
[    1.406274] initcall apparmor_nf_ip_init+0x0/0x43 returned 0 after 0 usecs
[    1.406276] calling  crc64_rocksoft_init+0x0/0x1f @ 1
[    1.406284] initcall crc64_rocksoft_init+0x0/0x1f returned 0 after 6 usecs
[    1.406285] calling  jent_mod_init+0x0/0x3d @ 1
[    1.411626] initcall jent_mod_init+0x0/0x3d returned 0 after 5339 usecs
[    1.411628] calling  asymmetric_key_init+0x0/0x1f @ 1
[    1.411631] Key type asymmetric registered
[    1.411632] initcall asymmetric_key_init+0x0/0x1f returned 0 after 1 usecs
[    1.411633] calling  x509_key_init+0x0/0x29 @ 1
[    1.411635] Asymmetric key parser 'x509' registered
[    1.411636] initcall x509_key_init+0x0/0x29 returned 0 after 1 usecs
[    1.411638] calling  crypto_kdf108_init+0x0/0x13b @ 1
[    1.844455] Freeing initrd memory: 50908K
[    1.846453] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[    1.846457] initcall crypto_kdf108_init+0x0/0x13b returned 0 after 434817 usecs
[    1.846464] calling  blkdev_init+0x0/0x2e @ 1
[    1.846481] initcall blkdev_init+0x0/0x2e returned 0 after 15 usecs
[    1.846483] calling  proc_genhd_init+0x0/0x4f @ 1
[    1.846489] initcall proc_genhd_init+0x0/0x4f returned 0 after 4 usecs
[    1.846491] calling  bsg_init+0x0/0xb1 @ 1
[    1.846503] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    1.846504] initcall bsg_init+0x0/0xb1 returned 0 after 11 usecs
[    1.846506] calling  throtl_init+0x0/0x4a @ 1
[    1.846535] initcall throtl_init+0x0/0x4a returned 0 after 27 usecs
[    1.846537] calling  deadline_init+0x0/0x1f @ 1
[    1.846539] io scheduler mq-deadline registered
[    1.846540] initcall deadline_init+0x0/0x1f returned 0 after 1 usecs
[    1.846542] calling  bfq_init+0x0/0x92 @ 1
[    1.846558] io scheduler bfq registered
[    1.846558] initcall bfq_init+0x0/0x92 returned 0 after 14 usecs
[    1.846560] calling  blake2s_mod_init+0x0/0x15 @ 1
[    1.846562] initcall blake2s_mod_init+0x0/0x15 returned 0 after 0 usecs
[    1.846563] calling  btree_module_init+0x0/0x32 @ 1
[    1.846567] initcall btree_module_init+0x0/0x32 returned 0 after 2 usecs
[    1.846569] calling  crc_t10dif_mod_init+0x0/0x58 @ 1
[    1.846650] initcall crc_t10dif_mod_init+0x0/0x58 returned 0 after 78 usecs
[    1.846652] calling  libcrc32c_mod_init+0x0/0x33 @ 1
[    1.846692] initcall libcrc32c_mod_init+0x0/0x33 returned 0 after 37 usecs
[    1.846694] calling  crc64_rocksoft_mod_init+0x0/0x58 @ 1
[    1.846737] initcall crc64_rocksoft_mod_init+0x0/0x58 returned 0 after 41 usecs
[    1.846740] calling  percpu_counter_startup+0x0/0x5e @ 1
[    1.846843] initcall percpu_counter_startup+0x0/0x5e returned 0 after 101 usecs
[    1.846846] calling  err_inject_init+0x0/0x2c @ 1
[    1.846851] initcall err_inject_init+0x0/0x2c returned 0 after 3 usecs
[    1.846853] calling  digsig_init+0x0/0x43 @ 1
[    1.846881] initcall digsig_init+0x0/0x43 returned 0 after 26 usecs
[    1.846883] calling  sg_pool_init+0x0/0xcb @ 1
[    1.846911] initcall sg_pool_init+0x0/0xcb returned 0 after 26 usecs
[    1.846913] calling  simple_pm_bus_driver_init+0x0/0x21 @ 1
[    1.846947] initcall simple_pm_bus_driver_init+0x0/0x21 returned 0 after 31 usecs
[    1.846950] calling  phy_core_init+0x0/0x58 @ 1
[    1.846953] initcall phy_core_init+0x0/0x58 returned 0 after 1 usecs
[    1.846956] calling  amd_gpio_driver_init+0x0/0x21 @ 1
[    1.846984] initcall amd_gpio_driver_init+0x0/0x21 returned 0 after 26 usecs
[    1.846986] calling  pcie_portdrv_init+0x0/0x5b @ 1
[    1.847328] pcieport 0000:00:07.0: PME: Signaling with IRQ 123
[    1.847351] pcieport 0000:00:07.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.847631] pcieport 0000:00:07.1: PME: Signaling with IRQ 124
[    1.847648] pcieport 0000:00:07.1: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.847845] pcieport 0000:00:07.2: PME: Signaling with IRQ 125
[    1.847864] pcieport 0000:00:07.2: pciehp: Slot #5 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.848082] pcieport 0000:00:07.3: PME: Signaling with IRQ 126
[    1.848094] pcieport 0000:00:07.3: pciehp: Slot #6 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[    1.848197] initcall pcie_portdrv_init+0x0/0x5b returned 0 after 1209 usecs
[    1.848200] calling  pci_proc_init+0x0/0x7e @ 1
[    1.848220] initcall pci_proc_init+0x0/0x7e returned 0 after 17 usecs
[    1.848222] calling  pci_hotplug_init+0x0/0x3e @ 1
[    1.848224] initcall pci_hotplug_init+0x0/0x3e returned 0 after 0 usecs
[    1.848227] calling  shpcd_init+0x0/0x66 @ 1
[    1.848234] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    1.848235] initcall shpcd_init+0x0/0x66 returned 0 after 6 usecs
[    1.848236] calling  pci_ep_cfs_init+0x0/0xdb @ 1
[    1.848259] initcall pci_ep_cfs_init+0x0/0xdb returned 0 after 21 usecs
[    1.848260] calling  pci_epc_init+0x0/0x4f @ 1
[    1.848263] initcall pci_epc_init+0x0/0x4f returned 0 after 1 usecs
[    1.848265] calling  pci_epf_init+0x0/0x37 @ 1
[    1.848269] initcall pci_epf_init+0x0/0x37 returned 0 after 3 usecs
[    1.848270] calling  vmd_drv_init+0x0/0x28 @ 1
[    1.848851] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[    1.848854] pci_bus 10000:e0: root bus resource [bus e0-ff]
[    1.848856] pci_bus 10000:e0: root bus resource [mem 0x52000000-0x53ffffff]
[    1.848857] pci_bus 10000:e0: root bus resource [mem 0x6080102000-0x60801fffff 64bit]
[    1.848880] pci 10000:e0:06.0: calling  quirk_cmd_compl+0x0/0x70 @ 1
[    1.848885] pci 10000:e0:06.0: quirk_cmd_compl+0x0/0x70 took 0 usecs
[    1.848887] pci 10000:e0:06.0: calling  quirk_no_aersid+0x0/0x40 @ 1
[    1.848891] pci 10000:e0:06.0: quirk_no_aersid+0x0/0x40 took 0 usecs
[    1.848893] pci 10000:e0:06.0: [8086:a74d] type 01 class 0x060400
[    1.848928] pci 10000:e0:06.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    1.848933] pci 10000:e0:06.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.848935] pci 10000:e0:06.0: calling  pci_fixup_transparent_bridge+0x0/0x30 @ 1
[    1.848937] pci 10000:e0:06.0: pci_fixup_transparent_bridge+0x0/0x30 took 0 usecs
[    1.848974] pci 10000:e0:06.0: PME# supported from D0 D3hot D3cold
[    1.849017] pci 10000:e0:06.0: PTM enabled (root), 4ns granularity
[    1.849089] pci 10000:e0:06.0: Adding to iommu group 12
[    1.849109] pci 10000:e0:06.0: Primary bus is hard wired to 0
[    1.849145] pci 10000:e1:00.0: [8086:f1a8] type 00 class 0x010802
[    1.849173] pci 10000:e1:00.0: reg 0x10: [mem 0x52000000-0x52003fff 64bit]
[    1.849270] pci 10000:e1:00.0: calling  quirk_igfx_skip_te_disable+0x0/0x60 @ 1
[    1.849273] pci 10000:e1:00.0: quirk_igfx_skip_te_disable+0x0/0x60 took 0 usecs
[    1.849401] pci 10000:e1:00.0: Adding to iommu group 12
[    1.849437] pci 10000:e0:06.0: PCI bridge to [bus e1]
[    1.849439] pci 10000:e0:06.0:   bridge window [io  0x0000-0x0fff]
[    1.849441] pci 10000:e0:06.0:   bridge window [mem 0x52000000-0x520fffff]
[    1.849446] pci 10000:e0:06.0: Primary bus is hard wired to 0
[    1.875749] pci 10000:e0:06.0: BAR 14: assigned [mem 0x52000000-0x520fffff]
[    1.875752] pci 10000:e0:06.0: BAR 13: no space for [io  size 0x1000]
[    1.875755] pci 10000:e0:06.0: BAR 13: failed to assign [io  size 0x1000]
[    1.875758] pci 10000:e1:00.0: BAR 0: assigned [mem 0x52000000-0x52003fff 64bit]
[    1.875772] pci 10000:e0:06.0: PCI bridge to [bus e1]
[    1.875776] pci 10000:e0:06.0:   bridge window [mem 0x52000000-0x520fffff]
[    1.875796] pcieport 10000:e0:06.0: can't derive routing for PCI INT D
[    1.875798] pcieport 10000:e0:06.0: PCI INT D: no GSI
[    1.875859] pcieport 10000:e0:06.0: PME: Signaling with IRQ 146
[    1.875918] vmd 0000:00:0e.0: Bound to PCI domain 10000
[    1.875939] initcall vmd_drv_init+0x0/0x28 returned 0 after 27667 usecs
[    1.875942] calling  dw_plat_pcie_driver_init+0x0/0x21 @ 1
[    1.875969] initcall dw_plat_pcie_driver_init+0x0/0x21 returned 0 after 25 usecs
[    1.875971] calling  imsttfb_init+0x0/0x11e @ 1
[    1.875983] initcall imsttfb_init+0x0/0x11e returned 0 after 11 usecs
[    1.875985] calling  asiliantfb_init+0x0/0x41 @ 1
[    1.875989] initcall asiliantfb_init+0x0/0x41 returned 0 after 3 usecs
[    1.875991] calling  vesafb_driver_init+0x0/0x21 @ 1
[    1.875996] initcall vesafb_driver_init+0x0/0x21 returned 0 after 3 usecs
[    1.875997] calling  efifb_driver_init+0x0/0x21 @ 1
[    1.876002] initcall efifb_driver_init+0x0/0x21 returned 0 after 3 usecs
[    1.876003] calling  simplefb_driver_init+0x0/0x21 @ 1
[    1.876009] initcall simplefb_driver_init+0x0/0x21 returned 0 after 4 usecs
[    1.876010] calling  intel_idle_init+0x0/0x8eb @ 1
[    1.876249] Monitor-Mwait will be used to enter C-1 state
[    1.876255] Monitor-Mwait will be used to enter C-2 state
[    1.876258] Monitor-Mwait will be used to enter C-3 state
[    1.876261] ACPI: \_SB_.PR00: Found 3 idle states
[    1.877124] initcall intel_idle_init+0x0/0x8eb returned 0 after 1113 usecs
[    1.877126] calling  ipmi_init_msghandler_mod+0x0/0x4d @ 1
[    1.877128] IPMI message handler: version 39.2
[    1.877136] initcall ipmi_init_msghandler_mod+0x0/0x4d returned 0 after 7 usecs
[    1.877138] calling  init_ipmi_devintf+0x0/0x108 @ 1
[    1.877139] ipmi device interface
[    1.877259] initcall init_ipmi_devintf+0x0/0x108 returned 0 after 119 usecs
[    1.877261] calling  ged_driver_init+0x0/0x21 @ 1
[    1.877285] initcall ged_driver_init+0x0/0x21 returned 0 after 21 usecs
[    1.877287] calling  acpi_ipmi_init+0x0/0x86 @ 1
[    1.878742] initcall acpi_ipmi_init+0x0/0x86 returned 0 after 1452 usecs
[    1.878743] calling  acpi_ac_init+0x0/0x4b @ 1
[    1.878879] ACPI: AC: AC Adapter [ADP1] (on-line)
[    1.878889] initcall acpi_ac_init+0x0/0x4b returned 0 after 143 usecs
[    1.878890] calling  acpi_button_driver_init+0x0/0x60 @ 1
[    1.878912] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:1e/PNP0C09:00/PNP0C0D:00/input/input0
[    1.878933] ACPI: button: Lid Switch [LID0]
[    1.878963] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    1.878978] ACPI: button: Power Button [PWRB]
[    1.878988] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[    1.879001] ACPI: button: Sleep Button [SLPB]
[    1.879007] initcall acpi_button_driver_init+0x0/0x60 returned 0 after 115 usecs
[    1.879009] calling  acpi_fan_driver_init+0x0/0x21 @ 1
[    1.879130] initcall acpi_fan_driver_init+0x0/0x21 returned 0 after 118 usecs
[    1.879132] calling  acpi_video_init+0x0/0xb8 @ 1
[    1.879138] initcall acpi_video_init+0x0/0xb8 returned 0 after 4 usecs
[    1.879139] calling  acpi_processor_driver_init+0x0/0xbd @ 1
[    1.881501] initcall acpi_processor_driver_init+0x0/0xbd returned 0 after 2359 usecs
[    1.881504] calling  acpi_thermal_init+0x0/0x87 @ 1
[    1.888937] thermal LNXTHERM:00: registered as thermal_zone0
[    1.888940] ACPI: thermal: Thermal Zone [TZ00] (42 C)
[    1.888947] initcall acpi_thermal_init+0x0/0x87 returned 0 after 7441 usecs
[    1.889166] calling  hmat_init+0x0/0x2b5 @ 1
[    1.889168] initcall hmat_init+0x0/0x2b5 returned 0 after 0 usecs
[    1.889170] calling  acpi_battery_init+0x0/0x40 @ 1
[    1.889173] initcall acpi_battery_init+0x0/0x40 returned 0 after 1 usecs
[    1.889175] calling  acpi_hed_driver_init+0x0/0x1f @ 1
[    1.889196] initcall acpi_hed_driver_init+0x0/0x1f returned 0 after 19 usecs
[    1.889198] calling  acpi_custom_method_init+0x0/0x3d @ 1
[    1.889204] initcall acpi_custom_method_init+0x0/0x3d returned 0 after 4 usecs
[    1.889205] calling  bgrt_init+0x0/0xc2 @ 1
[    1.889220] initcall bgrt_init+0x0/0xc2 returned 0 after 13 usecs
[    1.889221] calling  acpi_aml_init+0x0/0xcf @ 1
[    1.889224] initcall acpi_aml_init+0x0/0xcf returned 0 after 0 usecs
[    1.889225] calling  erst_init+0x0/0x303 @ 1
[    1.889227] initcall erst_init+0x0/0x303 returned 0 after 0 usecs
[    1.889228] calling  erst_dbg_init+0x0/0x3b @ 1
[    1.889230] ERST DBG: ERST support is disabled.
[    1.889231] initcall erst_dbg_init+0x0/0x3b returned -19 after 0 usecs
[    1.889232] calling  acpi_configfs_init+0x0/0x70 @ 1
[    1.889239] initcall acpi_configfs_init+0x0/0x70 returned 0 after 5 usecs
[    1.889241] calling  intel_bxtwc_pmic_opregion_driver_init+0x0/0x21 @ 1
[    1.889248] initcall intel_bxtwc_pmic_opregion_driver_init+0x0/0x21 returned 0 after 5 usecs
[    1.889250] calling  dptf_power_driver_init+0x0/0x21 @ 1
[    1.889259] initcall dptf_power_driver_init+0x0/0x21 returned 0 after 6 usecs
[    1.889260] calling  pch_fivr_driver_init+0x0/0x21 @ 1
[    1.889267] initcall pch_fivr_driver_init+0x0/0x21 returned 0 after 4 usecs
[    1.889268] calling  of_fixed_factor_clk_driver_init+0x0/0x21 @ 1
[    1.889276] initcall of_fixed_factor_clk_driver_init+0x0/0x21 returned 0 after 5 usecs
[    1.889278] calling  of_fixed_clk_driver_init+0x0/0x21 @ 1
[    1.889282] initcall of_fixed_clk_driver_init+0x0/0x21 returned 0 after 3 usecs
[    1.889284] calling  gpio_clk_driver_init+0x0/0x21 @ 1
[    1.889289] initcall gpio_clk_driver_init+0x0/0x21 returned 0 after 3 usecs
[    1.889291] calling  plt_clk_driver_init+0x0/0x21 @ 1
[    1.889295] initcall plt_clk_driver_init+0x0/0x21 returned 0 after 3 usecs
[    1.889297] calling  fch_clk_driver_init+0x0/0x21 @ 1
[    1.889302] initcall fch_clk_driver_init+0x0/0x21 returned 0 after 2 usecs
[    1.889303] calling  idma64_platform_driver_init+0x0/0x21 @ 1
[    1.889308] initcall idma64_platform_driver_init+0x0/0x21 returned 0 after 3 usecs
[    1.889310] calling  dsa_bus_init+0x0/0x1f @ 1
[    1.889314] initcall dsa_bus_init+0x0/0x1f returned 0 after 2 usecs
[    1.889316] calling  dsa_drv_init+0x0/0x28 @ 1
[    1.889320] initcall dsa_drv_init+0x0/0x28 returned 0 after 2 usecs
[    1.889322] calling  virtio_mmio_init+0x0/0x21 @ 1
[    1.889330] initcall virtio_mmio_init+0x0/0x21 returned 0 after 6 usecs
[    1.889332] calling  virtio_pci_driver_init+0x0/0x28 @ 1
[    1.889339] initcall virtio_pci_driver_init+0x0/0x28 returned 0 after 5 usecs
[    1.889341] calling  virtio_balloon_driver_init+0x0/0x1f @ 1
[    1.889347] initcall virtio_balloon_driver_init+0x0/0x1f returned 0 after 4 usecs
[    1.889349] calling  virtio_input_driver_init+0x0/0x1f @ 1
[    1.889352] initcall virtio_input_driver_init+0x0/0x1f returned 0 after 1 usecs
[    1.889353] calling  xenbus_probe_initcall+0x0/0x7e @ 1
[    1.889407] ACPI: battery: Slot [BAT0] (battery present)
[    1.889444] ACPI: battery: Slot [BAT1] (battery absent)
[    1.889477] ACPI: battery: Slot [BAT2] (battery absent)
[    1.889544] initcall xenbus_probe_initcall+0x0/0x7e returned 0 after 188 usecs
[    1.889546] calling  xenbus_init+0x0/0x43 @ 1
[    1.889548] initcall xenbus_init+0x0/0x43 returned -19 after 0 usecs
[    1.889550] calling  xenbus_backend_init+0x0/0x4c @ 1
[    1.889552] initcall xenbus_backend_init+0x0/0x4c returned -19 after 0 usecs
[    1.889555] calling  hyper_sysfs_init+0x0/0x188 @ 1
[    1.889557] initcall hyper_sysfs_init+0x0/0x188 returned -19 after 0 usecs
[    1.889559] calling  hypervisor_subsys_init+0x0/0x32 @ 1
[    1.889560] initcall hypervisor_subsys_init+0x0/0x32 returned -19 after 0 usecs
[    1.889562] calling  platform_driver_init+0x0/0x28 @ 1
[    1.889567] initcall platform_driver_init+0x0/0x28 returned 0 after 3 usecs
[    1.889569] calling  xen_late_init_mcelog+0x0/0x65 @ 1
[    1.889571] initcall xen_late_init_mcelog+0x0/0x65 returned -19 after 0 usecs
[    1.889573] calling  xen_acpi_processor_init+0x0/0x1bc @ 1
[    1.889575] initcall xen_acpi_processor_init+0x0/0x1bc returned -19 after 0 usecs
[    1.889577] calling  n_null_init+0x0/0x27 @ 1
[    1.889578] initcall n_null_init+0x0/0x27 returned 0 after 0 usecs
[    1.889579] calling  pty_init+0x0/0x321 @ 1
[    1.889645] initcall pty_init+0x0/0x321 returned 0 after 64 usecs
[    1.889646] calling  sysrq_init+0x0/0x75 @ 1
[    1.889649] initcall sysrq_init+0x0/0x75 returned 0 after 2 usecs
[    1.889650] calling  xen_hvc_init+0x0/0x251 @ 1
[    1.889652] initcall xen_hvc_init+0x0/0x251 returned -19 after 0 usecs
[    1.889653] calling  serial8250_init+0x0/0x19e @ 1
[    1.889655] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.890973] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.892252] initcall serial8250_init+0x0/0x19e returned 0 after 2597 usecs
[    1.892254] calling  serial_pci_driver_init+0x0/0x28 @ 1
[    1.892280] serial 0000:00:12.0: enabling device (0000 -> 0002)
[    1.892495] serial 0000:00:16.3: enabling device (0000 -> 0003)
[    1.892655] serial 0000:00:16.3: GPIO lookup for consumer rs485-term
[    1.892657] serial 0000:00:16.3: using lookup tables for GPIO lookup
[    1.892658] serial 0000:00:16.3: No GPIO consumer rs485-term found
[    1.893806] 0000:00:16.3: ttyS4 at I/O 0x3060 (irq = 19, base_baud = 115200) is a 16550A
[    1.893854] initcall serial_pci_driver_init+0x0/0x28 returned 0 after 1599 usecs
[    1.893856] calling  pericom8250_pci_driver_init+0x0/0x28 @ 1
[    1.893861] initcall pericom8250_pci_driver_init+0x0/0x28 returned 0 after 3 usecs
[    1.893862] calling  max310x_uart_init+0x0/0x54 @ 1
[    1.893867] initcall max310x_uart_init+0x0/0x54 returned 0 after 3 usecs
[    1.893868] calling  sccnxp_uart_driver_init+0x0/0x21 @ 1
[    1.893874] initcall sccnxp_uart_driver_init+0x0/0x21 returned 0 after 4 usecs
[    1.893875] calling  init_kgdboc+0x0/0x73 @ 1
[    1.893889] initcall init_kgdboc+0x0/0x73 returned 0 after 12 usecs
[    1.893891] calling  random_sysctls_init+0x0/0x2f @ 1
[    1.893898] initcall random_sysctls_init+0x0/0x2f returned 0 after 6 usecs
[    1.893899] calling  ttyprintk_init+0x0/0x103 @ 1
[    1.893914] initcall ttyprintk_init+0x0/0x103 returned 0 after 13 usecs
[    1.893915] calling  virtio_console_init+0x0/0xf9 @ 1
[    1.893924] initcall virtio_console_init+0x0/0xf9 returned 0 after 7 usecs
[    1.893925] calling  hpet_init+0x0/0x79 @ 1
[    1.893989] hpet_acpi_add: no address or irqs in _CRS
[    1.894009] initcall hpet_init+0x0/0x79 returned 0 after 83 usecs
[    1.894011] calling  agp_init+0x0/0x38 @ 1
[    1.894012] Linux agpgart interface v0.103
[    1.894013] initcall agp_init+0x0/0x38 returned 0 after 0 usecs
[    1.894014] calling  agp_amd64_mod_init+0x0/0x32 @ 1
[    1.894023] initcall agp_amd64_mod_init+0x0/0x32 returned -19 after 7 usecs
[    1.894025] calling  agp_intel_init+0x0/0x3b @ 1
[    1.894030] initcall agp_intel_init+0x0/0x3b returned 0 after 3 usecs
[    1.894031] calling  agp_via_init+0x0/0x3b @ 1
[    1.894036] initcall agp_via_init+0x0/0x3b returned 0 after 3 usecs
[    1.894038] calling  init_tis+0x0/0xdf @ 1
[    1.894046] initcall init_tis+0x0/0xdf returned 0 after 7 usecs
[    1.894048] calling  crb_acpi_driver_init+0x0/0x1f @ 1
[    1.894066] initcall crb_acpi_driver_init+0x0/0x1f returned 0 after 16 usecs
[    1.894067] calling  vtpm_module_init+0x0/0x7d @ 1
[    1.894216] initcall vtpm_module_init+0x0/0x7d returned 0 after 147 usecs
[    1.894217] calling  drm_core_init+0x0/0xc2 @ 1
[    1.894513] ACPI: bus type drm_connector registered
[    1.894555] initcall drm_core_init+0x0/0xc2 returned 0 after 336 usecs
[    1.894557] calling  drm_buddy_module_init+0x0/0x3e @ 1
[    1.894560] initcall drm_buddy_module_init+0x0/0x3e returned 0 after 1 usecs
[    1.894562] calling  drm_display_helper_module_init+0x0/0x18 @ 1
[    1.894565] initcall drm_display_helper_module_init+0x0/0x18 returned 0 after 1 usecs
[    1.894567] calling  i915_init+0x0/0x8d @ 1
[    1.895496] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    1.895499] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.895529] i915 0000:00:02.0: [drm] Transparent Hugepage mode 'huge=within_size'
[    1.896074] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.896111] i915 0000:00:02.0: Direct firmware load for i915/adlp_dmc_ver2_16.bin failed with error -2
[    1.896113] i915 0000:00:02.0: [drm] Failed to load DMC firmware i915/adlp_dmc_ver2_16.bin. Disabling runtime power management.
[    1.896115] i915 0000:00:02.0: [drm] DMC firmware homepage: https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
[    1.912025] i915 0000:00:02.0: GuC firmware i915/adlp_guc_70.1.1.bin: fetch failed with error -2
[    1.912029] i915 0000:00:02.0: Please file a bug on drm/i915; see https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs for details.
[    1.912031] i915 0000:00:02.0: [drm] GuC firmware(s) can be downloaded from https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git/tree/i915
[    2.011729] i915 0000:00:02.0: [drm] GuC firmware i915/adlp_guc_70.1.1.bin version 0.0
[    2.011745] i915 0000:00:02.0: GuC initialization failed -2
[    2.011747] i915 0000:00:02.0: Enabling uc failed (-5)
[    2.011748] i915 0000:00:02.0: Failed to initialize GPU, declaring it wedged!
[    2.011916] i915 0000:00:02.0: [drm:add_taint_for_CI] CI tainted:0x9 by intel_gt_set_wedged_on_init+0x4c/0x60
[    3.264095] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    3.264968] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    3.265310] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
[    3.265365] initcall i915_init+0x0/0x8d returned 0 after 1370797 usecs
[    3.265371] calling  virtio_gpu_driver_init+0x0/0x1f @ 1
[    3.265390] initcall virtio_gpu_driver_init+0x0/0x1f returned 0 after 4 usecs
[    3.265392] calling  cn_proc_init+0x0/0x43 @ 1
[    3.265394] initcall cn_proc_init+0x0/0x43 returned 0 after 0 usecs
[    3.265396] calling  topology_sysfs_init+0x0/0x3a @ 1
[    3.265451] initcall topology_sysfs_init+0x0/0x3a returned 0 after 53 usecs
[    3.265453] calling  cacheinfo_sysfs_init+0x0/0x3a @ 1
[    3.266689] initcall cacheinfo_sysfs_init+0x0/0x3a returned 0 after 1234 usecs
[    3.266694] calling  devcoredump_init+0x0/0x26 @ 1
[    3.266700] initcall devcoredump_init+0x0/0x26 returned 0 after 3 usecs
[    3.266702] calling  loop_init+0x0/0xfd @ 1
[    3.268115] loop: module loaded
[    3.268117] initcall loop_init+0x0/0xfd returned 0 after 1412 usecs
[    3.268119] calling  virtio_blk_init+0x0/0x84 @ 1
[    3.268125] initcall virtio_blk_init+0x0/0x84 returned 0 after 3 usecs
[    3.268127] calling  xlblk_init+0x0/0x135 @ 1
[    3.268129] initcall xlblk_init+0x0/0x135 returned -19 after 0 usecs
[    3.268131] calling  htcpld_core_init+0x0/0x3a @ 1
[    3.268147] initcall htcpld_core_init+0x0/0x3a returned -19 after 14 usecs
[    3.268149] calling  tps65912_i2c_driver_init+0x0/0x21 @ 1
[    3.268154] initcall tps65912_i2c_driver_init+0x0/0x21 returned 0 after 2 usecs
[    3.268156] calling  tps65912_spi_driver_init+0x0/0x21 @ 1
[    3.268162] initcall tps65912_spi_driver_init+0x0/0x21 returned 0 after 4 usecs
[    3.268164] calling  twl_driver_init+0x0/0x21 @ 1
[    3.268168] initcall twl_driver_init+0x0/0x21 returned 0 after 2 usecs
[    3.268170] calling  twl4030_audio_driver_init+0x0/0x21 @ 1
[    3.268176] initcall twl4030_audio_driver_init+0x0/0x21 returned 0 after 4 usecs
[    3.268178] calling  twl6040_driver_init+0x0/0x21 @ 1
[    3.268182] initcall twl6040_driver_init+0x0/0x21 returned 0 after 2 usecs
[    3.268184] calling  da9063_i2c_driver_init+0x0/0x21 @ 1
[    3.268188] initcall da9063_i2c_driver_init+0x0/0x21 returned 0 after 2 usecs
[    3.268190] calling  max14577_i2c_init+0x0/0x21 @ 1
[    3.268193] initcall max14577_i2c_init+0x0/0x21 returned 0 after 2 usecs
[    3.268195] calling  max77693_i2c_driver_init+0x0/0x21 @ 1
[    3.268199] initcall max77693_i2c_driver_init+0x0/0x21 returned 0 after 1 usecs
[    3.268201] calling  adp5520_driver_init+0x0/0x21 @ 1
[    3.268205] initcall adp5520_driver_init+0x0/0x21 returned 0 after 1 usecs
[    3.268207] calling  lpc_ich_driver_init+0x0/0x28 @ 1
[    3.268222] initcall lpc_ich_driver_init+0x0/0x28 returned 0 after 13 usecs
[    3.268224] calling  sec_pmic_driver_init+0x0/0x21 @ 1
[    3.268228] initcall sec_pmic_driver_init+0x0/0x21 returned 0 after 2 usecs
[    3.268230] calling  intel_soc_pmic_i2c_driver_init+0x0/0x21 @ 1
[    3.268234] initcall intel_soc_pmic_i2c_driver_init+0x0/0x21 returned 0 after 2 usecs
[    3.268236] calling  e820_pmem_driver_init+0x0/0x21 @ 1
[    3.268242] initcall e820_pmem_driver_init+0x0/0x21 returned 0 after 4 usecs
[    3.268244] calling  virtio_scsi_init+0x0/0xcf @ 1
[    3.268256] initcall virtio_scsi_init+0x0/0xcf returned 0 after 9 usecs
[    3.268258] calling  init_sd+0x0/0x180 @ 1
[    3.268264] initcall init_sd+0x0/0x180 returned 0 after 4 usecs
[    3.268266] calling  init_sg+0x0/0x1f3 @ 1
[    3.268275] initcall init_sg+0x0/0x1f3 returned 0 after 6 usecs
[    3.268276] calling  nvme_core_init+0x0/0x1b3 @ 1
[    3.268514] initcall nvme_core_init+0x0/0x1b3 returned 0 after 235 usecs
[    3.268517] calling  nvme_init+0x0/0x28 @ 1
[    3.268553] nvme nvme0: pci function 10000:e1:00.0
[    3.268563] initcall nvme_init+0x0/0x28 returned 0 after 44 usecs
[    3.268565] calling  nvmf_init+0x0/0x176 @ 1
[    3.268584] initcall nvmf_init+0x0/0x176 returned 0 after 17 usecs
[    3.268586] calling  nvme_fc_init_module+0x0/0xda @ 1
[    3.268650] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[    3.268654] nvme 10000:e1:00.0: PCI INT A: not connected
[    3.268676] initcall nvme_fc_init_module+0x0/0xda returned 0 after 88 usecs
[    3.268682] calling  nvme_tcp_init_module+0x0/0x47 @ 1
[    3.268698] initcall nvme_tcp_init_module+0x0/0x47 returned 0 after 13 usecs
[    3.268700] calling  nvmet_init+0x0/0xcd @ 1
[    3.268749] initcall nvmet_init+0x0/0xcd returned 0 after 47 usecs
[    3.268751] calling  nvme_loop_init_module+0x0/0x47 @ 1
[    3.268754] initcall nvme_loop_init_module+0x0/0x47 returned 0 after 0 usecs
[    3.268756] calling  nvmet_fc_init_module+0x0/0x1f @ 1
[    3.268758] initcall nvmet_fc_init_module+0x0/0x1f returned 0 after 0 usecs
[    3.268760] calling  fcloop_init+0x0/0xa4 @ 1
[    3.268770] initcall fcloop_init+0x0/0xa4 returned 0 after 7 usecs
[    3.268772] calling  nvmet_tcp_init+0x0/0x59 @ 1
[    3.268776] initcall nvmet_tcp_init+0x0/0x59 returned 0 after 1 usecs
[    3.268778] calling  ahci_pci_driver_init+0x0/0x28 @ 1
[    3.268793] initcall ahci_pci_driver_init+0x0/0x28 returned 0 after 13 usecs
[    3.268795] calling  ahci_driver_init+0x0/0x21 @ 1
[    3.268805] initcall ahci_driver_init+0x0/0x21 returned 0 after 8 usecs
[    3.268807] calling  piix_init+0x0/0x36 @ 1
[    3.268815] initcall piix_init+0x0/0x36 returned 0 after 5 usecs
[    3.268816] calling  sis_pci_driver_init+0x0/0x28 @ 1
[    3.268822] initcall sis_pci_driver_init+0x0/0x28 returned 0 after 3 usecs
[    3.268824] calling  ata_generic_pci_driver_init+0x0/0x28 @ 1
[    3.268832] initcall ata_generic_pci_driver_init+0x0/0x28 returned 0 after 6 usecs
[    3.268834] calling  blackhole_netdev_init+0x0/0x86 @ 1
[    3.268841] initcall blackhole_netdev_init+0x0/0x86 returned 0 after 4 usecs
[    3.268843] calling  fixed_mdio_bus_init+0x0/0xfd @ 1
[    3.268892] mdio_bus fixed-0: GPIO lookup for consumer reset
[    3.268894] mdio_bus fixed-0: using lookup tables for GPIO lookup
[    3.268895] mdio_bus fixed-0: No GPIO consumer reset found
[    3.268899] initcall fixed_mdio_bus_init+0x0/0xfd returned 0 after 53 usecs
[    3.268901] calling  tun_init+0x0/0xac @ 1
[    3.268903] tun: Universal TUN/TAP device driver, 1.6
[    3.268920] initcall tun_init+0x0/0xac returned 0 after 17 usecs
[    3.268922] calling  virtio_net_driver_init+0x0/0x9d @ 1
[    3.268926] initcall virtio_net_driver_init+0x0/0x9d returned 0 after 2 usecs
[    3.268928] calling  igb_init_module+0x0/0x4e @ 1
[    3.268930] igb: Intel(R) Gigabit Ethernet Network Driver
[    3.268931] igb: Copyright (c) 2007-2014 Intel Corporation.
[    3.268939] initcall igb_init_module+0x0/0x4e returned 0 after 9 usecs
[    3.268941] calling  ppp_init+0x0/0x114 @ 1
[    3.268943] PPP generic driver version 2.4.2
[    3.268954] initcall ppp_init+0x0/0x114 returned 0 after 10 usecs
[    3.268956] calling  wwan_init+0x0/0xb5 @ 1
[    3.268960] initcall wwan_init+0x0/0xb5 returned 0 after 1 usecs
[    3.268962] calling  netif_init+0x0/0x77 @ 1
[    3.268963] initcall netif_init+0x0/0x77 returned -19 after 0 usecs
[    3.268964] calling  net_failover_init+0x0/0x15 @ 1
[    3.268966] initcall net_failover_init+0x0/0x15 returned 0 after 0 usecs
[    3.268967] calling  vfio_init+0x0/0x140 @ 1
[    3.268983] VFIO - User Level meta-driver version: 0.3
[    3.268985] initcall vfio_init+0x0/0x140 returned 0 after 16 usecs
[    3.268986] calling  vfio_iommu_type1_init+0x0/0x1f @ 1
[    3.268987] initcall vfio_iommu_type1_init+0x0/0x1f returned 0 after 0 usecs
[    3.268989] calling  dwc2_platform_driver_init+0x0/0x21 @ 1
[    3.268996] initcall dwc2_platform_driver_init+0x0/0x21 returned 0 after 5 usecs
[    3.269001] calling  ehci_hcd_init+0x0/0xf5 @ 1
[    3.269003] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.269005] initcall ehci_hcd_init+0x0/0xf5 returned 0 after 2 usecs
[    3.269006] calling  ehci_pci_init+0x0/0x74 @ 1
[    3.269008] ehci-pci: EHCI PCI platform driver
[    3.269012] initcall ehci_pci_init+0x0/0x74 returned 0 after 4 usecs
[    3.269014] calling  ehci_platform_init+0x0/0x57 @ 1
[    3.269015] ehci-platform: EHCI generic platform driver
[    3.269026] initcall ehci_platform_init+0x0/0x57 returned 0 after 11 usecs
[    3.269028] calling  ohci_hcd_mod_init+0x0/0x85 @ 1
[    3.269029] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    3.269031] initcall ohci_hcd_mod_init+0x0/0x85 returned 0 after 1 usecs
[    3.269032] calling  ohci_pci_init+0x0/0x74 @ 1
[    3.269033] ohci-pci: OHCI PCI platform driver
[    3.269038] initcall ohci_pci_init+0x0/0x74 returned 0 after 4 usecs
[    3.269039] calling  ohci_platform_init+0x0/0x57 @ 1
[    3.269040] ohci-platform: OHCI generic platform driver
[    3.269048] initcall ohci_platform_init+0x0/0x57 returned 0 after 7 usecs
[    3.269049] calling  uhci_hcd_init+0x0/0x118 @ 1
[    3.269050] uhci_hcd: USB Universal Host Controller Interface driver
[    3.269058] initcall uhci_hcd_init+0x0/0x118 returned 0 after 7 usecs
[    3.269060] calling  xhci_hcd_init+0x0/0x31 @ 1
[    3.269063] initcall xhci_hcd_init+0x0/0x31 returned 0 after 1 usecs
[    3.269064] calling  xhci_pci_init+0x0/0x5c @ 1
[    3.269089] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    3.269093] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[    3.270177] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    3.270340] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    3.270342] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[    3.270344] xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
[    3.270370] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    3.270372] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.270374] usb usb1: Product: xHCI Host Controller
[    3.270375] usb usb1: Manufacturer: Linux 5.19.0-mfix2+ xhci-hcd
[    3.270376] usb usb1: SerialNumber: 0000:00:0d.0
[    3.270473] hub 1-0:1.0: USB hub found
[    3.270479] hub 1-0:1.0: 1 port detected
[    3.270646] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    3.270649] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.270650] usb usb2: Product: xHCI Host Controller
[    3.270651] usb usb2: Manufacturer: Linux 5.19.0-mfix2+ xhci-hcd
[    3.270653] usb usb2: SerialNumber: 0000:00:0d.0
[    3.270696] hub 2-0:1.0: USB hub found
[    3.270706] hub 2-0:1.0: 4 ports detected
[    3.272187] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.272192] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    3.273378] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    3.273686] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    3.273688] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    3.273689] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    3.273720] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.19
[    3.273722] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.273723] usb usb3: Product: xHCI Host Controller
[    3.273724] usb usb3: Manufacturer: Linux 5.19.0-mfix2+ xhci-hcd
[    3.273725] usb usb3: SerialNumber: 0000:00:14.0
[    3.273813] hub 3-0:1.0: USB hub found
[    3.273845] hub 3-0:1.0: 12 ports detected
[    3.274026] fbcon: i915drmfb (fb0) is primary device
[    3.275916] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.19
[    3.275917] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.275918] usb usb4: Product: xHCI Host Controller
[    3.275918] usb usb4: Manufacturer: Linux 5.19.0-mfix2+ xhci-hcd
[    3.275919] usb usb4: SerialNumber: 0000:00:14.0
[    3.276103] hub 4-0:1.0: USB hub found
[    3.276128] hub 4-0:1.0: 4 ports detected
[    3.276576] nvme nvme0: 8/0/0 default/read/poll queues
[    3.276655] initcall xhci_pci_init+0x0/0x5c returned 0 after 7589 usecs
[    3.276659] calling  uas_init+0x0/0x64 @ 1
[    3.276739] usbcore: registered new interface driver uas
[    3.276739] initcall uas_init+0x0/0x64 returned 0 after 79 usecs
[    3.276740] calling  usb_storage_driver_init+0x0/0x3d @ 1
[    3.276748] usbcore: registered new interface driver usb-storage
[    3.276748] initcall usb_storage_driver_init+0x0/0x3d returned 0 after 7 usecs
[    3.276749] calling  kgdbdbgp_start_thread+0x0/0x61 @ 1
[    3.276750] initcall kgdbdbgp_start_thread+0x0/0x61 returned 0 after 0 usecs
[    3.276751] calling  i8042_init+0x0/0x4d7 @ 1
[    3.276763] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    3.276764] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    3.278911] Console: switching to colour frame buffer device 480x135
[    3.280850]  nvme0n1: p1 p2 p3 p4 p5
[    3.302699] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    4.085836] i8042: Can't read CTR while initializing i8042
[    4.085851] i8042: probe of i8042 failed with error -5
[    4.085870] initcall i8042_init+0x0/0x4d7 returned 0 after 809118 usecs
[    4.085883] calling  mousedev_init+0x0/0x8e @ 1
[    4.086038] mousedev: PS/2 mouse device common for all mice
[    4.086047] initcall mousedev_init+0x0/0x8e returned 0 after 152 usecs
[    4.086061] calling  evdev_init+0x0/0x1f @ 1
[    4.086213] initcall evdev_init+0x0/0x1f returned 0 after 141 usecs
[    4.086225] calling  atkbd_init+0x0/0x34 @ 1
[    4.086242] initcall atkbd_init+0x0/0x34 returned 0 after 7 usecs
[    4.086255] calling  elants_i2c_driver_init+0x0/0x21 @ 1
[    4.086294] initcall elants_i2c_driver_init+0x0/0x21 returned 0 after 27 usecs
[    4.086310] calling  uinput_misc_init+0x0/0x1f @ 1
[    4.086427] initcall uinput_misc_init+0x0/0x1f returned 0 after 106 usecs
[    4.086441] calling  cmos_init+0x0/0x77 @ 1
[    4.086489] rtc_cmos rtc_cmos: RTC can wake from S4
[    4.088310] rtc_cmos rtc_cmos: registered as rtc0
[    4.088702] rtc_cmos rtc_cmos: setting system clock to 2022-08-18T06:44:05 UTC (1660805045)
[    4.088721] rtc_cmos rtc_cmos: GPIO lookup for consumer wp
[    4.088730] rtc_cmos rtc_cmos: using lookup tables for GPIO lookup
[    4.088746] rtc_cmos rtc_cmos: No GPIO consumer wp found
[    4.088765] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    4.088781] initcall cmos_init+0x0/0x77 returned 0 after 2330 usecs
[    4.088794] calling  i2c_dev_init+0x0/0xc1 @ 1
[    4.088804] i2c_dev: i2c /dev entries driver
[    4.089100] initcall i2c_dev_init+0x0/0xc1 returned 0 after 295 usecs
[    4.089119] calling  restart_poweroff_driver_init+0x0/0x21 @ 1
[    4.089142] initcall restart_poweroff_driver_init+0x0/0x21 returned 0 after 10 usecs
[    4.089159] calling  thermal_throttle_init_device+0x0/0x58 @ 1
[    4.090042] initcall thermal_throttle_init_device+0x0/0x58 returned 0 after 869 usecs
[    4.090057] calling  watchdog_gov_noop_register+0x0/0x1f @ 1
[    4.090070] initcall watchdog_gov_noop_register+0x0/0x1f returned 0 after 1 usecs
[    4.090084] calling  dm_init+0x0/0x65 @ 1
[    4.090094] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    4.090145] device-mapper: uevent: version 1.0.3
[    4.090224] device-mapper: ioctl: 4.46.0-ioctl (2022-02-22) initialised: dm-devel@redhat.com
[    4.090238] initcall dm_init+0x0/0x65 returned 0 after 144 usecs
[    4.090251] calling  intel_pstate_init+0x0/0x6d3 @ 1
[    4.090266] intel_pstate: Intel P-state driver initializing
[    4.091828] intel_pstate: HWP enabled
[    4.091835] initcall intel_pstate_init+0x0/0x6d3 returned 0 after 1572 usecs
[    4.091847] calling  haltpoll_init+0x0/0xce @ 1
[    4.091855] initcall haltpoll_init+0x0/0xce returned -19 after 0 usecs
[    4.091867] calling  mmc_pwrseq_simple_driver_init+0x0/0x21 @ 1
[    4.091884] initcall mmc_pwrseq_simple_driver_init+0x0/0x21 returned 0 after 6 usecs
[    4.091897] calling  mmc_pwrseq_emmc_driver_init+0x0/0x21 @ 1
[    4.091911] initcall mmc_pwrseq_emmc_driver_init+0x0/0x21 returned 0 after 5 usecs
[    4.091923] calling  mmc_blk_init+0x0/0xf9 @ 1
[    4.091939] initcall mmc_blk_init+0x0/0xf9 returned 0 after 7 usecs
[    4.091951] calling  sdhci_drv_init+0x0/0x2d @ 1
[    4.091959] sdhci: Secure Digital Host Controller Interface driver
[    4.091970] sdhci: Copyright(c) Pierre Ossman
[    4.091978] initcall sdhci_drv_init+0x0/0x2d returned 0 after 19 usecs
[    4.091990] calling  sdhci_driver_init+0x0/0x28 @ 1
[    4.092009] initcall sdhci_driver_init+0x0/0x28 returned 0 after 10 usecs
[    4.092020] calling  sdhci_acpi_driver_init+0x0/0x21 @ 1
[    4.092044] initcall sdhci_acpi_driver_init+0x0/0x21 returned 0 after 14 usecs
[    4.092056] calling  sdhci_pltfm_drv_init+0x0/0x21 @ 1
[    4.092065] sdhci-pltfm: SDHCI platform and OF driver helper
[    4.092075] initcall sdhci_pltfm_drv_init+0x0/0x21 returned 0 after 9 usecs
[    4.092087] calling  ledtrig_disk_init+0x0/0x61 @ 1
[    4.092097] initcall ledtrig_disk_init+0x0/0x61 returned 0 after 1 usecs
[    4.092108] calling  ledtrig_mtd_init+0x0/0x3b @ 1
[    4.092117] initcall ledtrig_mtd_init+0x0/0x3b returned 0 after 0 usecs
[    4.092128] calling  ledtrig_cpu_init+0x0/0xec @ 1
[    4.092512] ledtrig-cpu: registered to indicate activity on CPUs
[    4.092568] initcall ledtrig_cpu_init+0x0/0xec returned 0 after 431 usecs
[    4.092584] calling  ledtrig_panic_init+0x0/0x46 @ 1
[    4.092605] initcall ledtrig_panic_init+0x0/0x46 returned 0 after 9 usecs
[    4.092618] calling  sysfb_init+0x0/0xc0 @ 1
[    4.092628] initcall sysfb_init+0x0/0xc0 returned 0 after 1 usecs
[    4.092639] calling  efivars_sysfs_init+0x0/0x40 @ 1
[    4.092650] EFI Variables Facility v0.08 2004-May-17
[    4.094392] initcall efivars_sysfs_init+0x0/0x40 returned 0 after 1742 usecs
[    4.094406] calling  esrt_sysfs_init+0x0/0x2f5 @ 1
[    4.094442] initcall esrt_sysfs_init+0x0/0x2f5 returned 0 after 27 usecs
[    4.094455] calling  efivars_pstore_init+0x0/0xf4 @ 1
[    4.095612] pstore: Registered efi as persistent store backend
[    4.095623] initcall efivars_pstore_init+0x0/0xf4 returned 0 after 1157 usecs
[    4.095636] calling  efibc_init+0x0/0x4f @ 1
[    4.095646] initcall efibc_init+0x0/0x4f returned 0 after 1 usecs
[    4.095659] calling  efi_capsule_loader_init+0x0/0x45 @ 1
[    4.095709] initcall efi_capsule_loader_init+0x0/0x45 returned 0 after 39 usecs
[    4.095724] calling  pmc_core_driver_init+0x0/0x21 @ 1
[    4.095914] intel_pmc_core INT33A1:00:  initialized
[    4.095949] initcall pmc_core_driver_init+0x0/0x21 returned 0 after 214 usecs
[    4.095964] calling  pmc_core_platform_init+0x0/0x98 @ 1
[    4.097471] initcall pmc_core_platform_init+0x0/0x98 returned -19 after 46 usecs
[    4.098834] calling  pmc_atom_init+0x0/0x270 @ 1
[    4.099982] initcall pmc_atom_init+0x0/0x270 returned -19 after 8 usecs
[    4.101125] calling  vmgenid_driver_init+0x0/0x1f @ 1
[    4.102283] initcall vmgenid_driver_init+0x0/0x1f returned 0 after 22 usecs
[    4.103418] calling  extcon_class_init+0x0/0x29 @ 1
[    4.104557] initcall extcon_class_init+0x0/0x29 returned 0 after 5 usecs
[    4.105741] calling  intel_qep_driver_init+0x0/0x28 @ 1
[    4.106960] initcall intel_qep_driver_init+0x0/0x28 returned 0 after 83 usecs
[    4.108302] calling  sock_diag_init+0x0/0x3d @ 1
[    4.110192] initcall sock_diag_init+0x0/0x3d returned 0 after 239 usecs
[    4.111668] calling  init_net_drop_monitor+0x0/0x10b @ 1
[    4.113033] drop_monitor: Initializing network drop monitor service
[    4.114427] initcall init_net_drop_monitor+0x0/0x10b returned 0 after 1394 usecs
[    4.115687] calling  failover_init+0x0/0x21 @ 1
[    4.116938] initcall failover_init+0x0/0x21 returned 0 after 0 usecs
[    4.118254] calling  blackhole_init+0x0/0x1f @ 1
[    4.119513] initcall blackhole_init+0x0/0x1f returned 0 after 0 usecs
[    4.120753] calling  gre_offload_init+0x0/0x56 @ 1
[    4.122029] initcall gre_offload_init+0x0/0x56 returned 0 after 0 usecs
[    4.123256] calling  sysctl_ipv4_init+0x0/0x59 @ 1
[    4.124518] initcall sysctl_ipv4_init+0x0/0x59 returned 0 after 31 usecs
[    4.125774] calling  cubictcp_register+0x0/0x7b @ 1
[    4.127008] initcall cubictcp_register+0x0/0x7b returned 0 after 1 usecs
[    4.128234] calling  inet6_init+0x0/0x394 @ 1
[    4.129575] NET: Registered PF_INET6 protocol family
[    4.134774] Segment Routing with IPv6
[    4.135917] In-situ OAM (IOAM) with IPv6
[    4.137061] initcall inet6_init+0x0/0x394 returned 0 after 7580 usecs
[    4.138185] calling  packet_init+0x0/0x83 @ 1
[    4.139317] NET: Registered PF_PACKET protocol family
[    4.140436] initcall packet_init+0x0/0x83 returned 0 after 1119 usecs
[    4.141586] calling  strp_dev_init+0x0/0x40 @ 1
[    4.143020] initcall strp_dev_init+0x0/0x40 returned 0 after 305 usecs
[    4.144250] calling  init_p9+0x0/0x33 @ 1
[    4.145539] 9pnet: Installing 9P2000 support
[    4.146769] initcall init_p9+0x0/0x33 returned 0 after 1256 usecs
[    4.147997] calling  p9_trans_fd_init+0x0/0x39 @ 1
[    4.149243] initcall p9_trans_fd_init+0x0/0x39 returned 0 after 0 usecs
[    4.150469] calling  p9_virtio_init+0x0/0x56 @ 1
[    4.151704] initcall p9_virtio_init+0x0/0x56 returned 0 after 9 usecs
[    4.152932] calling  dcbnl_init+0x0/0x59 @ 1
[    4.154219] initcall dcbnl_init+0x0/0x59 returned 0 after 2 usecs
[    4.155443] calling  init_dns_resolver+0x0/0xe5 @ 1
[    4.156673] Key type dns_resolver registered
[    4.157931] initcall init_dns_resolver+0x0/0xe5 returned 0 after 1266 usecs
[    4.159149] calling  pm_check_save_msr+0x0/0x80 @ 1
[    4.160367] initcall pm_check_save_msr+0x0/0x80 returned 0 after 4 usecs
[    4.161612] calling  mcheck_init_device+0x0/0x159 @ 1
[    4.164919] initcall mcheck_init_device+0x0/0x159 returned 0 after 2088 usecs
[    4.166208] calling  dev_mcelog_init_device+0x0/0xd1 @ 1
[    4.167548] initcall dev_mcelog_init_device+0x0/0xd1 returned 0 after 119 usecs
[    4.168803] calling  kernel_do_mounts_initrd_sysctls_init+0x0/0x2f @ 1
[    4.170177] initcall kernel_do_mounts_initrd_sysctls_init+0x0/0x2f returned 0 after 102 usecs
[    4.171417] calling  tboot_late_init+0x0/0x38f @ 1
[    4.172637] initcall tboot_late_init+0x0/0x38f returned 0 after 0 usecs
[    4.173899] calling  mcheck_late_init+0x0/0x84 @ 1
[    4.175119] initcall mcheck_late_init+0x0/0x84 returned 0 after 5 usecs
[    4.176337] calling  severities_debugfs_init+0x0/0x37 @ 1
[    4.177594] initcall severities_debugfs_init+0x0/0x37 returned 0 after 7 usecs
[    4.178817] calling  microcode_init+0x0/0x1dd @ 1
[    4.180055] microcode: sig=0xb06a2, pf=0x80, revision=0x4103
[    4.181898] microcode: Microcode Update Driver: v2.2.
[    4.181899] initcall microcode_init+0x0/0x1dd returned 0 after 1863 usecs
[    4.184338] calling  resctrl_late_init+0x0/0x54a @ 1
[    4.186741] resctrl: L2 allocation detected
[    4.187968] initcall resctrl_late_init+0x0/0x54a returned 0 after 2384 usecs
[    4.189205] calling  hpet_insert_resource+0x0/0x35 @ 1
[    4.190437] initcall hpet_insert_resource+0x0/0x35 returned 0 after 0 usecs
[    4.191661] calling  start_sync_check_timer+0x0/0x5d @ 1
[    4.192886] initcall start_sync_check_timer+0x0/0x5d returned 0 after 0 usecs
[    4.194161] calling  update_mp_table+0x0/0x521 @ 1
[    4.195384] initcall update_mp_table+0x0/0x521 returned 0 after 0 usecs
[    4.196601] calling  lapic_insert_resource+0x0/0x51 @ 1
[    4.197864] initcall lapic_insert_resource+0x0/0x51 returned 0 after 0 usecs
[    4.199082] calling  print_ipi_mode+0x0/0x3a @ 1
[    4.200299] IPI shorthand broadcast: enabled
[    4.201548] initcall print_ipi_mode+0x0/0x3a returned 0 after 1249 usecs
[    4.202766] calling  print_ICs+0x0/0x1b4 @ 1
[    4.203986] initcall print_ICs+0x0/0x1b4 returned 0 after 0 usecs
[    4.205220] calling  setup_efi_kvm_sev_migration+0x0/0x16d @ 1
[    4.206433] initcall setup_efi_kvm_sev_migration+0x0/0x16d returned 0 after 0 usecs
[    4.207638] calling  create_tlb_single_page_flush_ceiling+0x0/0x36 @ 1
[    4.208843] initcall create_tlb_single_page_flush_ceiling+0x0/0x36 returned 0 after 4 usecs
[    4.210098] calling  pat_memtype_list_init+0x0/0x46 @ 1
[    4.211294] initcall pat_memtype_list_init+0x0/0x46 returned 0 after 2 usecs
[    4.212488] calling  create_init_pkru_value+0x0/0x3b @ 1
[    4.213730] initcall create_init_pkru_value+0x0/0x3b returned 0 after 6 usecs
[    4.214930] calling  kernel_panic_sysctls_init+0x0/0x2f @ 1
[    4.216146] initcall kernel_panic_sysctls_init+0x0/0x2f returned 0 after 2 usecs
[    4.217363] calling  reboot_ksysfs_init+0x0/0x74 @ 1
[    4.218562] initcall reboot_ksysfs_init+0x0/0x74 returned 0 after 5 usecs
[    4.219760] calling  sched_core_sysctl_init+0x0/0x2f @ 1
[    4.220963] initcall sched_core_sysctl_init+0x0/0x2f returned 0 after 2 usecs
[    4.222223] calling  sched_fair_sysctl_init+0x0/0x2f @ 1
[    4.223423] initcall sched_fair_sysctl_init+0x0/0x2f returned 0 after 1 usecs
[    4.224644] calling  sched_rt_sysctl_init+0x0/0x2f @ 1
[    4.225884] initcall sched_rt_sysctl_init+0x0/0x2f returned 0 after 3 usecs
[    4.227091] calling  sched_dl_sysctl_init+0x0/0x2f @ 1
[    4.228288] initcall sched_dl_sysctl_init+0x0/0x2f returned 0 after 2 usecs
[    4.229517] calling  sched_clock_init_late+0x0/0x96 @ 1
[    4.230721] sched_clock: Marking stable (4213273870, 16242623)->(4254479980, -24963487)
[    4.232357] initcall sched_clock_init_late+0x0/0x96 returned 0 after 1637 usecs
[    4.233599] calling  sched_init_debug+0x0/0x262 @ 1
[    4.234958] initcall sched_init_debug+0x0/0x262 returned 0 after 146 usecs
[    4.236174] calling  sched_energy_aware_sysctl_init+0x0/0x2f @ 1
[    4.237408] initcall sched_energy_aware_sysctl_init+0x0/0x2f returned 0 after 2 usecs
[    4.238623] calling  cpu_latency_qos_init+0x0/0x43 @ 1
[    4.239957] initcall cpu_latency_qos_init+0x0/0x43 returned 0 after 127 usecs
[    4.241171] calling  pm_debugfs_init+0x0/0x31 @ 1
[    4.242387] initcall pm_debugfs_init+0x0/0x31 returned 0 after 1 usecs
[    4.243603] calling  printk_late_init+0x0/0x136 @ 1
[    4.244816] initcall printk_late_init+0x0/0x136 returned 0 after 3 usecs
[    4.246076] calling  init_srcu_module_notifier+0x0/0x35 @ 1
[    4.247284] initcall init_srcu_module_notifier+0x0/0x35 returned 0 after 2 usecs
[    4.248495] calling  swiotlb_create_default_debugfs+0x0/0x73 @ 1
[    4.249756] initcall swiotlb_create_default_debugfs+0x0/0x73 returned 0 after 5 usecs
[    4.250975] calling  tk_debug_sleep_time_init+0x0/0x31 @ 1
[    4.252191] initcall tk_debug_sleep_time_init+0x0/0x31 returned 0 after 1 usecs
[    4.253430] calling  kernel_acct_sysctls_init+0x0/0x2f @ 1
[    4.254744] initcall kernel_acct_sysctls_init+0x0/0x2f returned 0 after 102 usecs
[    4.255966] calling  kexec_core_sysctl_init+0x0/0x2f @ 1
[    4.257216] initcall kexec_core_sysctl_init+0x0/0x2f returned 0 after 3 usecs
[    4.258432] calling  debugfs_kprobe_init+0x0/0x7f @ 1
[    4.259644] initcall debugfs_kprobe_init+0x0/0x7f returned 0 after 4 usecs
[    4.260854] calling  kernel_delayacct_sysctls_init+0x0/0x2f @ 1
[    4.262119] initcall kernel_delayacct_sysctls_init+0x0/0x2f returned 0 after 1 usecs
[    4.263332] calling  taskstats_init+0x0/0x44 @ 1
[    4.264549] registered taskstats version 1
[    4.265794] initcall taskstats_init+0x0/0x44 returned 0 after 1250 usecs
[    4.266999] calling  ftrace_sysctl_init+0x0/0x2a @ 1
[    4.268213] initcall ftrace_sysctl_init+0x0/0x2a returned 0 after 1 usecs
[    4.269453] calling  init_hwlat_tracer+0x0/0x11f @ 1
[    4.272373] initcall init_hwlat_tracer+0x0/0x11f returned 0 after 1720 usecs
[    4.273625] calling  kdb_ftrace_register+0x0/0x1c @ 1
[    4.274830] initcall kdb_ftrace_register+0x0/0x1c returned 0 after 1 usecs
[    4.276043] calling  bpf_syscall_sysctl_init+0x0/0x2f @ 1
[    4.277271] initcall bpf_syscall_sysctl_init+0x0/0x2f returned 0 after 8 usecs
[    4.278480] calling  bpf_map_iter_init+0x0/0x39 @ 1
[    4.279690] initcall bpf_map_iter_init+0x0/0x39 returned 0 after 1 usecs
[    4.280895] calling  task_iter_init+0x0/0xda @ 1
[    4.282155] initcall task_iter_init+0x0/0xda returned 0 after 1 usecs
[    4.283362] calling  bpf_prog_iter_init+0x0/0x29 @ 1
[    4.284570] initcall bpf_prog_iter_init+0x0/0x29 returned 0 after 0 usecs
[    4.285815] calling  bpf_link_iter_init+0x0/0x29 @ 1
[    4.287015] initcall bpf_link_iter_init+0x0/0x29 returned 0 after 1 usecs
[    4.288214] calling  init_trampolines+0x0/0x2e @ 1
[    4.289450] initcall init_trampolines+0x0/0x2e returned 0 after 0 usecs
[    4.290641] calling  load_system_certificate_list+0x0/0x43 @ 1
[    4.291841] Loading compiled-in X.509 certificates
[    4.293041] initcall load_system_certificate_list+0x0/0x43 returned 0 after 1199 usecs
[    4.294239] calling  fault_around_debugfs+0x0/0x31 @ 1
[    4.295444] initcall fault_around_debugfs+0x0/0x31 returned 0 after 1 usecs
[    4.296651] calling  max_swapfiles_check+0x0/0x15 @ 1
[    4.297897] initcall max_swapfiles_check+0x0/0x15 returned 0 after 0 usecs
[    4.299097] calling  init_zswap+0x0/0x474 @ 1
[    4.300607] zswap: loaded using pool lzo/zbud
[    4.302509] initcall init_zswap+0x0/0x474 returned 0 after 2205 usecs
[    4.303714] calling  hugetlb_vmemmap_sysctls_init+0x0/0x38 @ 1
[    4.304917] initcall hugetlb_vmemmap_sysctls_init+0x0/0x38 returned 0 after 3 usecs
[    4.306179] calling  split_huge_pages_debugfs+0x0/0x31 @ 1
[    4.307385] initcall split_huge_pages_debugfs+0x0/0x31 returned 0 after 5 usecs
[    4.308592] calling  kmemleak_late_init+0x0/0x78 @ 1
[    4.309843] initcall kmemleak_late_init+0x0/0x78 returned -12 after 1 usecs
[    4.311048] calling  check_early_ioremap_leak+0x0/0x4b @ 1
[    4.312258] initcall check_early_ioremap_leak+0x0/0x4b returned 0 after 0 usecs
[    4.313487] calling  set_hardened_usercopy+0x0/0x37 @ 1
[    4.314690] initcall set_hardened_usercopy+0x0/0x37 returned 1 after 0 usecs
[    4.315896] calling  fscrypt_init+0x0/0x8c @ 1
[    4.317312] Key type ._fscrypt registered
[    4.317409] usb 4-2: new SuperSpeed USB device number 2 using xhci_hcd
[    4.318673] Key type .fscrypt registered
[    4.321420] Key type fscrypt-provisioning registered
[    4.322681] initcall fscrypt_init+0x0/0x8c returned 0 after 5571 usecs
[    4.323892] calling  pstore_init+0x0/0x67 @ 1
[    4.325462] pstore: Using crash dump compression: deflate
[    4.326686] initcall pstore_init+0x0/0x67 returned 0 after 1576 usecs
[    4.327900] calling  init_root_keyring+0x0/0x1c @ 1
[    4.329138] initcall init_root_keyring+0x0/0x1c returned 0 after 21 usecs
[    4.330355] calling  init_trusted+0x0/0x178 @ 1
[    4.332945] initcall init_trusted+0x0/0x178 returned 0 after 1377 usecs
[    4.334264] calling  init_encrypted+0x0/0xdd @ 1
[    4.337093] Key type encrypted registered
[    4.338372] initcall init_encrypted+0x0/0xdd returned 0 after 2873 usecs
[    4.338657] usb 4-2: New USB device found, idVendor=13b1, idProduct=0041, bcdDevice=30.00
[    4.339617] calling  init_profile_hash+0x0/0x90 @ 1
[    4.341013] usb 4-2: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[    4.342259] initcall init_profile_hash+0x0/0x90 returned 0 after 0 usecs
[    4.343590] usb 4-2: Product: Linksys USB3GIGV1
[    4.344846] calling  integrity_fs_init+0x0/0x56 @ 1
[    4.346182] usb 4-2: Manufacturer: Linksys
[    4.346182] usb 4-2: SerialNumber: 000001000000
[    4.349923] initcall integrity_fs_init+0x0/0x56 returned 0 after 9 usecs
[    4.351150] calling  init_ima+0x0/0xbe @ 1
[    4.352381] ima: No TPM chip found, activating TPM-bypass!
[    4.353647] ima: Allocated hash algorithm: sha1
[    4.354876] ima: No architecture policies found
[    4.356101] initcall init_ima+0x0/0xbe returned 0 after 3722 usecs
[    4.357331] calling  init_evm+0x0/0x127 @ 1
[    4.358537] evm: Initialising EVM extended attributes:
[    4.359745] evm: security.selinux
[    4.360957] evm: security.SMACK64
[    4.362223] evm: security.SMACK64EXEC
[    4.363415] evm: security.SMACK64TRANSMUTE
[    4.364604] evm: security.SMACK64MMAP
[    4.365865] evm: security.apparmor
[    4.367054] evm: security.ima
[    4.368231] evm: security.capability
[    4.369430] evm: HMAC attrs: 0x1
[    4.370612] initcall init_evm+0x0/0x127 returned 0 after 12074 usecs
[    4.371783] calling  crypto_algapi_init+0x0/0x8a @ 1
[    4.374735] initcall crypto_algapi_init+0x0/0x8a returned 0 after 1767 usecs
[    4.375932] calling  blk_timeout_init+0x0/0x20 @ 1
[    4.377131] initcall blk_timeout_init+0x0/0x20 returned 0 after 0 usecs
[    4.378322] calling  init_error_injection+0x0/0x77 @ 1
[    4.379660] initcall init_error_injection+0x0/0x77 returned 0 after 143 usecs
[    4.380865] calling  pci_resource_alignment_sysfs_init+0x0/0x26 @ 1
[    4.382126] initcall pci_resource_alignment_sysfs_init+0x0/0x26 returned 0 after 2 usecs
[    4.383326] calling  pci_sysfs_init+0x0/0x83 @ 1
[    4.384556] initcall pci_sysfs_init+0x0/0x83 returned 0 after 36 usecs
[    4.385786] calling  bert_init+0x0/0x25f @ 1
[    4.386967] initcall bert_init+0x0/0x25f returned 0 after 1 usecs
[    4.388139] calling  clk_debug_init+0x0/0x123 @ 1
[    4.389345] initcall clk_debug_init+0x0/0x123 returned 0 after 8 usecs
[    4.390533] calling  setup_vcpu_hotplug_event+0x0/0x3d @ 1
[    4.391714] initcall setup_vcpu_hotplug_event+0x0/0x3d returned -19 after 0 usecs
[    4.392898] calling  boot_wait_for_devices+0x0/0x36 @ 1
[    4.394139] initcall boot_wait_for_devices+0x0/0x36 returned -19 after 0 usecs
[    4.395330] calling  dmar_free_unused_resources+0x0/0xc4 @ 1
[    4.396516] initcall dmar_free_unused_resources+0x0/0xc4 returned 0 after 0 usecs
[    4.397739] calling  sync_state_resume_initcall+0x0/0x20 @ 1
[    4.398938] initcall sync_state_resume_initcall+0x0/0x20 returned 0 after 1 usecs
[    4.400135] calling  deferred_probe_initcall+0x0/0xa0 @ 1
[    4.401647] initcall deferred_probe_initcall+0x0/0xa0 returned 0 after 301 usecs
[    4.402841] calling  late_resume_init+0x0/0x134 @ 1
[    4.404024] PM:   Magic number: 2:683:721
[    4.405237] block loop1: hash matches
[    4.406531] initcall late_resume_init+0x0/0x134 returned 0 after 2506 usecs
[    4.407723] calling  genpd_power_off_unused+0x0/0x8b @ 1
[    4.408912] initcall genpd_power_off_unused+0x0/0x8b returned 0 after 2 usecs
[    4.410166] calling  genpd_debug_init+0x0/0x7e @ 1
[    4.411357] initcall genpd_debug_init+0x0/0x7e returned 0 after 3 usecs
[    4.412547] calling  hmem_init+0x0/0x34 @ 1
[    4.413769] initcall hmem_init+0x0/0x34 returned 0 after 1 usecs
[    4.414957] calling  sync_debugfs_init+0x0/0x68 @ 1
[    4.416141] initcall sync_debugfs_init+0x0/0x68 returned 0 after 2 usecs
[    4.417344] calling  charger_manager_init+0x0/0x9c @ 1
[    4.418888] initcall charger_manager_init+0x0/0x9c returned 0 after 359 usecs
[    4.420074] calling  pcc_cpufreq_init+0x0/0x4ed @ 1
[    4.421277] initcall pcc_cpufreq_init+0x0/0x4ed returned -17 after 0 usecs
[    4.422456] calling  centrino_init+0x0/0x38 @ 1
[    4.423638] initcall centrino_init+0x0/0x38 returned -19 after 0 usecs
[    4.424817] calling  edd_init+0x0/0x2ba @ 1
[    4.426046] initcall edd_init+0x0/0x2ba returned -19 after 0 usecs
[    4.427224] calling  firmware_memmap_init+0x0/0x40 @ 1
[    4.428416] initcall firmware_memmap_init+0x0/0x40 returned 0 after 18 usecs
[    4.429626] calling  register_update_efi_random_seed+0x0/0x30 @ 1
[    4.430805] initcall register_update_efi_random_seed+0x0/0x30 returned 0 after 0 usecs
[    4.431981] calling  efi_shutdown_init+0x0/0x53 @ 1
[    4.433168] initcall efi_shutdown_init+0x0/0x53 returned 0 after 0 usecs
[    4.434346] calling  efi_earlycon_unmap_fb+0x0/0x3a @ 1
[    4.435527] initcall efi_earlycon_unmap_fb+0x0/0x3a returned 0 after 0 usecs
[    4.436706] calling  itmt_legacy_init+0x0/0x58 @ 1
[    4.437917] initcall itmt_legacy_init+0x0/0x58 returned -19 after 0 usecs
[    4.439091] calling  cec_init+0x0/0x18f @ 1
[    4.440271] RAS: Correctable Errors collector initialized.
[    4.441461] initcall cec_init+0x0/0x18f returned 0 after 1195 usecs
[    4.442633] calling  bpf_sockmap_iter_init+0x0/0x2b @ 1
[    4.443806] initcall bpf_sockmap_iter_init+0x0/0x2b returned 0 after 1 usecs
[    4.444984] calling  bpf_sk_storage_map_iter_init+0x0/0x2b @ 1
[    4.446213] initcall bpf_sk_storage_map_iter_init+0x0/0x2b returned 0 after 2 usecs
[    4.447394] calling  bpf_prog_test_run_init+0x0/0x6f @ 1
[    4.448576] initcall bpf_prog_test_run_init+0x0/0x6f returned 0 after 0 usecs
[    4.449789] calling  tcp_congestion_default+0x0/0x26 @ 1
[    4.450970] initcall tcp_congestion_default+0x0/0x26 returned 0 after 0 usecs
[    4.452143] calling  ip_auto_config+0x0/0xf5e @ 1
[    4.453340] initcall ip_auto_config+0x0/0xf5e returned 0 after 4 usecs
[    4.454523] calling  tcp_bpf_v4_build_proto+0x0/0x94 @ 1
[    4.455703] initcall tcp_bpf_v4_build_proto+0x0/0x94 returned 0 after 0 usecs
[    4.456888] calling  udp_bpf_v4_build_proto+0x0/0x4e @ 1
[    4.458120] initcall udp_bpf_v4_build_proto+0x0/0x4e returned 0 after 0 usecs
[    4.459302] calling  bpf_tcp_ca_kfunc_init+0x0/0x24 @ 1
[    4.460482] initcall bpf_tcp_ca_kfunc_init+0x0/0x24 returned 0 after 0 usecs
[    4.461691] calling  pci_mmcfg_late_insert_resources+0x0/0x64 @ 1
[    4.462868] initcall pci_mmcfg_late_insert_resources+0x0/0x64 returned 0 after 0 usecs
[    4.464045] calling  software_resume+0x0/0x1d0 @ 1
[    4.465136] usb 3-8: new low-speed USB device number 2 using xhci_hcd
[    4.466641] PM: Image not found (code -22)
[    4.467874] initcall software_resume+0x0/0x1d0 returned -22 after 2639 usecs
[    4.469069] calling  ftrace_check_sync+0x0/0x28 @ 1
[    4.470250] initcall ftrace_check_sync+0x0/0x28 returned 0 after 4 usecs
[    4.471430] calling  latency_fsnotify_init+0x0/0x42 @ 1
[    4.472620] initcall latency_fsnotify_init+0x0/0x42 returned 0 after 3 usecs
[    4.473844] calling  trace_eval_sync+0x0/0x28 @ 1
[    4.475022] initcall trace_eval_sync+0x0/0x28 returned 0 after 1 usecs
[    4.476199] calling  late_trace_init+0x0/0xa9 @ 1
[    4.477403] initcall late_trace_init+0x0/0xa9 returned 0 after 0 usecs
[    4.478575] calling  acpi_gpio_handle_deferred_request_irqs+0x0/0x90 @ 1
[    4.479755] initcall acpi_gpio_handle_deferred_request_irqs+0x0/0x90 returned 0 after 1 usecs
[    4.480931] calling  fb_logo_late_init+0x0/0x1c @ 1
[    4.482172] initcall fb_logo_late_init+0x0/0x1c returned 0 after 0 usecs
[    4.483347] calling  clk_disable_unused+0x0/0x10f @ 1
[    4.484525] initcall clk_disable_unused+0x0/0x10f returned 0 after 0 usecs
[    4.485732] calling  balloon_wait_finish+0x0/0xfd @ 1
[    4.486914] initcall balloon_wait_finish+0x0/0xfd returned -19 after 0 usecs
[    4.488097] calling  regulator_init_complete+0x0/0x43 @ 1
[    4.489292] initcall regulator_init_complete+0x0/0x43 returned 0 after 0 usecs
[    4.490479] calling  of_platform_sync_state_init+0x0/0x1a @ 1
[    4.491658] initcall of_platform_sync_state_init+0x0/0x1a returned 0 after 1 usecs
[    4.496331] Freeing unused decrypted memory: 2036K
[    4.498087] Freeing unused kernel image (initmem) memory: 3344K
[    4.499279] Write protecting the kernel read-only data: 30720k
[    4.501372] Freeing unused kernel image (text/rodata gap) memory: 2032K
[    4.503021] Freeing unused kernel image (rodata/data gap) memory: 1372K
[    4.508699] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    4.509917] Run /init as init process
[    4.511092]   with arguments:
[    4.512266]     /init
[    4.513447]     rhgb
[    4.514605]     text
[    4.515758]   with environment:
[    4.516905]     HOME=/
[    4.518091]     TERM=linux
[    4.519229]     BOOT_IMAGE=(hd0,gpt2)/boot/vmlinuz-5.19.0-mfix2+
[    4.530381] systemd[1]: systemd 239 (239-45.el8) 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=legacy)
[    4.531504] systemd[1]: Detected architecture x86-64.
[    4.532597] systemd[1]: Running in initial RAM disk.
[    4.569176] systemd[1]: Set hostname to <p-rplp02>.
[    4.619670] usb 3-8: New USB device found, idVendor=046d, idProduct=c31c, bcdDevice=64.00
[    4.621345] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.622884] usb 3-8: Product: USB Keyboard
[    4.624058] usb 3-8: Manufacturer: Logitech
[    6.573000] random: crng init done
[    6.574962] systemd[1]: Listening on udev Control Socket.
[    6.576451] systemd[1]: Reached target Timers.
[    6.577900] systemd[1]: Listening on Journal Socket.
[    6.579726] systemd[1]: Starting Setup Virtual Console...
[    6.581120] systemd[1]: Starting Load Kernel Modules...
[    6.582239] systemd[1]: Listening on udev Kernel Socket.
[    6.744901] calling  fjes_init_module+0x0/0x1000 [fjes] @ 415
[    6.747195] calling  tgl_pinctrl_driver_init+0x0/0x1000 [pinctrl_tigerlake] @ 407
[    6.747397] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 578 usecs
[    6.749464] tigerlake-pinctrl INTC1055:00: Community0 features: 0x000003
[    6.752124] tigerlake-pinctrl INTC1055:00: Community1 features: 0x00000f
[    6.753846] tigerlake-pinctrl INTC1055:00: Community2 features: 0x000007
[    6.755219] tigerlake-pinctrl INTC1055:00: Community3 features: 0x000003
[    6.756550] tigerlake-pinctrl INTC1055:00: try to register 277 pins ...
[    6.757956] pinctrl core: registered pin 0 (CORE_VID_0) on INTC1055:00
[    6.759244] pinctrl core: registered pin 1 (CORE_VID_1) on INTC1055:00
[    6.760570] pinctrl core: registered pin 2 (VRALERTB) on INTC1055:00
[    6.760571] pinctrl core: registered pin 3 (CPU_GP_2) on INTC1055:00
[    6.760572] pinctrl core: registered pin 4 (CPU_GP_3) on INTC1055:00
[    6.765676] pinctrl core: registered pin 5 (ISH_I2C0_SDA) on INTC1055:00
[    6.767369] pinctrl core: registered pin 6 (ISH_I2C0_SCL) on INTC1055:00
[    6.767564] calling  acpi_wmi_init+0x0/0x1000 [wmi] @ 438
[    6.768842] pinctrl core: registered pin 7 (ISH_I2C1_SDA) on INTC1055:00
[    6.770745] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    6.772168] pinctrl core: registered pin 8 (ISH_I2C1_SCL) on INTC1055:00
[    6.773979] initcall acpi_wmi_init+0x0/0x1000 [wmi] returned 0 after 3599 usecs
[    6.775604] pinctrl core: registered pin 9 (I2C5_SDA) on INTC1055:00
[    6.777390] calling  ishtp_bus_register+0x0/0x1000 [intel_ishtp] @ 414
[    6.779193] pinctrl core: registered pin 10 (I2C5_SCL) on INTC1055:00
[    6.781263] initcall ishtp_bus_register+0x0/0x1000 [intel_ishtp] returned 0 after 46 usecs
[    6.783027] pinctrl core: registered pin 11 (PMCALERTB) on INTC1055:00
[    6.786519] pinctrl core: registered pin 12 (SLP_S0B) on INTC1055:00
[    6.788170] pinctrl core: registered pin 13 (PLTRSTB) on INTC1055:00
[    6.789887] pinctrl core: registered pin 14 (SPKR) on INTC1055:00
[    6.789918] calling  hid_init+0x0/0x6a [hid] @ 424
[    6.791577] pinctrl core: registered pin 15 (GSPI0_CS0B) on INTC1055:00
[    6.793362] hid: raw HID events driver (C) Jiri Kosina
[    6.795106] pinctrl core: registered pin 16 (GSPI0_CLK) on INTC1055:00
[    6.796235] initcall hid_init+0x0/0x6a [hid] returned 0 after 3143 usecs
[    6.796328] calling  cryptd_init+0x0/0x1000 [cryptd] @ 409
[    6.796388] cryptd: max_cpu_qlen set to 1000
[    6.796390] initcall cryptd_init+0x0/0x1000 [cryptd] returned 0 after 55 usecs
[    6.801059] pinctrl core: registered pin 17 (GSPI0_MISO) on INTC1055:00
[    6.806184] pinctrl core: registered pin 18 (GSPI0_MOSI) on INTC1055:00
[    6.807909] pinctrl core: registered pin 19 (GSPI1_CS0B) on INTC1055:00
[    6.809584] pinctrl core: registered pin 20 (GSPI1_CLK) on INTC1055:00
[    6.811235] pinctrl core: registered pin 21 (GSPI1_MISO) on INTC1055:00
[    6.812881] pinctrl core: registered pin 22 (GSPI1_MOSI) on INTC1055:00
[    6.814620] pinctrl core: registered pin 23 (SML1ALERTB) on INTC1055:00
[    6.816034] pinctrl core: registered pin 24 (GSPI0_CLK_LOOPBK) on INTC1055:00
[    6.817325] pinctrl core: registered pin 25 (GSPI1_CLK_LOOPBK) on INTC1055:00
[    6.817327] pinctrl core: registered pin 26 (I2C6_SDA) on INTC1055:00
[    6.817328] pinctrl core: registered pin 27 (I2C6_SCL) on INTC1055:00
[    6.817328] pinctrl core: registered pin 28 (I2C7_SDA) on INTC1055:00
[    6.817329] pinctrl core: registered pin 29 (I2C7_SCL) on INTC1055:00
[    6.817330] pinctrl core: registered pin 30 (UART4_RXD) on INTC1055:00
[    6.817330] pinctrl core: registered pin 31 (UART4_TXD) on INTC1055:00
[    6.817331] pinctrl core: registered pin 32 (UART4_RTSB) on INTC1055:00
[    6.817331] pinctrl core: registered pin 33 (UART4_CTSB) on INTC1055:00
[    6.817332] pinctrl core: registered pin 34 (UART5_RXD) on INTC1055:00
[    6.830391] pinctrl core: registered pin 35 (UART5_TXD) on INTC1055:00
[    6.831666] pinctrl core: registered pin 36 (UART5_RTSB) on INTC1055:00
[    6.832920] pinctrl core: registered pin 37 (UART5_CTSB) on INTC1055:00
[    6.832921] pinctrl core: registered pin 38 (UART6_RXD) on INTC1055:00
[    6.832922] pinctrl core: registered pin 39 (UART6_TXD) on INTC1055:00
[    6.832923] pinctrl core: registered pin 40 (UART6_RTSB) on INTC1055:00
[    6.832923] pinctrl core: registered pin 41 (UART6_CTSB) on INTC1055:00
[    6.832924] pinctrl core: registered pin 42 (ESPI_IO_0) on INTC1055:00
[    6.832925] pinctrl core: registered pin 43 (ESPI_IO_1) on INTC1055:00
[    6.832926] pinctrl core: registered pin 44 (ESPI_IO_2) on INTC1055:00
[    6.832926] pinctrl core: registered pin 45 (ESPI_IO_3) on INTC1055:00
[    6.832927] pinctrl core: registered pin 46 (ESPI_CSB) on INTC1055:00
[    6.832927] pinctrl core: registered pin 47 (ESPI_CLK) on INTC1055:00
[    6.832928] pinctrl core: registered pin 48 (ESPI_RESETB) on INTC1055:00
[    6.832928] pinctrl core: registered pin 49 (I2S2_SCLK) on INTC1055:00
[    6.832929] pinctrl core: registered pin 50 (I2S2_SFRM) on INTC1055:00
[    6.832929] pinctrl core: registered pin 51 (I2S2_TXD) on INTC1055:00
[    6.832930] pinctrl core: registered pin 52 (I2S2_RXD) on INTC1055:00
[    6.832930] pinctrl core: registered pin 53 (PMC_I2C_SDA) on INTC1055:00
[    6.832931] pinctrl core: registered pin 54 (SATAXPCIE_1) on INTC1055:00
[    6.832932] pinctrl core: registered pin 55 (PMC_I2C_SCL) on INTC1055:00
[    6.832932] pinctrl core: registered pin 56 (USB2_OCB_1) on INTC1055:00
[    6.832933] pinctrl core: registered pin 57 (USB2_OCB_2) on INTC1055:00
[    6.832933] pinctrl core: registered pin 58 (USB2_OCB_3) on INTC1055:00
[    6.832934] pinctrl core: registered pin 59 (DDSP_HPD_C) on INTC1055:00
[    6.832934] pinctrl core: registered pin 60 (DDSP_HPD_B) on INTC1055:00
[    6.832935] pinctrl core: registered pin 61 (DDSP_HPD_1) on INTC1055:00
[    6.832935] pinctrl core: registered pin 62 (DDSP_HPD_2) on INTC1055:00
[    6.832936] pinctrl core: registered pin 63 (GPPC_A_21) on INTC1055:00
[    6.832938] pinctrl core: registered pin 64 (GPPC_A_22) on INTC1055:00
[    6.832939] pinctrl core: registered pin 65 (I2S1_SCLK) on INTC1055:00
[    6.832939] pinctrl core: registered pin 66 (ESPI_CLK_LOOPBK) on INTC1055:00
[    6.832940] pinctrl core: registered pin 67 (SNDW0_CLK) on INTC1055:00
[    6.832940] pinctrl core: registered pin 68 (SNDW0_DATA) on INTC1055:00
[    6.832941] pinctrl core: registered pin 69 (SNDW1_CLK) on INTC1055:00
[    6.832942] pinctrl core: registered pin 70 (SNDW1_DATA) on INTC1055:00
[    6.832942] pinctrl core: registered pin 71 (SNDW2_CLK) on INTC1055:00
[    6.832943] pinctrl core: registered pin 72 (SNDW2_DATA) on INTC1055:00
[    6.832943] pinctrl core: registered pin 73 (SNDW3_CLK) on INTC1055:00
[    6.832944] pinctrl core: registered pin 74 (SNDW3_DATA) on INTC1055:00
[    6.832944] pinctrl core: registered pin 75 (GPPC_H_0) on INTC1055:00
[    6.832945] pinctrl core: registered pin 76 (GPPC_H_1) on INTC1055:00
[    6.832945] pinctrl core: registered pin 77 (GPPC_H_2) on INTC1055:00
[    6.832946] pinctrl core: registered pin 78 (SX_EXIT_HOLDOFFB) on INTC1055:00
[    6.832946] pinctrl core: registered pin 79 (I2C2_SDA) on INTC1055:00
[    6.832947] pinctrl core: registered pin 80 (I2C2_SCL) on INTC1055:00
[    6.832947] pinctrl core: registered pin 81 (I2C3_SDA) on INTC1055:00
[    6.832948] pinctrl core: registered pin 82 (I2C3_SCL) on INTC1055:00
[    6.832948] pinctrl core: registered pin 83 (I2C4_SDA) on INTC1055:00
[    6.832949] pinctrl core: registered pin 84 (I2C4_SCL) on INTC1055:00
[    6.832949] pinctrl core: registered pin 85 (SRCCLKREQB_4) on INTC1055:00
[    6.832950] pinctrl core: registered pin 86 (SRCCLKREQB_5) on INTC1055:00
[    6.832950] pinctrl core: registered pin 87 (M2_SKT2_CFG_0) on INTC1055:00
[    6.832951] pinctrl core: registered pin 88 (M2_SKT2_CFG_1) on INTC1055:00
[    6.832952] pinctrl core: registered pin 89 (M2_SKT2_CFG_2) on INTC1055:00
[    6.832952] pinctrl core: registered pin 90 (M2_SKT2_CFG_3) on INTC1055:00
[    6.832953] pinctrl core: registered pin 91 (DDPB_CTRLCLK) on INTC1055:00
[    6.832953] pinctrl core: registered pin 92 (DDPB_CTRLDATA) on INTC1055:00
[    6.832954] pinctrl core: registered pin 93 (CPU_C10_GATEB) on INTC1055:00
[    6.832954] pinctrl core: registered pin 94 (TIME_SYNC_0) on INTC1055:00
[    6.832955] pinctrl core: registered pin 95 (IMGCLKOUT_1) on INTC1055:00
[    6.832955] pinctrl core: registered pin 96 (IMGCLKOUT_2) on INTC1055:00
[    6.832956] pinctrl core: registered pin 97 (IMGCLKOUT_3) on INTC1055:00
[    6.832956] pinctrl core: registered pin 98 (IMGCLKOUT_4) on INTC1055:00
[    6.832957] pinctrl core: registered pin 99 (ISH_GP_0) on INTC1055:00
[    6.832957] pinctrl core: registered pin 100 (ISH_GP_1) on INTC1055:00
[    6.832958] pinctrl core: registered pin 101 (ISH_GP_2) on INTC1055:00
[    6.832959] pinctrl core: registered pin 102 (ISH_GP_3) on INTC1055:00
[    6.832959] pinctrl core: registered pin 103 (IMGCLKOUT_0) on INTC1055:00
[    6.832960] pinctrl core: registered pin 104 (SRCCLKREQB_0) on INTC1055:00
[    6.832960] pinctrl core: registered pin 105 (SRCCLKREQB_1) on INTC1055:00
[    6.832961] pinctrl core: registered pin 106 (SRCCLKREQB_2) on INTC1055:00
[    6.832961] pinctrl core: registered pin 107 (SRCCLKREQB_3) on INTC1055:00
[    6.832962] pinctrl core: registered pin 108 (ISH_SPI_CSB) on INTC1055:00
[    6.832963] pinctrl core: registered pin 109 (ISH_SPI_CLK) on INTC1055:00
[    6.832963] pinctrl core: registered pin 110 (ISH_SPI_MISO) on INTC1055:00
[    6.832964] pinctrl core: registered pin 111 (ISH_SPI_MOSI) on INTC1055:00
[    6.832964] pinctrl core: registered pin 112 (ISH_UART0_RXD) on INTC1055:00
[    6.832965] pinctrl core: registered pin 113 (ISH_UART0_TXD) on INTC1055:00
[    6.832965] pinctrl core: registered pin 114 (ISH_UART0_RTSB) on INTC1055:00
[    6.832966] pinctrl core: registered pin 115 (ISH_UART0_CTSB) on INTC1055:00
[    6.832966] pinctrl core: registered pin 116 (ISH_GP_4) on INTC1055:00
[    6.832967] pinctrl core: registered pin 117 (ISH_GP_5) on INTC1055:00
[    6.832967] pinctrl core: registered pin 118 (I2S_MCLK1_OUT) on INTC1055:00
[    6.832968] pinctrl core: registered pin 119 (GSPI2_CLK_LOOPBK) on INTC1055:00
[    6.832969] pinctrl core: registered pin 120 (UART3_RXD) on INTC1055:00
[    6.832969] pinctrl core: registered pin 121 (UART3_TXD) on INTC1055:00
[    6.832970] pinctrl core: registered pin 122 (UART3_RTSB) on INTC1055:00
[    6.832970] pinctrl core: registered pin 123 (UART3_CTSB) on INTC1055:00
[    6.832971] pinctrl core: registered pin 124 (GSPI3_CS0B) on INTC1055:00
[    6.832971] pinctrl core: registered pin 125 (GSPI3_CLK) on INTC1055:00
[    6.832972] pinctrl core: registered pin 126 (GSPI3_MISO) on INTC1055:00
[    6.832972] pinctrl core: registered pin 127 (GSPI3_MOSI) on INTC1055:00
[    6.832974] pinctrl core: registered pin 128 (GSPI4_CS0B) on INTC1055:00
[    6.832975] pinctrl core: registered pin 129 (GSPI4_CLK) on INTC1055:00
[    6.832975] pinctrl core: registered pin 130 (GSPI4_MISO) on INTC1055:00
[    6.832976] pinctrl core: registered pin 131 (GSPI4_MOSI) on INTC1055:00
[    6.832976] pinctrl core: registered pin 132 (GSPI5_CS0B) on INTC1055:00
[    6.832977] pinctrl core: registered pin 133 (GSPI5_CLK) on INTC1055:00
[    6.832977] pinctrl core: registered pin 134 (GSPI5_MISO) on INTC1055:00
[    6.832978] pinctrl core: registered pin 135 (GSPI5_MOSI) on INTC1055:00
[    6.832978] pinctrl core: registered pin 136 (GSPI6_CS0B) on INTC1055:00
[    6.832979] pinctrl core: registered pin 137 (GSPI6_CLK) on INTC1055:00
[    6.832979] pinctrl core: registered pin 138 (GSPI6_MISO) on INTC1055:00
[    6.832980] pinctrl core: registered pin 139 (GSPI6_MOSI) on INTC1055:00
[    6.832980] pinctrl core: registered pin 140 (GSPI3_CLK_LOOPBK) on INTC1055:00
[    6.832981] pinctrl core: registered pin 141 (GSPI4_CLK_LOOPBK) on INTC1055:00
[    6.832982] pinctrl core: registered pin 142 (GSPI5_CLK_LOOPBK) on INTC1055:00
[    6.832982] pinctrl core: registered pin 143 (GSPI6_CLK_LOOPBK) on INTC1055:00
[    6.832983] pinctrl core: registered pin 144 (CNV_BTEN) on INTC1055:00
[    6.832983] pinctrl core: registered pin 145 (CNV_BT_HOST_WAKEB) on INTC1055:00
[    6.832984] pinctrl core: registered pin 146 (CNV_BT_IF_SELECT) on INTC1055:00
[    6.832984] pinctrl core: registered pin 147 (vCNV_BT_UART_TXD) on INTC1055:00
[    6.832985] pinctrl core: registered pin 148 (vCNV_BT_UART_RXD) on INTC1055:00
[    6.832985] pinctrl core: registered pin 149 (vCNV_BT_UART_CTS_B) on INTC1055:00
[    6.832986] pinctrl core: registered pin 150 (vCNV_BT_UART_RTS_B) on INTC1055:00
[    6.832987] pinctrl core: registered pin 151 (vCNV_MFUART1_TXD) on INTC1055:00
[    6.832987] pinctrl core: registered pin 152 (vCNV_MFUART1_RXD) on INTC1055:00
[    6.832988] pinctrl core: registered pin 153 (vCNV_MFUART1_CTS_B) on INTC1055:00
[    6.832988] pinctrl core: registered pin 154 (vCNV_MFUART1_RTS_B) on INTC1055:00
[    6.832989] pinctrl core: registered pin 155 (vUART0_TXD) on INTC1055:00
[    6.832989] pinctrl core: registered pin 156 (vUART0_RXD) on INTC1055:00
[    6.832990] pinctrl core: registered pin 157 (vUART0_CTS_B) on INTC1055:00
[    6.832990] pinctrl core: registered pin 158 (vUART0_RTS_B) on INTC1055:00
[    6.832991] pinctrl core: registered pin 159 (vISH_UART0_TXD) on INTC1055:00
[    6.832992] pinctrl core: registered pin 160 (vISH_UART0_RXD) on INTC1055:00
[    6.832992] pinctrl core: registered pin 161 (vISH_UART0_CTS_B) on INTC1055:00
[    6.832993] pinctrl core: registered pin 162 (vISH_UART0_RTS_B) on INTC1055:00
[    6.832993] pinctrl core: registered pin 163 (vCNV_BT_I2S_BCLK) on INTC1055:00
[    6.832994] pinctrl core: registered pin 164 (vCNV_BT_I2S_WS_SYNC) on INTC1055:00
[    6.832994] pinctrl core: registered pin 165 (vCNV_BT_I2S_SDO) on INTC1055:00
[    6.832995] pinctrl core: registered pin 166 (vCNV_BT_I2S_SDI) on INTC1055:00
[    6.832995] pinctrl core: registered pin 167 (vI2S2_SCLK) on INTC1055:00
[    6.832996] pinctrl core: registered pin 168 (vI2S2_SFRM) on INTC1055:00
[    6.832997] pinctrl core: registered pin 169 (vI2S2_TXD) on INTC1055:00
[    6.832997] pinctrl core: registered pin 170 (vI2S2_RXD) on INTC1055:00
[    6.833001] pinctrl core: registered pin 171 (SMBCLK) on INTC1055:00
[    6.833001] pinctrl core: registered pin 172 (SMBDATA) on INTC1055:00
[    6.833002] pinctrl core: registered pin 173 (SMBALERTB) on INTC1055:00
[    6.833003] pinctrl core: registered pin 174 (SML0CLK) on INTC1055:00
[    6.833003] pinctrl core: registered pin 175 (SML0DATA) on INTC1055:00
[    6.833004] pinctrl core: registered pin 176 (SML0ALERTB) on INTC1055:00
[    6.833004] pinctrl core: registered pin 177 (SML1CLK) on INTC1055:00
[    6.833005] pinctrl core: registered pin 178 (SML1DATA) on INTC1055:00
[    6.833005] pinctrl core: registered pin 179 (UART0_RXD) on INTC1055:00
[    6.833006] pinctrl core: registered pin 180 (UART0_TXD) on INTC1055:00
[    6.833006] pinctrl core: registered pin 181 (UART0_RTSB) on INTC1055:00
[    6.833007] pinctrl core: registered pin 182 (UART0_CTSB) on INTC1055:00
[    6.833008] pinctrl core: registered pin 183 (UART1_RXD) on INTC1055:00
[    6.833008] pinctrl core: registered pin 184 (UART1_TXD) on INTC1055:00
[    6.833009] pinctrl core: registered pin 185 (UART1_RTSB) on INTC1055:00
[    6.833009] pinctrl core: registered pin 186 (UART1_CTSB) on INTC1055:00
[    6.833010] pinctrl core: registered pin 187 (I2C0_SDA) on INTC1055:00
[    6.833010] pinctrl core: registered pin 188 (I2C0_SCL) on INTC1055:00
[    6.833011] pinctrl core: registered pin 189 (I2C1_SDA) on INTC1055:00
[    6.833011] pinctrl core: registered pin 190 (I2C1_SCL) on INTC1055:00
[    6.833012] pinctrl core: registered pin 191 (UART2_RXD) on INTC1055:00
[    6.833013] pinctrl core: registered pin 192 (UART2_TXD) on INTC1055:00
[    6.833014] pinctrl core: registered pin 193 (UART2_RTSB) on INTC1055:00
[    6.833014] pinctrl core: registered pin 194 (UART2_CTSB) on INTC1055:00
[    6.833015] pinctrl core: registered pin 195 (CNV_BRI_DT) on INTC1055:00
[    6.833015] pinctrl core: registered pin 196 (CNV_BRI_RSP) on INTC1055:00
[    6.833016] pinctrl core: registered pin 197 (CNV_RGI_DT) on INTC1055:00
[    6.833017] pinctrl core: registered pin 198 (CNV_RGI_RSP) on INTC1055:00
[    6.833017] pinctrl core: registered pin 199 (CNV_RF_RESET_B) on INTC1055:00
[    6.833018] pinctrl core: registered pin 200 (GPPC_F_5) on INTC1055:00
[    6.833018] pinctrl core: registered pin 201 (CNV_PA_BLANKING) on INTC1055:00
[    6.833019] pinctrl core: registered pin 202 (GPPC_F_7) on INTC1055:00
[    6.833019] pinctrl core: registered pin 203 (I2S_MCLK2_INOUT) on INTC1055:00
[    6.833020] pinctrl core: registered pin 204 (BOOTMPC) on INTC1055:00
[    6.833021] pinctrl core: registered pin 205 (GPPC_F_10) on INTC1055:00
[    6.833021] pinctrl core: registered pin 206 (GPPC_F_11) on INTC1055:00
[    6.833022] pinctrl core: registered pin 207 (GSXDOUT) on INTC1055:00
[    6.833022] pinctrl core: registered pin 208 (GSXSLOAD) on INTC1055:00
[    6.833023] pinctrl core: registered pin 209 (GSXDIN) on INTC1055:00
[    6.833023] pinctrl core: registered pin 210 (GSXSRESETB) on INTC1055:00
[    6.833024] pinctrl core: registered pin 211 (GSXCLK) on INTC1055:00
[    6.833024] pinctrl core: registered pin 212 (GMII_MDC) on INTC1055:00
[    6.833025] pinctrl core: registered pin 213 (GMII_MDIO) on INTC1055:00
[    6.833025] pinctrl core: registered pin 214 (SRCCLKREQB_6) on INTC1055:00
[    6.833026] pinctrl core: registered pin 215 (EXT_PWR_GATEB) on INTC1055:00
[    6.833026] pinctrl core: registered pin 216 (EXT_PWR_GATE2B) on INTC1055:00
[    6.833027] pinctrl core: registered pin 217 (VNN_CTRL) on INTC1055:00
[    6.833027] pinctrl core: registered pin 218 (V1P05_CTRL) on INTC1055:00
[    6.833028] pinctrl core: registered pin 219 (GPPF_CLK_LOOPBACK) on INTC1055:00
[    6.833029] pinctrl core: registered pin 220 (L_BKLTEN) on INTC1055:00
[    6.833029] pinctrl core: registered pin 221 (L_BKLTCTL) on INTC1055:00
[    6.833030] pinctrl core: registered pin 222 (L_VDDEN) on INTC1055:00
[    6.833030] pinctrl core: registered pin 223 (SYS_PWROK) on INTC1055:00
[    6.833031] pinctrl core: registered pin 224 (SYS_RESETB) on INTC1055:00
[    6.833031] pinctrl core: registered pin 225 (MLK_RSTB) on INTC1055:00
[    6.833032] pinctrl core: registered pin 226 (SATAXPCIE_0) on INTC1055:00
[    6.833032] pinctrl core: registered pin 227 (SPI1_IO_2) on INTC1055:00
[    6.833033] pinctrl core: registered pin 228 (SPI1_IO_3) on INTC1055:00
[    6.833033] pinctrl core: registered pin 229 (CPU_GP_0) on INTC1055:00
[    6.833034] pinctrl core: registered pin 230 (SATA_DEVSLP_0) on INTC1055:00
[    6.833035] pinctrl core: registered pin 231 (SATA_DEVSLP_1) on INTC1055:00
[    6.833035] pinctrl core: registered pin 232 (GPPC_E_6) on INTC1055:00
[    6.833036] pinctrl core: registered pin 233 (CPU_GP_1) on INTC1055:00
[    6.833036] pinctrl core: registered pin 234 (SPI1_CS1B) on INTC1055:00
[    6.833037] pinctrl core: registered pin 235 (USB2_OCB_0) on INTC1055:00
[    6.833037] pinctrl core: registered pin 236 (SPI1_CSB) on INTC1055:00
[    6.833038] pinctrl core: registered pin 237 (SPI1_CLK) on INTC1055:00
[    6.833038] pinctrl core: registered pin 238 (SPI1_MISO_IO_1) on INTC1055:00
[    6.833039] pinctrl core: registered pin 239 (SPI1_MOSI_IO_0) on INTC1055:00
[    6.833039] pinctrl core: registered pin 240 (DDSP_HPD_A) on INTC1055:00
[    6.833040] pinctrl core: registered pin 241 (ISH_GP_6) on INTC1055:00
[    6.833040] pinctrl core: registered pin 242 (ISH_GP_7) on INTC1055:00
[    6.833041] pinctrl core: registered pin 243 (GPPC_E_17) on INTC1055:00
[    6.833041] pinctrl core: registered pin 244 (DDP1_CTRLCLK) on INTC1055:00
[    6.833042] pinctrl core: registered pin 245 (DDP1_CTRLDATA) on INTC1055:00
[    6.833042] pinctrl core: registered pin 246 (DDP2_CTRLCLK) on INTC1055:00
[    6.833043] pinctrl core: registered pin 247 (DDP2_CTRLDATA) on INTC1055:00
[    6.833044] pinctrl core: registered pin 248 (DDPA_CTRLCLK) on INTC1055:00
[    6.833044] pinctrl core: registered pin 249 (DDPA_CTRLDATA) on INTC1055:00
[    6.833045] pinctrl core: registered pin 250 (SPI1_CLK_LOOPBK) on INTC1055:00
[    6.833045] pinctrl core: registered pin 251 (JTAG_TDO) on INTC1055:00
[    6.833046] pinctrl core: registered pin 252 (JTAGX) on INTC1055:00
[    6.833046] pinctrl core: registered pin 253 (PRDYB) on INTC1055:00
[    6.833047] pinctrl core: registered pin 254 (PREQB) on INTC1055:00
[    6.833047] pinctrl core: registered pin 255 (CPU_TRSTB) on INTC1055:00
[    6.833049] pinctrl core: registered pin 256 (JTAG_TDI) on INTC1055:00
[    6.833049] pinctrl core: registered pin 257 (JTAG_TMS) on INTC1055:00
[    6.833050] pinctrl core: registered pin 258 (JTAG_TCK) on INTC1055:00
[    6.833050] pinctrl core: registered pin 259 (DBG_PMODE) on INTC1055:00
[    6.833051] pinctrl core: registered pin 260 (HDA_BCLK) on INTC1055:00
[    6.833052] pinctrl core: registered pin 261 (HDA_SYNC) on INTC1055:00
[    6.833052] pinctrl core: registered pin 262 (HDA_SDO) on INTC1055:00
[    6.833053] pinctrl core: registered pin 263 (HDA_SDI_0) on INTC1055:00
[    6.833053] pinctrl core: registered pin 264 (HDA_RSTB) on INTC1055:00
[    6.833054] pinctrl core: registered pin 265 (HDA_SDI_1) on INTC1055:00
[    6.833054] pinctrl core: registered pin 266 (GPP_R_6) on INTC1055:00
[    6.833055] pinctrl core: registered pin 267 (GPP_R_7) on INTC1055:00
[    6.833055] pinctrl core: registered pin 268 (SPI0_IO_2) on INTC1055:00
[    6.833056] pinctrl core: registered pin 269 (SPI0_IO_3) on INTC1055:00
[    6.833057] pinctrl core: registered pin 270 (SPI0_MOSI_IO_0) on INTC1055:00
[    6.833057] pinctrl core: registered pin 271 (SPI0_MISO_IO_1) on INTC1055:00
[    6.833058] pinctrl core: registered pin 272 (SPI0_TPM_CSB) on INTC1055:00
[    6.833058] pinctrl core: registered pin 273 (SPI0_FLASH_0_CSB) on INTC1055:00
[    6.833059] pinctrl core: registered pin 274 (SPI0_FLASH_1_CSB) on INTC1055:00
[    6.833059] pinctrl core: registered pin 275 (SPI0_CLK) on INTC1055:00
[    6.833060] pinctrl core: registered pin 276 (SPI0_CLK_LOOPBK) on INTC1055:00
[    6.833063] tigerlake-pinctrl INTC1055:00: failed to lookup the default state
[    6.833064] tigerlake-pinctrl INTC1055:00: failed to lookup the sleep state
[    6.833174] gpiochip_find_base: found new base at 664
[    6.839934] gpio gpiochip0: (INTC1055:00): created GPIO range 0->25 ==> INTC1055:00 PIN 0->25
[    6.839936] gpio gpiochip0: (INTC1055:00): created GPIO range 32->47 ==> INTC1055:00 PIN 26->41
[    6.839937] gpio gpiochip0: (INTC1055:00): created GPIO range 64->88 ==> INTC1055:00 PIN 42->66
[    6.839938] gpio gpiochip0: (INTC1055:00): created GPIO range 96->103 ==> INTC1055:00 PIN 67->74
[    6.839939] gpio gpiochip0: (INTC1055:00): created GPIO range 128->151 ==> INTC1055:00 PIN 75->98
[    6.839940] gpio gpiochip0: (INTC1055:00): created GPIO range 160->180 ==> INTC1055:00 PIN 99->119
[    6.839941] gpio gpiochip0: (INTC1055:00): created GPIO range 192->215 ==> INTC1055:00 PIN 120->143
[    6.839942] gpio gpiochip0: (INTC1055:00): created GPIO range 224->250 ==> INTC1055:00 PIN 144->170
[    6.839943] gpio gpiochip0: (INTC1055:00): created GPIO range 256->279 ==> INTC1055:00 PIN 171->194
[    6.839944] gpio gpiochip0: (INTC1055:00): created GPIO range 288->312 ==> INTC1055:00 PIN 195->219
[    6.839945] gpio gpiochip0: (INTC1055:00): created GPIO range 320->344 ==> INTC1055:00 PIN 226->250
[    6.839946] gpio gpiochip0: (INTC1055:00): created GPIO range 352->359 ==> INTC1055:00 PIN 260->267
[    6.840060] gpio gpiochip0: (INTC1055:00): added GPIO chardev (254:0)
[    6.840073] gpio gpiochip0: registered GPIOs 664 to 1023 on INTC1055:00
[    6.840141] initcall tgl_pinctrl_driver_init+0x0/0x1000 [pinctrl_tigerlake] returned 0 after 43806 usecs
[    6.872310] calling  ish_driver_init+0x0/0x1000 [intel_ish_ipc] @ 414
[    6.978643] calling  rtl8152_driver_init+0x0/0x1000 [r8152] @ 426
[    6.978645] calling  fjes_init_module+0x0/0x1000 [fjes] @ 420
[    6.979503] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 160 usecs
[    6.981182] calling  hid_init+0x0/0x1000 [usbhid] @ 437
[    6.986338] calling  e1000_init_module+0x0/0x1000 [e1000e] @ 410
[    6.987648] usbcore: registered new interface driver r8152
[    6.988194] e1000e: Intel(R) PRO/1000 Network Driver
[    6.988195] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    6.988296] e1000e 0000:00:1f.6: enabling device (0000 -> 0002)
[    6.989219] initcall rtl8152_driver_init+0x0/0x1000 [r8152] returned 0 after 1024 usecs
[    6.990231] calling  aesni_init+0x0/0x1000 [aesni_intel] @ 418
[    6.990485] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    6.995042] usbcore: registered new interface driver usbhid
[    6.995189] AVX2 version of gcm_enc/dec engaged.
[    6.996166] usbhid: USB HID core driver
[    7.008679] AES CTR mode by8 optimization enabled
[    7.009706] initcall hid_init+0x0/0x1000 [usbhid] returned 0 after 14516 usecs
[    7.011688] initcall aesni_init+0x0/0x1000 [aesni_intel] returned 0 after 16498 usecs
[    7.133821] usb 4-2: reset SuperSpeed USB device number 2 using xhci_hcd
[    7.163887] calling  hid_generic_init+0x0/0x1000 [hid_generic] @ 407
[    7.163894] calling  usb_kbd_driver_init+0x0/0x1000 [usbkbd] @ 424
[    7.163897] calling  ghash_pclmulqdqni_mod_init+0x0/0x1000 [ghash_clmulni_intel] @ 409
[    7.163910] calling  fjes_init_module+0x0/0x1000 [fjes] @ 429
[    7.163930] usbcore: registered new interface driver usbkbd
[    7.163933] initcall usb_kbd_driver_init+0x0/0x1000 [usbkbd] returned 0 after 12 usecs
[    7.164036] initcall ghash_pclmulqdqni_mod_init+0x0/0x1000 [ghash_clmulni_intel] returned 0 after 115 usecs
[    7.164387] calling  crc32_pclmul_mod_init+0x0/0x1000 [crc32_pclmul] @ 418
[    7.164451] initcall crc32_pclmul_mod_init+0x0/0x1000 [crc32_pclmul] returned 0 after 57 usecs
[    7.164452] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 58 usecs
[    7.165143] calling  crct10dif_intel_mod_init+0x0/0x1000 [crct10dif_pclmul] @ 419
[    7.165171] input: Logitech USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:046D:C31C.0001/input/input4
[    7.165205] initcall crct10dif_intel_mod_init+0x0/0x1000 [crct10dif_pclmul] returned 0 after 53 usecs
[    7.170208] PM: Image not found (code -22)
[    7.197349] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[    7.225242] hid-generic 0003:046D:C31C.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Keyboard] on usb-0000:00:14.0-8/input0
[    7.225404] input: Logitech USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.1/0003:046D:C31C.0002/input/input5
[    7.228710] r8152 4-2:1.0: load rtl8153a-3 v2 02/07/20 successfully
[    7.259127] r8152 4-2:1.0 eth0: v1.12.13
[    7.260901] calling  fjes_init_module+0x0/0x1000 [fjes] @ 427
[    7.262077] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 1161 usecs
[    7.262592] r8152 4-2:1.0 enp0s20f0u2: renamed from eth0
[    7.285311] input: Logitech USB Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.1/0003:046D:C31C.0002/input/input6
[    7.285532] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 88:88:88:88:87:88
[    7.285537] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[    7.285536] hid-generic 0003:046D:C31C.0002: input,hidraw1: USB HID v1.10 Device [Logitech USB Keyboard] on usb-0000:00:14.0-8/input1
[    7.285563] initcall hid_generic_init+0x0/0x1000 [hid_generic] returned 0 after 24648 usecs
[    7.285668] e1000e 0000:00:1f.6 eth0: MAC: 15, PHY: 12, PBA No: FFFFFF-0FF
[    7.285716] initcall e1000_init_module+0x0/0x1000 [e1000e] returned 0 after 24800 usecs
[    7.287164] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[    7.348449] calling  fjes_init_module+0x0/0x1000 [fjes] @ 433
[    7.349292] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 829 usecs
[    7.420546] calling  fjes_init_module+0x0/0x1000 [fjes] @ 421
[    7.421411] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 851 usecs
[    7.480334] calling  fjes_init_module+0x0/0x1000 [fjes] @ 441
[    7.481504] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 1155 usecs
[    7.532642] calling  fjes_init_module+0x0/0x1000 [fjes] @ 411
[    7.533506] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 852 usecs
[    7.608469] calling  fjes_init_module+0x0/0x1000 [fjes] @ 425
[    7.608809] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 333 usecs
[    7.826033] initcall ish_driver_init+0x0/0x1000 [intel_ish_ipc] returned 0 after 217557 usecs
[    7.831477] calling  ish_hid_init+0x0/0x1000 [intel_ishtp_hid] @ 491
[    7.832821] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=6
[    7.842441] hid-generic 001F:8087:0AC2.0003: hidraw2: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    7.852669] hid-generic 001F:8087:0AC2.0004: hidraw3: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    7.863556] hid-generic 001F:8087:0AC2.0005: hidraw4: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    7.865545] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Quota mode: none.
[    7.869705] hid-generic 001F:8087:0AC2.0006: hidraw5: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on 
[    7.880044] hid-generic 001F:8087:0AC3.0007: hidraw6: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC3] on 
[    7.883724] hid-generic 001F:8087:0AC3.0008: hidraw7: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC3] on 
[    7.883753] initcall ish_hid_init+0x0/0x1000 [intel_ishtp_hid] returned 0 after 52267 usecs
[    7.885354] calling  sensor_hub_driver_init+0x0/0x1000 [hid_sensor_hub] @ 489
[    7.892951] initcall sensor_hub_driver_init+0x0/0x1000 [hid_sensor_hub] returned 0 after 7587 usecs
[    7.895955] calling  hid_sensor_custom_platform_driver_init+0x0/0x1000 [hid_sensor_custom] @ 512
[    7.932973] initcall hid_sensor_custom_platform_driver_init+0x0/0x1000 [hid_sensor_custom] returned 0 after 37009 usecs
[    8.046913] printk: systemd: 15 output lines suppressed due to ratelimiting
[    8.116720] calling  xt_init+0x0/0x1000 [x_tables] @ 1
[    8.116727] initcall xt_init+0x0/0x1000 [x_tables] returned 0 after 2 usecs
[    8.117831] calling  ip_tables_init+0x0/0x1000 [ip_tables] @ 1
[    8.117837] initcall ip_tables_init+0x0/0x1000 [ip_tables] returned 0 after 3 usecs
[    8.121184] systemd[1]: systemd 239 (239-45.el8) 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=legacy)
[    8.121224] systemd[1]: Detected architecture x86-64.
[    8.121435] systemd[1]: Set hostname to <p-rplp02>.
[    8.285741] systemd[1]: systemd-journald.service: Succeeded.
[    8.286482] systemd[1]: initrd-switch-root.service: Succeeded.
[    8.286585] systemd[1]: Stopped Switch Root.
[    8.286752] systemd[1]: systemd-journald.service: Service has no hold-off time (RestartSec=0), scheduling restart.
[    8.286781] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    8.286797] systemd[1]: Stopped Journal Service.
[    8.287078] systemd[1]: Starting Journal Service...
[    8.301642] EXT4-fs (nvme0n1p2): re-mounted. Quota mode: none.
[    8.305704] Adding 36700156k swap on /dev/nvme0n1p4.  Priority:-2 extents:1 across:36700156k SSFS
[    8.316641] calling  fq_codel_module_init+0x0/0x1000 [sch_fq_codel] @ 674
[    8.316649] initcall fq_codel_module_init+0x0/0x1000 [sch_fq_codel] returned 0 after 0 usecs
[    8.400557] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 686
[    8.400566] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.466217] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 713
[    8.466223] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.502156] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 718
[    8.502162] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.534302] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 719
[    8.534314] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.566847] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 716
[    8.566852] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.606213] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 714
[    8.606221] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.642660] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 721
[    8.642667] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.674290] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 706
[    8.674296] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.710635] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 719
[    8.710642] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.754535] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 714
[    8.754541] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.790604] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 719
[    8.790609] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.830747] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 722
[    8.830753] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.870706] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 718
[    8.870717] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.902779] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 709
[    8.902785] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.934584] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 687
[    8.934590] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    8.974556] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 719
[    8.974562] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.006723] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 694
[    9.006731] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.062564] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 714
[    9.062569] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.102086] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 695
[    9.102093] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.158298] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 714
[    9.158309] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.206679] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 685
[    9.206684] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.238609] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 706
[    9.238615] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.270640] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 704
[    9.270645] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.302008] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 690
[    9.302017] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.350857] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 711
[    9.350862] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.398586] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 713
[    9.398591] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.402166] calling  acpi_pad_init+0x0/0x1000 [acpi_pad] @ 711
[    9.402264] initcall acpi_pad_init+0x0/0x1000 [acpi_pad] returned 0 after 93 usecs
[    9.408139] calling  acpi_tad_driver_init+0x0/0x1000 [acpi_tad] @ 711
[    9.408266] initcall acpi_tad_driver_init+0x0/0x1000 [acpi_tad] returned 0 after 123 usecs
[    9.451505] calling  fjes_init_module+0x0/0x1000 [fjes] @ 711
[    9.451516] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 715
[    9.451524] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.451997] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 473 usecs
[    9.514299] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 704
[    9.514304] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.515829] calling  int3400_thermal_driver_init+0x0/0x1000 [int3400_thermal] @ 713
[    9.516054] Consider using thermal netlink events interface
[    9.516146] initcall int3400_thermal_driver_init+0x0/0x1000 [int3400_thermal] returned 0 after 314 usecs
[    9.521258] calling  fjes_init_module+0x0/0x1000 [fjes] @ 715
[    9.521694] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 425 usecs
[    9.598581] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 716
[    9.598588] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.663027] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 687
[    9.663033] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.663352] calling  mac_hid_init+0x0/0x1000 [mac_hid] @ 704
[    9.663359] initcall mac_hid_init+0x0/0x1000 [mac_hid] returned 0 after 2 usecs
[    9.664041] calling  fjes_init_module+0x0/0x1000 [fjes] @ 715
[    9.664352] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 299 usecs
[    9.764153] calling  fjes_init_module+0x0/0x1000 [fjes] @ 716
[    9.764211] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 708
[    9.764219] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.764334] calling  parport_default_proc_register+0x0/0x1000 [parport] @ 715
[    9.764353] initcall parport_default_proc_register+0x0/0x1000 [parport] returned 0 after 11 usecs
[    9.764466] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 125 usecs
[    9.764972] calling  parport_pc_init+0x0/0xf1a [parport_pc] @ 715
[    9.766181] initcall parport_pc_init+0x0/0xf1a [parport_pc] returned 0 after 1204 usecs
[    9.838479] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 697
[    9.838485] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.840310] calling  fjes_init_module+0x0/0x1000 [fjes] @ 711
[    9.840814] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 494 usecs
[    9.926784] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 706
[    9.926795] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[    9.929295] calling  fjes_init_module+0x0/0x1000 [fjes] @ 704
[    9.929728] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 425 usecs
[   10.003071] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 718
[   10.003080] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.072028] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 694
[   10.072035] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.088283] calling  fjes_init_module+0x0/0x1000 [fjes] @ 715
[   10.088870] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 575 usecs
[   10.172323] calling  fjes_init_module+0x0/0x1000 [fjes] @ 711
[   10.172995] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 660 usecs
[   10.177828] calling  rapl_init+0x0/0x1000 [intel_rapl_common] @ 706
[   10.177835] intel_rapl_common: driver does not support CPU family 6 model 186
[   10.177836] initcall rapl_init+0x0/0x1000 [intel_rapl_common] returned -19 after 1 usecs
[   10.177864] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 717
[   10.177874] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.177890] calling  nhi_init+0x0/0x1000 [thunderbolt] @ 687
[   10.177919] ACPI: bus type thunderbolt registered
[   10.178188] thunderbolt 0000:00:0d.2: total paths: 12
[   10.178194] thunderbolt 0000:00:0d.2: IOMMU DMA protection is enabled
[   10.178379] thunderbolt 0000:00:0d.2: allocating TX ring 0 of size 10
[   10.178403] thunderbolt 0000:00:0d.2: allocating RX ring 0 of size 10
[   10.178420] thunderbolt 0000:00:0d.2: control channel created
[   10.178423] thunderbolt 0000:00:0d.2: using software connection manager
[   10.192755] calling  iio_init+0x0/0x1000 [industrialio] @ 715
[   10.192798] initcall iio_init+0x0/0x1000 [industrialio] returned 0 after 26 usecs
[   10.222522] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 685
[   10.222529] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.286770] calling  hid_als_platform_driver_init+0x0/0x1000 [hid_sensor_als] @ 715
[   10.287224] calling  hid_gyro_3d_platform_driver_init+0x0/0x1000 [hid_sensor_gyro_3d] @ 697
[   10.288088] calling  hid_accel_3d_platform_driver_init+0x0/0x1000 [hid_sensor_accel_3d] @ 716
[   10.289396] initcall hid_gyro_3d_platform_driver_init+0x0/0x1000 [hid_sensor_gyro_3d] returned 0 after 1301 usecs
[   10.290081] initcall hid_als_platform_driver_init+0x0/0x1000 [hid_sensor_als] returned 0 after 1986 usecs
[   10.293191] initcall hid_accel_3d_platform_driver_init+0x0/0x1000 [hid_sensor_accel_3d] returned 0 after 5096 usecs
[   10.318305] calling  hid_magn_3d_platform_driver_init+0x0/0x1000 [hid_sensor_magn_3d] @ 694
[   10.318309] calling  fjes_init_module+0x0/0x1000 [fjes] @ 713
[   10.318699] initcall fjes_init_module+0x0/0x1000 [fjes] returned -19 after 381 usecs
[   10.319651] initcall hid_magn_3d_platform_driver_init+0x0/0x1000 [hid_sensor_magn_3d] returned 0 after 1332 usecs
[   10.319858] calling  hid_incl_3d_platform_driver_init+0x0/0x1000 [hid_sensor_incl_3d] @ 708
[   10.319866] calling  hid_dev_rot_platform_driver_init+0x0/0x1000 [hid_sensor_rotation] @ 717
[   10.320319] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 724
[   10.320326] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.320370] calling  hid_prox_platform_driver_init+0x0/0x1000 [hid_sensor_prox] @ 706
[   10.320976] initcall hid_incl_3d_platform_driver_init+0x0/0x1000 [hid_sensor_incl_3d] returned 0 after 603 usecs
[   10.321675] initcall hid_prox_platform_driver_init+0x0/0x1000 [hid_sensor_prox] returned 0 after 1302 usecs
[   10.323490] calling  intel_lpss_init+0x0/0x1000 [intel_lpss] @ 706
[   10.323497] initcall intel_lpss_init+0x0/0x1000 [intel_lpss] returned 0 after 2 usecs
[   10.324092] calling  intel_lpss_pci_driver_init+0x0/0x1000 [intel_lpss_pci] @ 706
[   10.324933] initcall hid_dev_rot_platform_driver_init+0x0/0x1000 [hid_sensor_rotation] returned 0 after 837 usecs
[   10.325095] thunderbolt 0000:00:0d.2: created link from 0000:00:0d.0
[   10.328972] calling  mei_init+0x0/0xb9 [mei] @ 715
[   10.329029] initcall mei_init+0x0/0xb9 [mei] returned 0 after 41 usecs
[   10.330887] calling  mei_me_driver_init+0x0/0x1000 [mei_me] @ 715
[   10.330931] initcall mei_me_driver_init+0x0/0x1000 [mei_me] returned 0 after 33 usecs
[   10.330945] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[   10.340642] calling  input_leds_init+0x0/0x1000 [input_leds] @ 685
[   10.340722] initcall input_leds_init+0x0/0x1000 [input_leds] returned 0 after 72 usecs
[   10.341094] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[   10.341482] idma64 idma64.0: Found Intel integrated DMA 64-bit
[   10.343687] calling  joydev_init+0x0/0x1000 [joydev] @ 715
[   10.343694] initcall joydev_init+0x0/0x1000 [joydev] returned 0 after 1 usecs
[   10.349635] i2c_designware i2c_designware.0: GPIO lookup for consumer scl
[   10.349638] i2c_designware i2c_designware.0: using ACPI for GPIO lookup
[   10.349639] acpi device:38: GPIO: looking up scl-gpios
[   10.349641] acpi device:38: GPIO: looking up scl-gpio
[   10.349641] i2c_designware i2c_designware.0: using lookup tables for GPIO lookup
[   10.349642] i2c_designware i2c_designware.0: No GPIO consumer scl found
[   10.373351] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[   10.373600] idma64 idma64.1: Found Intel integrated DMA 64-bit
[   10.380725] i2c_designware i2c_designware.1: GPIO lookup for consumer scl
[   10.380727] i2c_designware i2c_designware.1: using ACPI for GPIO lookup
[   10.380729] acpi device:39: GPIO: looking up scl-gpios
[   10.380730] acpi device:39: GPIO: looking up scl-gpio
[   10.380731] i2c_designware i2c_designware.1: using lookup tables for GPIO lookup
[   10.380732] i2c_designware i2c_designware.1: No GPIO consumer scl found
[   10.405348] intel-lpss 0000:00:19.0: enabling device (0000 -> 0002)
[   10.405729] idma64 idma64.2: Found Intel integrated DMA 64-bit
[   10.406939] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 696
[   10.406949] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.409841] calling  smbalert_driver_init+0x0/0x1000 [i2c_smbus] @ 715
[   10.410095] calling  intel_spi_pci_driver_init+0x0/0x1000 [spi_intel_pci] @ 713
[   10.410096] initcall smbalert_driver_init+0x0/0x1000 [i2c_smbus] returned 0 after 247 usecs
[   10.410118] calling  init_soundcore+0x0/0x1000 [soundcore] @ 724
[   10.410132] initcall init_soundcore+0x0/0x1000 [soundcore] returned 0 after 6 usecs
[   10.410243] initcall intel_spi_pci_driver_init+0x0/0x1000 [spi_intel_pci] returned 0 after 118 usecs
[   10.411572] calling  i2c_i801_init+0x0/0x1000 [i2c_i801] @ 715
[   10.411636] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[   10.411959] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[   10.412051] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[   10.412154] calling  alsa_sound_init+0x0/0x8f [snd] @ 724
[   10.412178] initcall alsa_sound_init+0x0/0x8f [snd] returned 0 after 11 usecs
[   10.412915] calling  alsa_timer_init+0x0/0x1000 [snd_timer] @ 724
[   10.412952] initcall alsa_timer_init+0x0/0x1000 [snd_timer] returned 0 after 29 usecs
[   10.416783] calling  alsa_pcm_init+0x0/0x1000 [snd_pcm] @ 744
[   10.416793] initcall alsa_pcm_init+0x0/0x1000 [snd_pcm] returned 0 after 1 usecs
[   10.418285] calling  alsa_seq_device_init+0x0/0x1000 [snd_seq_device] @ 743
[   10.418299] initcall alsa_seq_device_init+0x0/0x1000 [snd_seq_device] returned 0 after 9 usecs
[   10.419309] calling  alsa_seq_init+0x0/0x58 [snd_seq] @ 743
[   10.419345] initcall alsa_seq_init+0x0/0x58 [snd_seq] returned 0 after 29 usecs
[   10.420064] calling  alsa_hwdep_init+0x0/0x1000 [snd_hwdep] @ 724
[   10.420075] initcall alsa_hwdep_init+0x0/0x1000 [snd_hwdep] returned 0 after 2 usecs
[   10.421976] calling  hda_bus_init+0x0/0x1000 [snd_hda_core] @ 724
[   10.421998] initcall hda_bus_init+0x0/0x1000 [snd_hda_core] returned 0 after 9 usecs
[   10.425079] i2c_designware i2c_designware.2: GPIO lookup for consumer scl
[   10.425084] i2c_designware i2c_designware.2: using ACPI for GPIO lookup
[   10.425087] acpi device:3c: GPIO: looking up scl-gpios
[   10.425089] acpi device:3c: GPIO: looking up scl-gpio
[   10.425091] i2c_designware i2c_designware.2: using lookup tables for GPIO lookup
[   10.425093] i2c_designware i2c_designware.2: No GPIO consumer scl found
[   10.426141] calling  azx_driver_init+0x0/0x1000 [snd_hda_intel] @ 724
[   10.426185] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[   10.426305] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[   10.426661] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops)
[   10.426698] initcall azx_driver_init+0x0/0x1000 [snd_hda_intel] returned 0 after 544 usecs
[   10.428352] calling  ac97_bus_init+0x0/0x1000 [ac97_bus] @ 724
[   10.428362] initcall ac97_bus_init+0x0/0x1000 [ac97_bus] returned 0 after 4 usecs
[   10.435434] calling  snd_soc_init+0x0/0x7e [snd_soc_core] @ 724
[   10.435596] initcall snd_soc_init+0x0/0x7e [snd_soc_core] returned 0 after 135 usecs
[   10.436835] calling  sdw_bus_init+0x0/0x1000 [soundwire_bus] @ 724
[   10.436855] initcall sdw_bus_init+0x0/0x1000 [soundwire_bus] returned 0 after 11 usecs
[   10.438474] i2c i2c-17: 2/2 memory slots populated (from DMI)
[   10.438479] i2c i2c-17: Memory type 0x22 not supported yet, not instantiating SPD
[   10.438589] initcall i2c_i801_init+0x0/0x1000 [i2c_i801] returned 0 after 1744 usecs
[   10.442730] calling  sdw_intel_drv_init+0x0/0x1000 [soundwire_intel] @ 724
[   10.442745] initcall sdw_intel_drv_init+0x0/0x1000 [soundwire_intel] returned 0 after 7 usecs
[   10.444062] calling  hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] @ 749
[   10.444830] calling  snd_sof_pci_intel_tgl_driver_init+0x0/0x1000 [snd_sof_pci_intel_tgl] @ 724
[   10.444856] initcall snd_sof_pci_intel_tgl_driver_init+0x0/0x1000 [snd_sof_pci_intel_tgl] returned 0 after 21 usecs
[   10.457126] intel-lpss 0000:00:19.1: enabling device (0000 -> 0002)
[   10.457492] idma64 idma64.3: Found Intel integrated DMA 64-bit
[   10.461620] initcall hdmi_driver_init+0x0/0x1000 [snd_hda_codec_hdmi] returned 0 after 16784 usecs
[   10.464498] i2c_designware i2c_designware.3: GPIO lookup for consumer scl
[   10.464500] i2c_designware i2c_designware.3: using ACPI for GPIO lookup
[   10.464501] acpi device:3d: GPIO: looking up scl-gpios
[   10.464502] acpi device:3d: GPIO: looking up scl-gpio
[   10.464503] i2c_designware i2c_designware.3: using lookup tables for GPIO lookup
[   10.464504] i2c_designware i2c_designware.3: No GPIO consumer scl found
[   10.479472] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 699
[   10.479482] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.479623] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input7
[   10.479672] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input8
[   10.479714] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input9
[   10.479752] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[   10.479782] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[   10.479811] input: HDA Intel PCH HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[   10.479841] input: HDA Intel PCH HDMI/DP,pcm=12 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[   10.479870] input: HDA Intel PCH HDMI/DP,pcm=13 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[   10.479899] input: HDA Intel PCH HDMI/DP,pcm=14 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[   10.479927] input: HDA Intel PCH HDMI/DP,pcm=15 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[   10.479956] input: HDA Intel PCH HDMI/DP,pcm=16 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[   10.479985] input: HDA Intel PCH HDMI/DP,pcm=17 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
[   10.489177] intel-lpss 0000:00:1e.0: enabling device (0000 -> 0002)
[   10.489886] idma64 idma64.4: Found Intel integrated DMA 64-bit
[   10.493224] thunderbolt 0000:00:0d.2: created link from 0000:00:0d.0
[   10.511677] intel-lpss 0000:00:1e.3: enabling device (0000 -> 0002)
[   10.511982] idma64 idma64.5: Found Intel integrated DMA 64-bit
[   10.512502] initcall intel_lpss_pci_driver_init+0x0/0x1000 [intel_lpss_pci] returned 0 after 33020 usecs
[   10.539189] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 719
[   10.539195] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.586404] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 723
[   10.586409] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.621992] thunderbolt 0000:00:0d.2: created link from 0000:00:07.0
[   10.634700] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 720
[   10.634704] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.674136] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 723
[   10.674140] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.706441] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 685
[   10.706450] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.746655] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 716
[   10.746663] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.750617] thunderbolt 0000:00:0d.2: created link from 0000:00:07.1
[   10.750715] thunderbolt 0000:00:0d.2: NHI initialized, starting thunderbolt
[   10.750721] thunderbolt 0000:00:0d.2: control channel starting...
[   10.750723] thunderbolt 0000:00:0d.2: starting TX ring 0
[   10.750726] thunderbolt 0000:00:0d.2: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[   10.750728] thunderbolt 0000:00:0d.2: starting RX ring 0
[   10.750731] thunderbolt 0000:00:0d.2: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[   10.750734] thunderbolt 0000:00:0d.2: security level set to user
[   10.750950] thunderbolt 0000:00:0d.2: current switch config:
[   10.750952] thunderbolt 0000:00:0d.2:  USB4 Switch: 8087:a73e (Revision: 0, TB Version: 32)
[   10.750954] thunderbolt 0000:00:0d.2:   Max Port Number: 13
[   10.750954] thunderbolt 0000:00:0d.2:   Config:
[   10.750955] thunderbolt 0000:00:0d.2:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 254ms
[   10.750957] thunderbolt 0000:00:0d.2:    unknown1: 0x0 unknown4: 0x0
[   10.756818] thunderbolt 0000:00:0d.2: initializing Switch at 0x0 (depth: 0, up port: 7)
[   10.759194] thunderbolt 0000:00:0d.2: 0: credit allocation parameters:
[   10.759207] thunderbolt 0000:00:0d.2: 0:  USB3: 32
[   10.759218] thunderbolt 0000:00:0d.2: 0:  DP AUX: 1
[   10.759227] thunderbolt 0000:00:0d.2: 0:  DP main: 0
[   10.759235] thunderbolt 0000:00:0d.2: 0:  PCIe: 64
[   10.759238] thunderbolt 0000:00:0d.2: 0:  DMA: 14
[   10.763751] thunderbolt 0000:00:0d.2: 0: DROM version: 3
[   10.764011] thunderbolt 0000:00:0d.2: 0: uid: 0x3d851fb080874a91
[   10.766409] thunderbolt 0000:00:0d.2:  Port 1: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
[   10.766412] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 19/19
[   10.766413] thunderbolt 0000:00:0d.2:   Max counters: 16
[   10.766414] thunderbolt 0000:00:0d.2:   NFC Credits: 0x83c00000
[   10.766415] thunderbolt 0000:00:0d.2:   Credits (total/control): 60/2
[   10.769073] thunderbolt 0000:00:0d.2:  Port 2: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
[   10.769074] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 19/19
[   10.769075] thunderbolt 0000:00:0d.2:   Max counters: 16
[   10.769076] thunderbolt 0000:00:0d.2:   NFC Credits: 0x83c00000
[   10.769077] thunderbolt 0000:00:0d.2:   Credits (total/control): 60/2
[   10.770924] thunderbolt 0000:00:0d.2:  Port 3: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
[   10.770926] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 19/19
[   10.770926] thunderbolt 0000:00:0d.2:   Max counters: 16
[   10.770927] thunderbolt 0000:00:0d.2:   NFC Credits: 0x83c00000
[   10.770928] thunderbolt 0000:00:0d.2:   Credits (total/control): 60/2
[   10.773610] thunderbolt 0000:00:0d.2:  Port 4: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
[   10.773611] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 19/19
[   10.773612] thunderbolt 0000:00:0d.2:   Max counters: 16
[   10.773613] thunderbolt 0000:00:0d.2:   NFC Credits: 0x83c00000
[   10.773614] thunderbolt 0000:00:0d.2:   Credits (total/control): 60/2
[   10.773864] thunderbolt 0000:00:0d.2:  Port 5: 8087:15ea (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[   10.773865] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 9/9
[   10.773866] thunderbolt 0000:00:0d.2:   Max counters: 2
[   10.773867] thunderbolt 0000:00:0d.2:   NFC Credits: 0x100000d
[   10.773868] thunderbolt 0000:00:0d.2:   Credits (total/control): 16/0
[   10.774667] thunderbolt 0000:00:0d.2:  Port 6: 8087:15ea (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[   10.774669] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 9/9
[   10.774669] thunderbolt 0000:00:0d.2:   Max counters: 2
[   10.774670] thunderbolt 0000:00:0d.2:   NFC Credits: 0x100000d
[   10.774671] thunderbolt 0000:00:0d.2:   Credits (total/control): 16/0
[   10.776027] thunderbolt 0000:00:0d.2:  Port 7: 8086:15ea (Revision: 0, TB Version: 1, Type: NHI (0x2))
[   10.776045] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 11/11
[   10.776054] thunderbolt 0000:00:0d.2:   Max counters: 16
[   10.776061] thunderbolt 0000:00:0d.2:   NFC Credits: 0x1c00000
[   10.776065] thunderbolt 0000:00:0d.2:   Credits (total/control): 28/0
[   10.776303] thunderbolt 0000:00:0d.2:  Port 8: 8087:15ea (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[   10.776305] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 8/8
[   10.776306] thunderbolt 0000:00:0d.2:   Max counters: 2
[   10.776306] thunderbolt 0000:00:0d.2:   NFC Credits: 0x800000
[   10.776307] thunderbolt 0000:00:0d.2:   Credits (total/control): 8/0
[   10.776568] thunderbolt 0000:00:0d.2:  Port 9: 8087:15ea (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[   10.776569] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 8/8
[   10.776570] thunderbolt 0000:00:0d.2:   Max counters: 2
[   10.776571] thunderbolt 0000:00:0d.2:   NFC Credits: 0x800000
[   10.776572] thunderbolt 0000:00:0d.2:   Credits (total/control): 8/0
[   10.776699] thunderbolt 0000:00:0d.2:  Port 10: not implemented
[   10.777536] thunderbolt 0000:00:0d.2:  Port 11: not implemented
[   10.778028] thunderbolt 0000:00:0d.2:  Port 12: 8087:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[   10.778034] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 8/8
[   10.778036] thunderbolt 0000:00:0d.2:   Max counters: 2
[   10.778038] thunderbolt 0000:00:0d.2:   NFC Credits: 0x800000
[   10.778039] thunderbolt 0000:00:0d.2:   Credits (total/control): 8/0
[   10.778066] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 685
[   10.778074] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.778919] thunderbolt 0000:00:0d.2:  Port 13: 8087:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[   10.778922] thunderbolt 0000:00:0d.2:   Max hop id (in/out): 8/8
[   10.778924] thunderbolt 0000:00:0d.2:   Max counters: 2
[   10.778925] thunderbolt 0000:00:0d.2:   NFC Credits: 0x800000
[   10.778926] thunderbolt 0000:00:0d.2:   Credits (total/control): 8/0
[   10.778927] thunderbolt 0000:00:0d.2: 0: linked ports 1 <-> 2
[   10.778928] thunderbolt 0000:00:0d.2: 0: linked ports 3 <-> 4
[   10.788641] thunderbolt 0000:00:0d.2: 0: TMU: supports uni-directional mode
[   10.788644] thunderbolt 0000:00:0d.2: 0: TMU: current mode: off
[   10.791578] thunderbolt 0000:00:0d.2: 0: TMU: mode set to: HiFi
[   10.791985] thunderbolt 0000:00:0d.2: 0:1: is unplugged (state: 7)
[   10.792111] thunderbolt 0000:00:0d.2: 0:3: is unplugged (state: 7)
[   10.794855] thunderbolt 0000:00:0d.2: 0:5: DP IN resource available
[   10.797027] thunderbolt 0000:00:0d.2: 0:6: DP IN resource available
[   10.797213] thunderbolt 0000:00:0d.3: total paths: 12
[   10.797217] thunderbolt 0000:00:0d.3: IOMMU DMA protection is enabled
[   10.797389] thunderbolt 0000:00:0d.3: allocating TX ring 0 of size 10
[   10.797409] thunderbolt 0000:00:0d.3: allocating RX ring 0 of size 10
[   10.797423] thunderbolt 0000:00:0d.3: control channel created
[   10.797425] thunderbolt 0000:00:0d.3: using software connection manager
[   10.810789] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 717
[   10.810795] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.854758] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 710
[   10.854774] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.890153] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 715
[   10.890159] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.934070] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 701
[   10.934075] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   10.945199] thunderbolt 0000:00:0d.3: created link from 0000:00:0d.0
[   10.982729] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 715
[   10.982736] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.026562] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 701
[   11.026566] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.070505] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 684
[   11.070510] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.110698] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 719
[   11.110702] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.113103] thunderbolt 0000:00:0d.3: created link from 0000:00:0d.0
[   11.146669] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 713
[   11.146675] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.182191] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 709
[   11.182195] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.214192] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 713
[   11.214197] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.242010] thunderbolt 0000:00:0d.3: created link from 0000:00:07.2
[   11.250954] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 696
[   11.250968] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.286664] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 698
[   11.286671] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.326609] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 689
[   11.326615] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.366121] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 698
[   11.366127] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.370513] thunderbolt 0000:00:0d.3: created link from 0000:00:07.3
[   11.370604] thunderbolt 0000:00:0d.3: NHI initialized, starting thunderbolt
[   11.370606] thunderbolt 0000:00:0d.3: control channel starting...
[   11.370607] thunderbolt 0000:00:0d.3: starting TX ring 0
[   11.370610] thunderbolt 0000:00:0d.3: enabling interrupt at register 0x38200 bit 0 (0x0 -> 0x1)
[   11.370616] thunderbolt 0000:00:0d.3: starting RX ring 0
[   11.370619] thunderbolt 0000:00:0d.3: enabling interrupt at register 0x38200 bit 12 (0x1 -> 0x1001)
[   11.370623] thunderbolt 0000:00:0d.3: security level set to user
[   11.370949] thunderbolt 0000:00:0d.3: current switch config:
[   11.370960] thunderbolt 0000:00:0d.3:  USB4 Switch: 8087:a76d (Revision: 0, TB Version: 32)
[   11.370977] thunderbolt 0000:00:0d.3:   Max Port Number: 13
[   11.370985] thunderbolt 0000:00:0d.3:   Config:
[   11.370992] thunderbolt 0000:00:0d.3:    Upstream Port Number: 7 Depth: 0 Route String: 0x0 Enabled: 1, PlugEventsDelay: 254ms
[   11.370997] thunderbolt 0000:00:0d.3:    unknown1: 0x0 unknown4: 0x0
[   11.376630] thunderbolt 0000:00:0d.3: initializing Switch at 0x0 (depth: 0, up port: 7)
[   11.378215] thunderbolt 0000:00:0d.3: 0: credit allocation parameters:
[   11.378217] thunderbolt 0000:00:0d.3: 0:  USB3: 32
[   11.378218] thunderbolt 0000:00:0d.3: 0:  DP AUX: 1
[   11.378218] thunderbolt 0000:00:0d.3: 0:  DP main: 0
[   11.378219] thunderbolt 0000:00:0d.3: 0:  PCIe: 64
[   11.378220] thunderbolt 0000:00:0d.3: 0:  DMA: 14
[   11.383398] thunderbolt 0000:00:0d.3: 0: DROM version: 3
[   11.383661] thunderbolt 0000:00:0d.3: 0: uid: 0x612452f18087b5f5
[   11.386090] thunderbolt 0000:00:0d.3:  Port 1: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
[   11.386110] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 19/19
[   11.386126] thunderbolt 0000:00:0d.3:   Max counters: 16
[   11.386133] thunderbolt 0000:00:0d.3:   NFC Credits: 0x83c00000
[   11.386135] thunderbolt 0000:00:0d.3:   Credits (total/control): 60/2
[   11.388836] thunderbolt 0000:00:0d.3:  Port 2: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
[   11.388851] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 19/19
[   11.388860] thunderbolt 0000:00:0d.3:   Max counters: 16
[   11.388867] thunderbolt 0000:00:0d.3:   NFC Credits: 0x83c00000
[   11.388875] thunderbolt 0000:00:0d.3:   Credits (total/control): 60/2
[   11.390737] thunderbolt 0000:00:0d.3:  Port 3: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
[   11.390738] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 19/19
[   11.390739] thunderbolt 0000:00:0d.3:   Max counters: 16
[   11.390740] thunderbolt 0000:00:0d.3:   NFC Credits: 0x83c00000
[   11.390741] thunderbolt 0000:00:0d.3:   Credits (total/control): 60/2
[   11.393418] thunderbolt 0000:00:0d.3:  Port 4: 8087:15ea (Revision: 0, TB Version: 1, Type: Port (0x1))
[   11.393432] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 19/19
[   11.393440] thunderbolt 0000:00:0d.3:   Max counters: 16
[   11.393447] thunderbolt 0000:00:0d.3:   NFC Credits: 0x83c00000
[   11.393450] thunderbolt 0000:00:0d.3:   Credits (total/control): 60/2
[   11.393685] thunderbolt 0000:00:0d.3:  Port 5: 8087:15ea (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[   11.393687] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 9/9
[   11.393688] thunderbolt 0000:00:0d.3:   Max counters: 2
[   11.393688] thunderbolt 0000:00:0d.3:   NFC Credits: 0x100000d
[   11.393689] thunderbolt 0000:00:0d.3:   Credits (total/control): 16/0
[   11.394502] thunderbolt 0000:00:0d.3:  Port 6: 8087:15ea (Revision: 0, TB Version: 1, Type: DP/HDMI (0xe0101))
[   11.394515] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 9/9
[   11.394522] thunderbolt 0000:00:0d.3:   Max counters: 2
[   11.394540] thunderbolt 0000:00:0d.3:   NFC Credits: 0x100000d
[   11.394547] thunderbolt 0000:00:0d.3:   Credits (total/control): 16/0
[   11.395898] thunderbolt 0000:00:0d.3:  Port 7: 8086:15ea (Revision: 0, TB Version: 1, Type: NHI (0x2))
[   11.395911] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 11/11
[   11.395919] thunderbolt 0000:00:0d.3:   Max counters: 16
[   11.395926] thunderbolt 0000:00:0d.3:   NFC Credits: 0x1c00000
[   11.395933] thunderbolt 0000:00:0d.3:   Credits (total/control): 28/0
[   11.396182] thunderbolt 0000:00:0d.3:  Port 8: 8087:15ea (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[   11.396184] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 8/8
[   11.396185] thunderbolt 0000:00:0d.3:   Max counters: 2
[   11.396185] thunderbolt 0000:00:0d.3:   NFC Credits: 0x800000
[   11.396186] thunderbolt 0000:00:0d.3:   Credits (total/control): 8/0
[   11.396446] thunderbolt 0000:00:0d.3:  Port 9: 8087:15ea (Revision: 0, TB Version: 1, Type: PCIe (0x100101))
[   11.396448] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 8/8
[   11.396448] thunderbolt 0000:00:0d.3:   Max counters: 2
[   11.396449] thunderbolt 0000:00:0d.3:   NFC Credits: 0x800000
[   11.396450] thunderbolt 0000:00:0d.3:   Credits (total/control): 8/0
[   11.396577] thunderbolt 0000:00:0d.3:  Port 10: not implemented
[   11.397275] thunderbolt 0000:00:0d.3:  Port 11: not implemented
[   11.397539] thunderbolt 0000:00:0d.3:  Port 12: 8087:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[   11.397541] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 8/8
[   11.397543] thunderbolt 0000:00:0d.3:   Max counters: 2
[   11.397544] thunderbolt 0000:00:0d.3:   NFC Credits: 0x800000
[   11.397546] thunderbolt 0000:00:0d.3:   Credits (total/control): 8/0
[   11.397801] thunderbolt 0000:00:0d.3:  Port 13: 8087:0 (Revision: 0, TB Version: 1, Type: USB (0x200101))
[   11.397803] thunderbolt 0000:00:0d.3:   Max hop id (in/out): 8/8
[   11.397804] thunderbolt 0000:00:0d.3:   Max counters: 2
[   11.397805] thunderbolt 0000:00:0d.3:   NFC Credits: 0x800000
[   11.397806] thunderbolt 0000:00:0d.3:   Credits (total/control): 8/0
[   11.397808] thunderbolt 0000:00:0d.3: 0: linked ports 1 <-> 2
[   11.397809] thunderbolt 0000:00:0d.3: 0: linked ports 3 <-> 4
[   11.398843] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 689
[   11.398849] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.407395] thunderbolt 0000:00:0d.3: 0: TMU: supports uni-directional mode
[   11.407396] thunderbolt 0000:00:0d.3: 0: TMU: current mode: off
[   11.410750] thunderbolt 0000:00:0d.3: 0: TMU: mode set to: HiFi
[   11.411681] thunderbolt 0000:00:0d.3: 0:1: is unplugged (state: 7)
[   11.411815] thunderbolt 0000:00:0d.3: 0:3: is unplugged (state: 7)
[   11.414549] thunderbolt 0000:00:0d.3: 0:5: DP IN resource available
[   11.415946] thunderbolt 0000:00:0d.3: 0:6: DP IN resource available
[   11.416009] initcall nhi_init+0x0/0x1000 [thunderbolt] returned 0 after 17160 usecs
[   11.446407] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 718
[   11.446411] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.490299] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 702
[   11.490303] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.522537] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 697
[   11.522544] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.554217] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 722
[   11.554222] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.586564] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 696
[   11.586571] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.622659] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 695
[   11.622663] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.662934] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 692
[   11.662940] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.702115] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 702
[   11.702120] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.742605] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 692
[   11.742609] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.774886] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 703
[   11.774890] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.822609] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 687
[   11.822613] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.862394] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 702
[   11.862400] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.864402] calling  wmi_bmof_driver_init+0x0/0x1000 [wmi_bmof] @ 703
[   11.864464] initcall wmi_bmof_driver_init+0x0/0x1000 [wmi_bmof] returned 0 after 53 usecs
[   11.878193] calling  pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] @ 687
[   11.878269] input: PC Speaker as /devices/platform/pcspkr/input/input19
[   11.878503] initcall pcspkr_platform_driver_init+0x0/0x1000 [pcspkr] returned 0 after 303 usecs
[   11.938077] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 693
[   11.938081] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   11.942254] calling  cstate_pmu_init+0x0/0x1000 [intel_cstate] @ 687
[   11.943624] initcall cstate_pmu_init+0x0/0x1000 [intel_cstate] returned 0 after 1362 usecs
[   11.965060] calling  kvm_x86_init+0x0/0x1000 [kvm] @ 702
[   11.965095] initcall kvm_x86_init+0x0/0x1000 [kvm] returned 0 after 0 usecs
[   11.968288] calling  vmx_init+0x0/0x18c [kvm_intel] @ 702
[   11.973119] initcall vmx_init+0x0/0x18c [kvm_intel] returned 0 after 4823 usecs
[   11.973626] calling  coretemp_init+0x0/0x1000 [coretemp] @ 702
[   11.973916] initcall coretemp_init+0x0/0x1000 [coretemp] returned 0 after 284 usecs
[   11.974367] calling  powerclamp_init+0x0/0x1000 [intel_powerclamp] @ 703
[   11.974397] initcall powerclamp_init+0x0/0x1000 [intel_powerclamp] returned 0 after 22 usecs
[   11.974695] calling  pkg_temp_thermal_init+0x0/0x1000 [x86_pkg_temp_thermal] @ 703
[   11.974802] initcall pkg_temp_thermal_init+0x0/0x1000 [x86_pkg_temp_thermal] returned 0 after 103 usecs
[   12.030284] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 689
[   12.030289] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.078248] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 720
[   12.078254] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.138400] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 717
[   12.138406] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.178749] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 718
[   12.178755] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.222190] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 714
[   12.222195] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.278682] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 687
[   12.278690] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.334249] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 693
[   12.334254] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.426008] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 716
[   12.426013] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.486141] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 692
[   12.486145] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.526075] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 716
[   12.526079] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.558801] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 704
[   12.558809] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.610578] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 716
[   12.610584] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.678063] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 709
[   12.678076] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.734065] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 712
[   12.734071] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.782848] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 702
[   12.782854] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.830049] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 688
[   12.830056] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.870905] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 715
[   12.870913] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.929331] calling  ppdev_init+0x0/0x1000 [ppdev] @ 709
[   12.929678] calling  mei_hdcp_driver_init+0x0/0x1000 [mei_hdcp] @ 688
[   12.930564] ppdev: user-space parallel port driver
[   12.930566] initcall ppdev_init+0x0/0x1000 [ppdev] returned 0 after 882 usecs
[   12.930596] calling  mei_wdt_driver_init+0x0/0x1000 [mei_wdt] @ 702
[   12.931518] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 685
[   12.931525] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   12.932007] calling  init_mtd+0x0/0x13b [mtd] @ 712
[   12.932065] initcall init_mtd+0x0/0x13b [mtd] returned 0 after 50 usecs
[   12.934312] calling  spi_nor_driver_init+0x0/0x1000 [spi_nor] @ 712
[   12.934374] spi-nor spi0.0: w25q256 (32768 Kbytes)
[   12.935410] calling  cmdline_parser_init+0x0/0x1000 [cmdlinepart] @ 768
[   12.935416] initcall cmdline_parser_init+0x0/0x1000 [cmdlinepart] returned 0 after 0 usecs
[   12.936521] calling  ofpart_parser_init+0x0/0x1000 [ofpart] @ 769
[   12.936533] initcall ofpart_parser_init+0x0/0x1000 [ofpart] returned 0 after 0 usecs
[   12.936725] Creating 1 MTD partitions on "0000:00:1f.5":
[   12.936728] 0x000000000000-0x000002000000 : "BIOS"
[   12.936841] initcall spi_nor_driver_init+0x0/0x1000 [spi_nor] returned 0 after 308 usecs
[   12.949387] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops)
[   12.949436] initcall mei_hdcp_driver_init+0x0/0x1000 [mei_hdcp] returned 0 after 12903 usecs
[   12.950479] initcall mei_wdt_driver_init+0x0/0x1000 [mei_wdt] returned 0 after 13945 usecs
[   12.983506] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 684
[   12.983511] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.063174] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 704
[   13.063185] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.066086] calling  dw8250_platform_driver_init+0x0/0x1000 [8250_dw] @ 684
[   13.067374] calling  dw_init+0x0/0x1000 [dw_dmac] @ 702
[   13.067410] initcall dw_init+0x0/0x1000 [dw_dmac] returned 0 after 29 usecs
[   13.067940] calling  pxa2xx_spi_init+0x0/0x1000 [spi_pxa2xx_platform] @ 702
[   13.085370] dw-apb-uart dw-apb-uart.4: GPIO lookup for consumer rs485-term
[   13.085373] dw-apb-uart dw-apb-uart.4: using ACPI for GPIO lookup
[   13.085374] acpi device:47: GPIO: looking up rs485-term-gpios
[   13.085375] acpi device:47: GPIO: looking up rs485-term-gpio
[   13.085376] dw-apb-uart dw-apb-uart.4: using lookup tables for GPIO lookup
[   13.085377] dw-apb-uart dw-apb-uart.4: No GPIO consumer rs485-term found
[   13.085380] dw-apb-uart.4: ttyS5 at MMIO 0x4017004000 (irq = 16, base_baud = 6250000) is a 16550A
[   13.101548] initcall dw8250_platform_driver_init+0x0/0x1000 [8250_dw] returned 0 after 33604 usecs
[   13.102206] initcall pxa2xx_spi_init+0x0/0x1000 [spi_pxa2xx_platform] returned 0 after 34261 usecs
[   13.119010] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 711
[   13.119017] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.190866] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 718
[   13.190871] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.254471] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 723
[   13.254482] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.314629] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 697
[   13.314636] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.366669] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 699
[   13.366676] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.414635] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 714
[   13.414640] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.482239] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 703
[   13.482247] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.542566] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 724
[   13.542570] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.594194] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 695
[   13.594198] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.638557] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 720
[   13.638564] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.694596] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 687
[   13.694602] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.758859] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 708
[   13.758864] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.802391] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 698
[   13.802397] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.846031] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 689
[   13.846035] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.878142] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 692
[   13.878148] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   13.946765] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 706
[   13.946776] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.010054] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 721
[   14.010058] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.086373] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 707
[   14.086377] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.138021] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 719
[   14.138025] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.202527] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 690
[   14.202531] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.262634] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 693
[   14.262640] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.318628] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 710
[   14.318633] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.382572] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 716
[   14.382576] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.438439] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 696
[   14.438443] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.478500] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 713
[   14.478508] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.522438] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 686
[   14.522444] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.570589] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 700
[   14.570596] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.610725] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 691
[   14.610737] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.670728] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 722
[   14.670738] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.726673] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 717
[   14.726680] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.778689] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 694
[   14.778695] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.834665] calling  acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] @ 701
[   14.834676] initcall acpi_cpufreq_init+0x0/0x1000 [acpi_cpufreq] returned -17 after 0 usecs
[   14.910341] EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Quota mode: none.
[   14.985623] calling  init_sunrpc+0x0/0x8d [sunrpc] @ 845
[   14.986216] RPC: Registered named UNIX socket transport module.
[   14.986220] RPC: Registered udp transport module.
[   14.986221] RPC: Registered tcp transport module.
[   14.986222] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   14.986223] initcall init_sunrpc+0x0/0x8d [sunrpc] returned 0 after 573 usecs
[   15.373159] r8152 4-2:1.0 enp0s20f0u2: carrier on
[   15.464325] Spectre V2 : WARNING: Unprivileged eBPF is enabled with eIBRS on, data leaks possible via Spectre v2 BHB attacks!
[   15.464330] Spectre V2 : WARNING: Unprivileged eBPF is enabled with eIBRS on, data leaks possible via Spectre v2 BHB attacks!
[   15.577428] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s20f0u2: link becomes ready
[   21.802145] calling  llc_init+0x0/0x1000 [llc] @ 1382
[   21.802153] initcall llc_init+0x0/0x1000 [llc] returned 0 after 0 usecs
[   21.811346] calling  br_init+0x0/0x11c [bridge] @ 1382
[   21.811382] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[   21.811383] initcall br_init+0x0/0x11c [bridge] returned 0 after 16 usecs
[   21.812140] virbr0: port 1(virbr0-nic) entered blocking state
[   21.812146] virbr0: port 1(virbr0-nic) entered disabled state
[   21.812188] device virbr0-nic entered promiscuous mode
[   21.839122] calling  nfnetlink_init+0x0/0x1000 [nfnetlink] @ 1425
[   21.839137] initcall nfnetlink_init+0x0/0x1000 [nfnetlink] returned 0 after 6 usecs
[   21.843689] calling  nf_tables_module_init+0x0/0xf1 [nf_tables] @ 1426
[   21.843712] initcall nf_tables_module_init+0x0/0xf1 [nf_tables] returned 0 after 12 usecs
[   21.889718] calling  nf_defrag_init+0x0/0x1000 [nf_defrag_ipv4] @ 1430
[   21.889723] initcall nf_defrag_init+0x0/0x1000 [nf_defrag_ipv4] returned 0 after 0 usecs
[   21.891051] calling  nf_defrag_init+0x0/0x1000 [nf_defrag_ipv6] @ 1430
[   21.891080] initcall nf_defrag_init+0x0/0x1000 [nf_defrag_ipv6] returned 0 after 22 usecs
[   21.894894] calling  nf_conntrack_standalone_init+0x0/0x1000 [nf_conntrack] @ 1470
[   21.895396] initcall nf_conntrack_standalone_init+0x0/0x1000 [nf_conntrack] returned 0 after 486 usecs
[   21.899136] calling  nf_nat_init+0x0/0x1000 [nf_nat] @ 1430
[   21.899417] initcall nf_nat_init+0x0/0x1000 [nf_nat] returned 0 after 272 usecs
[   21.900805] calling  nft_chain_nat_init+0x0/0x1000 [nft_chain_nat] @ 1430
[   21.900811] initcall nft_chain_nat_init+0x0/0x1000 [nft_chain_nat] returned 0 after 0 usecs
[   21.974322] calling  nft_compat_module_init+0x0/0x1000 [nft_compat] @ 1533
[   21.974330] initcall nft_compat_module_init+0x0/0x1000 [nft_compat] returned 0 after 0 usecs
[   21.977802] calling  tcpudp_mt_init+0x0/0x1000 [xt_tcpudp] @ 1535
[   21.977807] initcall tcpudp_mt_init+0x0/0x1000 [xt_tcpudp] returned 0 after 0 usecs
[   21.998507] calling  reject_tg_init+0x0/0x1000 [ipt_REJECT] @ 1569
[   21.998513] initcall reject_tg_init+0x0/0x1000 [ipt_REJECT] returned 0 after 0 usecs
[   22.011596] calling  conntrack_mt_init+0x0/0x1000 [xt_conntrack] @ 1590
[   22.011602] initcall conntrack_mt_init+0x0/0x1000 [xt_conntrack] returned 0 after 0 usecs
[   22.015772] calling  masquerade_tg_init+0x0/0x1000 [xt_MASQUERADE] @ 1596
[   22.015785] initcall masquerade_tg_init+0x0/0x1000 [xt_MASQUERADE] returned 0 after 5 usecs
[   22.028597] calling  checksum_tg_init+0x0/0x1000 [xt_CHECKSUM] @ 1606
[   22.028609] initcall checksum_tg_init+0x0/0x1000 [xt_CHECKSUM] returned 0 after 0 usecs
[   22.029246] virbr0: port 1(virbr0-nic) entered blocking state
[   22.029251] virbr0: port 1(virbr0-nic) entered listening state
[   22.050767] virbr0: port 1(virbr0-nic) entered disabled state
[   23.193639] rfkill: input handler disabled
[   28.353184] thunderbolt 0000:00:0d.3: 0: suspending switch
[   28.353192] thunderbolt 0000:00:0d.3: 0: enabling wakeup: 0x3f
[   28.356079] thunderbolt 0000:00:0d.3: stopping RX ring 0
[   28.356125] thunderbolt 0000:00:0d.3: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[   28.356137] thunderbolt 0000:00:0d.3: stopping TX ring 0
[   28.356139] thunderbolt 0000:00:0d.3: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[   28.356143] thunderbolt 0000:00:0d.3: control channel stopped
[   28.433194] thunderbolt 0000:00:0d.2: 0: suspending switch
[   28.433201] thunderbolt 0000:00:0d.2: 0: enabling wakeup: 0x3f
[   28.436024] thunderbolt 0000:00:0d.2: stopping RX ring 0
[   28.436057] thunderbolt 0000:00:0d.2: disabling interrupt at register 0x38200 bit 12 (0x1001 -> 0x1)
[   28.436066] thunderbolt 0000:00:0d.2: stopping TX ring 0
[   28.436068] thunderbolt 0000:00:0d.2: disabling interrupt at register 0x38200 bit 0 (0x1 -> 0x0)
[   28.436072] thunderbolt 0000:00:0d.2: control channel stopped
[  299.425432] traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]
[  299.425514] ------------[ cut here ]------------
[  299.425515] kernel BUG at arch/x86/kernel/traps.c:253!
[  299.425524] invalid opcode: 0000 [#1] PREEMPT SMP NOPTI
[  299.425528] CPU: 6 PID: 4305 Comm: qemu-system-x86 Tainted: G S      W         5.19.0-mfix2+ #2
[  299.425531] Hardware name: Intel Corporation Alder Lake Client Platform/AlderLake-P DDR5 RVP, BIOS RPLPFWI1.R00.3257.A00.2206200744 06/20/2022
[  299.425532] RIP: 0010:exc_control_protection+0xbf/0xd0
[  299.425540] Code: f9 ff 45 31 c9 49 89 d8 b9 09 00 00 00 48 8b 93 80 00 00 00 be fa 00 00 00 48 c7 c7 da d1 05 b5 e8 26 a7 0a ff e9 6c ff ff ff <0f> 0b 66 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 66 0f 1f 00 55
[  299.425541] RSP: 0018:ffffbd6cc6eefc60 EFLAGS: 00010002
[  299.425544] RAX: 000000000000002f RBX: ffffbd6cc6eefc88 RCX: 0000000000000001
[  299.425546] RDX: 0000000000000000 RSI: ffffffffb506af81 RDI: 00000000ffffffff
[  299.425547] RBP: ffffbd6cc6eefc78 R08: 0000000000000000 R09: c0000000ff7fffff
[  299.425548] R10: 0000000000000001 R11: ffffbd6cc6eefac8 R12: 0000000000000003
[  299.425549] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[  299.425550] FS:  00007f50667fc700(0000) GS:ffff94d197980000(0000) knlGS:0000000000000000
[  299.425551] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  299.425552] CR2: 0000000000510b70 CR3: 000000010794e006 CR4: 0000000000f72ee0
[  299.425554] PKRU: 55555554
[  299.425555] Call Trace:
[  299.425557]  <TASK>
[  299.425560]  asm_exc_control_protection+0x2b/0x30
[  299.425563] RIP: 0010:andw_ax_dx+0x0/0x10 [kvm]
[  299.425593] Code: c3 cc cc cc cc 0f 1f 44 00 00 66 0f 1f 00 48 19 d0 c3 cc cc cc cc 0f 1f 40 00 f3 0f 1e fa 20 d0 c3 cc cc cc cc 0f 1f 44 00 00 <66> 0f 1f 00 66 21 d0 c3 cc cc cc cc 0f 1f 40 00 66 0f 1f 00 21 d0
[  299.425594] RSP: 0018:ffffbd6cc6eefd38 EFLAGS: 00010286
[  299.425595] RAX: 00000000000008ff RBX: ffff94ce59aed400 RCX: 0000000000000000
[  299.425596] RDX: 0000000000000785 RSI: ffffffffc092cc20 RDI: 0000000000000284
[  299.425597] RBP: ffffbd6cc6eefd40 R08: ffff94ce59aed400 R09: 0000000000000202
[  299.425598] R10: 0000000000000000 R11: 0000000000000001 R12: 0000000000000000
[  299.425599] R13: ffffffffc0967d00 R14: 0000000000000000 R15: 0000000000000000
[  299.425601]  ? andb_al_dl+0x10/0x10 [kvm]
[  299.425627]  ? fastop+0x5d/0xa0 [kvm]
[  299.425653]  x86_emulate_insn+0x822/0x1060 [kvm]
[  299.425679]  x86_emulate_instruction+0x46f/0x750 [kvm]
[  299.425706]  complete_emulated_mmio+0x216/0x2c0 [kvm]
[  299.425731]  kvm_arch_vcpu_ioctl_run+0x604/0x650 [kvm]
[  299.425757]  kvm_vcpu_ioctl+0x2f4/0x6b0 [kvm]
[  299.425775]  ? wake_up_q+0xa0/0xa0
[  299.425781]  ? __fget_light+0xd4/0x130
[  299.425785]  __x64_sys_ioctl+0x97/0xd0
[  299.425788]  do_syscall_64+0x3b/0x90
[  299.425790]  entry_SYSCALL_64_after_hwframe+0x63/0xcd
[  299.425791] RIP: 0033:0x7f507bcf362b
[  299.425794] Code: 0f 1e fa 48 8b 05 5d b8 2c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 2d b8 2c 00 f7 d8 64 89 01 48
[  299.425795] RSP: 002b:00007f50667fb4c8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[  299.425797] RAX: ffffffffffffffda RBX: 000000000000ae80 RCX: 00007f507bcf362b
[  299.425798] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000014
[  299.425799] RBP: 000055e6f0224030 R08: 000055e6edee45a8 R09: 00000000000000ff
[  299.425801] R10: 0000000000000001 R11: 0000000000000246 R12: 0000000000000000
[  299.425802] R13: 0000000000000001 R14: 000055e6f0224030 R15: 00007f5082571000
[  299.425804]  </TASK>
[  299.425804] Modules linked in: xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT nf_reject_ipv4 xt_tcpudp nft_compat nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nf_tables nfnetlink bridge stp llc sunrpc spi_pxa2xx_platform dw_dmac dw_dmac_core 8250_dw ofpart cmdlinepart spi_nor mtd mei_wdt mei_hdcp ppdev x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass intel_cstate pcspkr wmi_bmof snd_sof_pci_intel_tgl snd_sof_intel_hda_common snd_hda_codec_hdmi snd_soc_hdac_hda soundwire_intel soundwire_generic_allocation soundwire_cadence snd_sof_intel_hda snd_sof_pci snd_sof snd_sof_utils snd_sof_xtensa_dsp snd_hda_ext_core snd_soc_acpi_intel_match snd_soc_acpi soundwire_bus snd_soc_core snd_compress ac97_bus snd_pcm_dmaengine snd_hda_intel snd_intel_dspcfg snd_intel_sdw_acpi snd_hda_codec snd_hda_core snd_hwdep snd_seq snd_seq_device snd_pcm snd_timer snd i2c_i801 spi_intel_pci soundcore i2c_smbus spi_intel joydev input_leds mei_me mei intel_lpss_pci
[  299.425857]  intel_lpss hid_sensor_prox hid_sensor_rotation hid_sensor_incl_3d hid_sensor_magn_3d hid_sensor_als hid_sensor_accel_3d hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer kfifo_buf hid_sensor_iio_common industrialio thunderbolt int340x_thermal_zone parport_pc parport mac_hid int3400_thermal acpi_thermal_rel acpi_tad acpi_pad sch_fq_codel ip_tables x_tables hid_sensor_custom hid_sensor_hub intel_ishtp_hid crct10dif_pclmul crc32_pclmul hid_generic usbkbd ghash_clmulni_intel r8152 aesni_intel usbhid crypto_simd intel_ish_ipc cryptd e1000e hid mii intel_ishtp wmi pinctrl_tigerlake pinctrl_intel
[  299.425890] ---[ end trace 0000000000000000 ]---
[  299.469479] RIP: 0010:exc_control_protection+0xbf/0xd0
[  299.469491] Code: f9 ff 45 31 c9 49 89 d8 b9 09 00 00 00 48 8b 93 80 00 00 00 be fa 00 00 00 48 c7 c7 da d1 05 b5 e8 26 a7 0a ff e9 6c ff ff ff <0f> 0b 66 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 66 0f 1f 00 55
[  299.469494] RSP: 0018:ffffbd6cc6eefc60 EFLAGS: 00010002
[  299.469498] RAX: 000000000000002f RBX: ffffbd6cc6eefc88 RCX: 0000000000000001
[  299.469500] RDX: 0000000000000000 RSI: ffffffffb506af81 RDI: 00000000ffffffff
[  299.469501] RBP: ffffbd6cc6eefc78 R08: 0000000000000000 R09: c0000000ff7fffff
[  299.469502] R10: 0000000000000001 R11: ffffbd6cc6eefac8 R12: 0000000000000003
[  299.469503] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[  299.469505] FS:  00007f50667fc700(0000) GS:ffff94d197980000(0000) knlGS:0000000000000000
[  299.469507] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  299.469508] CR2: 0000000000510b70 CR3: 000000010794e006 CR4: 0000000000f72ee0
[  299.469510] PKRU: 55555554
[  842.428932] traps: Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]
[  842.428985] ------------[ cut here ]------------
[  842.428985] kernel BUG at arch/x86/kernel/traps.c:253!
[  842.428990] invalid opcode: 0000 [#2] PREEMPT SMP NOPTI
[  842.428992] CPU: 2 PID: 4579 Comm: qemu-system-x86 Tainted: G S    D W         5.19.0-mfix2+ #2
[  842.428994] Hardware name: Intel Corporation Alder Lake Client Platform/AlderLake-P DDR5 RVP, BIOS RPLPFWI1.R00.3257.A00.2206200744 06/20/2022
[  842.428994] RIP: 0010:exc_control_protection+0xbf/0xd0
[  842.428999] Code: f9 ff 45 31 c9 49 89 d8 b9 09 00 00 00 48 8b 93 80 00 00 00 be fa 00 00 00 48 c7 c7 da d1 05 b5 e8 26 a7 0a ff e9 6c ff ff ff <0f> 0b 66 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 66 0f 1f 00 55
[  842.429000] RSP: 0018:ffffbd6ccbb7fc60 EFLAGS: 00010002
[  842.429002] RAX: 000000000000002f RBX: ffffbd6ccbb7fc88 RCX: 0000000000000001
[  842.429003] RDX: 0000000000000000 RSI: ffffffffb506af81 RDI: 00000000ffffffff
[  842.429004] RBP: ffffbd6ccbb7fc78 R08: 0000000000000000 R09: c0000000ff7fffff
[  842.429004] R10: 0000000000000001 R11: ffffbd6ccbb7fac8 R12: 0000000000000003
[  842.429005] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[  842.429006] FS:  00007fb7489fc700(0000) GS:ffff94d197880000(0000) knlGS:0000000000000000
[  842.429007] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  842.429007] CR2: 0000000000510b70 CR3: 000000015afb8005 CR4: 0000000000f72ee0
[  842.429008] PKRU: 55555554
[  842.429009] Call Trace:
[  842.429010]  <TASK>
[  842.429012]  asm_exc_control_protection+0x2b/0x30
[  842.429014] RIP: 0010:andw_ax_dx+0x0/0x10 [kvm]
[  842.429035] Code: c3 cc cc cc cc 0f 1f 44 00 00 66 0f 1f 00 48 19 d0 c3 cc cc cc cc 0f 1f 40 00 f3 0f 1e fa 20 d0 c3 cc cc cc cc 0f 1f 44 00 00 <66> 0f 1f 00 66 21 d0 c3 cc cc cc cc 0f 1f 40 00 66 0f 1f 00 21 d0
[  842.429036] RSP: 0018:ffffbd6ccbb7fd38 EFLAGS: 00010282
[  842.429036] RAX: 00000000000008ff RBX: ffff94ce59aebf00 RCX: 0000000000000000
[  842.429037] RDX: 0000000000000047 RSI: ffffffffc092cc20 RDI: 0000000000000280
[  842.429038] RBP: ffffbd6ccbb7fd40 R08: ffff94ce59aebf00 R09: 0000000000000202
[  842.429038] R10: 0000000000000000 R11: 0000000000000001 R12: 0000000000000000
[  842.429039] R13: ffffffffc0967d00 R14: 0000000000000000 R15: 0000000000000000
[  842.429040]  ? andb_al_dl+0x10/0x10 [kvm]
[  842.429058]  ? fastop+0x5d/0xa0 [kvm]
[  842.429078]  x86_emulate_insn+0x822/0x1060 [kvm]
[  842.429097]  x86_emulate_instruction+0x46f/0x750 [kvm]
[  842.429118]  complete_emulated_mmio+0x216/0x2c0 [kvm]
[  842.429137]  kvm_arch_vcpu_ioctl_run+0x604/0x650 [kvm]
[  842.429156]  kvm_vcpu_ioctl+0x2f4/0x6b0 [kvm]
[  842.429172]  ? wake_up_q+0xa0/0xa0
[  842.429176]  ? __fget_light+0xd4/0x130
[  842.429179]  __x64_sys_ioctl+0x97/0xd0
[  842.429181]  do_syscall_64+0x3b/0x90
[  842.429182]  entry_SYSCALL_64_after_hwframe+0x63/0xcd
[  842.429183] RIP: 0033:0x7fb7596f362b
[  842.429185] Code: 0f 1e fa 48 8b 05 5d b8 2c 00 64 c7 00 26 00 00 00 48 c7 c0 ff ff ff ff c3 66 0f 1f 44 00 00 f3 0f 1e fa b8 10 00 00 00 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 2d b8 2c 00 f7 d8 64 89 01 48
[  842.429185] RSP: 002b:00007fb7489fb4c8 EFLAGS: 00000246 ORIG_RAX: 0000000000000010
[  842.429187] RAX: ffffffffffffffda RBX: 000000000000ae80 RCX: 00007fb7596f362b
[  842.429187] RDX: 0000000000000000 RSI: 000000000000ae80 RDI: 0000000000000014
[  842.429188] RBP: 000055c86be08030 R08: 000055c86970c5a8 R09: 00000000000000ff
[  842.429189] R10: 0000000000000001 R11: 0000000000000246 R12: 0000000000000000
[  842.429189] R13: 0000000000000001 R14: 000055c86be08030 R15: 00007fb75fef3000
[  842.429190]  </TASK>
[  842.429191] Modules linked in: xt_CHECKSUM xt_MASQUERADE xt_conntrack ipt_REJECT nf_reject_ipv4 xt_tcpudp nft_compat nft_chain_nat nf_nat nf_conntrack nf_defrag_ipv6 nf_defrag_ipv4 nf_tables nfnetlink bridge stp llc sunrpc spi_pxa2xx_platform dw_dmac dw_dmac_core 8250_dw ofpart cmdlinepart spi_nor mtd mei_wdt mei_hdcp ppdev x86_pkg_temp_thermal intel_powerclamp coretemp kvm_intel kvm irqbypass intel_cstate pcspkr wmi_bmof snd_sof_pci_intel_tgl snd_sof_intel_hda_common snd_hda_codec_hdmi snd_soc_hdac_hda soundwire_intel soundwire_generic_allocation soundwire_cadence snd_sof_intel_hda snd_sof_pci snd_sof snd_sof_utils snd_sof_xtensa_dsp snd_hda_ext_core snd_soc_acpi_intel_match snd_soc_acpi soundwire_bus snd_soc_core snd_compress ac97_bus snd_pcm_dmaengine snd_hda_intel snd_intel_dspcfg snd_intel_sdw_acpi snd_hda_codec snd_hda_core snd_hwdep snd_seq snd_seq_device snd_pcm snd_timer snd i2c_i801 spi_intel_pci soundcore i2c_smbus spi_intel joydev input_leds mei_me mei intel_lpss_pci
[  842.429225]  intel_lpss hid_sensor_prox hid_sensor_rotation hid_sensor_incl_3d hid_sensor_magn_3d hid_sensor_als hid_sensor_accel_3d hid_sensor_gyro_3d hid_sensor_trigger industrialio_triggered_buffer kfifo_buf hid_sensor_iio_common industrialio thunderbolt int340x_thermal_zone parport_pc parport mac_hid int3400_thermal acpi_thermal_rel acpi_tad acpi_pad sch_fq_codel ip_tables x_tables hid_sensor_custom hid_sensor_hub intel_ishtp_hid crct10dif_pclmul crc32_pclmul hid_generic usbkbd ghash_clmulni_intel r8152 aesni_intel usbhid crypto_simd intel_ish_ipc cryptd e1000e hid mii intel_ishtp wmi pinctrl_tigerlake pinctrl_intel
[  842.429246] ---[ end trace 0000000000000000 ]---
[  842.457556] RIP: 0010:exc_control_protection+0xbf/0xd0
[  842.457561] Code: f9 ff 45 31 c9 49 89 d8 b9 09 00 00 00 48 8b 93 80 00 00 00 be fa 00 00 00 48 c7 c7 da d1 05 b5 e8 26 a7 0a ff e9 6c ff ff ff <0f> 0b 66 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 66 0f 1f 00 55
[  842.457562] RSP: 0018:ffffbd6cc6eefc60 EFLAGS: 00010002
[  842.457564] RAX: 000000000000002f RBX: ffffbd6cc6eefc88 RCX: 0000000000000001
[  842.457565] RDX: 0000000000000000 RSI: ffffffffb506af81 RDI: 00000000ffffffff
[  842.457566] RBP: ffffbd6cc6eefc78 R08: 0000000000000000 R09: c0000000ff7fffff
[  842.457567] R10: 0000000000000001 R11: ffffbd6cc6eefac8 R12: 0000000000000003
[  842.457568] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[  842.457569] FS:  00007fb7489fc700(0000) GS:ffff94d197880000(0000) knlGS:0000000000000000
[  842.457570] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  842.457571] CR2: 0000000000510b70 CR3: 000000015afb8005 CR4: 0000000000f72ee0
[  842.457572] PKRU: 55555554
[  878.209672] ACPI Warning: Time parameter 200 us > 100 us violating ACPI spec, please fix the firmware. (20220331/exsystem-143)
[ 1245.525906] perf: interrupt took too long (2526 > 2500), lowering kernel.perf_event_max_sample_rate to 79000
[ 1614.442190] perf: interrupt took too long (3160 > 3157), lowering kernel.perf_event_max_sample_rate to 63250

[-- Attachment #4: kvm.ko --]
[-- Type: application/octet-stream, Size: 1620032 bytes --]

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

* Re: [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed
  2022-08-18  7:38       ` Pengfei Xu
@ 2022-08-18 11:06         ` Peter Zijlstra
  2022-08-18 15:17           ` Josh Poimboeuf
  0 siblings, 1 reply; 8+ messages in thread
From: Peter Zijlstra @ 2022-08-18 11:06 UTC (permalink / raw)
  To: Pengfei Xu
  Cc: Josh Poimboeuf, Yang, Weijiang, Su, Heng, linux-kernel,
	Josh Poimboeuf, pbonzini, x86

On Thu, Aug 18, 2022 at 03:38:45PM +0800, Pengfei Xu wrote:
>   And this "Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]" issue was
>   reproduced again after ran syzkaller 5min on ADL-P.

Ha, indeed :/

> > > +/*
> > > + * Create a dummy function pointer reference to prevent objtool from marking
> > > + * the function as needing to be "sealed" (i.e. ENDBR converted to NOP by
> > > + * apply_ibt_endbr()).
> > > + */
> > > +#define IBT_NOSEAL(fname)				\
> > > +	".pushsection .discard.endbr.noseal\n\t"	\
> > > +	_ASM_PTR fname "\n\t"				\
> > > +	".popsection\n\t"
> > > +

objtool/check.c:validate_ibt():

                if (!strncmp(sec->name, ".discard", 8)                  ||
		    ...)
		    continue;

So yeah, that'll just get ignored. So at the very least we need to
special case this section.

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

* Re: [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed
  2022-08-18 11:06         ` Peter Zijlstra
@ 2022-08-18 15:17           ` Josh Poimboeuf
  0 siblings, 0 replies; 8+ messages in thread
From: Josh Poimboeuf @ 2022-08-18 15:17 UTC (permalink / raw)
  To: Peter Zijlstra
  Cc: Pengfei Xu, Yang, Weijiang, Su, Heng, linux-kernel,
	Josh Poimboeuf, pbonzini, x86

On Thu, Aug 18, 2022 at 01:06:16PM +0200, Peter Zijlstra wrote:
> On Thu, Aug 18, 2022 at 03:38:45PM +0800, Pengfei Xu wrote:
> >   And this "Missing ENDBR: andw_ax_dx+0x0/0x10 [kvm]" issue was
> >   reproduced again after ran syzkaller 5min on ADL-P.
> 
> Ha, indeed :/
> 
> > > > +/*
> > > > + * Create a dummy function pointer reference to prevent objtool from marking
> > > > + * the function as needing to be "sealed" (i.e. ENDBR converted to NOP by
> > > > + * apply_ibt_endbr()).
> > > > + */
> > > > +#define IBT_NOSEAL(fname)				\
> > > > +	".pushsection .discard.endbr.noseal\n\t"	\
> > > > +	_ASM_PTR fname "\n\t"				\
> > > > +	".popsection\n\t"
> > > > +
> 
> objtool/check.c:validate_ibt():
> 
>                 if (!strncmp(sec->name, ".discard", 8)                  ||
> 		    ...)
> 		    continue;
> 
> So yeah, that'll just get ignored. So at the very least we need to
> special case this section.

Indeed.  I swear that patch worked last night.

I also found that not all fastops use __FOP_FUNC().

Anyway I'll post a new (official) pair of patches shortly.

-- 
Josh

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

end of thread, other threads:[~2022-08-18 15:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <PH0PR11MB4839B4D2FB8B8D8D52A62C7F9A629@PH0PR11MB4839.namprd11.prod.outlook.com>
2022-08-17 10:56 ` [PATCH] x86/kvm, objtool: Avoid fastop ENDBR from being sealed Peter Zijlstra
2022-08-17 16:26   ` [tip: core/urgent] " tip-bot2 for Peter Zijlstra
2022-08-18  1:10   ` [PATCH] " Josh Poimboeuf
2022-08-18  7:28     ` Peter Zijlstra
2022-08-18  7:38       ` Pengfei Xu
2022-08-18 11:06         ` Peter Zijlstra
2022-08-18 15:17           ` Josh Poimboeuf
2022-08-18  5:04   ` Pengfei Xu

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