All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator
@ 2022-02-04 18:57 Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP Song Liu
                   ` (9 more replies)
  0 siblings, 10 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

Changes v8 => v9:
1. Fix an error with multi function program, in 4/9.

Changes v7 => v8:
1. Rebase and fix conflicts.
2. Lock text_mutex for text_poke_copy. (Daniel)

Changes v6 => v7:
1. Redesign the interface between generic and arch logic, based on feedback
   from Alexei and Ilya.
2. Split 6/7 of v6 to 7/9 and 8/9 in v7, for cleaner logic.
3. Add bpf_arch_text_copy in 6/9.

Changes v5 => v6:
1. Make jit_hole_buffer 128 byte long. Only fill the first and last 128
   bytes of header with INT3. (Alexei)
2. Use kvmalloc for temporary buffer. (Alexei)
3. Rename tmp_header/tmp_image => rw_header/rw_image. Remove tmp_image from
   x64_jit_data. (Alexei)
4. Change fall back round_up_to in bpf_jit_binary_alloc_pack() from
   BPF_PROG_MAX_PACK_PROG_SIZE to PAGE_SIZE.

Changes v4 => v5:
1. Do not use atomic64 for bpf_jit_current. (Alexei)

Changes v3 => v4:
1. Rename text_poke_jit() => text_poke_copy(). (Peter)
2. Change comment style. (Peter)

Changes v2 => v3:
1. Fix tailcall.

Changes v1 => v2:
1. Use text_poke instead of writing through linear mapping. (Peter)
2. Avoid making changes to non-x86_64 code.

Most BPF programs are small, but they consume a page each. For systems
with busy traffic and many BPF programs, this could also add significant
pressure to instruction TLB. High iTLB pressure usually causes slow down
for the whole system, which includes visible performance degradation for
production workloads.

This set tries to solve this problem with customized allocator that pack
multiple programs into a huge page.

Patches 1-6 prepare the work. Patch 7 contains key logic of bpf_prog_pack
allocator. Patch 8 contains bpf_jit_binary_pack_alloc logic on top of
bpf_prog_pack allocator. Patch 9 uses this allocator in x86_64 jit.

Song Liu (9):
  x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  bpf: use bytes instead of pages for bpf_jit_[charge|uncharge]_modmem
  bpf: use size instead of pages in bpf_binary_header
  bpf: use prog->jited_len in  bpf_prog_ksym_set_addr()
  x86/alternative: introduce text_poke_copy
  bpf: introduce bpf_arch_text_copy
  bpf: introduce bpf_prog_pack allocator
  bpf: introduce bpf_jit_binary_pack_[alloc|finalize|free]
  bpf, x86_64: use bpf_jit_binary_pack_alloc

 arch/x86/Kconfig                     |   1 +
 arch/x86/include/asm/text-patching.h |   1 +
 arch/x86/kernel/alternative.c        |  34 ++++
 arch/x86/net/bpf_jit_comp.c          |  65 ++++---
 include/linux/bpf.h                  |   7 +-
 include/linux/filter.h               |  27 +--
 kernel/bpf/core.c                    | 269 +++++++++++++++++++++++++--
 kernel/bpf/trampoline.c              |   6 +-
 kernel/bpf/verifier.c                |   1 +
 9 files changed, 349 insertions(+), 62 deletions(-)

--
2.30.2

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

* [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
@ 2022-02-04 18:57 ` Song Liu
  2022-03-26  0:06   ` Edgecombe, Rick P
  2022-03-26 18:46   ` BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP) Paul Menzel
  2022-02-04 18:57 ` [PATCH v9 bpf-next 2/9] bpf: use bytes instead of pages for bpf_jit_[charge|uncharge]_modmem Song Liu
                   ` (8 subsequent siblings)
  9 siblings, 2 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

From: Song Liu <songliubraving@fb.com>

This enables module_alloc() to allocate huge page for 2MB+ requests.
To check the difference of this change, we need enable config
CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
/sys/kernel/debug/page_tables/kernel shows pte for this map. With the
change, /sys/kernel/debug/page_tables/ show pmd for thie map.

Signed-off-by: Song Liu <songliubraving@fb.com>
---
 arch/x86/Kconfig | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 6fddb63271d9..e0e0d00cf103 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -159,6 +159,7 @@ config X86
 	select HAVE_ALIGNED_STRUCT_PAGE		if SLUB
 	select HAVE_ARCH_AUDITSYSCALL
 	select HAVE_ARCH_HUGE_VMAP		if X86_64 || X86_PAE
+	select HAVE_ARCH_HUGE_VMALLOC		if HAVE_ARCH_HUGE_VMAP
 	select HAVE_ARCH_JUMP_LABEL
 	select HAVE_ARCH_JUMP_LABEL_RELATIVE
 	select HAVE_ARCH_KASAN			if X86_64
-- 
2.30.2


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

* [PATCH v9 bpf-next 2/9] bpf: use bytes instead of pages for bpf_jit_[charge|uncharge]_modmem
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP Song Liu
@ 2022-02-04 18:57 ` Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 3/9] bpf: use size instead of pages in bpf_binary_header Song Liu
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

From: Song Liu <songliubraving@fb.com>

This enables sub-page memory charge and allocation.

Signed-off-by: Song Liu <songliubraving@fb.com>
---
 include/linux/bpf.h     |  4 ++--
 kernel/bpf/core.c       | 17 ++++++++---------
 kernel/bpf/trampoline.c |  6 +++---
 3 files changed, 13 insertions(+), 14 deletions(-)

diff --git a/include/linux/bpf.h b/include/linux/bpf.h
index 6eb0b180d33b..366f88afd56b 100644
--- a/include/linux/bpf.h
+++ b/include/linux/bpf.h
@@ -846,8 +846,8 @@ void bpf_image_ksym_add(void *data, struct bpf_ksym *ksym);
 void bpf_image_ksym_del(struct bpf_ksym *ksym);
 void bpf_ksym_add(struct bpf_ksym *ksym);
 void bpf_ksym_del(struct bpf_ksym *ksym);
-int bpf_jit_charge_modmem(u32 pages);
-void bpf_jit_uncharge_modmem(u32 pages);
+int bpf_jit_charge_modmem(u32 size);
+void bpf_jit_uncharge_modmem(u32 size);
 bool bpf_prog_has_trampoline(const struct bpf_prog *prog);
 #else
 static inline int bpf_trampoline_link_prog(struct bpf_prog *prog,
diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index 04a8d5bea552..6ca0550c4b24 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -833,12 +833,11 @@ static int __init bpf_jit_charge_init(void)
 }
 pure_initcall(bpf_jit_charge_init);
 
-int bpf_jit_charge_modmem(u32 pages)
+int bpf_jit_charge_modmem(u32 size)
 {
-	if (atomic_long_add_return(pages, &bpf_jit_current) >
-	    (bpf_jit_limit >> PAGE_SHIFT)) {
+	if (atomic_long_add_return(size, &bpf_jit_current) > bpf_jit_limit) {
 		if (!bpf_capable()) {
-			atomic_long_sub(pages, &bpf_jit_current);
+			atomic_long_sub(size, &bpf_jit_current);
 			return -EPERM;
 		}
 	}
@@ -846,9 +845,9 @@ int bpf_jit_charge_modmem(u32 pages)
 	return 0;
 }
 
-void bpf_jit_uncharge_modmem(u32 pages)
+void bpf_jit_uncharge_modmem(u32 size)
 {
-	atomic_long_sub(pages, &bpf_jit_current);
+	atomic_long_sub(size, &bpf_jit_current);
 }
 
 void *__weak bpf_jit_alloc_exec(unsigned long size)
@@ -879,11 +878,11 @@ bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
 	size = round_up(proglen + sizeof(*hdr) + 128, PAGE_SIZE);
 	pages = size / PAGE_SIZE;
 
-	if (bpf_jit_charge_modmem(pages))
+	if (bpf_jit_charge_modmem(size))
 		return NULL;
 	hdr = bpf_jit_alloc_exec(size);
 	if (!hdr) {
-		bpf_jit_uncharge_modmem(pages);
+		bpf_jit_uncharge_modmem(size);
 		return NULL;
 	}
 
@@ -906,7 +905,7 @@ void bpf_jit_binary_free(struct bpf_binary_header *hdr)
 	u32 pages = hdr->pages;
 
 	bpf_jit_free_exec(hdr);
-	bpf_jit_uncharge_modmem(pages);
+	bpf_jit_uncharge_modmem(pages << PAGE_SHIFT);
 }
 
 /* This symbol is only overridden by archs that have different
diff --git a/kernel/bpf/trampoline.c b/kernel/bpf/trampoline.c
index 4b6974a195c1..e76a488c09c3 100644
--- a/kernel/bpf/trampoline.c
+++ b/kernel/bpf/trampoline.c
@@ -213,7 +213,7 @@ static void __bpf_tramp_image_put_deferred(struct work_struct *work)
 	im = container_of(work, struct bpf_tramp_image, work);
 	bpf_image_ksym_del(&im->ksym);
 	bpf_jit_free_exec(im->image);
-	bpf_jit_uncharge_modmem(1);
+	bpf_jit_uncharge_modmem(PAGE_SIZE);
 	percpu_ref_exit(&im->pcref);
 	kfree_rcu(im, rcu);
 }
@@ -310,7 +310,7 @@ static struct bpf_tramp_image *bpf_tramp_image_alloc(u64 key, u32 idx)
 	if (!im)
 		goto out;
 
-	err = bpf_jit_charge_modmem(1);
+	err = bpf_jit_charge_modmem(PAGE_SIZE);
 	if (err)
 		goto out_free_im;
 
@@ -332,7 +332,7 @@ static struct bpf_tramp_image *bpf_tramp_image_alloc(u64 key, u32 idx)
 out_free_image:
 	bpf_jit_free_exec(im->image);
 out_uncharge:
-	bpf_jit_uncharge_modmem(1);
+	bpf_jit_uncharge_modmem(PAGE_SIZE);
 out_free_im:
 	kfree(im);
 out:
-- 
2.30.2


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

* [PATCH v9 bpf-next 3/9] bpf: use size instead of pages in bpf_binary_header
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 2/9] bpf: use bytes instead of pages for bpf_jit_[charge|uncharge]_modmem Song Liu
@ 2022-02-04 18:57 ` Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 4/9] bpf: use prog->jited_len in bpf_prog_ksym_set_addr() Song Liu
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

From: Song Liu <songliubraving@fb.com>

This is necessary to charge sub page memory for the BPF program.

Signed-off-by: Song Liu <songliubraving@fb.com>
---
 include/linux/filter.h |  6 +++---
 kernel/bpf/core.c      | 11 +++++------
 2 files changed, 8 insertions(+), 9 deletions(-)

diff --git a/include/linux/filter.h b/include/linux/filter.h
index d23e999dc032..5855eb474c62 100644
--- a/include/linux/filter.h
+++ b/include/linux/filter.h
@@ -548,7 +548,7 @@ struct sock_fprog_kern {
 #define BPF_IMAGE_ALIGNMENT 8
 
 struct bpf_binary_header {
-	u32 pages;
+	u32 size;
 	u8 image[] __aligned(BPF_IMAGE_ALIGNMENT);
 };
 
@@ -886,8 +886,8 @@ static inline void bpf_prog_lock_ro(struct bpf_prog *fp)
 static inline void bpf_jit_binary_lock_ro(struct bpf_binary_header *hdr)
 {
 	set_vm_flush_reset_perms(hdr);
-	set_memory_ro((unsigned long)hdr, hdr->pages);
-	set_memory_x((unsigned long)hdr, hdr->pages);
+	set_memory_ro((unsigned long)hdr, hdr->size >> PAGE_SHIFT);
+	set_memory_x((unsigned long)hdr, hdr->size >> PAGE_SHIFT);
 }
 
 static inline struct bpf_binary_header *
diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index 6ca0550c4b24..14199228a6f0 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -543,7 +543,7 @@ bpf_prog_ksym_set_addr(struct bpf_prog *prog)
 	WARN_ON_ONCE(!bpf_prog_ebpf_jited(prog));
 
 	prog->aux->ksym.start = (unsigned long) prog->bpf_func;
-	prog->aux->ksym.end   = addr + hdr->pages * PAGE_SIZE;
+	prog->aux->ksym.end   = addr + hdr->size;
 }
 
 static void
@@ -866,7 +866,7 @@ bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
 		     bpf_jit_fill_hole_t bpf_fill_ill_insns)
 {
 	struct bpf_binary_header *hdr;
-	u32 size, hole, start, pages;
+	u32 size, hole, start;
 
 	WARN_ON_ONCE(!is_power_of_2(alignment) ||
 		     alignment > BPF_IMAGE_ALIGNMENT);
@@ -876,7 +876,6 @@ bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
 	 * random section of illegal instructions.
 	 */
 	size = round_up(proglen + sizeof(*hdr) + 128, PAGE_SIZE);
-	pages = size / PAGE_SIZE;
 
 	if (bpf_jit_charge_modmem(size))
 		return NULL;
@@ -889,7 +888,7 @@ bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
 	/* Fill space with illegal/arch-dep instructions. */
 	bpf_fill_ill_insns(hdr, size);
 
-	hdr->pages = pages;
+	hdr->size = size;
 	hole = min_t(unsigned int, size - (proglen + sizeof(*hdr)),
 		     PAGE_SIZE - sizeof(*hdr));
 	start = (get_random_int() % hole) & ~(alignment - 1);
@@ -902,10 +901,10 @@ bpf_jit_binary_alloc(unsigned int proglen, u8 **image_ptr,
 
 void bpf_jit_binary_free(struct bpf_binary_header *hdr)
 {
-	u32 pages = hdr->pages;
+	u32 size = hdr->size;
 
 	bpf_jit_free_exec(hdr);
-	bpf_jit_uncharge_modmem(pages << PAGE_SHIFT);
+	bpf_jit_uncharge_modmem(size);
 }
 
 /* This symbol is only overridden by archs that have different
-- 
2.30.2


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

* [PATCH v9 bpf-next 4/9] bpf: use prog->jited_len in  bpf_prog_ksym_set_addr()
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
                   ` (2 preceding siblings ...)
  2022-02-04 18:57 ` [PATCH v9 bpf-next 3/9] bpf: use size instead of pages in bpf_binary_header Song Liu
@ 2022-02-04 18:57 ` Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 5/9] x86/alternative: introduce text_poke_copy Song Liu
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

Using prog->jited_len is simpler and more accurate than current
estimation (header + header->size).

Also, fix missing prog->jited_len with multi function program. This hasn't
been a real issue before this.

Signed-off-by: Song Liu <song@kernel.org>
---
 kernel/bpf/core.c     | 5 +----
 kernel/bpf/verifier.c | 1 +
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index 14199228a6f0..e3fe53df0a71 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -537,13 +537,10 @@ long bpf_jit_limit_max __read_mostly;
 static void
 bpf_prog_ksym_set_addr(struct bpf_prog *prog)
 {
-	const struct bpf_binary_header *hdr = bpf_jit_binary_hdr(prog);
-	unsigned long addr = (unsigned long)hdr;
-
 	WARN_ON_ONCE(!bpf_prog_ebpf_jited(prog));
 
 	prog->aux->ksym.start = (unsigned long) prog->bpf_func;
-	prog->aux->ksym.end   = addr + hdr->size;
+	prog->aux->ksym.end   = prog->aux->ksym.start + prog->jited_len;
 }
 
 static void
diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c
index 1ae41d0cf96c..bbef86cb4e72 100644
--- a/kernel/bpf/verifier.c
+++ b/kernel/bpf/verifier.c
@@ -13067,6 +13067,7 @@ static int jit_subprogs(struct bpf_verifier_env *env)
 
 	prog->jited = 1;
 	prog->bpf_func = func[0]->bpf_func;
+	prog->jited_len = func[0]->jited_len;
 	prog->aux->func = func;
 	prog->aux->func_cnt = env->subprog_cnt;
 	bpf_prog_jit_attempt_done(prog);
-- 
2.30.2


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

* [PATCH v9 bpf-next 5/9] x86/alternative: introduce text_poke_copy
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
                   ` (3 preceding siblings ...)
  2022-02-04 18:57 ` [PATCH v9 bpf-next 4/9] bpf: use prog->jited_len in bpf_prog_ksym_set_addr() Song Liu
@ 2022-02-04 18:57 ` Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 6/9] bpf: introduce bpf_arch_text_copy Song Liu
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

This will be used by BPF jit compiler to dump JITed binary to a RX huge
page, and thus allow multiple BPF programs sharing the a huge (2MB) page.

Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Signed-off-by: Song Liu <song@kernel.org>
---
 arch/x86/include/asm/text-patching.h |  1 +
 arch/x86/kernel/alternative.c        | 34 ++++++++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/arch/x86/include/asm/text-patching.h b/arch/x86/include/asm/text-patching.h
index b7421780e4e9..4cc18ba1b75e 100644
--- a/arch/x86/include/asm/text-patching.h
+++ b/arch/x86/include/asm/text-patching.h
@@ -44,6 +44,7 @@ extern void text_poke_early(void *addr, const void *opcode, size_t len);
 extern void *text_poke(void *addr, const void *opcode, size_t len);
 extern void text_poke_sync(void);
 extern void *text_poke_kgdb(void *addr, const void *opcode, size_t len);
+extern void *text_poke_copy(void *addr, const void *opcode, size_t len);
 extern int poke_int3_handler(struct pt_regs *regs);
 extern void text_poke_bp(void *addr, const void *opcode, size_t len, const void *emulate);
 
diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c
index 5007c3ffe96f..018b61febf0e 100644
--- a/arch/x86/kernel/alternative.c
+++ b/arch/x86/kernel/alternative.c
@@ -1102,6 +1102,40 @@ void *text_poke_kgdb(void *addr, const void *opcode, size_t len)
 	return __text_poke(addr, opcode, len);
 }
 
+/**
+ * text_poke_copy - Copy instructions into (an unused part of) RX memory
+ * @addr: address to modify
+ * @opcode: source of the copy
+ * @len: length to copy, could be more than 2x PAGE_SIZE
+ *
+ * Not safe against concurrent execution; useful for JITs to dump
+ * new code blocks into unused regions of RX memory. Can be used in
+ * conjunction with synchronize_rcu_tasks() to wait for existing
+ * execution to quiesce after having made sure no existing functions
+ * pointers are live.
+ */
+void *text_poke_copy(void *addr, const void *opcode, size_t len)
+{
+	unsigned long start = (unsigned long)addr;
+	size_t patched = 0;
+
+	if (WARN_ON_ONCE(core_kernel_text(start)))
+		return NULL;
+
+	mutex_lock(&text_mutex);
+	while (patched < len) {
+		unsigned long ptr = start + patched;
+		size_t s;
+
+		s = min_t(size_t, PAGE_SIZE * 2 - offset_in_page(ptr), len - patched);
+
+		__text_poke((void *)ptr, opcode + patched, s);
+		patched += s;
+	}
+	mutex_unlock(&text_mutex);
+	return addr;
+}
+
 static void do_sync_core(void *info)
 {
 	sync_core();
-- 
2.30.2


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

* [PATCH v9 bpf-next 6/9] bpf: introduce bpf_arch_text_copy
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
                   ` (4 preceding siblings ...)
  2022-02-04 18:57 ` [PATCH v9 bpf-next 5/9] x86/alternative: introduce text_poke_copy Song Liu
@ 2022-02-04 18:57 ` Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 7/9] bpf: introduce bpf_prog_pack allocator Song Liu
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

This will be used to copy JITed text to RO protected module memory. On
x86, bpf_arch_text_copy is implemented with text_poke_copy.

bpf_arch_text_copy returns pointer to dst on success, and ERR_PTR(errno)
on errors.

Signed-off-by: Song Liu <song@kernel.org>
---
 arch/x86/net/bpf_jit_comp.c | 7 +++++++
 include/linux/bpf.h         | 2 ++
 kernel/bpf/core.c           | 5 +++++
 3 files changed, 14 insertions(+)

diff --git a/arch/x86/net/bpf_jit_comp.c b/arch/x86/net/bpf_jit_comp.c
index 36f6fc3e6e69..c13d148f7396 100644
--- a/arch/x86/net/bpf_jit_comp.c
+++ b/arch/x86/net/bpf_jit_comp.c
@@ -2412,3 +2412,10 @@ bool bpf_jit_supports_kfunc_call(void)
 {
 	return true;
 }
+
+void *bpf_arch_text_copy(void *dst, void *src, size_t len)
+{
+	if (text_poke_copy(dst, src, len) == NULL)
+		return ERR_PTR(-EINVAL);
+	return dst;
+}
diff --git a/include/linux/bpf.h b/include/linux/bpf.h
index 366f88afd56b..ea0d7fd4a410 100644
--- a/include/linux/bpf.h
+++ b/include/linux/bpf.h
@@ -2362,6 +2362,8 @@ enum bpf_text_poke_type {
 int bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t,
 		       void *addr1, void *addr2);
 
+void *bpf_arch_text_copy(void *dst, void *src, size_t len);
+
 struct btf_id_set;
 bool btf_id_set_contains(const struct btf_id_set *set, u32 id);
 
diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index e3fe53df0a71..a5ec480f9862 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -2440,6 +2440,11 @@ int __weak bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t,
 	return -ENOTSUPP;
 }
 
+void * __weak bpf_arch_text_copy(void *dst, void *src, size_t len)
+{
+	return ERR_PTR(-ENOTSUPP);
+}
+
 DEFINE_STATIC_KEY_FALSE(bpf_stats_enabled_key);
 EXPORT_SYMBOL(bpf_stats_enabled_key);
 
-- 
2.30.2


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

* [PATCH v9 bpf-next 7/9] bpf: introduce bpf_prog_pack allocator
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
                   ` (5 preceding siblings ...)
  2022-02-04 18:57 ` [PATCH v9 bpf-next 6/9] bpf: introduce bpf_arch_text_copy Song Liu
@ 2022-02-04 18:57 ` Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 8/9] bpf: introduce bpf_jit_binary_pack_[alloc|finalize|free] Song Liu
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

Most BPF programs are small, but they consume a page each. For systems
with busy traffic and many BPF programs, this could add significant
pressure to instruction TLB. High iTLB pressure usually causes slow down
for the whole system, which includes visible performance degradation for
production workloads.

Introduce bpf_prog_pack allocator to pack multiple BPF programs in a huge
page. The memory is then allocated in 64 byte chunks.

Memory allocated by bpf_prog_pack allocator is RO protected after initial
allocation. To write to it, the user (jit engine) need to use text poke
API.

Signed-off-by: Song Liu <song@kernel.org>
---
 kernel/bpf/core.c | 127 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 127 insertions(+)

diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index a5ec480f9862..7ae590897b73 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -805,6 +805,133 @@ int bpf_jit_add_poke_descriptor(struct bpf_prog *prog,
 	return slot;
 }
 
+/*
+ * BPF program pack allocator.
+ *
+ * Most BPF programs are pretty small. Allocating a hole page for each
+ * program is sometime a waste. Many small bpf program also adds pressure
+ * to instruction TLB. To solve this issue, we introduce a BPF program pack
+ * allocator. The prog_pack allocator uses HPAGE_PMD_SIZE page (2MB on x86)
+ * to host BPF programs.
+ */
+#define BPF_PROG_PACK_SIZE	HPAGE_PMD_SIZE
+#define BPF_PROG_CHUNK_SHIFT	6
+#define BPF_PROG_CHUNK_SIZE	(1 << BPF_PROG_CHUNK_SHIFT)
+#define BPF_PROG_CHUNK_MASK	(~(BPF_PROG_CHUNK_SIZE - 1))
+#define BPF_PROG_CHUNK_COUNT	(BPF_PROG_PACK_SIZE / BPF_PROG_CHUNK_SIZE)
+
+struct bpf_prog_pack {
+	struct list_head list;
+	void *ptr;
+	unsigned long bitmap[BITS_TO_LONGS(BPF_PROG_CHUNK_COUNT)];
+};
+
+#define BPF_PROG_MAX_PACK_PROG_SIZE	HPAGE_PMD_SIZE
+#define BPF_PROG_SIZE_TO_NBITS(size)	(round_up(size, BPF_PROG_CHUNK_SIZE) / BPF_PROG_CHUNK_SIZE)
+
+static DEFINE_MUTEX(pack_mutex);
+static LIST_HEAD(pack_list);
+
+static struct bpf_prog_pack *alloc_new_pack(void)
+{
+	struct bpf_prog_pack *pack;
+
+	pack = kzalloc(sizeof(*pack), GFP_KERNEL);
+	if (!pack)
+		return NULL;
+	pack->ptr = module_alloc(BPF_PROG_PACK_SIZE);
+	if (!pack->ptr) {
+		kfree(pack);
+		return NULL;
+	}
+	bitmap_zero(pack->bitmap, BPF_PROG_PACK_SIZE / BPF_PROG_CHUNK_SIZE);
+	list_add_tail(&pack->list, &pack_list);
+
+	set_vm_flush_reset_perms(pack->ptr);
+	set_memory_ro((unsigned long)pack->ptr, BPF_PROG_PACK_SIZE / PAGE_SIZE);
+	set_memory_x((unsigned long)pack->ptr, BPF_PROG_PACK_SIZE / PAGE_SIZE);
+	return pack;
+}
+
+static void *bpf_prog_pack_alloc(u32 size)
+{
+	unsigned int nbits = BPF_PROG_SIZE_TO_NBITS(size);
+	struct bpf_prog_pack *pack;
+	unsigned long pos;
+	void *ptr = NULL;
+
+	if (size > BPF_PROG_MAX_PACK_PROG_SIZE) {
+		size = round_up(size, PAGE_SIZE);
+		ptr = module_alloc(size);
+		if (ptr) {
+			set_vm_flush_reset_perms(ptr);
+			set_memory_ro((unsigned long)ptr, size / PAGE_SIZE);
+			set_memory_x((unsigned long)ptr, size / PAGE_SIZE);
+		}
+		return ptr;
+	}
+	mutex_lock(&pack_mutex);
+	list_for_each_entry(pack, &pack_list, list) {
+		pos = bitmap_find_next_zero_area(pack->bitmap, BPF_PROG_CHUNK_COUNT, 0,
+						 nbits, 0);
+		if (pos < BPF_PROG_CHUNK_COUNT)
+			goto found_free_area;
+	}
+
+	pack = alloc_new_pack();
+	if (!pack)
+		goto out;
+
+	pos = 0;
+
+found_free_area:
+	bitmap_set(pack->bitmap, pos, nbits);
+	ptr = (void *)(pack->ptr) + (pos << BPF_PROG_CHUNK_SHIFT);
+
+out:
+	mutex_unlock(&pack_mutex);
+	return ptr;
+}
+
+static void bpf_prog_pack_free(struct bpf_binary_header *hdr)
+{
+	struct bpf_prog_pack *pack = NULL, *tmp;
+	unsigned int nbits;
+	unsigned long pos;
+	void *pack_ptr;
+
+	if (hdr->size > BPF_PROG_MAX_PACK_PROG_SIZE) {
+		module_memfree(hdr);
+		return;
+	}
+
+	pack_ptr = (void *)((unsigned long)hdr & ~(BPF_PROG_PACK_SIZE - 1));
+	mutex_lock(&pack_mutex);
+
+	list_for_each_entry(tmp, &pack_list, list) {
+		if (tmp->ptr == pack_ptr) {
+			pack = tmp;
+			break;
+		}
+	}
+
+	if (WARN_ONCE(!pack, "bpf_prog_pack bug\n"))
+		goto out;
+
+	nbits = BPF_PROG_SIZE_TO_NBITS(hdr->size);
+	pos = ((unsigned long)hdr - (unsigned long)pack_ptr) >> BPF_PROG_CHUNK_SHIFT;
+
+	bitmap_clear(pack->bitmap, pos, nbits);
+	if (bitmap_find_next_zero_area(pack->bitmap, BPF_PROG_CHUNK_COUNT, 0,
+				       BPF_PROG_CHUNK_COUNT, 0) == 0) {
+		list_del(&pack->list);
+		module_memfree(pack->ptr);
+		kfree(pack);
+	}
+out:
+	mutex_unlock(&pack_mutex);
+}
+
 static atomic_long_t bpf_jit_current;
 
 /* Can be overridden by an arch's JIT compiler if it has a custom,
-- 
2.30.2


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

* [PATCH v9 bpf-next 8/9] bpf: introduce bpf_jit_binary_pack_[alloc|finalize|free]
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
                   ` (6 preceding siblings ...)
  2022-02-04 18:57 ` [PATCH v9 bpf-next 7/9] bpf: introduce bpf_prog_pack allocator Song Liu
@ 2022-02-04 18:57 ` Song Liu
  2022-02-04 18:57 ` [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc Song Liu
  2022-02-08  2:30 ` [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator patchwork-bot+netdevbpf
  9 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

From: Song Liu <songliubraving@fb.com>

This is the jit binary allocator built on top of bpf_prog_pack.

bpf_prog_pack allocates RO memory, which cannot be used directly by the
JIT engine. Therefore, a temporary rw buffer is allocated for the JIT
engine. Once JIT is done, bpf_jit_binary_pack_finalize is used to copy
the program to the RO memory.

bpf_jit_binary_pack_alloc reserves 16 bytes of extra space for illegal
instructions, which is small than the 128 bytes space reserved by
bpf_jit_binary_alloc. This change is necessary for bpf_jit_binary_hdr
to find the correct header. Also, flag use_bpf_prog_pack is added to
differentiate a program allocated by bpf_jit_binary_pack_alloc.

Signed-off-by: Song Liu <songliubraving@fb.com>
---
 include/linux/bpf.h    |   1 +
 include/linux/filter.h |  21 ++++----
 kernel/bpf/core.c      | 108 ++++++++++++++++++++++++++++++++++++++++-
 3 files changed, 120 insertions(+), 10 deletions(-)

diff --git a/include/linux/bpf.h b/include/linux/bpf.h
index ea0d7fd4a410..2fc7e5c5ef41 100644
--- a/include/linux/bpf.h
+++ b/include/linux/bpf.h
@@ -953,6 +953,7 @@ struct bpf_prog_aux {
 	bool sleepable;
 	bool tail_call_reachable;
 	bool xdp_has_frags;
+	bool use_bpf_prog_pack;
 	struct hlist_node tramp_hlist;
 	/* BTF_KIND_FUNC_PROTO for valid attach_btf_id */
 	const struct btf_type *attach_func_proto;
diff --git a/include/linux/filter.h b/include/linux/filter.h
index 5855eb474c62..1cb1af917617 100644
--- a/include/linux/filter.h
+++ b/include/linux/filter.h
@@ -890,15 +890,6 @@ static inline void bpf_jit_binary_lock_ro(struct bpf_binary_header *hdr)
 	set_memory_x((unsigned long)hdr, hdr->size >> PAGE_SHIFT);
 }
 
-static inline struct bpf_binary_header *
-bpf_jit_binary_hdr(const struct bpf_prog *fp)
-{
-	unsigned long real_start = (unsigned long)fp->bpf_func;
-	unsigned long addr = real_start & PAGE_MASK;
-
-	return (void *)addr;
-}
-
 int sk_filter_trim_cap(struct sock *sk, struct sk_buff *skb, unsigned int cap);
 static inline int sk_filter(struct sock *sk, struct sk_buff *skb)
 {
@@ -1068,6 +1059,18 @@ void *bpf_jit_alloc_exec(unsigned long size);
 void bpf_jit_free_exec(void *addr);
 void bpf_jit_free(struct bpf_prog *fp);
 
+struct bpf_binary_header *
+bpf_jit_binary_pack_alloc(unsigned int proglen, u8 **ro_image,
+			  unsigned int alignment,
+			  struct bpf_binary_header **rw_hdr,
+			  u8 **rw_image,
+			  bpf_jit_fill_hole_t bpf_fill_ill_insns);
+int bpf_jit_binary_pack_finalize(struct bpf_prog *prog,
+				 struct bpf_binary_header *ro_header,
+				 struct bpf_binary_header *rw_header);
+void bpf_jit_binary_pack_free(struct bpf_binary_header *ro_header,
+			      struct bpf_binary_header *rw_header);
+
 int bpf_jit_add_poke_descriptor(struct bpf_prog *prog,
 				struct bpf_jit_poke_descriptor *poke);
 
diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index 7ae590897b73..306aa63fa58e 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -1031,6 +1031,109 @@ void bpf_jit_binary_free(struct bpf_binary_header *hdr)
 	bpf_jit_uncharge_modmem(size);
 }
 
+/* Allocate jit binary from bpf_prog_pack allocator.
+ * Since the allocated memory is RO+X, the JIT engine cannot write directly
+ * to the memory. To solve this problem, a RW buffer is also allocated at
+ * as the same time. The JIT engine should calculate offsets based on the
+ * RO memory address, but write JITed program to the RW buffer. Once the
+ * JIT engine finishes, it calls bpf_jit_binary_pack_finalize, which copies
+ * the JITed program to the RO memory.
+ */
+struct bpf_binary_header *
+bpf_jit_binary_pack_alloc(unsigned int proglen, u8 **image_ptr,
+			  unsigned int alignment,
+			  struct bpf_binary_header **rw_header,
+			  u8 **rw_image,
+			  bpf_jit_fill_hole_t bpf_fill_ill_insns)
+{
+	struct bpf_binary_header *ro_header;
+	u32 size, hole, start;
+
+	WARN_ON_ONCE(!is_power_of_2(alignment) ||
+		     alignment > BPF_IMAGE_ALIGNMENT);
+
+	/* add 16 bytes for a random section of illegal instructions */
+	size = round_up(proglen + sizeof(*ro_header) + 16, BPF_PROG_CHUNK_SIZE);
+
+	if (bpf_jit_charge_modmem(size))
+		return NULL;
+	ro_header = bpf_prog_pack_alloc(size);
+	if (!ro_header) {
+		bpf_jit_uncharge_modmem(size);
+		return NULL;
+	}
+
+	*rw_header = kvmalloc(size, GFP_KERNEL);
+	if (!*rw_header) {
+		bpf_prog_pack_free(ro_header);
+		bpf_jit_uncharge_modmem(size);
+		return NULL;
+	}
+
+	/* Fill space with illegal/arch-dep instructions. */
+	bpf_fill_ill_insns(*rw_header, size);
+	(*rw_header)->size = size;
+
+	hole = min_t(unsigned int, size - (proglen + sizeof(*ro_header)),
+		     BPF_PROG_CHUNK_SIZE - sizeof(*ro_header));
+	start = (get_random_int() % hole) & ~(alignment - 1);
+
+	*image_ptr = &ro_header->image[start];
+	*rw_image = &(*rw_header)->image[start];
+
+	return ro_header;
+}
+
+/* Copy JITed text from rw_header to its final location, the ro_header. */
+int bpf_jit_binary_pack_finalize(struct bpf_prog *prog,
+				 struct bpf_binary_header *ro_header,
+				 struct bpf_binary_header *rw_header)
+{
+	void *ptr;
+
+	ptr = bpf_arch_text_copy(ro_header, rw_header, rw_header->size);
+
+	kvfree(rw_header);
+
+	if (IS_ERR(ptr)) {
+		bpf_prog_pack_free(ro_header);
+		return PTR_ERR(ptr);
+	}
+	prog->aux->use_bpf_prog_pack = true;
+	return 0;
+}
+
+/* bpf_jit_binary_pack_free is called in two different scenarios:
+ *   1) when the program is freed after;
+ *   2) when the JIT engine fails (before bpf_jit_binary_pack_finalize).
+ * For case 2), we need to free both the RO memory and the RW buffer.
+ * Also, ro_header->size in 2) is not properly set yet, so rw_header->size
+ * is used for uncharge.
+ */
+void bpf_jit_binary_pack_free(struct bpf_binary_header *ro_header,
+			      struct bpf_binary_header *rw_header)
+{
+	u32 size = rw_header ? rw_header->size : ro_header->size;
+
+	bpf_prog_pack_free(ro_header);
+	kvfree(rw_header);
+	bpf_jit_uncharge_modmem(size);
+}
+
+static inline struct bpf_binary_header *
+bpf_jit_binary_hdr(const struct bpf_prog *fp)
+{
+	unsigned long real_start = (unsigned long)fp->bpf_func;
+	unsigned long addr;
+
+	if (fp->aux->use_bpf_prog_pack)
+		addr = real_start & BPF_PROG_CHUNK_MASK;
+	else
+		addr = real_start & PAGE_MASK;
+
+	return (void *)addr;
+}
+
 /* This symbol is only overridden by archs that have different
  * requirements than the usual eBPF JITs, f.e. when they only
  * implement cBPF JIT, do not set images read-only, etc.
@@ -1040,7 +1143,10 @@ void __weak bpf_jit_free(struct bpf_prog *fp)
 	if (fp->jited) {
 		struct bpf_binary_header *hdr = bpf_jit_binary_hdr(fp);
 
-		bpf_jit_binary_free(hdr);
+		if (fp->aux->use_bpf_prog_pack)
+			bpf_jit_binary_pack_free(hdr, NULL /* rw_buffer */);
+		else
+			bpf_jit_binary_free(hdr);
 
 		WARN_ON_ONCE(!bpf_prog_kallsyms_verify_off(fp));
 	}
-- 
2.30.2


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

* [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
                   ` (7 preceding siblings ...)
  2022-02-04 18:57 ` [PATCH v9 bpf-next 8/9] bpf: introduce bpf_jit_binary_pack_[alloc|finalize|free] Song Liu
@ 2022-02-04 18:57 ` Song Liu
  2022-02-08  2:24   ` Alexei Starovoitov
  2022-07-03  3:02   ` Andres Freund
  2022-02-08  2:30 ` [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator patchwork-bot+netdevbpf
  9 siblings, 2 replies; 33+ messages in thread
From: Song Liu @ 2022-02-04 18:57 UTC (permalink / raw)
  To: bpf, netdev, linux-kernel
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu

From: Song Liu <songliubraving@fb.com>

Use bpf_jit_binary_pack_alloc in x86_64 jit. The jit engine first writes
the program to the rw buffer. When the jit is done, the program is copied
to the final location with bpf_jit_binary_pack_finalize.

Note that we need to do bpf_tail_call_direct_fixup after finalize.
Therefore, the text_live = false logic in __bpf_arch_text_poke is no
longer needed.

Signed-off-by: Song Liu <songliubraving@fb.com>
---
 arch/x86/net/bpf_jit_comp.c | 58 ++++++++++++++++++++-----------------
 1 file changed, 31 insertions(+), 27 deletions(-)

diff --git a/arch/x86/net/bpf_jit_comp.c b/arch/x86/net/bpf_jit_comp.c
index c13d148f7396..643f38b91e30 100644
--- a/arch/x86/net/bpf_jit_comp.c
+++ b/arch/x86/net/bpf_jit_comp.c
@@ -330,8 +330,7 @@ static int emit_jump(u8 **pprog, void *func, void *ip)
 }
 
 static int __bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t,
-				void *old_addr, void *new_addr,
-				const bool text_live)
+				void *old_addr, void *new_addr)
 {
 	const u8 *nop_insn = x86_nops[5];
 	u8 old_insn[X86_PATCH_SIZE];
@@ -365,10 +364,7 @@ static int __bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t,
 		goto out;
 	ret = 1;
 	if (memcmp(ip, new_insn, X86_PATCH_SIZE)) {
-		if (text_live)
-			text_poke_bp(ip, new_insn, X86_PATCH_SIZE, NULL);
-		else
-			memcpy(ip, new_insn, X86_PATCH_SIZE);
+		text_poke_bp(ip, new_insn, X86_PATCH_SIZE, NULL);
 		ret = 0;
 	}
 out:
@@ -384,7 +380,7 @@ int bpf_arch_text_poke(void *ip, enum bpf_text_poke_type t,
 		/* BPF poking in modules is not supported */
 		return -EINVAL;
 
-	return __bpf_arch_text_poke(ip, t, old_addr, new_addr, true);
+	return __bpf_arch_text_poke(ip, t, old_addr, new_addr);
 }
 
 #define EMIT_LFENCE()	EMIT3(0x0F, 0xAE, 0xE8)
@@ -558,24 +554,15 @@ static void bpf_tail_call_direct_fixup(struct bpf_prog *prog)
 		mutex_lock(&array->aux->poke_mutex);
 		target = array->ptrs[poke->tail_call.key];
 		if (target) {
-			/* Plain memcpy is used when image is not live yet
-			 * and still not locked as read-only. Once poke
-			 * location is active (poke->tailcall_target_stable),
-			 * any parallel bpf_arch_text_poke() might occur
-			 * still on the read-write image until we finally
-			 * locked it as read-only. Both modifications on
-			 * the given image are under text_mutex to avoid
-			 * interference.
-			 */
 			ret = __bpf_arch_text_poke(poke->tailcall_target,
 						   BPF_MOD_JUMP, NULL,
 						   (u8 *)target->bpf_func +
-						   poke->adj_off, false);
+						   poke->adj_off);
 			BUG_ON(ret < 0);
 			ret = __bpf_arch_text_poke(poke->tailcall_bypass,
 						   BPF_MOD_JUMP,
 						   (u8 *)poke->tailcall_target +
-						   X86_PATCH_SIZE, NULL, false);
+						   X86_PATCH_SIZE, NULL);
 			BUG_ON(ret < 0);
 		}
 		WRITE_ONCE(poke->tailcall_target_stable, true);
@@ -866,7 +853,7 @@ static void emit_nops(u8 **pprog, int len)
 
 #define INSN_SZ_DIFF (((addrs[i] - addrs[i - 1]) - (prog - temp)))
 
-static int do_jit(struct bpf_prog *bpf_prog, int *addrs, u8 *image,
+static int do_jit(struct bpf_prog *bpf_prog, int *addrs, u8 *image, u8 *rw_image,
 		  int oldproglen, struct jit_context *ctx, bool jmp_padding)
 {
 	bool tail_call_reachable = bpf_prog->aux->tail_call_reachable;
@@ -893,8 +880,8 @@ static int do_jit(struct bpf_prog *bpf_prog, int *addrs, u8 *image,
 	push_callee_regs(&prog, callee_regs_used);
 
 	ilen = prog - temp;
-	if (image)
-		memcpy(image + proglen, temp, ilen);
+	if (rw_image)
+		memcpy(rw_image + proglen, temp, ilen);
 	proglen += ilen;
 	addrs[0] = proglen;
 	prog = temp;
@@ -1323,6 +1310,9 @@ st:			if (is_imm8(insn->off))
 					pr_err("extable->insn doesn't fit into 32-bit\n");
 					return -EFAULT;
 				}
+				/* switch ex to rw buffer for writes */
+				ex = (void *)rw_image + ((void *)ex - (void *)image);
+
 				ex->insn = delta;
 
 				ex->data = EX_TYPE_BPF;
@@ -1705,7 +1695,7 @@ st:			if (is_imm8(insn->off))
 				pr_err("bpf_jit: fatal error\n");
 				return -EFAULT;
 			}
-			memcpy(image + proglen, temp, ilen);
+			memcpy(rw_image + proglen, temp, ilen);
 		}
 		proglen += ilen;
 		addrs[i] = proglen;
@@ -2246,6 +2236,7 @@ int arch_prepare_bpf_dispatcher(void *image, s64 *funcs, int num_funcs)
 }
 
 struct x64_jit_data {
+	struct bpf_binary_header *rw_header;
 	struct bpf_binary_header *header;
 	int *addrs;
 	u8 *image;
@@ -2258,6 +2249,7 @@ struct x64_jit_data {
 
 struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
 {
+	struct bpf_binary_header *rw_header = NULL;
 	struct bpf_binary_header *header = NULL;
 	struct bpf_prog *tmp, *orig_prog = prog;
 	struct x64_jit_data *jit_data;
@@ -2266,6 +2258,7 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
 	bool tmp_blinded = false;
 	bool extra_pass = false;
 	bool padding = false;
+	u8 *rw_image = NULL;
 	u8 *image = NULL;
 	int *addrs;
 	int pass;
@@ -2301,6 +2294,8 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
 		oldproglen = jit_data->proglen;
 		image = jit_data->image;
 		header = jit_data->header;
+		rw_header = jit_data->rw_header;
+		rw_image = (void *)rw_header + ((void *)image - (void *)header);
 		extra_pass = true;
 		padding = true;
 		goto skip_init_addrs;
@@ -2331,12 +2326,12 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
 	for (pass = 0; pass < MAX_PASSES || image; pass++) {
 		if (!padding && pass >= PADDING_PASSES)
 			padding = true;
-		proglen = do_jit(prog, addrs, image, oldproglen, &ctx, padding);
+		proglen = do_jit(prog, addrs, image, rw_image, oldproglen, &ctx, padding);
 		if (proglen <= 0) {
 out_image:
 			image = NULL;
 			if (header)
-				bpf_jit_binary_free(header);
+				bpf_jit_binary_pack_free(header, rw_header);
 			prog = orig_prog;
 			goto out_addrs;
 		}
@@ -2360,8 +2355,9 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
 				sizeof(struct exception_table_entry);
 
 			/* allocate module memory for x86 insns and extable */
-			header = bpf_jit_binary_alloc(roundup(proglen, align) + extable_size,
-						      &image, align, jit_fill_hole);
+			header = bpf_jit_binary_pack_alloc(roundup(proglen, align) + extable_size,
+							   &image, align, &rw_header, &rw_image,
+							   jit_fill_hole);
 			if (!header) {
 				prog = orig_prog;
 				goto out_addrs;
@@ -2377,14 +2373,22 @@ struct bpf_prog *bpf_int_jit_compile(struct bpf_prog *prog)
 
 	if (image) {
 		if (!prog->is_func || extra_pass) {
+			/*
+			 * bpf_jit_binary_pack_finalize fails in two scenarios:
+			 *   1) header is not pointing to proper module memory;
+			 *   2) the arch doesn't support bpf_arch_text_copy().
+			 *
+			 * Both cases are serious bugs that we should not continue.
+			 */
+			BUG_ON(bpf_jit_binary_pack_finalize(prog, header, rw_header));
 			bpf_tail_call_direct_fixup(prog);
-			bpf_jit_binary_lock_ro(header);
 		} else {
 			jit_data->addrs = addrs;
 			jit_data->ctx = ctx;
 			jit_data->proglen = proglen;
 			jit_data->image = image;
 			jit_data->header = header;
+			jit_data->rw_header = rw_header;
 		}
 		prog->bpf_func = (void *)image;
 		prog->jited = 1;
-- 
2.30.2


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

* Re: [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc
  2022-02-04 18:57 ` [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc Song Liu
@ 2022-02-08  2:24   ` Alexei Starovoitov
  2022-07-03  3:02   ` Andres Freund
  1 sibling, 0 replies; 33+ messages in thread
From: Alexei Starovoitov @ 2022-02-08  2:24 UTC (permalink / raw)
  To: Song Liu
  Cc: bpf, netdev, linux-kernel, ast, daniel, andrii, kernel-team,
	peterz, x86, iii, Song Liu

On Fri, Feb 04, 2022 at 10:57:42AM -0800, Song Liu wrote:
>  	if (image) {
>  		if (!prog->is_func || extra_pass) {
> +			/*
> +			 * bpf_jit_binary_pack_finalize fails in two scenarios:
> +			 *   1) header is not pointing to proper module memory;
> +			 *   2) the arch doesn't support bpf_arch_text_copy().
> +			 *
> +			 * Both cases are serious bugs that we should not continue.
> +			 */
> +			BUG_ON(bpf_jit_binary_pack_finalize(prog, header, rw_header));
>  			bpf_tail_call_direct_fixup(prog);
> -			bpf_jit_binary_lock_ro(header);

BUG_ON is discouraged.
It should only be used when the kernel absolutely cannot continue.
Here ro/rw_headers will be freed. We can WARN and goto out_addrs without drama.
Please send a follow up.

The rest looks great. Applied to bpf-next.

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

* Re: [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator
  2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
                   ` (8 preceding siblings ...)
  2022-02-04 18:57 ` [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc Song Liu
@ 2022-02-08  2:30 ` patchwork-bot+netdevbpf
  9 siblings, 0 replies; 33+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-02-08  2:30 UTC (permalink / raw)
  To: Song Liu
  Cc: bpf, netdev, linux-kernel, ast, daniel, andrii, kernel-team,
	peterz, x86, iii

Hello:

This series was applied to bpf/bpf-next.git (master)
by Alexei Starovoitov <ast@kernel.org>:

On Fri, 4 Feb 2022 10:57:33 -0800 you wrote:
> Changes v8 => v9:
> 1. Fix an error with multi function program, in 4/9.
> 
> Changes v7 => v8:
> 1. Rebase and fix conflicts.
> 2. Lock text_mutex for text_poke_copy. (Daniel)
> 
> [...]

Here is the summary with links:
  - [v9,bpf-next,1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
    https://git.kernel.org/bpf/bpf-next/c/fac54e2bfb5b
  - [v9,bpf-next,2/9] bpf: use bytes instead of pages for bpf_jit_[charge|uncharge]_modmem
    https://git.kernel.org/bpf/bpf-next/c/3486bedd9919
  - [v9,bpf-next,3/9] bpf: use size instead of pages in bpf_binary_header
    https://git.kernel.org/bpf/bpf-next/c/ed2d9e1a26cc
  - [v9,bpf-next,4/9] bpf: use prog->jited_len in bpf_prog_ksym_set_addr()
    https://git.kernel.org/bpf/bpf-next/c/d00c6473b1ee
  - [v9,bpf-next,5/9] x86/alternative: introduce text_poke_copy
    https://git.kernel.org/bpf/bpf-next/c/0e06b4037168
  - [v9,bpf-next,6/9] bpf: introduce bpf_arch_text_copy
    https://git.kernel.org/bpf/bpf-next/c/ebc1415d9b4f
  - [v9,bpf-next,7/9] bpf: introduce bpf_prog_pack allocator
    https://git.kernel.org/bpf/bpf-next/c/57631054fae6
  - [v9,bpf-next,8/9] bpf: introduce bpf_jit_binary_pack_[alloc|finalize|free]
    https://git.kernel.org/bpf/bpf-next/c/33c9805860e5
  - [v9,bpf-next,9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc
    https://git.kernel.org/bpf/bpf-next/c/1022a5498f6f

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



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

* Re: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  2022-02-04 18:57 ` [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP Song Liu
@ 2022-03-26  0:06   ` Edgecombe, Rick P
  2022-03-28 23:27     ` Song Liu
  2022-03-26 18:46   ` BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP) Paul Menzel
  1 sibling, 1 reply; 33+ messages in thread
From: Edgecombe, Rick P @ 2022-03-26  0:06 UTC (permalink / raw)
  To: netdev, linux-kernel, song, bpf
  Cc: songliubraving, daniel, peterz, ast, kernel-team, andrii, x86, iii

On Fri, 2022-02-04 at 10:57 -0800, Song Liu wrote:
> From: Song Liu <songliubraving@fb.com>
> 
> This enables module_alloc() to allocate huge page for 2MB+ requests.
> To check the difference of this change, we need enable config
> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
> 
> Signed-off-by: Song Liu <songliubraving@fb.com>
> ---
>  arch/x86/Kconfig | 1 +
>  1 file changed, 1 insertion(+)

Hi,

I just saw this upstream today. Glad to see this functionality, but I
think turning on huge vmalloc pages for x86 needs a bit more. I’ll
describe a couple possible failure modes I haven’t actually tested.

One problem is that the direct map permission reset part in vmalloc
assumes any special permissioned pages are mapped 4k on the direct map.
Otherwise the operation could fail to reset a page RW if a PTE page
allocation fails when it tries to split the page to toggle a 4k sized
region NP/P. If you are not familiar, x86 CPA generally leaves the
direct map page sizes mirroring the primary alias (vmalloc). So once
vmalloc has huge pages, the special permissioned direct map aliases
will have them too. This limitation of HAVE_ARCH_HUGE_VMALLOC is
actually hinted about in the Kconfig comments, but I guess it wasn’t
specific that x86 has these properties.

I think to make the vmalloc resetting part safe:
1. set_direct_map_invalid/default() needs to support multiple pages
like this[0].
2. vm_remove_mappings() needs to call them with the correct page size
in the hpage case so they don't cause a split[1].
3. Then hibernate needs to be blocked during this operation so it
doesn’t encounter the now sometimes huge NP pages, which it can’t
handle. Not sure what the right way to do this is, but potentially like
in the diff below[1].

Another problem is that CPA will sometimes now split pages of vmalloc
mappings in cases where it sets a region of an allocation to a
different permission than the rest (for example regular modules calling
set_memory_x() on the text section). Before this change, these couldn’t
fail since the module space mapping would never require a split.
Modules doesn’t check for failure there, so I’m thinking now it would
proceed to try to execute NX memory if the split failed. It could only
happen on allocation of especially large modules. Maybe it should just
be avoided for now by having regular module allocations pass
VM_NO_HUGE_VMAP on x86. And BPF could call __vmalloc_node_range()
directly to get 2MB vmallocs.

[0] 
https://lore.kernel.org/lkml/20210208084920.2884-5-rppt@kernel.org/#t

[1] Untested, but something like this possibly:
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index 99e0f3e8d1a5..97c4ca3a29b1 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -42,6 +42,7 @@
 #include <linux/sched/mm.h>
 #include <asm/tlbflush.h>
 #include <asm/shmparam.h>
+#include <linux/suspend.h>
 
 #include "internal.h"
 #include "pgalloc-track.h"
@@ -2241,7 +2242,7 @@ EXPORT_SYMBOL(vm_map_ram);
 
 static struct vm_struct *vmlist __initdata;
 
-static inline unsigned int vm_area_page_order(struct vm_struct *vm)
+static inline unsigned int vm_area_page_order(const struct vm_struct
*vm)
 {
 #ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
        return vm->page_order;
@@ -2560,12 +2561,12 @@ struct vm_struct *remove_vm_area(const void
*addr)
 static inline void set_area_direct_map(const struct vm_struct *area,
                                       int (*set_direct_map)(struct
page *page))
 {
+       unsigned int page_order = vm_area_page_order(area);
        int i;
 
-       /* HUGE_VMALLOC passes small pages to set_direct_map */
-       for (i = 0; i < area->nr_pages; i++)
+       for (i = 0; i < area->nr_pages; i += 1U << page_order)
                if (page_address(area->pages[i]))
-                       set_direct_map(area->pages[i]);
+                       set_direct_map(area->pages[i], 1U <<
page_order);
 }
 
 /* Handle removing and resetting vm mappings related to the vm_struct.
*/
@@ -2592,6 +2593,10 @@ static void vm_remove_mappings(struct vm_struct
*area, int deallocate_pages)
                return;
        }
 
+       /* Hibernate can't handle large NP pages */
+       if (page_order)
+               lock_system_sleep();
+
        /*
         * If execution gets here, flush the vm mapping and reset the
direct
         * map. Find the start and end range of the direct mappings to
make sure
@@ -2617,6 +2622,9 @@ static void vm_remove_mappings(struct vm_struct
*area, int deallocate_pages)
        set_area_direct_map(area, set_direct_map_invalid_noflush);
        _vm_unmap_aliases(start, end, flush_dmap);
        set_area_direct_map(area, set_direct_map_default_noflush);
+
+       if (page_order)
+               unlock_system_sleep();
 }
 
 static void __vunmap(const void *addr, int deallocate_pages)

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

* BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
  2022-02-04 18:57 ` [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP Song Liu
  2022-03-26  0:06   ` Edgecombe, Rick P
@ 2022-03-26 18:46   ` Paul Menzel
  2022-03-27 10:36     ` Paul Menzel
  1 sibling, 1 reply; 33+ messages in thread
From: Paul Menzel @ 2022-03-26 18:46 UTC (permalink / raw)
  To: Song Liu
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu,
	bpf, netdev, linux-kernel, Thomas Gleixner, Ingo Molnar,
	Borislav Petkov, Dave Hansen, Rick P Edgecombe, regressions

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

#regzbot introduced: fac54e2bfb5be2b0bbf115fe80d45f59fd773048
#regzbot title: BUG: Bad page state in process systemd-udevd


Dear Song,


Am 04.02.22 um 19:57 schrieb Song Liu:
> From: Song Liu <songliubraving@fb.com>
> 
> This enables module_alloc() to allocate huge page for 2MB+ requests.
> To check the difference of this change, we need enable config
> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
> 
> Signed-off-by: Song Liu <songliubraving@fb.com>
> ---
>   arch/x86/Kconfig | 1 +
>   1 file changed, 1 insertion(+)
> 
> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
> index 6fddb63271d9..e0e0d00cf103 100644
> --- a/arch/x86/Kconfig
> +++ b/arch/x86/Kconfig
> @@ -159,6 +159,7 @@ config X86
>   	select HAVE_ALIGNED_STRUCT_PAGE		if SLUB
>   	select HAVE_ARCH_AUDITSYSCALL
>   	select HAVE_ARCH_HUGE_VMAP		if X86_64 || X86_PAE
> +	select HAVE_ARCH_HUGE_VMALLOC		if HAVE_ARCH_HUGE_VMAP
>   	select HAVE_ARCH_JUMP_LABEL
>   	select HAVE_ARCH_JUMP_LABEL_RELATIVE
>   	select HAVE_ARCH_KASAN			if X86_64

Testing Linus’ current master branch, Linux logs critical messages like 
below:

     BUG: Bad page state in process systemd-udevd  pfn:102e03

I bisected to your commit fac54e2bfb5 (x86/Kconfig: select 
HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP).


Kind regards,

Paul

[-- Attachment #2: linux-5.18-vmap-bad-page-state.txt --]
[-- Type: text/plain, Size: 271183 bytes --]

[    1.638676] usb usb1: SerialNumber: 0000:00:12.2
[    1.639632] [drm] radeon kernel modesetting enabled.
[    1.648147] hub 1-0:1.0: USB hub found
[    1.648871] hub 1-0:1.0: 5 ports detected
[    1.653689] ehci-pci 0000:00:13.2: EHCI Host Controller
[    1.653720] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[    1.653735] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    1.653744] ehci-pci 0000:00:13.2: debug port 1
[    1.653830] ehci-pci 0000:00:13.2: irq 17, io mem 0xf01ce000
[    1.660203] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.660445] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[    1.660449] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.660452] usb usb2: Product: EHCI Host Controller
[    1.660454] usb usb2: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ehci_hcd
[    1.660456] usb usb2: SerialNumber: 0000:00:13.2
[    1.661002] hub 2-0:1.0: USB hub found
[    1.661032] hub 2-0:1.0: 5 ports detected
[    1.680441] r8169 0000:04:00.0: enabling device (0000 -> 0003)
[    1.687983] BUG: Bad page state in process systemd-udevd  pfn:102e03
[    1.687992] fbcon: Taking over console
[    1.688007] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3 pfn:0x102e03
[    1.688011] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.688013] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.688018] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b80c8 0000000000000000
[    1.688020] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688022] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.688023] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688024] page dumped because: corrupted mapping in tail page
[    1.688025] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.688045] CPU: 1 PID: 151 Comm: systemd-udevd Not tainted 5.16.0-11615-gfac54e2bfb5b #319
[    1.688048] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.688050] Call Trace:
[    1.688051]  <TASK>
[    1.688053]  dump_stack_lvl+0x34/0x44
[    1.688059]  bad_page.cold+0x63/0x94
[    1.688063]  free_tail_pages_check+0xd1/0x110
[    1.688067]  ? _raw_spin_lock+0x13/0x30
[    1.688071]  free_pcp_prepare+0x251/0x2e0
[    1.688075]  free_unref_page+0x1d/0x110
[    1.688078]  __vunmap+0x28a/0x380
[    1.688082]  drm_fbdev_cleanup+0x5f/0xb0
[    1.688085]  drm_fbdev_fb_destroy+0x15/0x30
[    1.688087]  unregister_framebuffer+0x1d/0x30
[    1.688091]  drm_client_dev_unregister+0x69/0xe0
[    1.688095]  drm_dev_unregister+0x2e/0x80
[    1.688098]  drm_dev_unplug+0x21/0x40
[    1.688100]  simpledrm_remove+0x11/0x20
[    1.688103]  platform_remove+0x1f/0x40
[    1.688106]  __device_release_driver+0x17a/0x240
[    1.688109]  device_release_driver+0x24/0x30
[    1.688112]  bus_remove_device+0xd8/0x140
[    1.688115]  device_del+0x18b/0x3f0
[    1.688118]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.688121]  ? try_to_wake_up+0x94/0x5b0
[    1.688124]  platform_device_del.part.0+0x13/0x70
[    1.688127]  platform_device_unregister+0x1c/0x30
[    1.688130]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.688134]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.688137]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.688212]  local_pci_probe+0x45/0x80
[    1.688216]  ? pci_match_device+0xd7/0x130
[    1.688219]  pci_device_probe+0xc2/0x1d0
[    1.688223]  really_probe+0x1f5/0x3d0
[    1.688226]  __driver_probe_device+0xfe/0x180
[    1.688229]  driver_probe_device+0x1e/0x90
[    1.688232]  __driver_attach+0xc0/0x1c0
[    1.688235]  ? __device_attach_driver+0xe0/0xe0
[    1.688237]  ? __device_attach_driver+0xe0/0xe0
[    1.688239]  bus_for_each_dev+0x78/0xc0
[    1.688242]  bus_add_driver+0x149/0x1e0
[    1.688245]  driver_register+0x8f/0xe0
[    1.688248]  ? 0xffffffffc051d000
[    1.688250]  do_one_initcall+0x44/0x200
[    1.688254]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.688257]  do_init_module+0x5c/0x260
[    1.688262]  __do_sys_finit_module+0xb4/0x120
[    1.688266]  __do_fast_syscall_32+0x6b/0xe0
[    1.688270]  do_fast_syscall_32+0x2f/0x70
[    1.688272]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.688275] RIP: 0023:0xf7e51549
[    1.688278] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.688281] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.688285] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.688287] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.688288] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.688290] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.688291] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.688294]  </TASK>
[    1.688355] Disabling lock debugging due to kernel taint
[    1.688357] BUG: Bad page state in process systemd-udevd  pfn:102e04
[    1.688361] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x4 pfn:0x102e04
[    1.688364] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.688366] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.688370] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8108 0000000000000000
[    1.688372] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688374] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.688376] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688377] page dumped because: corrupted mapping in tail page
[    1.688379] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.688397] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.688400] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.688401] Call Trace:
[    1.688403]  <TASK>
[    1.688404]  dump_stack_lvl+0x34/0x44
[    1.688409]  bad_page.cold+0x63/0x94
[    1.688412]  free_tail_pages_check+0xd1/0x110
[    1.688415]  ? _raw_spin_lock+0x13/0x30
[    1.688418]  free_pcp_prepare+0x251/0x2e0
[    1.688421]  free_unref_page+0x1d/0x110
[    1.688425]  __vunmap+0x28a/0x380
[    1.688428]  drm_fbdev_cleanup+0x5f/0xb0
[    1.688431]  drm_fbdev_fb_destroy+0x15/0x30
[    1.688434]  unregister_framebuffer+0x1d/0x30
[    1.688437]  drm_client_dev_unregister+0x69/0xe0
[    1.688440]  drm_dev_unregister+0x2e/0x80
[    1.688443]  drm_dev_unplug+0x21/0x40
[    1.688446]  simpledrm_remove+0x11/0x20
[    1.688449]  platform_remove+0x1f/0x40
[    1.688452]  __device_release_driver+0x17a/0x240
[    1.688455]  device_release_driver+0x24/0x30
[    1.688458]  bus_remove_device+0xd8/0x140
[    1.688460]  device_del+0x18b/0x3f0
[    1.688463]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.688466]  ? try_to_wake_up+0x94/0x5b0
[    1.688469]  platform_device_del.part.0+0x13/0x70
[    1.688472]  platform_device_unregister+0x1c/0x30
[    1.688476]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.688479]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.688482]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.688546]  local_pci_probe+0x45/0x80
[    1.688549]  ? pci_match_device+0xd7/0x130
[    1.688552]  pci_device_probe+0xc2/0x1d0
[    1.688555]  really_probe+0x1f5/0x3d0
[    1.688558]  __driver_probe_device+0xfe/0x180
[    1.688560]  driver_probe_device+0x1e/0x90
[    1.688563]  __driver_attach+0xc0/0x1c0
[    1.688565]  ? __device_attach_driver+0xe0/0xe0
[    1.688567]  ? __device_attach_driver+0xe0/0xe0
[    1.688570]  bus_for_each_dev+0x78/0xc0
[    1.688572]  bus_add_driver+0x149/0x1e0
[    1.688575]  driver_register+0x8f/0xe0
[    1.688577]  ? 0xffffffffc051d000
[    1.688579]  do_one_initcall+0x44/0x200
[    1.688581]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.688585]  do_init_module+0x5c/0x260
[    1.688588]  __do_sys_finit_module+0xb4/0x120
[    1.688592]  __do_fast_syscall_32+0x6b/0xe0
[    1.688595]  do_fast_syscall_32+0x2f/0x70
[    1.688597]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.688600] RIP: 0023:0xf7e51549
[    1.688602] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.688604] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.688606] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.688608] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.688609] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.688611] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.688612] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.688615]  </TASK>
[    1.688616] BUG: Bad page state in process systemd-udevd  pfn:102e05
[    1.688620] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x5 pfn:0x102e05
[    1.688622] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.688624] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.688627] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8148 0000000000000000
[    1.688629] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688631] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.688632] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688633] page dumped because: corrupted mapping in tail page
[    1.688634] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.688649] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.688652] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.688653] Call Trace:
[    1.688654]  <TASK>
[    1.688655]  dump_stack_lvl+0x34/0x44
[    1.688658]  bad_page.cold+0x63/0x94
[    1.688661]  free_tail_pages_check+0xd1/0x110
[    1.688664]  ? _raw_spin_lock+0x13/0x30
[    1.688667]  free_pcp_prepare+0x251/0x2e0
[    1.688670]  free_unref_page+0x1d/0x110
[    1.688673]  __vunmap+0x28a/0x380
[    1.688676]  drm_fbdev_cleanup+0x5f/0xb0
[    1.688678]  drm_fbdev_fb_destroy+0x15/0x30
[    1.688680]  unregister_framebuffer+0x1d/0x30
[    1.688683]  drm_client_dev_unregister+0x69/0xe0
[    1.688685]  drm_dev_unregister+0x2e/0x80
[    1.688688]  drm_dev_unplug+0x21/0x40
[    1.688690]  simpledrm_remove+0x11/0x20
[    1.688692]  platform_remove+0x1f/0x40
[    1.688695]  __device_release_driver+0x17a/0x240
[    1.688698]  device_release_driver+0x24/0x30
[    1.688700]  bus_remove_device+0xd8/0x140
[    1.688703]  device_del+0x18b/0x3f0
[    1.688705]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.688708]  ? try_to_wake_up+0x94/0x5b0
[    1.688711]  platform_device_del.part.0+0x13/0x70
[    1.688714]  platform_device_unregister+0x1c/0x30
[    1.688716]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.688719]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.688722]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.688779]  local_pci_probe+0x45/0x80
[    1.688782]  ? pci_match_device+0xd7/0x130
[    1.688785]  pci_device_probe+0xc2/0x1d0
[    1.688788]  really_probe+0x1f5/0x3d0
[    1.688791]  __driver_probe_device+0xfe/0x180
[    1.688794]  driver_probe_device+0x1e/0x90
[    1.688796]  __driver_attach+0xc0/0x1c0
[    1.688798]  ? __device_attach_driver+0xe0/0xe0
[    1.688801]  ? __device_attach_driver+0xe0/0xe0
[    1.688803]  bus_for_each_dev+0x78/0xc0
[    1.688805]  bus_add_driver+0x149/0x1e0
[    1.688808]  driver_register+0x8f/0xe0
[    1.688810]  ? 0xffffffffc051d000
[    1.688812]  do_one_initcall+0x44/0x200
[    1.688814]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.688817]  do_init_module+0x5c/0x260
[    1.688820]  __do_sys_finit_module+0xb4/0x120
[    1.688824]  __do_fast_syscall_32+0x6b/0xe0
[    1.688827]  do_fast_syscall_32+0x2f/0x70
[    1.688829]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.688831] RIP: 0023:0xf7e51549
[    1.688833] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.688835] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.688838] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.688839] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.688841] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.688842] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.688843] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.688846]  </TASK>
[    1.688847] BUG: Bad page state in process systemd-udevd  pfn:102e06
[    1.688850] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x6 pfn:0x102e06
[    1.688852] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.688854] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.688857] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8188 0000000000000000
[    1.688859] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688860] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.688862] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688863] page dumped because: corrupted mapping in tail page
[    1.688864] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.688878] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.688881] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.688882] Call Trace:
[    1.688883]  <TASK>
[    1.688884]  dump_stack_lvl+0x34/0x44
[    1.688887]  bad_page.cold+0x63/0x94
[    1.688890]  free_tail_pages_check+0xd1/0x110
[    1.688892]  ? _raw_spin_lock+0x13/0x30
[    1.688895]  free_pcp_prepare+0x251/0x2e0
[    1.688898]  free_unref_page+0x1d/0x110
[    1.688901]  __vunmap+0x28a/0x380
[    1.688904]  drm_fbdev_cleanup+0x5f/0xb0
[    1.688906]  drm_fbdev_fb_destroy+0x15/0x30
[    1.688908]  unregister_framebuffer+0x1d/0x30
[    1.688911]  drm_client_dev_unregister+0x69/0xe0
[    1.688913]  drm_dev_unregister+0x2e/0x80
[    1.688915]  drm_dev_unplug+0x21/0x40
[    1.688918]  simpledrm_remove+0x11/0x20
[    1.688920]  platform_remove+0x1f/0x40
[    1.688923]  __device_release_driver+0x17a/0x240
[    1.688925]  device_release_driver+0x24/0x30
[    1.688928]  bus_remove_device+0xd8/0x140
[    1.688930]  device_del+0x18b/0x3f0
[    1.688933]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.688936]  ? try_to_wake_up+0x94/0x5b0
[    1.688938]  platform_device_del.part.0+0x13/0x70
[    1.688941]  platform_device_unregister+0x1c/0x30
[    1.688944]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.688947]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.688950]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.689007]  local_pci_probe+0x45/0x80
[    1.689010]  ? pci_match_device+0xd7/0x130
[    1.689013]  pci_device_probe+0xc2/0x1d0
[    1.689016]  really_probe+0x1f5/0x3d0
[    1.689018]  __driver_probe_device+0xfe/0x180
[    1.689021]  driver_probe_device+0x1e/0x90
[    1.689023]  __driver_attach+0xc0/0x1c0
[    1.689026]  ? __device_attach_driver+0xe0/0xe0
[    1.689028]  ? __device_attach_driver+0xe0/0xe0
[    1.689030]  bus_for_each_dev+0x78/0xc0
[    1.689033]  bus_add_driver+0x149/0x1e0
[    1.689035]  driver_register+0x8f/0xe0
[    1.689037]  ? 0xffffffffc051d000
[    1.689039]  do_one_initcall+0x44/0x200
[    1.689042]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.689045]  do_init_module+0x5c/0x260
[    1.689047]  __do_sys_finit_module+0xb4/0x120
[    1.689052]  __do_fast_syscall_32+0x6b/0xe0
[    1.689054]  do_fast_syscall_32+0x2f/0x70
[    1.689056]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.689058] RIP: 0023:0xf7e51549
[    1.689060] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.689062] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.689064] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.689066] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.689067] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.689069] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.689070] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.689073]  </TASK>
[    1.689074] BUG: Bad page state in process systemd-udevd  pfn:102e07
[    1.689077] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x7 pfn:0x102e07
[    1.689079] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.689081] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.689084] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b81c8 0000000000000000
[    1.689085] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.689087] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.689089] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.689090] page dumped because: corrupted mapping in tail page
[    1.689091] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.689105] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.689107] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.689108] Call Trace:
[    1.689109]  <TASK>
[    1.689110]  dump_stack_lvl+0x34/0x44
[    1.689113]  bad_page.cold+0x63/0x94
[    1.689116]  free_tail_pages_check+0xd1/0x110
[    1.689119]  ? _raw_spin_lock+0x13/0x30
[    1.689121]  free_pcp_prepare+0x251/0x2e0
[    1.689124]  free_unref_page+0x1d/0x110
[    1.689127]  __vunmap+0x28a/0x380
[    1.689130]  drm_fbdev_cleanup+0x5f/0xb0
[    1.689132]  drm_fbdev_fb_destroy+0x15/0x30
[    1.689134]  unregister_framebuffer+0x1d/0x30
[    1.689137]  drm_client_dev_unregister+0x69/0xe0
[    1.689139]  drm_dev_unregister+0x2e/0x80
[    1.689142]  drm_dev_unplug+0x21/0x40
[    1.689144]  simpledrm_remove+0x11/0x20
[    1.689146]  platform_remove+0x1f/0x40
[    1.689149]  __device_release_driver+0x17a/0x240
[    1.689152]  device_release_driver+0x24/0x30
[    1.689154]  bus_remove_device+0xd8/0x140
[    1.689157]  device_del+0x18b/0x3f0
[    1.689160]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.689162]  ? try_to_wake_up+0x94/0x5b0
[    1.689165]  platform_device_del.part.0+0x13/0x70
[    1.689168]  platform_device_unregister+0x1c/0x30
[    1.689171]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.689173]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.689176]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.689233]  local_pci_probe+0x45/0x80
[    1.689236]  ? pci_match_device+0xd7/0x130
[    1.689239]  pci_device_probe+0xc2/0x1d0
[    1.689242]  really_probe+0x1f5/0x3d0
[    1.689244]  __driver_probe_device+0xfe/0x180
[    1.689247]  driver_probe_device+0x1e/0x90
[    1.689250]  __driver_attach+0xc0/0x1c0
[    1.689252]  ? __device_attach_driver+0xe0/0xe0
[    1.689254]  ? __device_attach_driver+0xe0/0xe0
[    1.689256]  bus_for_each_dev+0x78/0xc0
[    1.689259]  bus_add_driver+0x149/0x1e0
[    1.689261]  driver_register+0x8f/0xe0
[    1.689264]  ? 0xffffffffc051d000
[    1.689266]  do_one_initcall+0x44/0x200
[    1.689268]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.689271]  do_init_module+0x5c/0x260
[    1.689274]  __do_sys_finit_module+0xb4/0x120
[    1.689278]  __do_fast_syscall_32+0x6b/0xe0
[    1.689281]  do_fast_syscall_32+0x2f/0x70
[    1.689283]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.689285] RIP: 0023:0xf7e51549
[    1.689287] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.689289] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.689291] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.689293] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.689294] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.689295] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.689296] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.689299]  </TASK>
[    1.696005] BUG: Bad page state in process systemd-udevd  pfn:102e08
[    1.696015] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x8 pfn:0x102e08
[    1.696019] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.696021] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.696026] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8208 0000000000000000
[    1.696028] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.696030] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.696031] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.696032] page dumped because: corrupted mapping in tail page
[    1.696034] Modules linked in: pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.696053] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.696057] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.696061] Call Trace:
[    1.696063]  <TASK>
[    1.696065]  dump_stack_lvl+0x34/0x44
[    1.696071]  bad_page.cold+0x63/0x94
[    1.696075]  free_tail_pages_check+0xd1/0x110
[    1.696079]  ? _raw_spin_lock+0x13/0x30
[    1.696083]  free_pcp_prepare+0x251/0x2e0
[    1.696087]  free_unref_page+0x1d/0x110
[    1.696090]  __vunmap+0x28a/0x380
[    1.696093]  drm_fbdev_cleanup+0x5f/0xb0
[    1.696097]  drm_fbdev_fb_destroy+0x15/0x30
[    1.696099]  unregister_framebuffer+0x1d/0x30
[    1.696103]  drm_client_dev_unregister+0x69/0xe0
[    1.696106]  drm_dev_unregister+0x2e/0x80
[    1.696110]  drm_dev_unplug+0x21/0x40
[    1.696113]  simpledrm_remove+0x11/0x20
[    1.696115]  platform_remove+0x1f/0x40
[    1.696119]  __device_release_driver+0x17a/0x240
[    1.696122]  device_release_driver+0x24/0x30
[    1.696124]  bus_remove_device+0xd8/0x140
[    1.696127]  device_del+0x18b/0x3f0
[    1.696130]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.696133]  ? try_to_wake_up+0x94/0x5b0
[    1.696137]  platform_device_del.part.0+0x13/0x70
[    1.696140]  platform_device_unregister+0x1c/0x30
[    1.696143]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.696147]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.696150]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.696224]  local_pci_probe+0x45/0x80
[    1.696228]  ? pci_match_device+0xd7/0x130
[    1.696232]  pci_device_probe+0xc2/0x1d0
[    1.696235]  really_probe+0x1f5/0x3d0
[    1.696239]  __driver_probe_device+0xfe/0x180
[    1.696241]  driver_probe_device+0x1e/0x90
[    1.696244]  __driver_attach+0xc0/0x1c0
[    1.696246]  ? __device_attach_driver+0xe0/0xe0
[    1.696248]  ? __device_attach_driver+0xe0/0xe0
[    1.696250]  bus_for_each_dev+0x78/0xc0
[    1.696253]  bus_add_driver+0x149/0x1e0
[    1.696256]  driver_register+0x8f/0xe0
[    1.696258]  ? 0xffffffffc051d000
[    1.696260]  do_one_initcall+0x44/0x200
[    1.696264]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.696267]  do_init_module+0x5c/0x260
[    1.696271]  __do_sys_finit_module+0xb4/0x120
[    1.696276]  __do_fast_syscall_32+0x6b/0xe0
[    1.696279]  do_fast_syscall_32+0x2f/0x70
[    1.696281]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.696284] RIP: 0023:0xf7e51549
[    1.696287] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.696289] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.696292] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.696294] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.696296] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.696297] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.696298] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.696301]  </TASK>
[    1.703351] BUG: Bad page state in process systemd-udevd  pfn:102e09
[    1.703361] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x9 pfn:0x102e09
[    1.703365] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.703367] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.703372] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8248 0000000000000000
[    1.703374] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.703376] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.703377] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.703378] page dumped because: corrupted mapping in tail page
[    1.703379] Modules linked in: r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.703399] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.703402] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.703404] Call Trace:
[    1.703406]  <TASK>
[    1.703407]  dump_stack_lvl+0x34/0x44
[    1.703414]  bad_page.cold+0x63/0x94
[    1.703417]  free_tail_pages_check+0xd1/0x110
[    1.703421]  ? _raw_spin_lock+0x13/0x30
[    1.703426]  free_pcp_prepare+0x251/0x2e0
[    1.703429]  free_unref_page+0x1d/0x110
[    1.703433]  __vunmap+0x28a/0x380
[    1.703437]  drm_fbdev_cleanup+0x5f/0xb0
[    1.703440]  drm_fbdev_fb_destroy+0x15/0x30
[    1.703442]  unregister_framebuffer+0x1d/0x30
[    1.703446]  drm_client_dev_unregister+0x69/0xe0
[    1.703450]  drm_dev_unregister+0x2e/0x80
[    1.703453]  drm_dev_unplug+0x21/0x40
[    1.703455]  simpledrm_remove+0x11/0x20
[    1.703458]  platform_remove+0x1f/0x40
[    1.703462]  __device_release_driver+0x17a/0x240
[    1.703465]  device_release_driver+0x24/0x30
[    1.703468]  bus_remove_device+0xd8/0x140
[    1.703471]  device_del+0x18b/0x3f0
[    1.703474]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.703477]  ? try_to_wake_up+0x94/0x5b0
[    1.703481]  platform_device_del.part.0+0x13/0x70
[    1.703484]  platform_device_unregister+0x1c/0x30
[    1.703487]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.703492]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.703495]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.703570]  local_pci_probe+0x45/0x80
[    1.703574]  ? pci_match_device+0xd7/0x130
[    1.703577]  pci_device_probe+0xc2/0x1d0
[    1.703581]  really_probe+0x1f5/0x3d0
[    1.703583]  __driver_probe_device+0xfe/0x180
[    1.703585]  driver_probe_device+0x1e/0x90
[    1.703588]  __driver_attach+0xc0/0x1c0
[    1.703590]  ? __device_attach_driver+0xe0/0xe0
[    1.703592]  ? __device_attach_driver+0xe0/0xe0
[    1.703595]  bus_for_each_dev+0x78/0xc0
[    1.703598]  bus_add_driver+0x149/0x1e0
[    1.703601]  driver_register+0x8f/0xe0
[    1.703603]  ? 0xffffffffc051d000
[    1.703605]  do_one_initcall+0x44/0x200
[    1.703610]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.703614]  do_init_module+0x5c/0x260
[    1.703618]  __do_sys_finit_module+0xb4/0x120
[    1.703622]  __do_fast_syscall_32+0x6b/0xe0
[    1.703626]  do_fast_syscall_32+0x2f/0x70
[    1.703628]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.703632] RIP: 0023:0xf7e51549
[    1.703635] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.703637] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.703642] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.703644] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.703645] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.703647] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.703648] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.703650]  </TASK>
[    1.710663] ehci-pci 0000:00:16.2: EHCI Host Controller
[    1.710690] ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 3
[    1.710705] ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    1.710713] ehci-pci 0000:00:16.2: debug port 1
[    1.710797] ehci-pci 0000:00:16.2: irq 17, io mem 0xf01cf000
[    1.722385] BUG: Bad page state in process systemd-udevd  pfn:102e0a
[    1.722393] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xa pfn:0x102e0a
[    1.722397] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.722399] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.722404] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8288 0000000000000000
[    1.722406] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722408] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.722410] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722411] page dumped because: corrupted mapping in tail page
[    1.722412] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.722433] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.722436] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.722438] Call Trace:
[    1.722439]  <TASK>
[    1.722441]  dump_stack_lvl+0x34/0x44
[    1.722447]  bad_page.cold+0x63/0x94
[    1.722451]  free_tail_pages_check+0xd1/0x110
[    1.722455]  ? _raw_spin_lock+0x13/0x30
[    1.722460]  free_pcp_prepare+0x251/0x2e0
[    1.722463]  free_unref_page+0x1d/0x110
[    1.722467]  __vunmap+0x28a/0x380
[    1.722470]  drm_fbdev_cleanup+0x5f/0xb0
[    1.722474]  drm_fbdev_fb_destroy+0x15/0x30
[    1.722476]  unregister_framebuffer+0x1d/0x30
[    1.722480]  drm_client_dev_unregister+0x69/0xe0
[    1.722484]  drm_dev_unregister+0x2e/0x80
[    1.722487]  drm_dev_unplug+0x21/0x40
[    1.722490]  simpledrm_remove+0x11/0x20
[    1.722493]  platform_remove+0x1f/0x40
[    1.722496]  __device_release_driver+0x17a/0x240
[    1.722499]  device_release_driver+0x24/0x30
[    1.722502]  bus_remove_device+0xd8/0x140
[    1.722505]  device_del+0x18b/0x3f0
[    1.722508]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.722511]  ? try_to_wake_up+0x94/0x5b0
[    1.722515]  platform_device_del.part.0+0x13/0x70
[    1.722519]  platform_device_unregister+0x1c/0x30
[    1.722522]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.722526]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.722529]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.722603]  local_pci_probe+0x45/0x80
[    1.722607]  ? pci_match_device+0xd7/0x130
[    1.722610]  pci_device_probe+0xc2/0x1d0
[    1.722614]  really_probe+0x1f5/0x3d0
[    1.722617]  __driver_probe_device+0xfe/0x180
[    1.722620]  driver_probe_device+0x1e/0x90
[    1.722624]  __driver_attach+0xc0/0x1c0
[    1.722626]  ? __device_attach_driver+0xe0/0xe0
[    1.722628]  ? __device_attach_driver+0xe0/0xe0
[    1.722630]  bus_for_each_dev+0x78/0xc0
[    1.722634]  bus_add_driver+0x149/0x1e0
[    1.722636]  driver_register+0x8f/0xe0
[    1.722639]  ? 0xffffffffc051d000
[    1.722641]  do_one_initcall+0x44/0x200
[    1.722645]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.722648]  do_init_module+0x5c/0x260
[    1.722653]  __do_sys_finit_module+0xb4/0x120
[    1.722657]  __do_fast_syscall_32+0x6b/0xe0
[    1.722660]  do_fast_syscall_32+0x2f/0x70
[    1.722663]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.722666] RIP: 0023:0xf7e51549
[    1.722669] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.722671] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.722675] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.722676] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.722678] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.722679] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.722680] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.722683]  </TASK>
[    1.722684] BUG: Bad page state in process systemd-udevd  pfn:102e0b
[    1.722689] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xb pfn:0x102e0b
[    1.722692] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.722694] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.722697] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b82c8 0000000000000000
[    1.722699] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722701] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.722702] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722703] page dumped because: corrupted mapping in tail page
[    1.722704] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.722721] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.722724] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.722725] Call Trace:
[    1.722726]  <TASK>
[    1.722727]  dump_stack_lvl+0x34/0x44
[    1.722731]  bad_page.cold+0x63/0x94
[    1.722735]  free_tail_pages_check+0xd1/0x110
[    1.722738]  ? _raw_spin_lock+0x13/0x30
[    1.722741]  free_pcp_prepare+0x251/0x2e0
[    1.722744]  free_unref_page+0x1d/0x110
[    1.722748]  __vunmap+0x28a/0x380
[    1.722750]  drm_fbdev_cleanup+0x5f/0xb0
[    1.722753]  drm_fbdev_fb_destroy+0x15/0x30
[    1.722755]  unregister_framebuffer+0x1d/0x30
[    1.722758]  drm_client_dev_unregister+0x69/0xe0
[    1.722760]  drm_dev_unregister+0x2e/0x80
[    1.722763]  drm_dev_unplug+0x21/0x40
[    1.722766]  simpledrm_remove+0x11/0x20
[    1.722768]  platform_remove+0x1f/0x40
[    1.722771]  __device_release_driver+0x17a/0x240
[    1.722774]  device_release_driver+0x24/0x30
[    1.722777]  bus_remove_device+0xd8/0x140
[    1.722779]  device_del+0x18b/0x3f0
[    1.722782]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.722785]  ? try_to_wake_up+0x94/0x5b0
[    1.722788]  platform_device_del.part.0+0x13/0x70
[    1.722791]  platform_device_unregister+0x1c/0x30
[    1.722794]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.722797]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.722800]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.722862]  local_pci_probe+0x45/0x80
[    1.722865]  ? pci_match_device+0xd7/0x130
[    1.722868]  pci_device_probe+0xc2/0x1d0
[    1.722871]  really_probe+0x1f5/0x3d0
[    1.722874]  __driver_probe_device+0xfe/0x180
[    1.722877]  driver_probe_device+0x1e/0x90
[    1.722879]  __driver_attach+0xc0/0x1c0
[    1.722882]  ? __device_attach_driver+0xe0/0xe0
[    1.722884]  ? __device_attach_driver+0xe0/0xe0
[    1.722886]  bus_for_each_dev+0x78/0xc0
[    1.722889]  bus_add_driver+0x149/0x1e0
[    1.722891]  driver_register+0x8f/0xe0
[    1.722894]  ? 0xffffffffc051d000
[    1.722896]  do_one_initcall+0x44/0x200
[    1.722899]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.722902]  do_init_module+0x5c/0x260
[    1.722905]  __do_sys_finit_module+0xb4/0x120
[    1.722909]  __do_fast_syscall_32+0x6b/0xe0
[    1.722912]  do_fast_syscall_32+0x2f/0x70
[    1.722915]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.722917] RIP: 0023:0xf7e51549
[    1.722919] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.722921] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.722924] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.722925] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.722927] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.722928] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.722929] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.722932]  </TASK>
[    1.722933] BUG: Bad page state in process systemd-udevd  pfn:102e0c
[    1.722936] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xc pfn:0x102e0c
[    1.722939] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.722941] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.722944] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8308 0000000000000000
[    1.722946] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722947] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.722949] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722951] page dumped because: corrupted mapping in tail page
[    1.722951] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.722968] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.722971] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.722972] Call Trace:
[    1.722973]  <TASK>
[    1.722974]  dump_stack_lvl+0x34/0x44
[    1.722978]  bad_page.cold+0x63/0x94
[    1.722981]  free_tail_pages_check+0xd1/0x110
[    1.722984]  ? _raw_spin_lock+0x13/0x30
[    1.722987]  free_pcp_prepare+0x251/0x2e0
[    1.722990]  free_unref_page+0x1d/0x110
[    1.722993]  __vunmap+0x28a/0x380
[    1.722996]  drm_fbdev_cleanup+0x5f/0xb0
[    1.722998]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723000]  unregister_framebuffer+0x1d/0x30
[    1.723003]  drm_client_dev_unregister+0x69/0xe0
[    1.723005]  drm_dev_unregister+0x2e/0x80
[    1.723007]  drm_dev_unplug+0x21/0x40
[    1.723010]  simpledrm_remove+0x11/0x20
[    1.723012]  platform_remove+0x1f/0x40
[    1.723015]  __device_release_driver+0x17a/0x240
[    1.723018]  device_release_driver+0x24/0x30
[    1.723020]  bus_remove_device+0xd8/0x140
[    1.723023]  device_del+0x18b/0x3f0
[    1.723025]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723028]  ? try_to_wake_up+0x94/0x5b0
[    1.723031]  platform_device_del.part.0+0x13/0x70
[    1.723034]  platform_device_unregister+0x1c/0x30
[    1.723037]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723040]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723043]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.723100]  local_pci_probe+0x45/0x80
[    1.723103]  ? pci_match_device+0xd7/0x130
[    1.723106]  pci_device_probe+0xc2/0x1d0
[    1.723109]  really_probe+0x1f5/0x3d0
[    1.723112]  __driver_probe_device+0xfe/0x180
[    1.723115]  driver_probe_device+0x1e/0x90
[    1.723117]  __driver_attach+0xc0/0x1c0
[    1.723120]  ? __device_attach_driver+0xe0/0xe0
[    1.723122]  ? __device_attach_driver+0xe0/0xe0
[    1.723124]  bus_for_each_dev+0x78/0xc0
[    1.723127]  bus_add_driver+0x149/0x1e0
[    1.723130]  driver_register+0x8f/0xe0
[    1.723132]  ? 0xffffffffc051d000
[    1.723134]  do_one_initcall+0x44/0x200
[    1.723137]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.723139]  do_init_module+0x5c/0x260
[    1.723142]  __do_sys_finit_module+0xb4/0x120
[    1.723147]  __do_fast_syscall_32+0x6b/0xe0
[    1.723149]  do_fast_syscall_32+0x2f/0x70
[    1.723152]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.723154] RIP: 0023:0xf7e51549
[    1.723156] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.723158] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.723161] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.723162] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.723163] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.723165] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.723166] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.723169]  </TASK>
[    1.723179] BUG: Bad page state in process systemd-udevd  pfn:102e0d
[    1.723182] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xd pfn:0x102e0d
[    1.723185] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.723186] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.723190] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8348 0000000000000000
[    1.723191] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723193] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.723195] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723196] page dumped because: corrupted mapping in tail page
[    1.723197] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.723213] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.723215] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.723216] Call Trace:
[    1.723217]  <TASK>
[    1.723218]  dump_stack_lvl+0x34/0x44
[    1.723222]  bad_page.cold+0x63/0x94
[    1.723225]  free_tail_pages_check+0xd1/0x110
[    1.723227]  ? _raw_spin_lock+0x13/0x30
[    1.723230]  free_pcp_prepare+0x251/0x2e0
[    1.723234]  free_unref_page+0x1d/0x110
[    1.723237]  __vunmap+0x28a/0x380
[    1.723240]  drm_fbdev_cleanup+0x5f/0xb0
[    1.723242]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723244]  unregister_framebuffer+0x1d/0x30
[    1.723247]  drm_client_dev_unregister+0x69/0xe0
[    1.723249]  drm_dev_unregister+0x2e/0x80
[    1.723252]  drm_dev_unplug+0x21/0x40
[    1.723254]  simpledrm_remove+0x11/0x20
[    1.723257]  platform_remove+0x1f/0x40
[    1.723260]  __device_release_driver+0x17a/0x240
[    1.723262]  device_release_driver+0x24/0x30
[    1.723265]  bus_remove_device+0xd8/0x140
[    1.723267]  device_del+0x18b/0x3f0
[    1.723270]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723273]  ? try_to_wake_up+0x94/0x5b0
[    1.723276]  platform_device_del.part.0+0x13/0x70
[    1.723279]  platform_device_unregister+0x1c/0x30
[    1.723282]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723285]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723288]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.723345]  local_pci_probe+0x45/0x80
[    1.723348]  ? pci_match_device+0xd7/0x130
[    1.723351]  pci_device_probe+0xc2/0x1d0
[    1.723354]  really_probe+0x1f5/0x3d0
[    1.723357]  __driver_probe_device+0xfe/0x180
[    1.723360]  driver_probe_device+0x1e/0x90
[    1.723362]  __driver_attach+0xc0/0x1c0
[    1.723365]  ? __device_attach_driver+0xe0/0xe0
[    1.723368]  ? __device_attach_driver+0xe0/0xe0
[    1.723370]  bus_for_each_dev+0x78/0xc0
[    1.723373]  bus_add_driver+0x149/0x1e0
[    1.723376]  driver_register+0x8f/0xe0
[    1.723379]  ? 0xffffffffc051d000
[    1.723381]  do_one_initcall+0x44/0x200
[    1.723384]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.723387]  do_init_module+0x5c/0x260
[    1.723390]  __do_sys_finit_module+0xb4/0x120
[    1.723394]  __do_fast_syscall_32+0x6b/0xe0
[    1.723396]  do_fast_syscall_32+0x2f/0x70
[    1.723398]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.723401] RIP: 0023:0xf7e51549
[    1.723403] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.723405] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.723407] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.723409] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.723410] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.723412] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.723413] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.723416]  </TASK>
[    1.723417] BUG: Bad page state in process systemd-udevd  pfn:102e0e
[    1.723420] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xe pfn:0x102e0e
[    1.723423] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.723424] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.723427] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8388 0000000000000000
[    1.723429] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723431] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.723432] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723433] page dumped because: corrupted mapping in tail page
[    1.723434] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.723451] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.723453] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.723454] Call Trace:
[    1.723455]  <TASK>
[    1.723456]  dump_stack_lvl+0x34/0x44
[    1.723460]  bad_page.cold+0x63/0x94
[    1.723462]  free_tail_pages_check+0xd1/0x110
[    1.723465]  ? _raw_spin_lock+0x13/0x30
[    1.723468]  free_pcp_prepare+0x251/0x2e0
[    1.723472]  free_unref_page+0x1d/0x110
[    1.723475]  __vunmap+0x28a/0x380
[    1.723478]  drm_fbdev_cleanup+0x5f/0xb0
[    1.723480]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723482]  unregister_framebuffer+0x1d/0x30
[    1.723484]  drm_client_dev_unregister+0x69/0xe0
[    1.723487]  drm_dev_unregister+0x2e/0x80
[    1.723490]  drm_dev_unplug+0x21/0x40
[    1.723493]  simpledrm_remove+0x11/0x20
[    1.723495]  platform_remove+0x1f/0x40
[    1.723498]  __device_release_driver+0x17a/0x240
[    1.723501]  device_release_driver+0x24/0x30
[    1.723503]  bus_remove_device+0xd8/0x140
[    1.723506]  device_del+0x18b/0x3f0
[    1.723508]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723511]  ? try_to_wake_up+0x94/0x5b0
[    1.723514]  platform_device_del.part.0+0x13/0x70
[    1.723517]  platform_device_unregister+0x1c/0x30
[    1.723520]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723523]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723526]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.723582]  local_pci_probe+0x45/0x80
[    1.723585]  ? pci_match_device+0xd7/0x130
[    1.723588]  pci_device_probe+0xc2/0x1d0
[    1.723592]  really_probe+0x1f5/0x3d0
[    1.723594]  __driver_probe_device+0xfe/0x180
[    1.723597]  driver_probe_device+0x1e/0x90
[    1.723599]  __driver_attach+0xc0/0x1c0
[    1.723602]  ? __device_attach_driver+0xe0/0xe0
[    1.723604]  ? __device_attach_driver+0xe0/0xe0
[    1.723606]  bus_for_each_dev+0x78/0xc0
[    1.723609]  bus_add_driver+0x149/0x1e0
[    1.723611]  driver_register+0x8f/0xe0
[    1.723614]  ? 0xffffffffc051d000
[    1.723616]  do_one_initcall+0x44/0x200
[    1.723618]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.723621]  do_init_module+0x5c/0x260
[    1.723624]  __do_sys_finit_module+0xb4/0x120
[    1.723629]  __do_fast_syscall_32+0x6b/0xe0
[    1.723631]  do_fast_syscall_32+0x2f/0x70
[    1.723633]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.723636] RIP: 0023:0xf7e51549
[    1.723638] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.723639] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.723642] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.723643] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.723645] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.723646] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.723647] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.723650]  </TASK>
[    1.723651] BUG: Bad page state in process systemd-udevd  pfn:102e0f
[    1.723654] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xf pfn:0x102e0f
[    1.723657] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.723658] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.723661] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b83c8 0000000000000000
[    1.723663] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723665] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.723666] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723667] page dumped because: corrupted mapping in tail page
[    1.723668] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.723684] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.723687] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.723688] Call Trace:
[    1.723689]  <TASK>
[    1.723690]  dump_stack_lvl+0x34/0x44
[    1.723693]  bad_page.cold+0x63/0x94
[    1.723696]  free_tail_pages_check+0xd1/0x110
[    1.723699]  ? _raw_spin_lock+0x13/0x30
[    1.723702]  free_pcp_prepare+0x251/0x2e0
[    1.723705]  free_unref_page+0x1d/0x110
[    1.723708]  __vunmap+0x28a/0x380
[    1.723711]  drm_fbdev_cleanup+0x5f/0xb0
[    1.723713]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723715]  unregister_framebuffer+0x1d/0x30
[    1.723718]  drm_client_dev_unregister+0x69/0xe0
[    1.723720]  drm_dev_unregister+0x2e/0x80
[    1.723723]  drm_dev_unplug+0x21/0x40
[    1.723725]  simpledrm_remove+0x11/0x20
[    1.723728]  platform_remove+0x1f/0x40
[    1.723730]  __device_release_driver+0x17a/0x240
[    1.723733]  device_release_driver+0x24/0x30
[    1.723735]  bus_remove_device+0xd8/0x140
[    1.723738]  device_del+0x18b/0x3f0
[    1.723741]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723744]  ? try_to_wake_up+0x94/0x5b0
[    1.723746]  platform_device_del.part.0+0x13/0x70
[    1.723749]  platform_device_unregister+0x1c/0x30
[    1.723752]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723755]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723758]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.723815]  local_pci_probe+0x45/0x80
[    1.723818]  ? pci_match_device+0xd7/0x130
[    1.723821]  pci_device_probe+0xc2/0x1d0
[    1.723824]  really_probe+0x1f5/0x3d0
[    1.723827]  __driver_probe_device+0xfe/0x180
[    1.723829]  driver_probe_device+0x1e/0x90
[    1.723832]  __driver_attach+0xc0/0x1c0
[    1.723835]  ? __device_attach_driver+0xe0/0xe0
[    1.723837]  ? __device_attach_driver+0xe0/0xe0
[    1.723839]  bus_for_each_dev+0x78/0xc0
[    1.723842]  bus_add_driver+0x149/0x1e0
[    1.723844]  driver_register+0x8f/0xe0
[    1.723847]  ? 0xffffffffc051d000
[    1.723849]  do_one_initcall+0x44/0x200
[    1.723852]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.723855]  do_init_module+0x5c/0x260
[    1.723858]  __do_sys_finit_module+0xb4/0x120
[    1.723862]  __do_fast_syscall_32+0x6b/0xe0
[    1.723865]  do_fast_syscall_32+0x2f/0x70
[    1.723867]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.723870] RIP: 0023:0xf7e51549
[    1.723872] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.723874] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.723877] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.723878] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.723880] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.723881] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.723882] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.723885]  </TASK>
[    1.723886] BUG: Bad page state in process systemd-udevd  pfn:102e10
[    1.723889] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x10 pfn:0x102e10
[    1.723892] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.723893] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.723896] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8408 0000000000000000
[    1.723898] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723900] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.723901] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723902] page dumped because: corrupted mapping in tail page
[    1.723903] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.723919] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.723922] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.723923] Call Trace:
[    1.723924]  <TASK>
[    1.723925]  dump_stack_lvl+0x34/0x44
[    1.723928]  bad_page.cold+0x63/0x94
[    1.723931]  free_tail_pages_check+0xd1/0x110
[    1.723934]  ? _raw_spin_lock+0x13/0x30
[    1.723937]  free_pcp_prepare+0x251/0x2e0
[    1.723940]  free_unref_page+0x1d/0x110
[    1.723943]  __vunmap+0x28a/0x380
[    1.723946]  drm_fbdev_cleanup+0x5f/0xb0
[    1.723948]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723950]  unregister_framebuffer+0x1d/0x30
[    1.723953]  drm_client_dev_unregister+0x69/0xe0
[    1.723955]  drm_dev_unregister+0x2e/0x80
[    1.723958]  drm_dev_unplug+0x21/0x40
[    1.723960]  simpledrm_remove+0x11/0x20
[    1.723963]  platform_remove+0x1f/0x40
[    1.723965]  __device_release_driver+0x17a/0x240
[    1.723968]  device_release_driver+0x24/0x30
[    1.723971]  bus_remove_device+0xd8/0x140
[    1.723973]  device_del+0x18b/0x3f0
[    1.723976]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723979]  ? try_to_wake_up+0x94/0x5b0
[    1.723981]  platform_device_del.part.0+0x13/0x70
[    1.723984]  platform_device_unregister+0x1c/0x30
[    1.723987]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723990]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723993]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.724050]  local_pci_probe+0x45/0x80
[    1.724053]  ? pci_match_device+0xd7/0x130
[    1.724056]  pci_device_probe+0xc2/0x1d0
[    1.724060]  really_probe+0x1f5/0x3d0
[    1.724062]  __driver_probe_device+0xfe/0x180
[    1.724065]  driver_probe_device+0x1e/0x90
[    1.724067]  __driver_attach+0xc0/0x1c0
[    1.724070]  ? __device_attach_driver+0xe0/0xe0
[    1.724072]  ? __device_attach_driver+0xe0/0xe0
[    1.724074]  bus_for_each_dev+0x78/0xc0
[    1.724077]  bus_add_driver+0x149/0x1e0
[    1.724080]  driver_register+0x8f/0xe0
[    1.724082]  ? 0xffffffffc051d000
[    1.724085]  do_one_initcall+0x44/0x200
[    1.724087]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.724090]  do_init_module+0x5c/0x260
[    1.724094]  __do_sys_finit_module+0xb4/0x120
[    1.724098]  __do_fast_syscall_32+0x6b/0xe0
[    1.724101]  do_fast_syscall_32+0x2f/0x70
[    1.724103]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.724106] RIP: 0023:0xf7e51549
[    1.724107] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.724109] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.724112] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.724113] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.724115] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.724116] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.724117] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.724120]  </TASK>
[    1.724121] BUG: Bad page state in process systemd-udevd  pfn:102e11
[    1.724124] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x11 pfn:0x102e11
[    1.724126] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.724128] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.724131] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8448 0000000000000000
[    1.724133] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.724134] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.724136] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.724137] page dumped because: corrupted mapping in tail page
[    1.724138] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.724154] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.724156] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.724158] Call Trace:
[    1.724158]  <TASK>
[    1.724159]  dump_stack_lvl+0x34/0x44
[    1.724163]  bad_page.cold+0x63/0x94
[    1.724166]  free_tail_pages_check+0xd1/0x110
[    1.724168]  ? _raw_spin_lock+0x13/0x30
[    1.724171]  free_pcp_prepare+0x251/0x2e0
[    1.724175]  free_unref_page+0x1d/0x110
[    1.724178]  __vunmap+0x28a/0x380
[    1.724181]  drm_fbdev_cleanup+0x5f/0xb0
[    1.724183]  drm_fbdev_fb_destroy+0x15/0x30
[    1.724185]  unregister_framebuffer+0x1d/0x30
[    1.724188]  drm_client_dev_unregister+0x69/0xe0
[    1.724190]  drm_dev_unregister+0x2e/0x80
[    1.724193]  drm_dev_unplug+0x21/0x40
[    1.724195]  simpledrm_remove+0x11/0x20
[    1.724198]  platform_remove+0x1f/0x40
[    1.724200]  __device_release_driver+0x17a/0x240
[    1.724203]  device_release_driver+0x24/0x30
[    1.724206]  bus_remove_device+0xd8/0x140
[    1.724208]  device_del+0x18b/0x3f0
[    1.724211]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.724214]  ? try_to_wake_up+0x94/0x5b0
[    1.724216]  platform_device_del.part.0+0x13/0x70
[    1.724219]  platform_device_unregister+0x1c/0x30
[    1.724222]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.724225]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.724228]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.724286]  local_pci_probe+0x45/0x80
[    1.724289]  ? pci_match_device+0xd7/0x130
[    1.724292]  pci_device_probe+0xc2/0x1d0
[    1.724295]  really_probe+0x1f5/0x3d0
[    1.724298]  __driver_probe_device+0xfe/0x180
[    1.724300]  driver_probe_device+0x1e/0x90
[    1.724303]  __driver_attach+0xc0/0x1c0
[    1.724305]  ? __device_attach_driver+0xe0/0xe0
[    1.724308]  ? __device_attach_driver+0xe0/0xe0
[    1.724310]  bus_for_each_dev+0x78/0xc0
[    1.724313]  bus_add_driver+0x149/0x1e0
[    1.724315]  driver_register+0x8f/0xe0
[    1.724318]  ? 0xffffffffc051d000
[    1.724320]  do_one_initcall+0x44/0x200
[    1.724322]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.724325]  do_init_module+0x5c/0x260
[    1.724328]  __do_sys_finit_module+0xb4/0x120
[    1.724333]  __do_fast_syscall_32+0x6b/0xe0
[    1.724335]  do_fast_syscall_32+0x2f/0x70
[    1.724338]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.724340] RIP: 0023:0xf7e51549
[    1.724342] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.724344] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.724346] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.724348] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.724349] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.724350] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.724351] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.724354]  </TASK>
[    1.727274] ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
[    1.727781] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[    1.727787] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.727790] usb usb3: Product: EHCI Host Controller
[    1.727792] usb usb3: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ehci_hcd
[    1.727793] usb usb3: SerialNumber: 0000:00:16.2
[    1.729095] r8169 0000:04:00.0 eth0: RTL8168f/8111f, 08:60:6e:74:7a:51, XID 480, IRQ 28
[    1.729103] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    1.733333] hub 3-0:1.0: USB hub found
[    1.735279] hub 3-0:1.0: 4 ports detected
[    1.747408] snd_hda_intel 0000:00:01.1: Force to non-snoop mode
[    1.748058] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.748084] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[    1.752003] ohci-pci: OHCI PCI platform driver
[    1.753534] BUG: Bad page state in process systemd-udevd  pfn:102e12
[    1.753544] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x12 pfn:0x102e12
[    1.753548] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.753550] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.753554] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8488 0000000000000000
[    1.753557] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.753558] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.753560] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.753561] page dumped because: corrupted mapping in tail page
[    1.753563] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.753590] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.753593] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.753595] Call Trace:
[    1.753596]  <TASK>
[    1.753598]  dump_stack_lvl+0x34/0x44
[    1.753605]  bad_page.cold+0x63/0x94
[    1.753608]  free_tail_pages_check+0xd1/0x110
[    1.753612]  ? _raw_spin_lock+0x13/0x30
[    1.753616]  free_pcp_prepare+0x251/0x2e0
[    1.753620]  free_unref_page+0x1d/0x110
[    1.753624]  __vunmap+0x28a/0x380
[    1.753627]  drm_fbdev_cleanup+0x5f/0xb0
[    1.753631]  drm_fbdev_fb_destroy+0x15/0x30
[    1.753633]  unregister_framebuffer+0x1d/0x30
[    1.753637]  drm_client_dev_unregister+0x69/0xe0
[    1.753640]  drm_dev_unregister+0x2e/0x80
[    1.753644]  drm_dev_unplug+0x21/0x40
[    1.753647]  simpledrm_remove+0x11/0x20
[    1.753649]  platform_remove+0x1f/0x40
[    1.753653]  __device_release_driver+0x17a/0x240
[    1.753656]  device_release_driver+0x24/0x30
[    1.753659]  bus_remove_device+0xd8/0x140
[    1.753661]  device_del+0x18b/0x3f0
[    1.753665]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.753667]  ? try_to_wake_up+0x94/0x5b0
[    1.753671]  platform_device_del.part.0+0x13/0x70
[    1.753675]  platform_device_unregister+0x1c/0x30
[    1.753678]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.753682]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.753685]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.753757]  local_pci_probe+0x45/0x80
[    1.753761]  ? pci_match_device+0xd7/0x130
[    1.753765]  pci_device_probe+0xc2/0x1d0
[    1.753769]  really_probe+0x1f5/0x3d0
[    1.753771]  __driver_probe_device+0xfe/0x180
[    1.753774]  driver_probe_device+0x1e/0x90
[    1.753777]  __driver_attach+0xc0/0x1c0
[    1.753780]  ? __device_attach_driver+0xe0/0xe0
[    1.753782]  ? __device_attach_driver+0xe0/0xe0
[    1.753785]  bus_for_each_dev+0x78/0xc0
[    1.753787]  bus_add_driver+0x149/0x1e0
[    1.753790]  driver_register+0x8f/0xe0
[    1.753793]  ? 0xffffffffc051d000
[    1.753795]  do_one_initcall+0x44/0x200
[    1.753798]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.753802]  do_init_module+0x5c/0x260
[    1.753806]  __do_sys_finit_module+0xb4/0x120
[    1.753811]  __do_fast_syscall_32+0x6b/0xe0
[    1.753814]  do_fast_syscall_32+0x2f/0x70
[    1.753816]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.753820] RIP: 0023:0xf7e51549
[    1.753822] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.753825] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.753828] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.753829] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.753831] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.753832] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.753834] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.753837]  </TASK>
[    1.753838] BUG: Bad page state in process systemd-udevd  pfn:102e13
[    1.753842] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x13 pfn:0x102e13
[    1.753844] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.753846] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.753849] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b84c8 0000000000000000
[    1.753851] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.753853] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.753855] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.753856] page dumped because: corrupted mapping in tail page
[    1.753856] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.753875] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.753877] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.753879] Call Trace:
[    1.753880]  <TASK>
[    1.753881]  dump_stack_lvl+0x34/0x44
[    1.753884]  bad_page.cold+0x63/0x94
[    1.753887]  free_tail_pages_check+0xd1/0x110
[    1.753890]  ? _raw_spin_lock+0x13/0x30
[    1.753893]  free_pcp_prepare+0x251/0x2e0
[    1.753896]  free_unref_page+0x1d/0x110
[    1.753899]  __vunmap+0x28a/0x380
[    1.753902]  drm_fbdev_cleanup+0x5f/0xb0
[    1.753904]  drm_fbdev_fb_destroy+0x15/0x30
[    1.753906]  unregister_framebuffer+0x1d/0x30
[    1.753909]  drm_client_dev_unregister+0x69/0xe0
[    1.753912]  drm_dev_unregister+0x2e/0x80
[    1.753914]  drm_dev_unplug+0x21/0x40
[    1.753917]  simpledrm_remove+0x11/0x20
[    1.753919]  platform_remove+0x1f/0x40
[    1.753922]  __device_release_driver+0x17a/0x240
[    1.753924]  device_release_driver+0x24/0x30
[    1.753927]  bus_remove_device+0xd8/0x140
[    1.753930]  device_del+0x18b/0x3f0
[    1.753932]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.753935]  ? try_to_wake_up+0x94/0x5b0
[    1.753938]  platform_device_del.part.0+0x13/0x70
[    1.753941]  platform_device_unregister+0x1c/0x30
[    1.753943]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.753946]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.753950]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754007]  local_pci_probe+0x45/0x80
[    1.754009]  ? pci_match_device+0xd7/0x130
[    1.754012]  pci_device_probe+0xc2/0x1d0
[    1.754016]  really_probe+0x1f5/0x3d0
[    1.754018]  __driver_probe_device+0xfe/0x180
[    1.754021]  driver_probe_device+0x1e/0x90
[    1.754024]  __driver_attach+0xc0/0x1c0
[    1.754026]  ? __device_attach_driver+0xe0/0xe0
[    1.754028]  ? __device_attach_driver+0xe0/0xe0
[    1.754031]  bus_for_each_dev+0x78/0xc0
[    1.754033]  bus_add_driver+0x149/0x1e0
[    1.754036]  driver_register+0x8f/0xe0
[    1.754039]  ? 0xffffffffc051d000
[    1.754041]  do_one_initcall+0x44/0x200
[    1.754043]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.754047]  do_init_module+0x5c/0x260
[    1.754050]  __do_sys_finit_module+0xb4/0x120
[    1.754054]  __do_fast_syscall_32+0x6b/0xe0
[    1.754057]  do_fast_syscall_32+0x2f/0x70
[    1.754059]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.754062] RIP: 0023:0xf7e51549
[    1.754064] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.754066] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.754068] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.754070] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.754071] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.754073] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.754074] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.754077]  </TASK>
[    1.754078] BUG: Bad page state in process systemd-udevd  pfn:102e14
[    1.754081] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x14 pfn:0x102e14
[    1.754084] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.754085] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.754088] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8508 0000000000000000
[    1.754090] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754091] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.754093] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754094] page dumped because: corrupted mapping in tail page
[    1.754095] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.754113] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.754115] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.754116] Call Trace:
[    1.754117]  <TASK>
[    1.754118]  dump_stack_lvl+0x34/0x44
[    1.754122]  bad_page.cold+0x63/0x94
[    1.754125]  free_tail_pages_check+0xd1/0x110
[    1.754127]  ? _raw_spin_lock+0x13/0x30
[    1.754130]  free_pcp_prepare+0x251/0x2e0
[    1.754134]  free_unref_page+0x1d/0x110
[    1.754137]  __vunmap+0x28a/0x380
[    1.754139]  drm_fbdev_cleanup+0x5f/0xb0
[    1.754142]  drm_fbdev_fb_destroy+0x15/0x30
[    1.754144]  unregister_framebuffer+0x1d/0x30
[    1.754146]  drm_client_dev_unregister+0x69/0xe0
[    1.754149]  drm_dev_unregister+0x2e/0x80
[    1.754151]  drm_dev_unplug+0x21/0x40
[    1.754154]  simpledrm_remove+0x11/0x20
[    1.754156]  platform_remove+0x1f/0x40
[    1.754159]  __device_release_driver+0x17a/0x240
[    1.754161]  device_release_driver+0x24/0x30
[    1.754164]  bus_remove_device+0xd8/0x140
[    1.754166]  device_del+0x18b/0x3f0
[    1.754169]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.754172]  ? try_to_wake_up+0x94/0x5b0
[    1.754175]  platform_device_del.part.0+0x13/0x70
[    1.754178]  platform_device_unregister+0x1c/0x30
[    1.754181]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.754183]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.754186]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754242]  local_pci_probe+0x45/0x80
[    1.754245]  ? pci_match_device+0xd7/0x130
[    1.754248]  pci_device_probe+0xc2/0x1d0
[    1.754251]  really_probe+0x1f5/0x3d0
[    1.754254]  __driver_probe_device+0xfe/0x180
[    1.754257]  driver_probe_device+0x1e/0x90
[    1.754259]  __driver_attach+0xc0/0x1c0
[    1.754262]  ? __device_attach_driver+0xe0/0xe0
[    1.754264]  ? __device_attach_driver+0xe0/0xe0
[    1.754266]  bus_for_each_dev+0x78/0xc0
[    1.754269]  bus_add_driver+0x149/0x1e0
[    1.754271]  driver_register+0x8f/0xe0
[    1.754274]  ? 0xffffffffc051d000
[    1.754276]  do_one_initcall+0x44/0x200
[    1.754278]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.754281]  do_init_module+0x5c/0x260
[    1.754284]  __do_sys_finit_module+0xb4/0x120
[    1.754288]  __do_fast_syscall_32+0x6b/0xe0
[    1.754291]  do_fast_syscall_32+0x2f/0x70
[    1.754293]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.754295] RIP: 0023:0xf7e51549
[    1.754297] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.754299] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.754302] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.754304] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.754305] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.754307] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.754308] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.754310]  </TASK>
[    1.754325] BUG: Bad page state in process systemd-udevd  pfn:102e15
[    1.754329] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x15 pfn:0x102e15
[    1.754332] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.754333] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.754336] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8548 0000000000000000
[    1.754338] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754340] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.754342] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754343] page dumped because: corrupted mapping in tail page
[    1.754344] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.754362] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.754365] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.754366] Call Trace:
[    1.754367]  <TASK>
[    1.754368]  dump_stack_lvl+0x34/0x44
[    1.754372]  bad_page.cold+0x63/0x94
[    1.754375]  free_tail_pages_check+0xd1/0x110
[    1.754378]  ? _raw_spin_lock+0x13/0x30
[    1.754380]  free_pcp_prepare+0x251/0x2e0
[    1.754383]  free_unref_page+0x1d/0x110
[    1.754387]  __vunmap+0x28a/0x380
[    1.754390]  drm_fbdev_cleanup+0x5f/0xb0
[    1.754392]  drm_fbdev_fb_destroy+0x15/0x30
[    1.754394]  unregister_framebuffer+0x1d/0x30
[    1.754397]  drm_client_dev_unregister+0x69/0xe0
[    1.754399]  drm_dev_unregister+0x2e/0x80
[    1.754402]  drm_dev_unplug+0x21/0x40
[    1.754404]  simpledrm_remove+0x11/0x20
[    1.754406]  platform_remove+0x1f/0x40
[    1.754409]  __device_release_driver+0x17a/0x240
[    1.754412]  device_release_driver+0x24/0x30
[    1.754415]  bus_remove_device+0xd8/0x140
[    1.754417]  device_del+0x18b/0x3f0
[    1.754420]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.754423]  ? try_to_wake_up+0x94/0x5b0
[    1.754425]  platform_device_del.part.0+0x13/0x70
[    1.754428]  platform_device_unregister+0x1c/0x30
[    1.754431]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.754434]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.754437]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754494]  local_pci_probe+0x45/0x80
[    1.754497]  ? pci_match_device+0xd7/0x130
[    1.754500]  pci_device_probe+0xc2/0x1d0
[    1.754504]  really_probe+0x1f5/0x3d0
[    1.754506]  __driver_probe_device+0xfe/0x180
[    1.754509]  driver_probe_device+0x1e/0x90
[    1.754511]  __driver_attach+0xc0/0x1c0
[    1.754514]  ? __device_attach_driver+0xe0/0xe0
[    1.754516]  ? __device_attach_driver+0xe0/0xe0
[    1.754518]  bus_for_each_dev+0x78/0xc0
[    1.754521]  bus_add_driver+0x149/0x1e0
[    1.754523]  driver_register+0x8f/0xe0
[    1.754526]  ? 0xffffffffc051d000
[    1.754528]  do_one_initcall+0x44/0x200
[    1.754530]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.754533]  do_init_module+0x5c/0x260
[    1.754536]  __do_sys_finit_module+0xb4/0x120
[    1.754541]  __do_fast_syscall_32+0x6b/0xe0
[    1.754543]  do_fast_syscall_32+0x2f/0x70
[    1.754546]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.754548] RIP: 0023:0xf7e51549
[    1.754550] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.754552] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.754554] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.754556] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.754557] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.754558] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.754560] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.754562]  </TASK>
[    1.754563] BUG: Bad page state in process systemd-udevd  pfn:102e16
[    1.754566] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x16 pfn:0x102e16
[    1.754569] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.754571] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.754574] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8588 0000000000000000
[    1.754575] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754577] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.754579] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754580] page dumped because: corrupted mapping in tail page
[    1.754580] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.754599] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.754602] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.754603] Call Trace:
[    1.754604]  <TASK>
[    1.754605]  dump_stack_lvl+0x34/0x44
[    1.754609]  bad_page.cold+0x63/0x94
[    1.754611]  free_tail_pages_check+0xd1/0x110
[    1.754614]  ? _raw_spin_lock+0x13/0x30
[    1.754617]  free_pcp_prepare+0x251/0x2e0
[    1.754621]  free_unref_page+0x1d/0x110
[    1.754624]  __vunmap+0x28a/0x380
[    1.754627]  drm_fbdev_cleanup+0x5f/0xb0
[    1.754629]  drm_fbdev_fb_destroy+0x15/0x30
[    1.754631]  unregister_framebuffer+0x1d/0x30
[    1.754634]  drm_client_dev_unregister+0x69/0xe0
[    1.754636]  drm_dev_unregister+0x2e/0x80
[    1.754639]  drm_dev_unplug+0x21/0x40
[    1.754642]  simpledrm_remove+0x11/0x20
[    1.754644]  platform_remove+0x1f/0x40
[    1.754647]  __device_release_driver+0x17a/0x240
[    1.754649]  device_release_driver+0x24/0x30
[    1.754652]  bus_remove_device+0xd8/0x140
[    1.754654]  device_del+0x18b/0x3f0
[    1.754657]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.754660]  ? try_to_wake_up+0x94/0x5b0
[    1.754663]  platform_device_del.part.0+0x13/0x70
[    1.754666]  platform_device_unregister+0x1c/0x30
[    1.754668]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.754671]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.754674]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754731]  local_pci_probe+0x45/0x80
[    1.754734]  ? pci_match_device+0xd7/0x130
[    1.754737]  pci_device_probe+0xc2/0x1d0
[    1.754740]  really_probe+0x1f5/0x3d0
[    1.754743]  __driver_probe_device+0xfe/0x180
[    1.754745]  driver_probe_device+0x1e/0x90
[    1.754748]  __driver_attach+0xc0/0x1c0
[    1.754750]  ? __device_attach_driver+0xe0/0xe0
[    1.754753]  ? __device_attach_driver+0xe0/0xe0
[    1.754755]  bus_for_each_dev+0x78/0xc0
[    1.754758]  bus_add_driver+0x149/0x1e0
[    1.754760]  driver_register+0x8f/0xe0
[    1.754763]  ? 0xffffffffc051d000
[    1.754764]  do_one_initcall+0x44/0x200
[    1.754767]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.754770]  do_init_module+0x5c/0x260
[    1.754773]  __do_sys_finit_module+0xb4/0x120
[    1.754778]  __do_fast_syscall_32+0x6b/0xe0
[    1.754780]  do_fast_syscall_32+0x2f/0x70
[    1.754782]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.754785] RIP: 0023:0xf7e51549
[    1.754787] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.754789] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.754791] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.754793] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.754794] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.754795] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.754796] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.754799]  </TASK>
[    1.754800] BUG: Bad page state in process systemd-udevd  pfn:102e17
[    1.754803] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x17 pfn:0x102e17
[    1.754806] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.754808] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.754811] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b85c8 0000000000000000
[    1.754812] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754814] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.754816] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754817] page dumped because: corrupted mapping in tail page
[    1.754818] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.754836] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.754838] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.754839] Call Trace:
[    1.754840]  <TASK>
[    1.754841]  dump_stack_lvl+0x34/0x44
[    1.754845]  bad_page.cold+0x63/0x94
[    1.754848]  free_tail_pages_check+0xd1/0x110
[    1.754851]  ? _raw_spin_lock+0x13/0x30
[    1.754853]  free_pcp_prepare+0x251/0x2e0
[    1.754856]  free_unref_page+0x1d/0x110
[    1.754859]  __vunmap+0x28a/0x380
[    1.754862]  drm_fbdev_cleanup+0x5f/0xb0
[    1.754865]  drm_fbdev_fb_destroy+0x15/0x30
[    1.754867]  unregister_framebuffer+0x1d/0x30
[    1.754870]  drm_client_dev_unregister+0x69/0xe0
[    1.754872]  drm_dev_unregister+0x2e/0x80
[    1.754875]  drm_dev_unplug+0x21/0x40
[    1.754877]  simpledrm_remove+0x11/0x20
[    1.754880]  platform_remove+0x1f/0x40
[    1.754882]  __device_release_driver+0x17a/0x240
[    1.754885]  device_release_driver+0x24/0x30
[    1.754887]  bus_remove_device+0xd8/0x140
[    1.754890]  device_del+0x18b/0x3f0
[    1.754893]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.754896]  ? try_to_wake_up+0x94/0x5b0
[    1.754898]  platform_device_del.part.0+0x13/0x70
[    1.754901]  platform_device_unregister+0x1c/0x30
[    1.754904]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.754907]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.754910]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754967]  local_pci_probe+0x45/0x80
[    1.754970]  ? pci_match_device+0xd7/0x130
[    1.754973]  pci_device_probe+0xc2/0x1d0
[    1.754976]  really_probe+0x1f5/0x3d0
[    1.754978]  __driver_probe_device+0xfe/0x180
[    1.754981]  driver_probe_device+0x1e/0x90
[    1.754984]  __driver_attach+0xc0/0x1c0
[    1.754986]  ? __device_attach_driver+0xe0/0xe0
[    1.754988]  ? __device_attach_driver+0xe0/0xe0
[    1.754990]  bus_for_each_dev+0x78/0xc0
[    1.754992]  bus_add_driver+0x149/0x1e0
[    1.754995]  driver_register+0x8f/0xe0
[    1.754997]  ? 0xffffffffc051d000
[    1.754999]  do_one_initcall+0x44/0x200
[    1.755001]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.755004]  do_init_module+0x5c/0x260
[    1.755007]  __do_sys_finit_module+0xb4/0x120
[    1.755011]  __do_fast_syscall_32+0x6b/0xe0
[    1.755013]  do_fast_syscall_32+0x2f/0x70
[    1.755016]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.755018] RIP: 0023:0xf7e51549
[    1.755020] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.755022] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.755025] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.755026] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.755027] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.755029] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.755030] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.755032]  </TASK>
[    1.755034] BUG: Bad page state in process systemd-udevd  pfn:102e18
[    1.755037] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x18 pfn:0x102e18
[    1.755039] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.755041] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.755044] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8608 0000000000000000
[    1.755045] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.755047] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.755049] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.755049] page dumped because: corrupted mapping in tail page
[    1.755050] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.755067] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.755070] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.755071] Call Trace:
[    1.755072]  <TASK>
[    1.755073]  dump_stack_lvl+0x34/0x44
[    1.755077]  bad_page.cold+0x63/0x94
[    1.755079]  free_tail_pages_check+0xd1/0x110
[    1.755082]  ? _raw_spin_lock+0x13/0x30
[    1.755085]  free_pcp_prepare+0x251/0x2e0
[    1.755088]  free_unref_page+0x1d/0x110
[    1.755091]  __vunmap+0x28a/0x380
[    1.755094]  drm_fbdev_cleanup+0x5f/0xb0
[    1.755097]  drm_fbdev_fb_destroy+0x15/0x30
[    1.755099]  unregister_framebuffer+0x1d/0x30
[    1.755101]  drm_client_dev_unregister+0x69/0xe0
[    1.755104]  drm_dev_unregister+0x2e/0x80
[    1.755107]  drm_dev_unplug+0x21/0x40
[    1.755110]  simpledrm_remove+0x11/0x20
[    1.755112]  platform_remove+0x1f/0x40
[    1.755115]  __device_release_driver+0x17a/0x240
[    1.755117]  device_release_driver+0x24/0x30
[    1.755119]  bus_remove_device+0xd8/0x140
[    1.755122]  device_del+0x18b/0x3f0
[    1.755125]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.755128]  ? try_to_wake_up+0x94/0x5b0
[    1.755131]  platform_device_del.part.0+0x13/0x70
[    1.755134]  platform_device_unregister+0x1c/0x30
[    1.755137]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.755140]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.755143]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.755202]  local_pci_probe+0x45/0x80
[    1.755205]  ? pci_match_device+0xd7/0x130
[    1.755208]  pci_device_probe+0xc2/0x1d0
[    1.755211]  really_probe+0x1f5/0x3d0
[    1.755214]  __driver_probe_device+0xfe/0x180
[    1.755217]  driver_probe_device+0x1e/0x90
[    1.755220]  __driver_attach+0xc0/0x1c0
[    1.755222]  ? __device_attach_driver+0xe0/0xe0
[    1.755224]  ? __device_attach_driver+0xe0/0xe0
[    1.755226]  bus_for_each_dev+0x78/0xc0
[    1.755228]  bus_add_driver+0x149/0x1e0
[    1.755231]  driver_register+0x8f/0xe0
[    1.755233]  ? 0xffffffffc051d000
[    1.755235]  do_one_initcall+0x44/0x200
[    1.755238]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.755241]  do_init_module+0x5c/0x260
[    1.755244]  __do_sys_finit_module+0xb4/0x120
[    1.755249]  __do_fast_syscall_32+0x6b/0xe0
[    1.755251]  do_fast_syscall_32+0x2f/0x70
[    1.755254]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.755256] RIP: 0023:0xf7e51549
[    1.755258] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.755260] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.755262] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.755264] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.755265] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.755267] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.755268] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.755270]  </TASK>
[    1.767706] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input1
[    1.767989] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/sound/card0/input2
[    1.772987] ohci-pci 0000:00:12.0: OHCI PCI host controller
[    1.773018] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 5
[    1.773158] ohci-pci 0000:00:12.0: irq 18, io mem 0xf01c8000
[    1.806119] snd_hda_codec_realtek hdaudioC1D0: ALC892: SKU not ready 0x00000100
[    1.806906] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC892: line_outs=4 (0x14/0x16/0x15/0x17/0x0) type:line
[    1.806913] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    1.806916] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    1.806918] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    1.806919] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x1e/0x0
[    1.806920] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    1.806922] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    1.806924] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    1.806926] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    1.806927] snd_hda_codec_realtek hdaudioC1D0:      CD=0x1c
[    1.812099] BUG: Bad page state in process systemd-udevd  pfn:102e19
[    1.812109] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x19 pfn:0x102e19
[    1.812113] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.812115] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.812120] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8648 0000000000000000
[    1.812122] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.812124] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.812125] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.812126] page dumped because: corrupted mapping in tail page
[    1.812127] Modules linked in: snd_hda_codec_realtek(+) snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.813026] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.813031] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.813033] Call Trace:
[    1.813034]  <TASK>
[    1.813036]  dump_stack_lvl+0x34/0x44
[    1.813043]  bad_page.cold+0x63/0x94
[    1.813046]  free_tail_pages_check+0xd1/0x110
[    1.813051]  ? _raw_spin_lock+0x13/0x30
[    1.813055]  free_pcp_prepare+0x251/0x2e0
[    1.813059]  free_unref_page+0x1d/0x110
[    1.813062]  __vunmap+0x28a/0x380
[    1.813065]  drm_fbdev_cleanup+0x5f/0xb0
[    1.813069]  drm_fbdev_fb_destroy+0x15/0x30
[    1.813071]  unregister_framebuffer+0x1d/0x30
[    1.813075]  drm_client_dev_unregister+0x69/0xe0
[    1.813078]  drm_dev_unregister+0x2e/0x80
[    1.813082]  drm_dev_unplug+0x21/0x40
[    1.813084]  simpledrm_remove+0x11/0x20
[    1.813087]  platform_remove+0x1f/0x40
[    1.813090]  __device_release_driver+0x17a/0x240
[    1.813093]  device_release_driver+0x24/0x30
[    1.813095]  bus_remove_device+0xd8/0x140
[    1.813098]  device_del+0x18b/0x3f0
[    1.813101]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.813104]  ? try_to_wake_up+0x94/0x5b0
[    1.813107]  platform_device_del.part.0+0x13/0x70
[    1.813110]  platform_device_unregister+0x1c/0x30
[    1.813113]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.813117]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.813120]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.813191]  local_pci_probe+0x45/0x80
[    1.813195]  ? pci_match_device+0xd7/0x130
[    1.813199]  pci_device_probe+0xc2/0x1d0
[    1.813203]  really_probe+0x1f5/0x3d0
[    1.813206]  __driver_probe_device+0xfe/0x180
[    1.813209]  driver_probe_device+0x1e/0x90
[    1.813212]  __driver_attach+0xc0/0x1c0
[    1.813214]  ? __device_attach_driver+0xe0/0xe0
[    1.813216]  ? __device_attach_driver+0xe0/0xe0
[    1.813219]  bus_for_each_dev+0x78/0xc0
[    1.813221]  bus_add_driver+0x149/0x1e0
[    1.813224]  driver_register+0x8f/0xe0
[    1.813226]  ? 0xffffffffc051d000
[    1.813228]  do_one_initcall+0x44/0x200
[    1.813232]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.813235]  do_init_module+0x5c/0x260
[    1.813240]  __do_sys_finit_module+0xb4/0x120
[    1.813244]  __do_fast_syscall_32+0x6b/0xe0
[    1.813247]  do_fast_syscall_32+0x2f/0x70
[    1.813250]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.813253] RIP: 0023:0xf7e51549
[    1.813256] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.813258] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.813261] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.813263] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.813264] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.813266] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.813267] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.813270]  </TASK>
[    1.818974] BUG: Bad page state in process systemd-udevd  pfn:102e1a
[    1.818989] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1a pfn:0x102e1a
[    1.818993] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.818995] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.818999] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8688 0000000000000000
[    1.819002] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.820135] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.820138] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.820140] page dumped because: corrupted mapping in tail page
[    1.820141] Modules linked in: snd_hda_codec_realtek(+) snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.820356] xhci_hcd 0000:03:00.0: hcc params 0x0200f180 hci version 0x96 quirks 0x0000000000080000

[    1.820373] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.820377] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.820378] Call Trace:
[    1.820380]  <TASK>
[    1.820382]  dump_stack_lvl+0x34/0x44
[    1.820388]  bad_page.cold+0x63/0x94
[    1.820392]  free_tail_pages_check+0xd1/0x110
[    1.820396]  ? _raw_spin_lock+0x13/0x30
[    1.820401]  free_pcp_prepare+0x251/0x2e0
[    1.820404]  free_unref_page+0x1d/0x110
[    1.820408]  __vunmap+0x28a/0x380
[    1.820411]  drm_fbdev_cleanup+0x5f/0xb0
[    1.820415]  drm_fbdev_fb_destroy+0x15/0x30
[    1.820417]  unregister_framebuffer+0x1d/0x30
[    1.820421]  drm_client_dev_unregister+0x69/0xe0
[    1.820424]  drm_dev_unregister+0x2e/0x80
[    1.820428]  drm_dev_unplug+0x21/0x40
[    1.820430]  simpledrm_remove+0x11/0x20
[    1.820433]  platform_remove+0x1f/0x40
[    1.820436]  __device_release_driver+0x17a/0x240
[    1.820439]  device_release_driver+0x24/0x30
[    1.820441]  bus_remove_device+0xd8/0x140
[    1.820444]  device_del+0x18b/0x3f0
[    1.820447]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.820450]  ? try_to_wake_up+0x94/0x5b0
[    1.820454]  platform_device_del.part.0+0x13/0x70
[    1.820458]  platform_device_unregister+0x1c/0x30
[    1.820461]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.820465]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.820468]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.820541]  local_pci_probe+0x45/0x80
[    1.820545]  ? pci_match_device+0xd7/0x130
[    1.820548]  pci_device_probe+0xc2/0x1d0
[    1.820551]  really_probe+0x1f5/0x3d0
[    1.820554]  __driver_probe_device+0xfe/0x180
[    1.820557]  driver_probe_device+0x1e/0x90
[    1.820560]  __driver_attach+0xc0/0x1c0
[    1.820562]  ? __device_attach_driver+0xe0/0xe0
[    1.820565]  ? __device_attach_driver+0xe0/0xe0
[    1.820567]  bus_for_each_dev+0x78/0xc0
[    1.820570]  bus_add_driver+0x149/0x1e0
[    1.820573]  driver_register+0x8f/0xe0
[    1.820576]  ? 0xffffffffc051d000
[    1.820578]  do_one_initcall+0x44/0x200
[    1.820582]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.820586]  do_init_module+0x5c/0x260
[    1.820590]  __do_sys_finit_module+0xb4/0x120
[    1.820595]  __do_fast_syscall_32+0x6b/0xe0
[    1.820598]  do_fast_syscall_32+0x2f/0x70
[    1.820600]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.820604] RIP: 0023:0xf7e51549
[    1.820606] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.820609] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.820612] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.820614] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.820616] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.820617] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.820619] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.820622]  </TASK>
[    1.823537] BUG: Bad page state in process systemd-udevd  pfn:102e1b
[    1.823552] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1b pfn:0x102e1b
[    1.823556] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.823558] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.823563] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b86c8 0000000000000000
[    1.827457] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input3
[    1.827741] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input4
[    1.828020] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:14.2/sound/card1/input5
[    1.828308] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card1/input6
[    1.828591] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card1/input7
[    1.828856] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card1/input8
[    1.829120] input: HD-Audio Generic Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card1/input9
[    1.829466] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
[    1.829917] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[    1.829921] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.829923] usb usb5: Product: OHCI PCI host controller
[    1.829925] usb usb5: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ohci_hcd
[    1.829927] usb usb5: SerialNumber: 0000:00:12.0
[    1.830438] hub 5-0:1.0: USB hub found
[    1.830470] hub 5-0:1.0: 5 ports detected
[    1.831925] ohci-pci 0000:00:13.0: OHCI PCI host controller
[    1.831948] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 6
[    1.832041] ohci-pci 0000:00:13.0: irq 18, io mem 0xf01c9000
[    1.832487] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.832492] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.832493] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.832495] page dumped because: corrupted mapping in tail page
[    1.832496] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.832523] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.832525] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.832527] Call Trace:
[    1.832529]  <TASK>
[    1.832530]  dump_stack_lvl+0x34/0x44
[    1.832537]  bad_page.cold+0x63/0x94
[    1.832541]  free_tail_pages_check+0xd1/0x110
[    1.832545]  ? _raw_spin_lock+0x13/0x30
[    1.832549]  free_pcp_prepare+0x251/0x2e0
[    1.832552]  free_unref_page+0x1d/0x110
[    1.832556]  __vunmap+0x28a/0x380
[    1.832560]  drm_fbdev_cleanup+0x5f/0xb0
[    1.832563]  drm_fbdev_fb_destroy+0x15/0x30
[    1.832565]  unregister_framebuffer+0x1d/0x30
[    1.832570]  drm_client_dev_unregister+0x69/0xe0
[    1.832573]  drm_dev_unregister+0x2e/0x80
[    1.832576]  drm_dev_unplug+0x21/0x40
[    1.832579]  simpledrm_remove+0x11/0x20
[    1.832581]  platform_remove+0x1f/0x40
[    1.832585]  __device_release_driver+0x17a/0x240
[    1.832588]  device_release_driver+0x24/0x30
[    1.832591]  bus_remove_device+0xd8/0x140
[    1.832594]  device_del+0x18b/0x3f0
[    1.832597]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.832600]  ? try_to_wake_up+0x94/0x5b0
[    1.832604]  platform_device_del.part.0+0x13/0x70
[    1.832607]  platform_device_unregister+0x1c/0x30
[    1.832611]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.832615]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.832618]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.832692]  local_pci_probe+0x45/0x80
[    1.832696]  ? pci_match_device+0xd7/0x130
[    1.832700]  pci_device_probe+0xc2/0x1d0
[    1.832704]  really_probe+0x1f5/0x3d0
[    1.832706]  __driver_probe_device+0xfe/0x180
[    1.832709]  driver_probe_device+0x1e/0x90
[    1.832711]  __driver_attach+0xc0/0x1c0
[    1.832714]  ? __device_attach_driver+0xe0/0xe0
[    1.832716]  ? __device_attach_driver+0xe0/0xe0
[    1.832719]  bus_for_each_dev+0x78/0xc0
[    1.832722]  bus_add_driver+0x149/0x1e0
[    1.832726]  driver_register+0x8f/0xe0
[    1.832729]  ? 0xffffffffc051d000
[    1.832731]  do_one_initcall+0x44/0x200
[    1.832735]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.832738]  do_init_module+0x5c/0x260
[    1.832743]  __do_sys_finit_module+0xb4/0x120
[    1.832748]  __do_fast_syscall_32+0x6b/0xe0
[    1.832751]  do_fast_syscall_32+0x2f/0x70
[    1.832753]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.832757] RIP: 0023:0xf7e51549
[    1.832759] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.832762] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.832765] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.832767] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.832768] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.832769] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.832771] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.832773]  </TASK>
[    1.832775] BUG: Bad page state in process systemd-udevd  pfn:102e1c
[    1.832783] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1c pfn:0x102e1c
[    1.832786] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.832788] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.832792] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8708 0000000000000000
[    1.832794] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.832795] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.832797] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.832798] page dumped because: corrupted mapping in tail page
[    1.832799] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.832821] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.832823] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.832825] Call Trace:
[    1.832826]  <TASK>
[    1.832827]  dump_stack_lvl+0x34/0x44
[    1.832831]  bad_page.cold+0x63/0x94
[    1.832834]  free_tail_pages_check+0xd1/0x110
[    1.832837]  ? _raw_spin_lock+0x13/0x30
[    1.832840]  free_pcp_prepare+0x251/0x2e0
[    1.832843]  free_unref_page+0x1d/0x110
[    1.832847]  __vunmap+0x28a/0x380
[    1.832850]  drm_fbdev_cleanup+0x5f/0xb0
[    1.832852]  drm_fbdev_fb_destroy+0x15/0x30
[    1.832854]  unregister_framebuffer+0x1d/0x30
[    1.832857]  drm_client_dev_unregister+0x69/0xe0
[    1.832859]  drm_dev_unregister+0x2e/0x80
[    1.832862]  drm_dev_unplug+0x21/0x40
[    1.832864]  simpledrm_remove+0x11/0x20
[    1.832867]  platform_remove+0x1f/0x40
[    1.832870]  __device_release_driver+0x17a/0x240
[    1.832872]  device_release_driver+0x24/0x30
[    1.832875]  bus_remove_device+0xd8/0x140
[    1.832878]  device_del+0x18b/0x3f0
[    1.832880]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.832883]  ? try_to_wake_up+0x94/0x5b0
[    1.832887]  platform_device_del.part.0+0x13/0x70
[    1.832890]  platform_device_unregister+0x1c/0x30
[    1.832893]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.832896]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.832899]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.832960]  local_pci_probe+0x45/0x80
[    1.832963]  ? pci_match_device+0xd7/0x130
[    1.832966]  pci_device_probe+0xc2/0x1d0
[    1.832969]  really_probe+0x1f5/0x3d0
[    1.832972]  __driver_probe_device+0xfe/0x180
[    1.832975]  driver_probe_device+0x1e/0x90
[    1.832978]  __driver_attach+0xc0/0x1c0
[    1.832980]  ? __device_attach_driver+0xe0/0xe0
[    1.832982]  ? __device_attach_driver+0xe0/0xe0
[    1.832985]  bus_for_each_dev+0x78/0xc0
[    1.832988]  bus_add_driver+0x149/0x1e0
[    1.832990]  driver_register+0x8f/0xe0
[    1.832993]  ? 0xffffffffc051d000
[    1.832995]  do_one_initcall+0x44/0x200
[    1.832998]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833001]  do_init_module+0x5c/0x260
[    1.833004]  __do_sys_finit_module+0xb4/0x120
[    1.833008]  __do_fast_syscall_32+0x6b/0xe0
[    1.833011]  do_fast_syscall_32+0x2f/0x70
[    1.833014]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.833016] RIP: 0023:0xf7e51549
[    1.833018] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.833021] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.833023] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.833025] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.833027] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.833028] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.833029] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.833032]  </TASK>
[    1.833033] BUG: Bad page state in process systemd-udevd  pfn:102e1d
[    1.833037] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1d pfn:0x102e1d
[    1.833040] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.833042] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.833045] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8748 0000000000000000
[    1.833047] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833048] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.833051] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833052] page dumped because: corrupted mapping in tail page
[    1.833052] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.833073] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.833076] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.833077] Call Trace:
[    1.833078]  <TASK>
[    1.833079]  dump_stack_lvl+0x34/0x44
[    1.833083]  bad_page.cold+0x63/0x94
[    1.833085]  free_tail_pages_check+0xd1/0x110
[    1.833089]  ? _raw_spin_lock+0x13/0x30
[    1.833091]  free_pcp_prepare+0x251/0x2e0
[    1.833094]  free_unref_page+0x1d/0x110
[    1.833097]  __vunmap+0x28a/0x380
[    1.833100]  drm_fbdev_cleanup+0x5f/0xb0
[    1.833103]  drm_fbdev_fb_destroy+0x15/0x30
[    1.833105]  unregister_framebuffer+0x1d/0x30
[    1.833108]  drm_client_dev_unregister+0x69/0xe0
[    1.833110]  drm_dev_unregister+0x2e/0x80
[    1.833113]  drm_dev_unplug+0x21/0x40
[    1.833116]  simpledrm_remove+0x11/0x20
[    1.833118]  platform_remove+0x1f/0x40
[    1.833120]  __device_release_driver+0x17a/0x240
[    1.833123]  device_release_driver+0x24/0x30
[    1.833126]  bus_remove_device+0xd8/0x140
[    1.833128]  device_del+0x18b/0x3f0
[    1.833131]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.833133]  ? try_to_wake_up+0x94/0x5b0
[    1.833136]  platform_device_del.part.0+0x13/0x70
[    1.833139]  platform_device_unregister+0x1c/0x30
[    1.833142]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.833145]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.833149]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.833207]  local_pci_probe+0x45/0x80
[    1.833210]  ? pci_match_device+0xd7/0x130
[    1.833214]  pci_device_probe+0xc2/0x1d0
[    1.833217]  really_probe+0x1f5/0x3d0
[    1.833220]  __driver_probe_device+0xfe/0x180
[    1.833223]  driver_probe_device+0x1e/0x90
[    1.833226]  __driver_attach+0xc0/0x1c0
[    1.833228]  ? __device_attach_driver+0xe0/0xe0
[    1.833230]  ? __device_attach_driver+0xe0/0xe0
[    1.833233]  bus_for_each_dev+0x78/0xc0
[    1.833236]  bus_add_driver+0x149/0x1e0
[    1.833238]  driver_register+0x8f/0xe0
[    1.833241]  ? 0xffffffffc051d000
[    1.833243]  do_one_initcall+0x44/0x200
[    1.833246]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833249]  do_init_module+0x5c/0x260
[    1.833252]  __do_sys_finit_module+0xb4/0x120
[    1.833257]  __do_fast_syscall_32+0x6b/0xe0
[    1.833259]  do_fast_syscall_32+0x2f/0x70
[    1.833262]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.833264] RIP: 0023:0xf7e51549
[    1.833267] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.833269] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.833271] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.833273] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.833274] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.833275] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.833277] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.833280]  </TASK>
[    1.833288] BUG: Bad page state in process systemd-udevd  pfn:102e1e
[    1.833293] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1e pfn:0x102e1e
[    1.833296] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.833298] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.833302] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8788 0000000000000000
[    1.833303] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833305] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.833307] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833308] page dumped because: corrupted mapping in tail page
[    1.833309] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.833331] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.833333] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.833334] Call Trace:
[    1.833335]  <TASK>
[    1.833336]  dump_stack_lvl+0x34/0x44
[    1.833340]  bad_page.cold+0x63/0x94
[    1.833343]  free_tail_pages_check+0xd1/0x110
[    1.833346]  ? _raw_spin_lock+0x13/0x30
[    1.833349]  free_pcp_prepare+0x251/0x2e0
[    1.833352]  free_unref_page+0x1d/0x110
[    1.833355]  __vunmap+0x28a/0x380
[    1.833359]  drm_fbdev_cleanup+0x5f/0xb0
[    1.833361]  drm_fbdev_fb_destroy+0x15/0x30
[    1.833363]  unregister_framebuffer+0x1d/0x30
[    1.833366]  drm_client_dev_unregister+0x69/0xe0
[    1.833369]  drm_dev_unregister+0x2e/0x80
[    1.833371]  drm_dev_unplug+0x21/0x40
[    1.833374]  simpledrm_remove+0x11/0x20
[    1.833377]  platform_remove+0x1f/0x40
[    1.833380]  __device_release_driver+0x17a/0x240
[    1.833382]  device_release_driver+0x24/0x30
[    1.833385]  bus_remove_device+0xd8/0x140
[    1.833388]  device_del+0x18b/0x3f0
[    1.833390]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.833393]  ? try_to_wake_up+0x94/0x5b0
[    1.833396]  platform_device_del.part.0+0x13/0x70
[    1.833399]  platform_device_unregister+0x1c/0x30
[    1.833402]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.833405]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.833408]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.833468]  local_pci_probe+0x45/0x80
[    1.833471]  ? pci_match_device+0xd7/0x130
[    1.833474]  pci_device_probe+0xc2/0x1d0
[    1.833477]  really_probe+0x1f5/0x3d0
[    1.833480]  __driver_probe_device+0xfe/0x180
[    1.833483]  driver_probe_device+0x1e/0x90
[    1.833485]  __driver_attach+0xc0/0x1c0
[    1.833487]  ? __device_attach_driver+0xe0/0xe0
[    1.833490]  ? __device_attach_driver+0xe0/0xe0
[    1.833492]  bus_for_each_dev+0x78/0xc0
[    1.833495]  bus_add_driver+0x149/0x1e0
[    1.833497]  driver_register+0x8f/0xe0
[    1.833500]  ? 0xffffffffc051d000
[    1.833502]  do_one_initcall+0x44/0x200
[    1.833505]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833508]  do_init_module+0x5c/0x260
[    1.833511]  __do_sys_finit_module+0xb4/0x120
[    1.833515]  __do_fast_syscall_32+0x6b/0xe0
[    1.833518]  do_fast_syscall_32+0x2f/0x70
[    1.833521]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.833524] RIP: 0023:0xf7e51549
[    1.833526] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.833528] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.833531] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.833532] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.833534] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.833535] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.833536] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.833539]  </TASK>
[    1.833540] BUG: Bad page state in process systemd-udevd  pfn:102e1f
[    1.833544] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1f pfn:0x102e1f
[    1.833547] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.833549] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.833552] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b87c8 0000000000000000
[    1.833554] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833556] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.833557] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833558] page dumped because: corrupted mapping in tail page
[    1.833559] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.833580] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.833583] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.833584] Call Trace:
[    1.833585]  <TASK>
[    1.833586]  dump_stack_lvl+0x34/0x44
[    1.833591]  bad_page.cold+0x63/0x94
[    1.833594]  free_tail_pages_check+0xd1/0x110
[    1.833596]  ? _raw_spin_lock+0x13/0x30
[    1.833599]  free_pcp_prepare+0x251/0x2e0
[    1.833602]  free_unref_page+0x1d/0x110
[    1.833605]  __vunmap+0x28a/0x380
[    1.833608]  drm_fbdev_cleanup+0x5f/0xb0
[    1.833611]  drm_fbdev_fb_destroy+0x15/0x30
[    1.833613]  unregister_framebuffer+0x1d/0x30
[    1.833616]  drm_client_dev_unregister+0x69/0xe0
[    1.833618]  drm_dev_unregister+0x2e/0x80
[    1.833621]  drm_dev_unplug+0x21/0x40
[    1.833624]  simpledrm_remove+0x11/0x20
[    1.833626]  platform_remove+0x1f/0x40
[    1.833629]  __device_release_driver+0x17a/0x240
[    1.833631]  device_release_driver+0x24/0x30
[    1.833634]  bus_remove_device+0xd8/0x140
[    1.833637]  device_del+0x18b/0x3f0
[    1.833639]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.833642]  ? try_to_wake_up+0x94/0x5b0
[    1.833645]  platform_device_del.part.0+0x13/0x70
[    1.833648]  platform_device_unregister+0x1c/0x30
[    1.833651]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.833654]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.833657]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.833715]  local_pci_probe+0x45/0x80
[    1.833718]  ? pci_match_device+0xd7/0x130
[    1.833721]  pci_device_probe+0xc2/0x1d0
[    1.833725]  really_probe+0x1f5/0x3d0
[    1.833727]  __driver_probe_device+0xfe/0x180
[    1.833730]  driver_probe_device+0x1e/0x90
[    1.833732]  __driver_attach+0xc0/0x1c0
[    1.833735]  ? __device_attach_driver+0xe0/0xe0
[    1.833737]  ? __device_attach_driver+0xe0/0xe0
[    1.833740]  bus_for_each_dev+0x78/0xc0
[    1.833742]  bus_add_driver+0x149/0x1e0
[    1.833745]  driver_register+0x8f/0xe0
[    1.833747]  ? 0xffffffffc051d000
[    1.833749]  do_one_initcall+0x44/0x200
[    1.833751]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833754]  do_init_module+0x5c/0x260
[    1.833757]  __do_sys_finit_module+0xb4/0x120
[    1.833762]  __do_fast_syscall_32+0x6b/0xe0
[    1.833764]  do_fast_syscall_32+0x2f/0x70
[    1.833767]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.833769] RIP: 0023:0xf7e51549
[    1.833771] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.833773] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.833776] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.833777] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.833779] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.833780] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.833781] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.833784]  </TASK>
[    1.833785] BUG: Bad page state in process systemd-udevd  pfn:102e20
[    1.833789] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x20 pfn:0x102e20
[    1.833792] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.833793] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.833796] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8808 0000000000000000
[    1.833798] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833800] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.833801] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833802] page dumped because: corrupted mapping in tail page
[    1.833803] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.833824] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.833826] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.833827] Call Trace:
[    1.833828]  <TASK>
[    1.833829]  dump_stack_lvl+0x34/0x44
[    1.833833]  bad_page.cold+0x63/0x94
[    1.833835]  free_tail_pages_check+0xd1/0x110
[    1.833838]  ? _raw_spin_lock+0x13/0x30
[    1.833841]  free_pcp_prepare+0x251/0x2e0
[    1.833844]  free_unref_page+0x1d/0x110
[    1.833847]  __vunmap+0x28a/0x380
[    1.833850]  drm_fbdev_cleanup+0x5f/0xb0
[    1.833853]  drm_fbdev_fb_destroy+0x15/0x30
[    1.833855]  unregister_framebuffer+0x1d/0x30
[    1.833857]  drm_client_dev_unregister+0x69/0xe0
[    1.833860]  drm_dev_unregister+0x2e/0x80
[    1.833862]  drm_dev_unplug+0x21/0x40
[    1.833864]  simpledrm_remove+0x11/0x20
[    1.833867]  platform_remove+0x1f/0x40
[    1.833869]  __device_release_driver+0x17a/0x240
[    1.833873]  device_release_driver+0x24/0x30
[    1.833876]  bus_remove_device+0xd8/0x140
[    1.833878]  device_del+0x18b/0x3f0
[    1.833881]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.833883]  ? try_to_wake_up+0x94/0x5b0
[    1.833886]  platform_device_del.part.0+0x13/0x70
[    1.833889]  platform_device_unregister+0x1c/0x30
[    1.833892]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.833895]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.833898]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.833955]  local_pci_probe+0x45/0x80
[    1.833958]  ? pci_match_device+0xd7/0x130
[    1.833961]  pci_device_probe+0xc2/0x1d0
[    1.833964]  really_probe+0x1f5/0x3d0
[    1.833967]  __driver_probe_device+0xfe/0x180
[    1.833970]  driver_probe_device+0x1e/0x90
[    1.833972]  __driver_attach+0xc0/0x1c0
[    1.833974]  ? __device_attach_driver+0xe0/0xe0
[    1.833977]  ? __device_attach_driver+0xe0/0xe0
[    1.833979]  bus_for_each_dev+0x78/0xc0
[    1.833982]  bus_add_driver+0x149/0x1e0
[    1.833984]  driver_register+0x8f/0xe0
[    1.833986]  ? 0xffffffffc051d000
[    1.833988]  do_one_initcall+0x44/0x200
[    1.833991]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833994]  do_init_module+0x5c/0x260
[    1.833997]  __do_sys_finit_module+0xb4/0x120
[    1.834001]  __do_fast_syscall_32+0x6b/0xe0
[    1.834004]  do_fast_syscall_32+0x2f/0x70
[    1.834006]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.834008] RIP: 0023:0xf7e51549
[    1.834010] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.834012] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.834014] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.834016] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.834017] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.834019] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.834020] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.834023]  </TASK>
[    1.834024] BUG: Bad page state in process systemd-udevd  pfn:102e21
[    1.834027] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x21 pfn:0x102e21
[    1.834030] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.834031] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.834034] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8848 0000000000000000
[    1.834036] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.834038] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.834039] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.834040] page dumped because: corrupted mapping in tail page
[    1.834041] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.834061] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.834064] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.834065] Call Trace:
[    1.834066]  <TASK>
[    1.834067]  dump_stack_lvl+0x34/0x44
[    1.834070]  bad_page.cold+0x63/0x94
[    1.834073]  free_tail_pages_check+0xd1/0x110
[    1.834076]  ? _raw_spin_lock+0x13/0x30
[    1.834079]  free_pcp_prepare+0x251/0x2e0
[    1.834082]  free_unref_page+0x1d/0x110
[    1.834085]  __vunmap+0x28a/0x380
[    1.834088]  drm_fbdev_cleanup+0x5f/0xb0
[    1.834090]  drm_fbdev_fb_destroy+0x15/0x30
[    1.834092]  unregister_framebuffer+0x1d/0x30
[    1.834095]  drm_client_dev_unregister+0x69/0xe0
[    1.834097]  drm_dev_unregister+0x2e/0x80
[    1.834100]  drm_dev_unplug+0x21/0x40
[    1.834103]  simpledrm_remove+0x11/0x20
[    1.834105]  platform_remove+0x1f/0x40
[    1.834107]  __device_release_driver+0x17a/0x240
[    1.834110]  device_release_driver+0x24/0x30
[    1.834113]  bus_remove_device+0xd8/0x140
[    1.834115]  device_del+0x18b/0x3f0
[    1.834118]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.834121]  ? try_to_wake_up+0x94/0x5b0
[    1.834123]  platform_device_del.part.0+0x13/0x70
[    1.834126]  platform_device_unregister+0x1c/0x30
[    1.834129]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.834132]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.834135]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.834192]  local_pci_probe+0x45/0x80
[    1.834195]  ? pci_match_device+0xd7/0x130
[    1.834198]  pci_device_probe+0xc2/0x1d0
[    1.834201]  really_probe+0x1f5/0x3d0
[    1.834204]  __driver_probe_device+0xfe/0x180
[    1.834207]  driver_probe_device+0x1e/0x90
[    1.834209]  __driver_attach+0xc0/0x1c0
[    1.834211]  ? __device_attach_driver+0xe0/0xe0
[    1.834214]  ? __device_attach_driver+0xe0/0xe0
[    1.834216]  bus_for_each_dev+0x78/0xc0
[    1.834219]  bus_add_driver+0x149/0x1e0
[    1.834221]  driver_register+0x8f/0xe0
[    1.834224]  ? 0xffffffffc051d000
[    1.834225]  do_one_initcall+0x44/0x200
[    1.834228]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.834231]  do_init_module+0x5c/0x260
[    1.834234]  __do_sys_finit_module+0xb4/0x120
[    1.834238]  __do_fast_syscall_32+0x6b/0xe0
[    1.834241]  do_fast_syscall_32+0x2f/0x70
[    1.834243]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.834245] RIP: 0023:0xf7e51549
[    1.834247] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.834249] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.834251] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.834253] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.834254] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.834255] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.834257] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.834259]  </TASK>
[    1.837229] BUG: Bad page state in process systemd-udevd  pfn:102e22
[    1.837239] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x22 pfn:0x102e22
[    1.837243] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.837245] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.837250] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8888 0000000000000000
[    1.837252] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837254] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.837256] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837257] page dumped because: corrupted mapping in tail page
[    1.837258] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.837285] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.837289] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.837290] Call Trace:
[    1.837292]  <TASK>
[    1.837294]  dump_stack_lvl+0x34/0x44
[    1.837300]  bad_page.cold+0x63/0x94
[    1.837304]  free_tail_pages_check+0xd1/0x110
[    1.837308]  ? _raw_spin_lock+0x13/0x30
[    1.837312]  free_pcp_prepare+0x251/0x2e0
[    1.837315]  free_unref_page+0x1d/0x110
[    1.837319]  __vunmap+0x28a/0x380
[    1.837322]  drm_fbdev_cleanup+0x5f/0xb0
[    1.837326]  drm_fbdev_fb_destroy+0x15/0x30
[    1.837328]  unregister_framebuffer+0x1d/0x30
[    1.837332]  drm_client_dev_unregister+0x69/0xe0
[    1.837335]  drm_dev_unregister+0x2e/0x80
[    1.837338]  drm_dev_unplug+0x21/0x40
[    1.837341]  simpledrm_remove+0x11/0x20
[    1.837344]  platform_remove+0x1f/0x40
[    1.837347]  __device_release_driver+0x17a/0x240
[    1.837350]  device_release_driver+0x24/0x30
[    1.837353]  bus_remove_device+0xd8/0x140
[    1.837356]  device_del+0x18b/0x3f0
[    1.837359]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.837362]  ? try_to_wake_up+0x94/0x5b0
[    1.837365]  platform_device_del.part.0+0x13/0x70
[    1.837369]  platform_device_unregister+0x1c/0x30
[    1.837372]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.837376]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.837379]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.837453]  local_pci_probe+0x45/0x80
[    1.837457]  ? pci_match_device+0xd7/0x130
[    1.837460]  pci_device_probe+0xc2/0x1d0
[    1.837464]  really_probe+0x1f5/0x3d0
[    1.837467]  __driver_probe_device+0xfe/0x180
[    1.837470]  driver_probe_device+0x1e/0x90
[    1.837472]  __driver_attach+0xc0/0x1c0
[    1.837475]  ? __device_attach_driver+0xe0/0xe0
[    1.837477]  ? __device_attach_driver+0xe0/0xe0
[    1.837479]  bus_for_each_dev+0x78/0xc0
[    1.837482]  bus_add_driver+0x149/0x1e0
[    1.837485]  driver_register+0x8f/0xe0
[    1.837487]  ? 0xffffffffc051d000
[    1.837490]  do_one_initcall+0x44/0x200
[    1.837493]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.837497]  do_init_module+0x5c/0x260
[    1.837501]  __do_sys_finit_module+0xb4/0x120
[    1.837506]  __do_fast_syscall_32+0x6b/0xe0
[    1.837509]  do_fast_syscall_32+0x2f/0x70
[    1.837512]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.837515] RIP: 0023:0xf7e51549
[    1.837518] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.837520] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.837523] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.837525] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.837526] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.837528] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.837529] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.837532]  </TASK>
[    1.837533] BUG: Bad page state in process systemd-udevd  pfn:102e23
[    1.837538] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x23 pfn:0x102e23
[    1.837541] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.837542] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.837546] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b88c8 0000000000000000
[    1.837548] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837550] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.837551] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837552] page dumped because: corrupted mapping in tail page
[    1.837553] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.837574] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.837577] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.837578] Call Trace:
[    1.837579]  <TASK>
[    1.837580]  dump_stack_lvl+0x34/0x44
[    1.837584]  bad_page.cold+0x63/0x94
[    1.837587]  free_tail_pages_check+0xd1/0x110
[    1.837590]  ? _raw_spin_lock+0x13/0x30
[    1.837593]  free_pcp_prepare+0x251/0x2e0
[    1.837596]  free_unref_page+0x1d/0x110
[    1.837599]  __vunmap+0x28a/0x380
[    1.837602]  drm_fbdev_cleanup+0x5f/0xb0
[    1.837604]  drm_fbdev_fb_destroy+0x15/0x30
[    1.837606]  unregister_framebuffer+0x1d/0x30
[    1.837609]  drm_client_dev_unregister+0x69/0xe0
[    1.837612]  drm_dev_unregister+0x2e/0x80
[    1.837615]  drm_dev_unplug+0x21/0x40
[    1.837617]  simpledrm_remove+0x11/0x20
[    1.837620]  platform_remove+0x1f/0x40
[    1.837622]  __device_release_driver+0x17a/0x240
[    1.837625]  device_release_driver+0x24/0x30
[    1.837627]  bus_remove_device+0xd8/0x140
[    1.837630]  device_del+0x18b/0x3f0
[    1.837632]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.837635]  ? try_to_wake_up+0x94/0x5b0
[    1.837638]  platform_device_del.part.0+0x13/0x70
[    1.837641]  platform_device_unregister+0x1c/0x30
[    1.837644]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.837647]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.837650]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.837710]  local_pci_probe+0x45/0x80
[    1.837713]  ? pci_match_device+0xd7/0x130
[    1.837716]  pci_device_probe+0xc2/0x1d0
[    1.837719]  really_probe+0x1f5/0x3d0
[    1.837722]  __driver_probe_device+0xfe/0x180
[    1.837725]  driver_probe_device+0x1e/0x90
[    1.837728]  __driver_attach+0xc0/0x1c0
[    1.837730]  ? __device_attach_driver+0xe0/0xe0
[    1.837733]  ? __device_attach_driver+0xe0/0xe0
[    1.837735]  bus_for_each_dev+0x78/0xc0
[    1.837738]  bus_add_driver+0x149/0x1e0
[    1.837740]  driver_register+0x8f/0xe0
[    1.837743]  ? 0xffffffffc051d000
[    1.837745]  do_one_initcall+0x44/0x200
[    1.837748]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.837751]  do_init_module+0x5c/0x260
[    1.837755]  __do_sys_finit_module+0xb4/0x120
[    1.837759]  __do_fast_syscall_32+0x6b/0xe0
[    1.837762]  do_fast_syscall_32+0x2f/0x70
[    1.837764]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.837767] RIP: 0023:0xf7e51549
[    1.837769] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.837771] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.837773] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.837775] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.837776] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.837778] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.837779] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.837782]  </TASK>
[    1.837783] BUG: Bad page state in process systemd-udevd  pfn:102e24
[    1.837787] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x24 pfn:0x102e24
[    1.837790] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.837792] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.837795] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8908 0000000000000000
[    1.837797] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837798] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.837800] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837801] page dumped because: corrupted mapping in tail page
[    1.837802] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.837824] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.837827] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.837828] Call Trace:
[    1.837829]  <TASK>
[    1.837830]  dump_stack_lvl+0x34/0x44
[    1.837834]  bad_page.cold+0x63/0x94
[    1.837836]  free_tail_pages_check+0xd1/0x110
[    1.837839]  ? _raw_spin_lock+0x13/0x30
[    1.837842]  free_pcp_prepare+0x251/0x2e0
[    1.837846]  free_unref_page+0x1d/0x110
[    1.837849]  __vunmap+0x28a/0x380
[    1.837851]  drm_fbdev_cleanup+0x5f/0xb0
[    1.837854]  drm_fbdev_fb_destroy+0x15/0x30
[    1.837856]  unregister_framebuffer+0x1d/0x30
[    1.837859]  drm_client_dev_unregister+0x69/0xe0
[    1.837861]  drm_dev_unregister+0x2e/0x80
[    1.837864]  drm_dev_unplug+0x21/0x40
[    1.837866]  simpledrm_remove+0x11/0x20
[    1.837868]  platform_remove+0x1f/0x40
[    1.837871]  __device_release_driver+0x17a/0x240
[    1.837873]  device_release_driver+0x24/0x30
[    1.837876]  bus_remove_device+0xd8/0x140
[    1.837878]  device_del+0x18b/0x3f0
[    1.837881]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.837884]  ? try_to_wake_up+0x94/0x5b0
[    1.837887]  platform_device_del.part.0+0x13/0x70
[    1.837890]  platform_device_unregister+0x1c/0x30
[    1.837893]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.837896]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.837899]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.837959]  local_pci_probe+0x45/0x80
[    1.837962]  ? pci_match_device+0xd7/0x130
[    1.837965]  pci_device_probe+0xc2/0x1d0
[    1.837969]  really_probe+0x1f5/0x3d0
[    1.837972]  __driver_probe_device+0xfe/0x180
[    1.837975]  driver_probe_device+0x1e/0x90
[    1.837977]  __driver_attach+0xc0/0x1c0
[    1.837980]  ? __device_attach_driver+0xe0/0xe0
[    1.837982]  ? __device_attach_driver+0xe0/0xe0
[    1.837984]  bus_for_each_dev+0x78/0xc0
[    1.837987]  bus_add_driver+0x149/0x1e0
[    1.837990]  driver_register+0x8f/0xe0
[    1.837992]  ? 0xffffffffc051d000
[    1.837994]  do_one_initcall+0x44/0x200
[    1.837998]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.838001]  do_init_module+0x5c/0x260
[    1.838004]  __do_sys_finit_module+0xb4/0x120
[    1.838008]  __do_fast_syscall_32+0x6b/0xe0
[    1.838011]  do_fast_syscall_32+0x2f/0x70
[    1.838014]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.838016] RIP: 0023:0xf7e51549
[    1.838019] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.838021] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.838024] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.838025] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.838027] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.838028] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.838029] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.838032]  </TASK>
[    1.838033] BUG: Bad page state in process systemd-udevd  pfn:102e25
[    1.838038] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x25 pfn:0x102e25
[    1.838041] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.838042] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.838046] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8948 0000000000000000
[    1.838048] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.838049] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.838051] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.838052] page dumped because: corrupted mapping in tail page
[    1.838053] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.838075] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.838077] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.838078] Call Trace:
[    1.838079]  <TASK>
[    1.838081]  dump_stack_lvl+0x34/0x44
[    1.838084]  bad_page.cold+0x63/0x94
[    1.838087]  free_tail_pages_check+0xd1/0x110
[    1.838090]  ? _raw_spin_lock+0x13/0x30
[    1.838093]  free_pcp_prepare+0x251/0x2e0
[    1.838097]  free_unref_page+0x1d/0x110
[    1.838100]  __vunmap+0x28a/0x380
[    1.838103]  drm_fbdev_cleanup+0x5f/0xb0
[    1.838105]  drm_fbdev_fb_destroy+0x15/0x30
[    1.838107]  unregister_framebuffer+0x1d/0x30
[    1.838111]  drm_client_dev_unregister+0x69/0xe0
[    1.838113]  drm_dev_unregister+0x2e/0x80
[    1.838116]  drm_dev_unplug+0x21/0x40
[    1.838119]  simpledrm_remove+0x11/0x20
[    1.838122]  platform_remove+0x1f/0x40
[    1.838125]  __device_release_driver+0x17a/0x240
[    1.838127]  device_release_driver+0x24/0x30
[    1.838129]  bus_remove_device+0xd8/0x140
[    1.838132]  device_del+0x18b/0x3f0
[    1.838135]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.838137]  ? try_to_wake_up+0x94/0x5b0
[    1.838140]  platform_device_del.part.0+0x13/0x70
[    1.838143]  platform_device_unregister+0x1c/0x30
[    1.838146]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.838149]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.838152]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.838215]  local_pci_probe+0x45/0x80
[    1.838218]  ? pci_match_device+0xd7/0x130
[    1.838221]  pci_device_probe+0xc2/0x1d0
[    1.838224]  really_probe+0x1f5/0x3d0
[    1.838227]  __driver_probe_device+0xfe/0x180
[    1.838229]  driver_probe_device+0x1e/0x90
[    1.838232]  __driver_attach+0xc0/0x1c0
[    1.838234]  ? __device_attach_driver+0xe0/0xe0
[    1.838236]  ? __device_attach_driver+0xe0/0xe0
[    1.838239]  bus_for_each_dev+0x78/0xc0
[    1.838243]  bus_add_driver+0x149/0x1e0
[    1.838245]  driver_register+0x8f/0xe0
[    1.838247]  ? 0xffffffffc051d000
[    1.838249]  do_one_initcall+0x44/0x200
[    1.838252]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.838255]  do_init_module+0x5c/0x260
[    1.838259]  __do_sys_finit_module+0xb4/0x120
[    1.838263]  __do_fast_syscall_32+0x6b/0xe0
[    1.838266]  do_fast_syscall_32+0x2f/0x70
[    1.838268]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.838271] RIP: 0023:0xf7e51549
[    1.838273] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.838275] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.838278] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.838279] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.838281] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.838282] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.838283] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.838286]  </TASK>
[    1.844998] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[    1.845004] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.845007] usb usb4: Product: xHCI Host Controller
[    1.845009] usb usb4: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b xhci-hcd
[    1.845010] usb usb4: SerialNumber: 0000:03:00.0
[    1.845059] BUG: Bad page state in process systemd-udevd  pfn:102e26
[    1.845068] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x26 pfn:0x102e26
[    1.845071] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.845073] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.845078] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8988 0000000000000000
[    1.845080] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.845082] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.845084] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.845085] page dumped because: corrupted mapping in tail page
[    1.845086] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.845112] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.845115] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.845117] Call Trace:
[    1.845118]  <TASK>
[    1.845120]  dump_stack_lvl+0x34/0x44
[    1.845127]  bad_page.cold+0x63/0x94
[    1.845130]  free_tail_pages_check+0xd1/0x110
[    1.845135]  ? _raw_spin_lock+0x13/0x30
[    1.845139]  free_pcp_prepare+0x251/0x2e0
[    1.845142]  free_unref_page+0x1d/0x110
[    1.845146]  __vunmap+0x28a/0x380
[    1.845149]  drm_fbdev_cleanup+0x5f/0xb0
[    1.845152]  drm_fbdev_fb_destroy+0x15/0x30
[    1.845155]  unregister_framebuffer+0x1d/0x30
[    1.845159]  drm_client_dev_unregister+0x69/0xe0
[    1.845162]  drm_dev_unregister+0x2e/0x80
[    1.845165]  drm_dev_unplug+0x21/0x40
[    1.845168]  simpledrm_remove+0x11/0x20
[    1.845171]  platform_remove+0x1f/0x40
[    1.845174]  __device_release_driver+0x17a/0x240
[    1.845177]  device_release_driver+0x24/0x30
[    1.845179]  bus_remove_device+0xd8/0x140
[    1.845182]  device_del+0x18b/0x3f0
[    1.845185]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.845188]  ? try_to_wake_up+0x94/0x5b0
[    1.845192]  platform_device_del.part.0+0x13/0x70
[    1.845195]  platform_device_unregister+0x1c/0x30
[    1.845198]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.845202]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.845206]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.845279]  local_pci_probe+0x45/0x80
[    1.845283]  ? pci_match_device+0xd7/0x130
[    1.845286]  pci_device_probe+0xc2/0x1d0
[    1.845289]  really_probe+0x1f5/0x3d0
[    1.845292]  __driver_probe_device+0xfe/0x180
[    1.845295]  driver_probe_device+0x1e/0x90
[    1.845297]  __driver_attach+0xc0/0x1c0
[    1.845300]  ? __device_attach_driver+0xe0/0xe0
[    1.845302]  ? __device_attach_driver+0xe0/0xe0
[    1.845304]  bus_for_each_dev+0x78/0xc0
[    1.845307]  bus_add_driver+0x149/0x1e0
[    1.845310]  driver_register+0x8f/0xe0
[    1.845312]  ? 0xffffffffc051d000
[    1.845314]  do_one_initcall+0x44/0x200
[    1.845318]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.845321]  do_init_module+0x5c/0x260
[    1.845326]  __do_sys_finit_module+0xb4/0x120
[    1.845331]  __do_fast_syscall_32+0x6b/0xe0
[    1.845334]  do_fast_syscall_32+0x2f/0x70
[    1.845336]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.845339] RIP: 0023:0xf7e51549
[    1.845342] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.845344] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.845347] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.845349] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.845350] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.845352] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.845353] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.845355]  </TASK>
[    1.846566] hub 4-0:1.0: USB hub found
[    1.848020] hub 4-0:1.0: 2 ports detected
[    1.849128] BUG: Bad page state in process systemd-udevd  pfn:102e27
[    1.849141] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x27 pfn:0x102e27
[    1.849145] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.849146] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.849151] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b89c8 0000000000000000
[    1.849153] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.849155] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.849157] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.849158] page dumped because: corrupted mapping in tail page
[    1.849159] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.849199] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.849202] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.849204] Call Trace:
[    1.849205]  <TASK>
[    1.849207]  dump_stack_lvl+0x34/0x44
[    1.849214]  bad_page.cold+0x63/0x94
[    1.849217]  free_tail_pages_check+0xd1/0x110
[    1.849222]  ? _raw_spin_lock+0x13/0x30
[    1.849227]  free_pcp_prepare+0x251/0x2e0
[    1.849230]  free_unref_page+0x1d/0x110
[    1.849234]  __vunmap+0x28a/0x380
[    1.849237]  drm_fbdev_cleanup+0x5f/0xb0
[    1.849240]  drm_fbdev_fb_destroy+0x15/0x30
[    1.849243]  unregister_framebuffer+0x1d/0x30
[    1.849247]  drm_client_dev_unregister+0x69/0xe0
[    1.849250]  drm_dev_unregister+0x2e/0x80
[    1.849254]  drm_dev_unplug+0x21/0x40
[    1.849257]  simpledrm_remove+0x11/0x20
[    1.849259]  platform_remove+0x1f/0x40
[    1.849263]  __device_release_driver+0x17a/0x240
[    1.849265]  device_release_driver+0x24/0x30
[    1.849268]  bus_remove_device+0xd8/0x140
[    1.849271]  device_del+0x18b/0x3f0
[    1.849274]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.849277]  ? try_to_wake_up+0x94/0x5b0
[    1.849280]  platform_device_del.part.0+0x13/0x70
[    1.849284]  platform_device_unregister+0x1c/0x30
[    1.849287]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.849291]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.849295]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.849366]  local_pci_probe+0x45/0x80
[    1.849370]  ? pci_match_device+0xd7/0x130
[    1.849374]  pci_device_probe+0xc2/0x1d0
[    1.849377]  really_probe+0x1f5/0x3d0
[    1.849380]  __driver_probe_device+0xfe/0x180
[    1.849384]  driver_probe_device+0x1e/0x90
[    1.849386]  __driver_attach+0xc0/0x1c0
[    1.849389]  ? __device_attach_driver+0xe0/0xe0
[    1.849392]  ? __device_attach_driver+0xe0/0xe0
[    1.849394]  bus_for_each_dev+0x78/0xc0
[    1.849397]  bus_add_driver+0x149/0x1e0
[    1.849400]  driver_register+0x8f/0xe0
[    1.849403]  ? 0xffffffffc051d000
[    1.849405]  do_one_initcall+0x44/0x200
[    1.849410]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.849414]  do_init_module+0x5c/0x260
[    1.849418]  __do_sys_finit_module+0xb4/0x120
[    1.849423]  __do_fast_syscall_32+0x6b/0xe0
[    1.849426]  do_fast_syscall_32+0x2f/0x70
[    1.849428]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.849432] RIP: 0023:0xf7e51549
[    1.849435] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.849437] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.849441] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.849443] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.849444] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.849445] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.849447] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.849450]  </TASK>
[    1.849452] BUG: Bad page state in process systemd-udevd  pfn:102e28
[    1.849458] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x28 pfn:0x102e28
[    1.849461] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.849463] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.849466] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8a08 0000000000000000
[    1.849468] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.849471] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.849472] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.849473] page dumped because: corrupted mapping in tail page
[    1.849474] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.850591] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.850610] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 7
[    1.850621] xhci_hcd 0000:03:00.0: Host supports USB 3.0 SuperSpeed
[    1.853205] usb usb7: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.854757] usb usb7: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.16
[    1.854763] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.854765] usb usb7: Product: xHCI Host Controller
[    1.854767] usb usb7: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b xhci-hcd
[    1.854769] usb usb7: SerialNumber: 0000:03:00.0
[    1.855905] hub 7-0:1.0: USB hub found
[    1.857433] hub 7-0:1.0: 2 ports detected

[    1.857817] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.857820] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.857822] Call Trace:
[    1.857824]  <TASK>
[    1.857825]  dump_stack_lvl+0x34/0x44
[    1.857832]  bad_page.cold+0x63/0x94
[    1.857836]  free_tail_pages_check+0xd1/0x110
[    1.857840]  ? _raw_spin_lock+0x13/0x30
[    1.857844]  free_pcp_prepare+0x251/0x2e0
[    1.857848]  free_unref_page+0x1d/0x110
[    1.857851]  __vunmap+0x28a/0x380
[    1.857855]  drm_fbdev_cleanup+0x5f/0xb0
[    1.857858]  drm_fbdev_fb_destroy+0x15/0x30
[    1.857860]  unregister_framebuffer+0x1d/0x30
[    1.857864]  drm_client_dev_unregister+0x69/0xe0
[    1.857868]  drm_dev_unregister+0x2e/0x80
[    1.857872]  drm_dev_unplug+0x21/0x40
[    1.857874]  simpledrm_remove+0x11/0x20
[    1.857877]  platform_remove+0x1f/0x40
[    1.857881]  __device_release_driver+0x17a/0x240
[    1.857884]  device_release_driver+0x24/0x30
[    1.857887]  bus_remove_device+0xd8/0x140
[    1.857889]  device_del+0x18b/0x3f0
[    1.857892]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.857895]  ? try_to_wake_up+0x94/0x5b0
[    1.857899]  platform_device_del.part.0+0x13/0x70
[    1.857902]  platform_device_unregister+0x1c/0x30
[    1.857905]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.857910]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.857913]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.857987]  local_pci_probe+0x45/0x80
[    1.857991]  ? pci_match_device+0xd7/0x130
[    1.857994]  pci_device_probe+0xc2/0x1d0
[    1.857998]  really_probe+0x1f5/0x3d0
[    1.858001]  __driver_probe_device+0xfe/0x180
[    1.858004]  driver_probe_device+0x1e/0x90
[    1.858006]  __driver_attach+0xc0/0x1c0
[    1.858009]  ? __device_attach_driver+0xe0/0xe0
[    1.858011]  ? __device_attach_driver+0xe0/0xe0
[    1.858014]  bus_for_each_dev+0x78/0xc0
[    1.858017]  bus_add_driver+0x149/0x1e0
[    1.858019]  driver_register+0x8f/0xe0
[    1.858022]  ? 0xffffffffc051d000
[    1.858024]  do_one_initcall+0x44/0x200
[    1.858028]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.858031]  do_init_module+0x5c/0x260
[    1.858035]  __do_sys_finit_module+0xb4/0x120
[    1.858040]  __do_fast_syscall_32+0x6b/0xe0
[    1.858043]  do_fast_syscall_32+0x2f/0x70
[    1.858046]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.858050] RIP: 0023:0xf7e51549
[    1.858053] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.858055] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.858058] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.858060] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.858062] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.858063] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.858065] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.858067]  </TASK>
[    1.858070] BUG: Bad page state in process systemd-udevd  pfn:102e29
[    1.858078] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x29 pfn:0x102e29
[    1.858081] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.858083] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.858088] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8a48 0000000000000000
[    1.858090] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858092] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.858093] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858094] page dumped because: corrupted mapping in tail page
[    1.858095] Modules linked in: ghash_clmulni_intel(+) snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.858121] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.858124] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.858125] Call Trace:
[    1.858126]  <TASK>
[    1.858127]  dump_stack_lvl+0x34/0x44
[    1.858131]  bad_page.cold+0x63/0x94
[    1.858135]  free_tail_pages_check+0xd1/0x110
[    1.858138]  ? _raw_spin_lock+0x13/0x30
[    1.858141]  free_pcp_prepare+0x251/0x2e0
[    1.858145]  free_unref_page+0x1d/0x110
[    1.858148]  __vunmap+0x28a/0x380
[    1.858151]  drm_fbdev_cleanup+0x5f/0xb0
[    1.858153]  drm_fbdev_fb_destroy+0x15/0x30
[    1.858156]  unregister_framebuffer+0x1d/0x30
[    1.858159]  drm_client_dev_unregister+0x69/0xe0
[    1.858162]  drm_dev_unregister+0x2e/0x80
[    1.858165]  drm_dev_unplug+0x21/0x40
[    1.858167]  simpledrm_remove+0x11/0x20
[    1.858170]  platform_remove+0x1f/0x40
[    1.858173]  __device_release_driver+0x17a/0x240
[    1.858175]  device_release_driver+0x24/0x30
[    1.858178]  bus_remove_device+0xd8/0x140
[    1.858180]  device_del+0x18b/0x3f0
[    1.858183]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.858186]  ? try_to_wake_up+0x94/0x5b0
[    1.858189]  platform_device_del.part.0+0x13/0x70
[    1.858192]  platform_device_unregister+0x1c/0x30
[    1.858195]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.858198]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.858202]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.858264]  local_pci_probe+0x45/0x80
[    1.858267]  ? pci_match_device+0xd7/0x130
[    1.858271]  pci_device_probe+0xc2/0x1d0
[    1.858274]  really_probe+0x1f5/0x3d0
[    1.858277]  __driver_probe_device+0xfe/0x180
[    1.858280]  driver_probe_device+0x1e/0x90
[    1.858283]  __driver_attach+0xc0/0x1c0
[    1.858285]  ? __device_attach_driver+0xe0/0xe0
[    1.858287]  ? __device_attach_driver+0xe0/0xe0
[    1.858290]  bus_for_each_dev+0x78/0xc0
[    1.858292]  bus_add_driver+0x149/0x1e0
[    1.858295]  driver_register+0x8f/0xe0
[    1.858297]  ? 0xffffffffc051d000
[    1.858299]  do_one_initcall+0x44/0x200
[    1.858302]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.858306]  do_init_module+0x5c/0x260
[    1.858309]  __do_sys_finit_module+0xb4/0x120
[    1.858314]  __do_fast_syscall_32+0x6b/0xe0
[    1.858317]  do_fast_syscall_32+0x2f/0x70
[    1.858319]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.858321] RIP: 0023:0xf7e51549
[    1.858324] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.858326] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.858329] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.858330] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.858332] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.858333] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.858334] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.858337]  </TASK>
[    1.858360] BUG: Bad page state in process systemd-udevd  pfn:102e2a
[    1.858367] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2a pfn:0x102e2a
[    1.858370] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.858372] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.858376] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8a88 0000000000000000
[    1.858378] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858379] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.858381] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858382] page dumped because: corrupted mapping in tail page
[    1.858383] Modules linked in: ghash_clmulni_intel(+) snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.858407] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.858410] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.858411] Call Trace:
[    1.858412]  <TASK>
[    1.858414]  dump_stack_lvl+0x34/0x44
[    1.858418]  bad_page.cold+0x63/0x94
[    1.858421]  free_tail_pages_check+0xd1/0x110
[    1.858424]  ? _raw_spin_lock+0x13/0x30
[    1.858428]  free_pcp_prepare+0x251/0x2e0
[    1.858431]  free_unref_page+0x1d/0x110
[    1.858434]  __vunmap+0x28a/0x380
[    1.858437]  drm_fbdev_cleanup+0x5f/0xb0
[    1.858439]  drm_fbdev_fb_destroy+0x15/0x30
[    1.858441]  unregister_framebuffer+0x1d/0x30
[    1.858444]  drm_client_dev_unregister+0x69/0xe0
[    1.858447]  drm_dev_unregister+0x2e/0x80
[    1.858450]  drm_dev_unplug+0x21/0x40
[    1.858453]  simpledrm_remove+0x11/0x20
[    1.858455]  platform_remove+0x1f/0x40
[    1.858458]  __device_release_driver+0x17a/0x240
[    1.858461]  device_release_driver+0x24/0x30
[    1.858463]  bus_remove_device+0xd8/0x140
[    1.858466]  device_del+0x18b/0x3f0
[    1.858468]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.858471]  ? try_to_wake_up+0x94/0x5b0
[    1.858475]  platform_device_del.part.0+0x13/0x70
[    1.858477]  platform_device_unregister+0x1c/0x30
[    1.858480]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.858484]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.858487]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.858551]  local_pci_probe+0x45/0x80
[    1.858554]  ? pci_match_device+0xd7/0x130
[    1.858558]  pci_device_probe+0xc2/0x1d0
[    1.858561]  really_probe+0x1f5/0x3d0
[    1.858564]  __driver_probe_device+0xfe/0x180
[    1.858566]  driver_probe_device+0x1e/0x90
[    1.858569]  __driver_attach+0xc0/0x1c0
[    1.858571]  ? __device_attach_driver+0xe0/0xe0
[    1.858574]  ? __device_attach_driver+0xe0/0xe0
[    1.858576]  bus_for_each_dev+0x78/0xc0
[    1.858579]  bus_add_driver+0x149/0x1e0
[    1.858581]  driver_register+0x8f/0xe0
[    1.858584]  ? 0xffffffffc051d000
[    1.858586]  do_one_initcall+0x44/0x200
[    1.858589]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.858592]  do_init_module+0x5c/0x260
[    1.858595]  __do_sys_finit_module+0xb4/0x120
[    1.858600]  __do_fast_syscall_32+0x6b/0xe0
[    1.858602]  do_fast_syscall_32+0x2f/0x70
[    1.858605]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.858607] RIP: 0023:0xf7e51549
[    1.858610] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.858612] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.858614] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.858616] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.858617] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.858619] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.858620] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.858623]  </TASK>
[    1.858624] BUG: Bad page state in process systemd-udevd  pfn:102e2b
[    1.858629] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2b pfn:0x102e2b
[    1.858631] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.858633] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.858636] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8ac8 0000000000000000
[    1.858638] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858641] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.858642] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858643] page dumped because: corrupted mapping in tail page
[    1.858644] Modules linked in: ghash_clmulni_intel(+) snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.858665] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.858667] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.858668] Call Trace:
[    1.858669]  <TASK>
[    1.858670]  dump_stack_lvl+0x34/0x44
[    1.858674]  bad_page.cold+0x63/0x94
[    1.858677]  free_tail_pages_check+0xd1/0x110
[    1.858680]  ? _raw_spin_lock+0x13/0x30
[    1.858683]  free_pcp_prepare+0x251/0x2e0
[    1.858687]  free_unref_page+0x1d/0x110
[    1.858690]  __vunmap+0x28a/0x380
[    1.858693]  drm_fbdev_cleanup+0x5f/0xb0
[    1.858695]  drm_fbdev_fb_destroy+0x15/0x30
[    1.858697]  unregister_framebuffer+0x1d/0x30
[    1.858700]  drm_client_dev_unregister+0x69/0xe0
[    1.858702]  drm_dev_unregister+0x2e/0x80
[    1.858705]  drm_dev_unplug+0x21/0x40
[    1.858707]  simpledrm_remove+0x11/0x20
[    1.858710]  platform_remove+0x1f/0x40
[    1.858713]  __device_release_driver+0x17a/0x240
[    1.858715]  device_release_driver+0x24/0x30
[    1.858718]  bus_remove_device+0xd8/0x140
[    1.858720]  device_del+0x18b/0x3f0
[    1.858723]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.858726]  ? try_to_wake_up+0x94/0x5b0
[    1.858729]  platform_device_del.part.0+0x13/0x70
[    1.858733]  platform_device_unregister+0x1c/0x30
[    1.858735]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.858738]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.858741]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.858804]  local_pci_probe+0x45/0x80
[    1.858807]  ? pci_match_device+0xd7/0x130
[    1.858810]  pci_device_probe+0xc2/0x1d0
[    1.858813]  really_probe+0x1f5/0x3d0
[    1.858816]  __driver_probe_device+0xfe/0x180
[    1.858819]  driver_probe_device+0x1e/0x90
[    1.858821]  __driver_attach+0xc0/0x1c0
[    1.858824]  ? __device_attach_driver+0xe0/0xe0
[    1.858826]  ? __device_attach_driver+0xe0/0xe0
[    1.858829]  bus_for_each_dev+0x78/0xc0
[    1.858831]  bus_add_driver+0x149/0x1e0
[    1.858834]  driver_register+0x8f/0xe0
[    1.858836]  ? 0xffffffffc051d000
[    1.858838]  do_one_initcall+0x44/0x200
[    1.858841]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.858844]  do_init_module+0x5c/0x260
[    1.858847]  __do_sys_finit_module+0xb4/0x120
[    1.858852]  __do_fast_syscall_32+0x6b/0xe0
[    1.858855]  do_fast_syscall_32+0x2f/0x70
[    1.858857]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.858860] RIP: 0023:0xf7e51549
[    1.858862] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.858864] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.858867] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.858868] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.858870] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.858871] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.858873] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.858876]  </TASK>
[    1.858880] BUG: Bad page state in process systemd-udevd  pfn:102e2c
[    1.858885] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2c pfn:0x102e2c
[    1.858887] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.858889] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.858893] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8b08 0000000000000000
[    1.858894] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858896] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.858898] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858899] page dumped because: corrupted mapping in tail page
[    1.858900] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.858922] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.858924] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.858925] Call Trace:
[    1.858926]  <TASK>
[    1.858927]  dump_stack_lvl+0x34/0x44
[    1.858931]  bad_page.cold+0x63/0x94
[    1.858934]  free_tail_pages_check+0xd1/0x110
[    1.858937]  ? _raw_spin_lock+0x13/0x30
[    1.858939]  free_pcp_prepare+0x251/0x2e0
[    1.858942]  free_unref_page+0x1d/0x110
[    1.858945]  __vunmap+0x28a/0x380
[    1.858948]  drm_fbdev_cleanup+0x5f/0xb0
[    1.858951]  drm_fbdev_fb_destroy+0x15/0x30
[    1.858953]  unregister_framebuffer+0x1d/0x30
[    1.858956]  drm_client_dev_unregister+0x69/0xe0
[    1.858958]  drm_dev_unregister+0x2e/0x80
[    1.858960]  drm_dev_unplug+0x21/0x40
[    1.858963]  simpledrm_remove+0x11/0x20
[    1.858965]  platform_remove+0x1f/0x40
[    1.858968]  __device_release_driver+0x17a/0x240
[    1.858970]  device_release_driver+0x24/0x30
[    1.858973]  bus_remove_device+0xd8/0x140
[    1.858975]  device_del+0x18b/0x3f0
[    1.858978]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.858981]  ? try_to_wake_up+0x94/0x5b0
[    1.858983]  platform_device_del.part.0+0x13/0x70
[    1.858986]  platform_device_unregister+0x1c/0x30
[    1.858989]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.858993]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.858995]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.859055]  local_pci_probe+0x45/0x80
[    1.859058]  ? pci_match_device+0xd7/0x130
[    1.859060]  pci_device_probe+0xc2/0x1d0
[    1.859064]  really_probe+0x1f5/0x3d0
[    1.859066]  __driver_probe_device+0xfe/0x180
[    1.859069]  driver_probe_device+0x1e/0x90
[    1.859072]  __driver_attach+0xc0/0x1c0
[    1.859074]  ? __device_attach_driver+0xe0/0xe0
[    1.859076]  ? __device_attach_driver+0xe0/0xe0
[    1.859079]  bus_for_each_dev+0x78/0xc0
[    1.859081]  bus_add_driver+0x149/0x1e0
[    1.859084]  driver_register+0x8f/0xe0
[    1.859086]  ? 0xffffffffc051d000
[    1.859088]  do_one_initcall+0x44/0x200
[    1.859090]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.859093]  do_init_module+0x5c/0x260
[    1.859096]  __do_sys_finit_module+0xb4/0x120
[    1.859101]  __do_fast_syscall_32+0x6b/0xe0
[    1.859104]  do_fast_syscall_32+0x2f/0x70
[    1.859106]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.859109] RIP: 0023:0xf7e51549
[    1.859112] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.859113] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.859116] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.859118] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.859119] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.859120] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.859121] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.859124]  </TASK>
[    1.859128] BUG: Bad page state in process systemd-udevd  pfn:102e2d
[    1.859133] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2d pfn:0x102e2d
[    1.859136] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.859145] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.859149] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8b48 0000000000000000
[    1.859151] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859153] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.859154] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859155] page dumped because: corrupted mapping in tail page
[    1.859156] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.859189] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.859191] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.859193] Call Trace:
[    1.859194]  <TASK>
[    1.859195]  dump_stack_lvl+0x34/0x44
[    1.859199]  bad_page.cold+0x63/0x94
[    1.859202]  free_tail_pages_check+0xd1/0x110
[    1.859206]  ? _raw_spin_lock+0x13/0x30
[    1.859209]  free_pcp_prepare+0x251/0x2e0
[    1.859212]  free_unref_page+0x1d/0x110
[    1.859215]  __vunmap+0x28a/0x380
[    1.859218]  drm_fbdev_cleanup+0x5f/0xb0
[    1.859221]  drm_fbdev_fb_destroy+0x15/0x30
[    1.859223]  unregister_framebuffer+0x1d/0x30
[    1.859226]  drm_client_dev_unregister+0x69/0xe0
[    1.859228]  drm_dev_unregister+0x2e/0x80
[    1.859231]  drm_dev_unplug+0x21/0x40
[    1.859234]  simpledrm_remove+0x11/0x20
[    1.859236]  platform_remove+0x1f/0x40
[    1.859239]  __device_release_driver+0x17a/0x240
[    1.859242]  device_release_driver+0x24/0x30
[    1.859244]  bus_remove_device+0xd8/0x140
[    1.859246]  device_del+0x18b/0x3f0
[    1.859249]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.859252]  ? try_to_wake_up+0x94/0x5b0
[    1.859255]  platform_device_del.part.0+0x13/0x70
[    1.859258]  platform_device_unregister+0x1c/0x30
[    1.859261]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.859264]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.859267]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.859331]  local_pci_probe+0x45/0x80
[    1.859335]  ? pci_match_device+0xd7/0x130
[    1.859338]  pci_device_probe+0xc2/0x1d0
[    1.859341]  really_probe+0x1f5/0x3d0
[    1.859344]  __driver_probe_device+0xfe/0x180
[    1.859346]  driver_probe_device+0x1e/0x90
[    1.859349]  __driver_attach+0xc0/0x1c0
[    1.859351]  ? __device_attach_driver+0xe0/0xe0
[    1.859354]  ? __device_attach_driver+0xe0/0xe0
[    1.859356]  bus_for_each_dev+0x78/0xc0
[    1.859359]  bus_add_driver+0x149/0x1e0
[    1.859361]  driver_register+0x8f/0xe0
[    1.859364]  ? 0xffffffffc051d000
[    1.859366]  do_one_initcall+0x44/0x200
[    1.859369]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.859372]  do_init_module+0x5c/0x260
[    1.859375]  __do_sys_finit_module+0xb4/0x120
[    1.859380]  __do_fast_syscall_32+0x6b/0xe0
[    1.859382]  do_fast_syscall_32+0x2f/0x70
[    1.859385]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.859387] RIP: 0023:0xf7e51549
[    1.859389] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.859391] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.859394] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.859396] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.859397] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.859399] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.859400] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.859402]  </TASK>
[    1.859403] BUG: Bad page state in process systemd-udevd  pfn:102e2e
[    1.859409] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2e pfn:0x102e2e
[    1.859412] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.859413] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.859417] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8b88 0000000000000000
[    1.859418] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859420] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.859422] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859422] page dumped because: corrupted mapping in tail page
[    1.859423] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.859445] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.859448] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.859450] Call Trace:
[    1.859451]  <TASK>
[    1.859452]  dump_stack_lvl+0x34/0x44
[    1.859456]  bad_page.cold+0x63/0x94
[    1.859459]  free_tail_pages_check+0xd1/0x110
[    1.859463]  ? _raw_spin_lock+0x13/0x30
[    1.859466]  free_pcp_prepare+0x251/0x2e0
[    1.859469]  free_unref_page+0x1d/0x110
[    1.859472]  __vunmap+0x28a/0x380
[    1.859475]  drm_fbdev_cleanup+0x5f/0xb0
[    1.859478]  drm_fbdev_fb_destroy+0x15/0x30
[    1.859480]  unregister_framebuffer+0x1d/0x30
[    1.859483]  drm_client_dev_unregister+0x69/0xe0
[    1.859486]  drm_dev_unregister+0x2e/0x80
[    1.859488]  drm_dev_unplug+0x21/0x40
[    1.859491]  simpledrm_remove+0x11/0x20
[    1.859493]  platform_remove+0x1f/0x40
[    1.859496]  __device_release_driver+0x17a/0x240
[    1.859499]  device_release_driver+0x24/0x30
[    1.859501]  bus_remove_device+0xd8/0x140
[    1.859503]  device_del+0x18b/0x3f0
[    1.859506]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.859509]  ? try_to_wake_up+0x94/0x5b0
[    1.859512]  platform_device_del.part.0+0x13/0x70
[    1.859515]  platform_device_unregister+0x1c/0x30
[    1.859518]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.859521]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.859524]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.859586]  local_pci_probe+0x45/0x80
[    1.859590]  ? pci_match_device+0xd7/0x130
[    1.859593]  pci_device_probe+0xc2/0x1d0
[    1.859596]  really_probe+0x1f5/0x3d0
[    1.859599]  __driver_probe_device+0xfe/0x180
[    1.859602]  driver_probe_device+0x1e/0x90
[    1.859604]  __driver_attach+0xc0/0x1c0
[    1.859607]  ? __device_attach_driver+0xe0/0xe0
[    1.859609]  ? __device_attach_driver+0xe0/0xe0
[    1.859611]  bus_for_each_dev+0x78/0xc0
[    1.859614]  bus_add_driver+0x149/0x1e0
[    1.859616]  driver_register+0x8f/0xe0
[    1.859619]  ? 0xffffffffc051d000
[    1.859621]  do_one_initcall+0x44/0x200
[    1.859624]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.859627]  do_init_module+0x5c/0x260
[    1.859631]  __do_sys_finit_module+0xb4/0x120
[    1.859635]  __do_fast_syscall_32+0x6b/0xe0
[    1.859638]  do_fast_syscall_32+0x2f/0x70
[    1.859641]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.859644] RIP: 0023:0xf7e51549
[    1.859646] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.859648] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.859651] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.859652] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.859654] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.859655] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.859656] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.859659]  </TASK>
[    1.859694] BUG: Bad page state in process systemd-udevd  pfn:102e2f
[    1.859700] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2f pfn:0x102e2f
[    1.859702] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.859704] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.859707] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8bc8 0000000000000000
[    1.859709] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859710] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.859712] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859713] page dumped because: corrupted mapping in tail page
[    1.859714] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.859736] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.859739] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.859740] Call Trace:
[    1.859741]  <TASK>
[    1.859742]  dump_stack_lvl+0x34/0x44
[    1.859747]  bad_page.cold+0x63/0x94
[    1.859750]  free_tail_pages_check+0xd1/0x110
[    1.859753]  ? _raw_spin_lock+0x13/0x30
[    1.859756]  free_pcp_prepare+0x251/0x2e0
[    1.859759]  free_unref_page+0x1d/0x110
[    1.859763]  __vunmap+0x28a/0x380
[    1.859766]  drm_fbdev_cleanup+0x5f/0xb0
[    1.859769]  drm_fbdev_fb_destroy+0x15/0x30
[    1.859771]  unregister_framebuffer+0x1d/0x30
[    1.859774]  drm_client_dev_unregister+0x69/0xe0
[    1.859776]  drm_dev_unregister+0x2e/0x80
[    1.859779]  drm_dev_unplug+0x21/0x40
[    1.859781]  simpledrm_remove+0x11/0x20
[    1.859784]  platform_remove+0x1f/0x40
[    1.859787]  __device_release_driver+0x17a/0x240
[    1.859790]  device_release_driver+0x24/0x30
[    1.859793]  bus_remove_device+0xd8/0x140
[    1.859795]  device_del+0x18b/0x3f0
[    1.859798]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.859801]  ? try_to_wake_up+0x94/0x5b0
[    1.859804]  platform_device_del.part.0+0x13/0x70
[    1.859807]  platform_device_unregister+0x1c/0x30
[    1.859810]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.859813]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.859817]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.859883]  local_pci_probe+0x45/0x80
[    1.859886]  ? pci_match_device+0xd7/0x130
[    1.859889]  pci_device_probe+0xc2/0x1d0
[    1.859893]  really_probe+0x1f5/0x3d0
[    1.859896]  __driver_probe_device+0xfe/0x180
[    1.859899]  driver_probe_device+0x1e/0x90
[    1.859901]  __driver_attach+0xc0/0x1c0
[    1.859904]  ? __device_attach_driver+0xe0/0xe0
[    1.859906]  ? __device_attach_driver+0xe0/0xe0
[    1.859908]  bus_for_each_dev+0x78/0xc0
[    1.859911]  bus_add_driver+0x149/0x1e0
[    1.859913]  driver_register+0x8f/0xe0
[    1.859916]  ? 0xffffffffc051d000
[    1.859918]  do_one_initcall+0x44/0x200
[    1.859921]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.859925]  do_init_module+0x5c/0x260
[    1.859928]  __do_sys_finit_module+0xb4/0x120
[    1.859933]  __do_fast_syscall_32+0x6b/0xe0
[    1.859936]  do_fast_syscall_32+0x2f/0x70
[    1.859938]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.859941] RIP: 0023:0xf7e51549
[    1.859944] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.859946] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.859949] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.859951] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.859953] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.859954] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.859956] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.859958]  </TASK>
[    1.859967] BUG: Bad page state in process systemd-udevd  pfn:102e30
[    1.859972] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x30 pfn:0x102e30
[    1.859975] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.859977] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.860011] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8c08 0000000000000000
[    1.860013] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.860015] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.860016] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.860017] page dumped because: corrupted mapping in tail page
[    1.860018] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.860046] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.860048] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.860050] Call Trace:
[    1.860051]  <TASK>
[    1.860052]  dump_stack_lvl+0x34/0x44
[    1.860058]  bad_page.cold+0x63/0x94
[    1.860061]  free_tail_pages_check+0xd1/0x110
[    1.860065]  ? _raw_spin_lock+0x13/0x30
[    1.860068]  free_pcp_prepare+0x251/0x2e0
[    1.860071]  free_unref_page+0x1d/0x110
[    1.860075]  __vunmap+0x28a/0x380
[    1.860078]  drm_fbdev_cleanup+0x5f/0xb0
[    1.860080]  drm_fbdev_fb_destroy+0x15/0x30
[    1.860083]  unregister_framebuffer+0x1d/0x30
[    1.860086]  drm_client_dev_unregister+0x69/0xe0
[    1.860089]  drm_dev_unregister+0x2e/0x80
[    1.860092]  drm_dev_unplug+0x21/0x40
[    1.860094]  simpledrm_remove+0x11/0x20
[    1.860097]  platform_remove+0x1f/0x40
[    1.860100]  __device_release_driver+0x17a/0x240
[    1.860103]  device_release_driver+0x24/0x30
[    1.860105]  bus_remove_device+0xd8/0x140
[    1.860107]  device_del+0x18b/0x3f0
[    1.860110]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.860113]  ? try_to_wake_up+0x94/0x5b0
[    1.860116]  platform_device_del.part.0+0x13/0x70
[    1.860119]  platform_device_unregister+0x1c/0x30
[    1.860121]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.860124]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.860127]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.860192]  local_pci_probe+0x45/0x80
[    1.860196]  ? pci_match_device+0xd7/0x130
[    1.860198]  pci_device_probe+0xc2/0x1d0
[    1.860202]  really_probe+0x1f5/0x3d0
[    1.860205]  __driver_probe_device+0xfe/0x180
[    1.860207]  driver_probe_device+0x1e/0x90
[    1.860210]  __driver_attach+0xc0/0x1c0
[    1.860213]  ? __device_attach_driver+0xe0/0xe0
[    1.860215]  ? __device_attach_driver+0xe0/0xe0
[    1.860218]  bus_for_each_dev+0x78/0xc0
[    1.860221]  bus_add_driver+0x149/0x1e0
[    1.860224]  driver_register+0x8f/0xe0
[    1.860226]  ? 0xffffffffc051d000
[    1.860228]  do_one_initcall+0x44/0x200
[    1.860232]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.860235]  do_init_module+0x5c/0x260
[    1.860239]  __do_sys_finit_module+0xb4/0x120
[    1.860243]  __do_fast_syscall_32+0x6b/0xe0
[    1.860246]  do_fast_syscall_32+0x2f/0x70
[    1.860248]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.860251] RIP: 0023:0xf7e51549
[    1.860254] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.860256] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.860259] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.860261] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.860262] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.860264] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.860265] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.860268]  </TASK>
[    1.868859] BUG: Bad page state in process systemd-udevd  pfn:102e31
[    1.868869] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x31 pfn:0x102e31
[    1.868873] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.868875] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.868880] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8c48 0000000000000000
[    1.868882] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.868884] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.868885] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.868886] page dumped because: corrupted mapping in tail page
[    1.868887] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.868916] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.868919] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.868921] Call Trace:
[    1.868922]  <TASK>
[    1.868924]  dump_stack_lvl+0x34/0x44
[    1.868931]  bad_page.cold+0x63/0x94
[    1.868934]  free_tail_pages_check+0xd1/0x110
[    1.868939]  ? _raw_spin_lock+0x13/0x30
[    1.868943]  free_pcp_prepare+0x251/0x2e0
[    1.868946]  free_unref_page+0x1d/0x110
[    1.868950]  __vunmap+0x28a/0x380
[    1.868953]  drm_fbdev_cleanup+0x5f/0xb0
[    1.868957]  drm_fbdev_fb_destroy+0x15/0x30
[    1.868959]  unregister_framebuffer+0x1d/0x30
[    1.868963]  drm_client_dev_unregister+0x69/0xe0
[    1.868967]  drm_dev_unregister+0x2e/0x80
[    1.868970]  drm_dev_unplug+0x21/0x40
[    1.868973]  simpledrm_remove+0x11/0x20
[    1.868975]  platform_remove+0x1f/0x40
[    1.868979]  __device_release_driver+0x17a/0x240
[    1.868982]  device_release_driver+0x24/0x30
[    1.868985]  bus_remove_device+0xd8/0x140
[    1.868987]  device_del+0x18b/0x3f0
[    1.868990]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.868993]  ? try_to_wake_up+0x94/0x5b0
[    1.868997]  platform_device_del.part.0+0x13/0x70
[    1.869001]  platform_device_unregister+0x1c/0x30
[    1.869004]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.869008]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.869011]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.869081]  local_pci_probe+0x45/0x80
[    1.869085]  ? pci_match_device+0xd7/0x130
[    1.869089]  pci_device_probe+0xc2/0x1d0
[    1.869093]  really_probe+0x1f5/0x3d0
[    1.869095]  __driver_probe_device+0xfe/0x180
[    1.869098]  driver_probe_device+0x1e/0x90
[    1.869101]  __driver_attach+0xc0/0x1c0
[    1.869104]  ? __device_attach_driver+0xe0/0xe0
[    1.869106]  ? __device_attach_driver+0xe0/0xe0
[    1.869109]  bus_for_each_dev+0x78/0xc0
[    1.869112]  bus_add_driver+0x149/0x1e0
[    1.869114]  driver_register+0x8f/0xe0
[    1.869117]  ? 0xffffffffc051d000
[    1.869119]  do_one_initcall+0x44/0x200
[    1.869122]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.869126]  do_init_module+0x5c/0x260
[    1.869130]  __do_sys_finit_module+0xb4/0x120
[    1.869134]  __do_fast_syscall_32+0x6b/0xe0
[    1.869138]  do_fast_syscall_32+0x2f/0x70
[    1.869140]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.869143] RIP: 0023:0xf7e51549
[    1.869146] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.869148] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.869150] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.869152] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.869153] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.869154] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.869156] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.869158]  </TASK>
[    1.869160] BUG: Bad page state in process systemd-udevd  pfn:102e32
[    1.869164] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x32 pfn:0x102e32
[    1.869166] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.869168] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.869943] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8c88 0000000000000000
[    1.869947] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.869949] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.869951] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.869952] page dumped because: corrupted mapping in tail page
[    1.869954] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.869981] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.869985] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.869986] Call Trace:
[    1.869988]  <TASK>
[    1.869989]  dump_stack_lvl+0x34/0x44
[    1.869996]  bad_page.cold+0x63/0x94
[    1.870000]  free_tail_pages_check+0xd1/0x110
[    1.870004]  ? _raw_spin_lock+0x13/0x30
[    1.870008]  free_pcp_prepare+0x251/0x2e0
[    1.870011]  free_unref_page+0x1d/0x110
[    1.870014]  __vunmap+0x28a/0x380
[    1.870018]  drm_fbdev_cleanup+0x5f/0xb0
[    1.870021]  drm_fbdev_fb_destroy+0x15/0x30
[    1.870023]  unregister_framebuffer+0x1d/0x30
[    1.870027]  drm_client_dev_unregister+0x69/0xe0
[    1.870030]  drm_dev_unregister+0x2e/0x80
[    1.870034]  drm_dev_unplug+0x21/0x40
[    1.870036]  simpledrm_remove+0x11/0x20
[    1.870039]  platform_remove+0x1f/0x40
[    1.870042]  __device_release_driver+0x17a/0x240
[    1.870045]  device_release_driver+0x24/0x30
[    1.870047]  bus_remove_device+0xd8/0x140
[    1.870050]  device_del+0x18b/0x3f0
[    1.870053]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.870056]  ? try_to_wake_up+0x94/0x5b0
[    1.870059]  platform_device_del.part.0+0x13/0x70
[    1.870062]  platform_device_unregister+0x1c/0x30
[    1.870065]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.870069]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.870072]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.870142]  local_pci_probe+0x45/0x80
[    1.870145]  ? pci_match_device+0xd7/0x130
[    1.870148]  pci_device_probe+0xc2/0x1d0
[    1.870152]  really_probe+0x1f5/0x3d0
[    1.870155]  __driver_probe_device+0xfe/0x180
[    1.870158]  driver_probe_device+0x1e/0x90
[    1.870160]  __driver_attach+0xc0/0x1c0
[    1.870163]  ? __device_attach_driver+0xe0/0xe0
[    1.870165]  ? __device_attach_driver+0xe0/0xe0
[    1.870167]  bus_for_each_dev+0x78/0xc0
[    1.870170]  bus_add_driver+0x149/0x1e0
[    1.870173]  driver_register+0x8f/0xe0
[    1.870175]  ? 0xffffffffc051d000
[    1.870178]  do_one_initcall+0x44/0x200
[    1.870181]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.870185]  do_init_module+0x5c/0x260
[    1.870189]  __do_sys_finit_module+0xb4/0x120
[    1.870195]  __do_fast_syscall_32+0x6b/0xe0
[    1.870198]  do_fast_syscall_32+0x2f/0x70
[    1.870200]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.870203] RIP: 0023:0xf7e51549
[    1.870206] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.870208] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.870211] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.870213] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.870214] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.870216] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.870217] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.870220]  </TASK>
[    1.870340] BUG: Bad page state in process systemd-udevd  pfn:102e33
[    1.870348] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x33 pfn:0x102e33
[    1.870351] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.870353] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.870356] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8cc8 0000000000000000
[    1.870358] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870360] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.870362] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870363] page dumped because: corrupted mapping in tail page
[    1.870364] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.870386] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.870389] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.870390] Call Trace:
[    1.870391]  <TASK>
[    1.870392]  dump_stack_lvl+0x34/0x44
[    1.870396]  bad_page.cold+0x63/0x94
[    1.870399]  free_tail_pages_check+0xd1/0x110
[    1.870402]  ? _raw_spin_lock+0x13/0x30
[    1.870405]  free_pcp_prepare+0x251/0x2e0
[    1.870408]  free_unref_page+0x1d/0x110
[    1.870412]  __vunmap+0x28a/0x380
[    1.870415]  drm_fbdev_cleanup+0x5f/0xb0
[    1.870417]  drm_fbdev_fb_destroy+0x15/0x30
[    1.870419]  unregister_framebuffer+0x1d/0x30
[    1.870422]  drm_client_dev_unregister+0x69/0xe0
[    1.870425]  drm_dev_unregister+0x2e/0x80
[    1.870427]  drm_dev_unplug+0x21/0x40
[    1.870430]  simpledrm_remove+0x11/0x20
[    1.870432]  platform_remove+0x1f/0x40
[    1.870435]  __device_release_driver+0x17a/0x240
[    1.870437]  device_release_driver+0x24/0x30
[    1.870439]  bus_remove_device+0xd8/0x140
[    1.870442]  device_del+0x18b/0x3f0
[    1.870445]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.870447]  ? try_to_wake_up+0x94/0x5b0
[    1.870450]  platform_device_del.part.0+0x13/0x70
[    1.870453]  platform_device_unregister+0x1c/0x30
[    1.870456]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.870459]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.870462]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.870521]  local_pci_probe+0x45/0x80
[    1.870524]  ? pci_match_device+0xd7/0x130
[    1.870527]  pci_device_probe+0xc2/0x1d0
[    1.870530]  really_probe+0x1f5/0x3d0
[    1.870532]  __driver_probe_device+0xfe/0x180
[    1.870535]  driver_probe_device+0x1e/0x90
[    1.870538]  __driver_attach+0xc0/0x1c0
[    1.870540]  ? __device_attach_driver+0xe0/0xe0
[    1.870542]  ? __device_attach_driver+0xe0/0xe0
[    1.870545]  bus_for_each_dev+0x78/0xc0
[    1.870547]  bus_add_driver+0x149/0x1e0
[    1.870550]  driver_register+0x8f/0xe0
[    1.870552]  ? 0xffffffffc051d000
[    1.870554]  do_one_initcall+0x44/0x200
[    1.870557]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.870560]  do_init_module+0x5c/0x260
[    1.870563]  __do_sys_finit_module+0xb4/0x120
[    1.870567]  __do_fast_syscall_32+0x6b/0xe0
[    1.870570]  do_fast_syscall_32+0x2f/0x70
[    1.870572]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.870574] RIP: 0023:0xf7e51549
[    1.870576] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.870578] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.870581] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.870582] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.870584] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.870585] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.870586] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.870589]  </TASK>
[    1.870590] BUG: Bad page state in process systemd-udevd  pfn:102e34
[    1.870594] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x34 pfn:0x102e34
[    1.870596] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.870598] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.870601] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8d08 0000000000000000
[    1.870603] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870604] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.870606] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870607] page dumped because: corrupted mapping in tail page
[    1.870608] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.870629] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.870632] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.870633] Call Trace:
[    1.870634]  <TASK>
[    1.870635]  dump_stack_lvl+0x34/0x44
[    1.870639]  bad_page.cold+0x63/0x94
[    1.870641]  free_tail_pages_check+0xd1/0x110
[    1.870644]  ? _raw_spin_lock+0x13/0x30
[    1.870647]  free_pcp_prepare+0x251/0x2e0
[    1.870650]  free_unref_page+0x1d/0x110
[    1.870653]  __vunmap+0x28a/0x380
[    1.870656]  drm_fbdev_cleanup+0x5f/0xb0
[    1.870658]  drm_fbdev_fb_destroy+0x15/0x30
[    1.870660]  unregister_framebuffer+0x1d/0x30
[    1.870662]  drm_client_dev_unregister+0x69/0xe0
[    1.870665]  drm_dev_unregister+0x2e/0x80
[    1.870667]  drm_dev_unplug+0x21/0x40
[    1.870670]  simpledrm_remove+0x11/0x20
[    1.870672]  platform_remove+0x1f/0x40
[    1.870675]  __device_release_driver+0x17a/0x240
[    1.870677]  device_release_driver+0x24/0x30
[    1.870680]  bus_remove_device+0xd8/0x140
[    1.870682]  device_del+0x18b/0x3f0
[    1.870685]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.870688]  ? try_to_wake_up+0x94/0x5b0
[    1.870690]  platform_device_del.part.0+0x13/0x70
[    1.870693]  platform_device_unregister+0x1c/0x30
[    1.870696]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.870699]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.870702]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.870759]  local_pci_probe+0x45/0x80
[    1.870762]  ? pci_match_device+0xd7/0x130
[    1.870765]  pci_device_probe+0xc2/0x1d0
[    1.870768]  really_probe+0x1f5/0x3d0
[    1.870771]  __driver_probe_device+0xfe/0x180
[    1.870773]  driver_probe_device+0x1e/0x90
[    1.870776]  __driver_attach+0xc0/0x1c0
[    1.870778]  ? __device_attach_driver+0xe0/0xe0
[    1.870780]  ? __device_attach_driver+0xe0/0xe0
[    1.870783]  bus_for_each_dev+0x78/0xc0
[    1.870785]  bus_add_driver+0x149/0x1e0
[    1.870788]  driver_register+0x8f/0xe0
[    1.870790]  ? 0xffffffffc051d000
[    1.870792]  do_one_initcall+0x44/0x200
[    1.870794]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.870797]  do_init_module+0x5c/0x260
[    1.870800]  __do_sys_finit_module+0xb4/0x120
[    1.870804]  __do_fast_syscall_32+0x6b/0xe0
[    1.870807]  do_fast_syscall_32+0x2f/0x70
[    1.870809]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.870811] RIP: 0023:0xf7e51549
[    1.870813] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.870815] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.870818] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.870819] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.870820] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.870822] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.870823] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.870825]  </TASK>
[    1.870826] BUG: Bad page state in process systemd-udevd  pfn:102e35
[    1.870829] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x35 pfn:0x102e35
[    1.870832] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.870833] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.870836] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8d48 0000000000000000
[    1.870838] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870840] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.870841] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870842] page dumped because: corrupted mapping in tail page
[    1.870842] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.870863] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.870865] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.870866] Call Trace:
[    1.870867]  <TASK>
[    1.870868]  dump_stack_lvl+0x34/0x44
[    1.870872]  bad_page.cold+0x63/0x94
[    1.870874]  free_tail_pages_check+0xd1/0x110
[    1.870877]  ? _raw_spin_lock+0x13/0x30
[    1.870880]  free_pcp_prepare+0x251/0x2e0
[    1.870883]  free_unref_page+0x1d/0x110
[    1.870886]  __vunmap+0x28a/0x380
[    1.870889]  drm_fbdev_cleanup+0x5f/0xb0
[    1.870891]  drm_fbdev_fb_destroy+0x15/0x30
[    1.870893]  unregister_framebuffer+0x1d/0x30
[    1.870895]  drm_client_dev_unregister+0x69/0xe0
[    1.870898]  drm_dev_unregister+0x2e/0x80
[    1.870900]  drm_dev_unplug+0x21/0x40
[    1.870902]  simpledrm_remove+0x11/0x20
[    1.870904]  platform_remove+0x1f/0x40
[    1.870907]  __device_release_driver+0x17a/0x240
[    1.870909]  device_release_driver+0x24/0x30
[    1.870912]  bus_remove_device+0xd8/0x140
[    1.870915]  device_del+0x18b/0x3f0
[    1.870917]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.870920]  ? try_to_wake_up+0x94/0x5b0
[    1.870923]  platform_device_del.part.0+0x13/0x70
[    1.870925]  platform_device_unregister+0x1c/0x30
[    1.870928]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.870930]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.870933]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.870990]  local_pci_probe+0x45/0x80
[    1.870993]  ? pci_match_device+0xd7/0x130
[    1.870996]  pci_device_probe+0xc2/0x1d0
[    1.870999]  really_probe+0x1f5/0x3d0
[    1.871002]  __driver_probe_device+0xfe/0x180
[    1.871004]  driver_probe_device+0x1e/0x90
[    1.871007]  __driver_attach+0xc0/0x1c0
[    1.871009]  ? __device_attach_driver+0xe0/0xe0
[    1.871011]  ? __device_attach_driver+0xe0/0xe0
[    1.871014]  bus_for_each_dev+0x78/0xc0
[    1.871016]  bus_add_driver+0x149/0x1e0
[    1.871019]  driver_register+0x8f/0xe0
[    1.871021]  ? 0xffffffffc051d000
[    1.871023]  do_one_initcall+0x44/0x200
[    1.871026]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.871029]  do_init_module+0x5c/0x260
[    1.871033]  __do_sys_finit_module+0xb4/0x120
[    1.871037]  __do_fast_syscall_32+0x6b/0xe0
[    1.871040]  do_fast_syscall_32+0x2f/0x70
[    1.871043]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.871045] RIP: 0023:0xf7e51549
[    1.871048] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.871050] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.871052] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.871054] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.871055] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.871057] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.871058] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.871061]  </TASK>
[    1.871062] BUG: Bad page state in process systemd-udevd  pfn:102e36
[    1.871068] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x36 pfn:0x102e36
[    1.871070] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.871072] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.871075] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8d88 0000000000000000
[    1.871077] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871079] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.871080] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871081] page dumped because: corrupted mapping in tail page
[    1.871082] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.871103] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.871106] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.871107] Call Trace:
[    1.871109]  <TASK>
[    1.871110]  dump_stack_lvl+0x34/0x44
[    1.871114]  bad_page.cold+0x63/0x94
[    1.871117]  free_tail_pages_check+0xd1/0x110
[    1.871120]  ? _raw_spin_lock+0x13/0x30
[    1.871123]  free_pcp_prepare+0x251/0x2e0
[    1.871126]  free_unref_page+0x1d/0x110
[    1.871129]  __vunmap+0x28a/0x380
[    1.871133]  drm_fbdev_cleanup+0x5f/0xb0
[    1.871135]  drm_fbdev_fb_destroy+0x15/0x30
[    1.871137]  unregister_framebuffer+0x1d/0x30
[    1.871139]  drm_client_dev_unregister+0x69/0xe0
[    1.871142]  drm_dev_unregister+0x2e/0x80
[    1.871145]  drm_dev_unplug+0x21/0x40
[    1.871147]  simpledrm_remove+0x11/0x20
[    1.871150]  platform_remove+0x1f/0x40
[    1.871152]  __device_release_driver+0x17a/0x240
[    1.871155]  device_release_driver+0x24/0x30
[    1.871157]  bus_remove_device+0xd8/0x140
[    1.871160]  device_del+0x18b/0x3f0
[    1.871162]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.871165]  ? try_to_wake_up+0x94/0x5b0
[    1.871168]  platform_device_del.part.0+0x13/0x70
[    1.871171]  platform_device_unregister+0x1c/0x30
[    1.871174]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.871177]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.871180]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.871240]  local_pci_probe+0x45/0x80
[    1.871243]  ? pci_match_device+0xd7/0x130
[    1.871246]  pci_device_probe+0xc2/0x1d0
[    1.871249]  really_probe+0x1f5/0x3d0
[    1.871252]  __driver_probe_device+0xfe/0x180
[    1.871255]  driver_probe_device+0x1e/0x90
[    1.871258]  __driver_attach+0xc0/0x1c0
[    1.871260]  ? __device_attach_driver+0xe0/0xe0
[    1.871262]  ? __device_attach_driver+0xe0/0xe0
[    1.871265]  bus_for_each_dev+0x78/0xc0
[    1.871267]  bus_add_driver+0x149/0x1e0
[    1.871270]  driver_register+0x8f/0xe0
[    1.871273]  ? 0xffffffffc051d000
[    1.871274]  do_one_initcall+0x44/0x200
[    1.871277]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.871281]  do_init_module+0x5c/0x260
[    1.871284]  __do_sys_finit_module+0xb4/0x120
[    1.871288]  __do_fast_syscall_32+0x6b/0xe0
[    1.871291]  do_fast_syscall_32+0x2f/0x70
[    1.871293]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.871296] RIP: 0023:0xf7e51549
[    1.871299] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.871301] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.871304] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.871305] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.871306] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.871308] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.871309] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.871312]  </TASK>
[    1.871319] BUG: Bad page state in process systemd-udevd  pfn:102e37
[    1.871324] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x37 pfn:0x102e37
[    1.871327] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.871329] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.871332] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8dc8 0000000000000000
[    1.871334] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871336] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.871337] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871338] page dumped because: corrupted mapping in tail page
[    1.871339] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.871361] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.871363] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.871365] Call Trace:
[    1.871366]  <TASK>
[    1.871367]  dump_stack_lvl+0x34/0x44
[    1.871371]  bad_page.cold+0x63/0x94
[    1.871373]  free_tail_pages_check+0xd1/0x110
[    1.871377]  ? _raw_spin_lock+0x13/0x30
[    1.871380]  free_pcp_prepare+0x251/0x2e0
[    1.871383]  free_unref_page+0x1d/0x110
[    1.871386]  __vunmap+0x28a/0x380
[    1.871389]  drm_fbdev_cleanup+0x5f/0xb0
[    1.871391]  drm_fbdev_fb_destroy+0x15/0x30
[    1.871393]  unregister_framebuffer+0x1d/0x30
[    1.871396]  drm_client_dev_unregister+0x69/0xe0
[    1.871398]  drm_dev_unregister+0x2e/0x80
[    1.871401]  drm_dev_unplug+0x21/0x40
[    1.871404]  simpledrm_remove+0x11/0x20
[    1.871406]  platform_remove+0x1f/0x40
[    1.871409]  __device_release_driver+0x17a/0x240
[    1.871411]  device_release_driver+0x24/0x30
[    1.871414]  bus_remove_device+0xd8/0x140
[    1.871416]  device_del+0x18b/0x3f0
[    1.871419]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.871422]  ? try_to_wake_up+0x94/0x5b0
[    1.871424]  platform_device_del.part.0+0x13/0x70
[    1.871427]  platform_device_unregister+0x1c/0x30
[    1.871430]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.871433]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.871436]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.871494]  local_pci_probe+0x45/0x80
[    1.871497]  ? pci_match_device+0xd7/0x130
[    1.871500]  pci_device_probe+0xc2/0x1d0
[    1.871503]  really_probe+0x1f5/0x3d0
[    1.871506]  __driver_probe_device+0xfe/0x180
[    1.871508]  driver_probe_device+0x1e/0x90
[    1.871511]  __driver_attach+0xc0/0x1c0
[    1.871514]  ? __device_attach_driver+0xe0/0xe0
[    1.871517]  ? __device_attach_driver+0xe0/0xe0
[    1.871519]  bus_for_each_dev+0x78/0xc0
[    1.871522]  bus_add_driver+0x149/0x1e0
[    1.871524]  driver_register+0x8f/0xe0
[    1.871526]  ? 0xffffffffc051d000
[    1.871528]  do_one_initcall+0x44/0x200
[    1.871531]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.871534]  do_init_module+0x5c/0x260
[    1.871537]  __do_sys_finit_module+0xb4/0x120
[    1.871541]  __do_fast_syscall_32+0x6b/0xe0
[    1.871544]  do_fast_syscall_32+0x2f/0x70
[    1.871546]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.871549] RIP: 0023:0xf7e51549
[    1.871551] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.871553] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.871555] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.871557] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.871559] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.871560] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.871562] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.871565]  </TASK>
[    1.871643] BUG: Bad page state in process systemd-udevd  pfn:102e38
[    1.871650] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x38 pfn:0x102e38
[    1.871653] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.871654] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.871658] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8e08 0000000000000000
[    1.871660] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871662] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.871663] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871664] page dumped because: corrupted mapping in tail page
[    1.871665] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.871689] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.871691] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.871693] Call Trace:
[    1.871694]  <TASK>
[    1.871695]  dump_stack_lvl+0x34/0x44
[    1.871699]  bad_page.cold+0x63/0x94
[    1.871702]  free_tail_pages_check+0xd1/0x110
[    1.871705]  ? _raw_spin_lock+0x13/0x30
[    1.871708]  free_pcp_prepare+0x251/0x2e0
[    1.871712]  free_unref_page+0x1d/0x110
[    1.871715]  __vunmap+0x28a/0x380
[    1.871718]  drm_fbdev_cleanup+0x5f/0xb0
[    1.871720]  drm_fbdev_fb_destroy+0x15/0x30
[    1.871722]  unregister_framebuffer+0x1d/0x30
[    1.871725]  drm_client_dev_unregister+0x69/0xe0
[    1.871728]  drm_dev_unregister+0x2e/0x80
[    1.871731]  drm_dev_unplug+0x21/0x40
[    1.871733]  simpledrm_remove+0x11/0x20
[    1.871735]  platform_remove+0x1f/0x40
[    1.871738]  __device_release_driver+0x17a/0x240
[    1.871741]  device_release_driver+0x24/0x30
[    1.871743]  bus_remove_device+0xd8/0x140
[    1.871745]  device_del+0x18b/0x3f0
[    1.871748]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.871751]  ? try_to_wake_up+0x94/0x5b0
[    1.871754]  platform_device_del.part.0+0x13/0x70
[    1.871757]  platform_device_unregister+0x1c/0x30
[    1.871760]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.871763]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.871766]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.871829]  local_pci_probe+0x45/0x80
[    1.871832]  ? pci_match_device+0xd7/0x130
[    1.871835]  pci_device_probe+0xc2/0x1d0
[    1.871838]  really_probe+0x1f5/0x3d0
[    1.871841]  __driver_probe_device+0xfe/0x180
[    1.871843]  driver_probe_device+0x1e/0x90
[    1.871846]  __driver_attach+0xc0/0x1c0
[    1.871848]  ? __device_attach_driver+0xe0/0xe0
[    1.871851]  ? __device_attach_driver+0xe0/0xe0
[    1.871853]  bus_for_each_dev+0x78/0xc0
[    1.871856]  bus_add_driver+0x149/0x1e0
[    1.871858]  driver_register+0x8f/0xe0
[    1.871860]  ? 0xffffffffc051d000
[    1.871862]  do_one_initcall+0x44/0x200
[    1.871865]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.871868]  do_init_module+0x5c/0x260
[    1.871871]  __do_sys_finit_module+0xb4/0x120
[    1.871876]  __do_fast_syscall_32+0x6b/0xe0
[    1.871878]  do_fast_syscall_32+0x2f/0x70
[    1.871880]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.871883] RIP: 0023:0xf7e51549
[    1.871885] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.871887] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.871890] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.871891] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.871893] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.871894] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.871895] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.871898]  </TASK>
[    1.871899] BUG: Bad page state in process systemd-udevd  pfn:102e39
[    1.871903] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x39 pfn:0x102e39
[    1.871905] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.871907] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.871910] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8e48 0000000000000000
[    1.871912] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871913] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.871915] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871916] page dumped because: corrupted mapping in tail page
[    1.871917] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.871940] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.871942] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.871943] Call Trace:
[    1.871944]  <TASK>
[    1.871945]  dump_stack_lvl+0x34/0x44
[    1.871949]  bad_page.cold+0x63/0x94
[    1.871952]  free_tail_pages_check+0xd1/0x110
[    1.871955]  ? _raw_spin_lock+0x13/0x30
[    1.871957]  free_pcp_prepare+0x251/0x2e0
[    1.871961]  free_unref_page+0x1d/0x110
[    1.871964]  __vunmap+0x28a/0x380
[    1.871967]  drm_fbdev_cleanup+0x5f/0xb0
[    1.871969]  drm_fbdev_fb_destroy+0x15/0x30
[    1.871971]  unregister_framebuffer+0x1d/0x30
[    1.871973]  drm_client_dev_unregister+0x69/0xe0
[    1.871976]  drm_dev_unregister+0x2e/0x80
[    1.871979]  drm_dev_unplug+0x21/0x40
[    1.871981]  simpledrm_remove+0x11/0x20
[    1.871984]  platform_remove+0x1f/0x40
[    1.871986]  __device_release_driver+0x17a/0x240
[    1.871989]  device_release_driver+0x24/0x30
[    1.871991]  bus_remove_device+0xd8/0x140
[    1.871994]  device_del+0x18b/0x3f0
[    1.871996]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.871999]  ? try_to_wake_up+0x94/0x5b0
[    1.872002]  platform_device_del.part.0+0x13/0x70
[    1.872005]  platform_device_unregister+0x1c/0x30
[    1.872008]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.872011]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.872014]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.872071]  local_pci_probe+0x45/0x80
[    1.872073]  ? pci_match_device+0xd7/0x130
[    1.872076]  pci_device_probe+0xc2/0x1d0
[    1.872079]  really_probe+0x1f5/0x3d0
[    1.872082]  __driver_probe_device+0xfe/0x180
[    1.872085]  driver_probe_device+0x1e/0x90
[    1.872087]  __driver_attach+0xc0/0x1c0
[    1.872089]  ? __device_attach_driver+0xe0/0xe0
[    1.872092]  ? __device_attach_driver+0xe0/0xe0
[    1.872094]  bus_for_each_dev+0x78/0xc0
[    1.872097]  bus_add_driver+0x149/0x1e0
[    1.872099]  driver_register+0x8f/0xe0
[    1.872102]  ? 0xffffffffc051d000
[    1.872104]  do_one_initcall+0x44/0x200
[    1.872106]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.872109]  do_init_module+0x5c/0x260
[    1.872112]  __do_sys_finit_module+0xb4/0x120
[    1.872117]  __do_fast_syscall_32+0x6b/0xe0
[    1.872119]  do_fast_syscall_32+0x2f/0x70
[    1.872122]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.872124] RIP: 0023:0xf7e51549
[    1.872126] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.872128] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.872130] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.872132] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.872133] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.872135] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.872136] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.872139]  </TASK>
[    1.872243] BUG: Bad page state in process systemd-udevd  pfn:102e3a
[    1.872251] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3a pfn:0x102e3a
[    1.872253] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.872255] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.872259] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8e88 0000000000000000
[    1.872261] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.872262] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.872264] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.872265] page dumped because: corrupted mapping in tail page
[    1.872266] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.872289] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.872291] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.872293] Call Trace:
[    1.872294]  <TASK>
[    1.872295]  dump_stack_lvl+0x34/0x44
[    1.872299]  bad_page.cold+0x63/0x94
[    1.872302]  free_tail_pages_check+0xd1/0x110
[    1.872305]  ? _raw_spin_lock+0x13/0x30
[    1.872308]  free_pcp_prepare+0x251/0x2e0
[    1.872311]  free_unref_page+0x1d/0x110
[    1.872314]  __vunmap+0x28a/0x380
[    1.872317]  drm_fbdev_cleanup+0x5f/0xb0
[    1.872319]  drm_fbdev_fb_destroy+0x15/0x30
[    1.872321]  unregister_framebuffer+0x1d/0x30
[    1.872324]  drm_client_dev_unregister+0x69/0xe0
[    1.872327]  drm_dev_unregister+0x2e/0x80
[    1.872329]  drm_dev_unplug+0x21/0x40
[    1.872332]  simpledrm_remove+0x11/0x20
[    1.872334]  platform_remove+0x1f/0x40
[    1.872337]  __device_release_driver+0x17a/0x240
[    1.872340]  device_release_driver+0x24/0x30
[    1.872342]  bus_remove_device+0xd8/0x140
[    1.872345]  device_del+0x18b/0x3f0
[    1.872348]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.872350]  ? try_to_wake_up+0x94/0x5b0
[    1.872353]  platform_device_del.part.0+0x13/0x70
[    1.872356]  platform_device_unregister+0x1c/0x30
[    1.872359]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.872362]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.872365]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.872427]  local_pci_probe+0x45/0x80
[    1.872430]  ? pci_match_device+0xd7/0x130
[    1.872433]  pci_device_probe+0xc2/0x1d0
[    1.872437]  really_probe+0x1f5/0x3d0
[    1.872439]  __driver_probe_device+0xfe/0x180
[    1.872442]  driver_probe_device+0x1e/0x90
[    1.872445]  __driver_attach+0xc0/0x1c0
[    1.872447]  ? __device_attach_driver+0xe0/0xe0
[    1.872449]  ? __device_attach_driver+0xe0/0xe0
[    1.872451]  bus_for_each_dev+0x78/0xc0
[    1.872454]  bus_add_driver+0x149/0x1e0
[    1.872457]  driver_register+0x8f/0xe0
[    1.872459]  ? 0xffffffffc051d000
[    1.872461]  do_one_initcall+0x44/0x200
[    1.872464]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.872467]  do_init_module+0x5c/0x260
[    1.872470]  __do_sys_finit_module+0xb4/0x120
[    1.872474]  __do_fast_syscall_32+0x6b/0xe0
[    1.872477]  do_fast_syscall_32+0x2f/0x70
[    1.872479]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.872482] RIP: 0023:0xf7e51549
[    1.872484] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.872486] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.872488] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.872490] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.872491] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.872493] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.872494] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.872497]  </TASK>
[    1.872498] BUG: Bad page state in process systemd-udevd  pfn:102e3b
[    1.872502] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3b pfn:0x102e3b
[    1.872504] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.872506] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.872509] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8ec8 0000000000000000
[    1.872510] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.872512] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.872514] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.872515] page dumped because: corrupted mapping in tail page
[    1.872516] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.872537] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.872540] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.872541] Call Trace:
[    1.872542]  <TASK>
[    1.872543]  dump_stack_lvl+0x34/0x44
[    1.872546]  bad_page.cold+0x63/0x94
[    1.872549]  free_tail_pages_check+0xd1/0x110
[    1.872552]  ? _raw_spin_lock+0x13/0x30
[    1.872555]  free_pcp_prepare+0x251/0x2e0
[    1.872558]  free_unref_page+0x1d/0x110
[    1.872561]  __vunmap+0x28a/0x380
[    1.872563]  drm_fbdev_cleanup+0x5f/0xb0
[    1.872566]  drm_fbdev_fb_destroy+0x15/0x30
[    1.872568]  unregister_framebuffer+0x1d/0x30
[    1.872571]  drm_client_dev_unregister+0x69/0xe0
[    1.872573]  drm_dev_unregister+0x2e/0x80
[    1.872576]  drm_dev_unplug+0x21/0x40
[    1.872578]  simpledrm_remove+0x11/0x20
[    1.872580]  platform_remove+0x1f/0x40
[    1.872583]  __device_release_driver+0x17a/0x240
[    1.872585]  device_release_driver+0x24/0x30
[    1.872588]  bus_remove_device+0xd8/0x140
[    1.872590]  device_del+0x18b/0x3f0
[    1.872593]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.872596]  ? try_to_wake_up+0x94/0x5b0
[    1.872598]  platform_device_del.part.0+0x13/0x70
[    1.872601]  platform_device_unregister+0x1c/0x30
[    1.872604]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.872607]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.872610]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.872667]  local_pci_probe+0x45/0x80
[    1.872670]  ? pci_match_device+0xd7/0x130
[    1.872673]  pci_device_probe+0xc2/0x1d0
[    1.872676]  really_probe+0x1f5/0x3d0
[    1.872678]  __driver_probe_device+0xfe/0x180
[    1.872681]  driver_probe_device+0x1e/0x90
[    1.872683]  __driver_attach+0xc0/0x1c0
[    1.872686]  ? __device_attach_driver+0xe0/0xe0
[    1.872688]  ? __device_attach_driver+0xe0/0xe0
[    1.872690]  bus_for_each_dev+0x78/0xc0
[    1.872692]  bus_add_driver+0x149/0x1e0
[    1.872695]  driver_register+0x8f/0xe0
[    1.872697]  ? 0xffffffffc051d000
[    1.872699]  do_one_initcall+0x44/0x200
[    1.872701]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.872704]  do_init_module+0x5c/0x260
[    1.872706]  __do_sys_finit_module+0xb4/0x120
[    1.872710]  __do_fast_syscall_32+0x6b/0xe0
[    1.872713]  do_fast_syscall_32+0x2f/0x70
[    1.872715]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.872718] RIP: 0023:0xf7e51549
[    1.872720] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.872722] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.872724] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.872726] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.872727] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.872729] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.872730] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.872733]  </TASK>
[    1.873258] BUG: Bad page state in process systemd-udevd  pfn:102e3c
[    1.873270] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3c pfn:0x102e3c
[    1.873274] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.873276] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.873281] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8f08 0000000000000000
[    1.873283] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873285] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.873287] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873288] page dumped because: corrupted mapping in tail page
[    1.873289] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.873317] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.873320] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.873322] Call Trace:
[    1.873323]  <TASK>
[    1.873324]  dump_stack_lvl+0x34/0x44
[    1.873331]  bad_page.cold+0x63/0x94
[    1.873334]  free_tail_pages_check+0xd1/0x110
[    1.873339]  ? _raw_spin_lock+0x13/0x30
[    1.873342]  free_pcp_prepare+0x251/0x2e0
[    1.873346]  free_unref_page+0x1d/0x110
[    1.873350]  __vunmap+0x28a/0x380
[    1.873353]  drm_fbdev_cleanup+0x5f/0xb0
[    1.873356]  drm_fbdev_fb_destroy+0x15/0x30
[    1.873359]  unregister_framebuffer+0x1d/0x30
[    1.873363]  drm_client_dev_unregister+0x69/0xe0
[    1.873366]  drm_dev_unregister+0x2e/0x80
[    1.873369]  drm_dev_unplug+0x21/0x40
[    1.873372]  simpledrm_remove+0x11/0x20
[    1.873375]  platform_remove+0x1f/0x40
[    1.873378]  __device_release_driver+0x17a/0x240
[    1.873381]  device_release_driver+0x24/0x30
[    1.873384]  bus_remove_device+0xd8/0x140
[    1.873387]  device_del+0x18b/0x3f0
[    1.873390]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.873393]  ? try_to_wake_up+0x94/0x5b0
[    1.873396]  platform_device_del.part.0+0x13/0x70
[    1.873399]  platform_device_unregister+0x1c/0x30
[    1.873403]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.873406]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.873410]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.873481]  local_pci_probe+0x45/0x80
[    1.873484]  ? pci_match_device+0xd7/0x130
[    1.873487]  pci_device_probe+0xc2/0x1d0
[    1.873491]  really_probe+0x1f5/0x3d0
[    1.873494]  __driver_probe_device+0xfe/0x180
[    1.873496]  driver_probe_device+0x1e/0x90
[    1.873498]  __driver_attach+0xc0/0x1c0
[    1.873501]  ? __device_attach_driver+0xe0/0xe0
[    1.873503]  ? __device_attach_driver+0xe0/0xe0
[    1.873505]  bus_for_each_dev+0x78/0xc0
[    1.873508]  bus_add_driver+0x149/0x1e0
[    1.873511]  driver_register+0x8f/0xe0
[    1.873514]  ? 0xffffffffc051d000
[    1.873516]  do_one_initcall+0x44/0x200
[    1.873520]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.873523]  do_init_module+0x5c/0x260
[    1.873527]  __do_sys_finit_module+0xb4/0x120
[    1.873532]  __do_fast_syscall_32+0x6b/0xe0
[    1.873535]  do_fast_syscall_32+0x2f/0x70
[    1.873537]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.873540] RIP: 0023:0xf7e51549
[    1.873543] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.873545] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.873548] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.873550] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.873551] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.873553] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.873554] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.873557]  </TASK>
[    1.873558] BUG: Bad page state in process systemd-udevd  pfn:102e3d
[    1.873562] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3d pfn:0x102e3d
[    1.873565] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.873567] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.873570] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8f48 0000000000000000
[    1.873572] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873573] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.873575] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873576] page dumped because: corrupted mapping in tail page
[    1.873577] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.873599] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.873601] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.873603] Call Trace:
[    1.873604]  <TASK>
[    1.873605]  dump_stack_lvl+0x34/0x44
[    1.873608]  bad_page.cold+0x63/0x94
[    1.873611]  free_tail_pages_check+0xd1/0x110
[    1.873614]  ? _raw_spin_lock+0x13/0x30
[    1.873617]  free_pcp_prepare+0x251/0x2e0
[    1.873620]  free_unref_page+0x1d/0x110
[    1.873623]  __vunmap+0x28a/0x380
[    1.873626]  drm_fbdev_cleanup+0x5f/0xb0
[    1.873628]  drm_fbdev_fb_destroy+0x15/0x30
[    1.873630]  unregister_framebuffer+0x1d/0x30
[    1.873633]  drm_client_dev_unregister+0x69/0xe0
[    1.873636]  drm_dev_unregister+0x2e/0x80
[    1.873638]  drm_dev_unplug+0x21/0x40
[    1.873640]  simpledrm_remove+0x11/0x20
[    1.873643]  platform_remove+0x1f/0x40
[    1.873645]  __device_release_driver+0x17a/0x240
[    1.873648]  device_release_driver+0x24/0x30
[    1.873650]  bus_remove_device+0xd8/0x140
[    1.873653]  device_del+0x18b/0x3f0
[    1.873656]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.873658]  ? try_to_wake_up+0x94/0x5b0
[    1.873661]  platform_device_del.part.0+0x13/0x70
[    1.873664]  platform_device_unregister+0x1c/0x30
[    1.873667]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.873670]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.873673]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.873731]  local_pci_probe+0x45/0x80
[    1.873733]  ? pci_match_device+0xd7/0x130
[    1.873736]  pci_device_probe+0xc2/0x1d0
[    1.873739]  really_probe+0x1f5/0x3d0
[    1.873742]  __driver_probe_device+0xfe/0x180
[    1.873745]  driver_probe_device+0x1e/0x90
[    1.873747]  __driver_attach+0xc0/0x1c0
[    1.873749]  ? __device_attach_driver+0xe0/0xe0
[    1.873752]  ? __device_attach_driver+0xe0/0xe0
[    1.873754]  bus_for_each_dev+0x78/0xc0
[    1.873757]  bus_add_driver+0x149/0x1e0
[    1.873759]  driver_register+0x8f/0xe0
[    1.873762]  ? 0xffffffffc051d000
[    1.873764]  do_one_initcall+0x44/0x200
[    1.873766]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.873769]  do_init_module+0x5c/0x260
[    1.873772]  __do_sys_finit_module+0xb4/0x120
[    1.873776]  __do_fast_syscall_32+0x6b/0xe0
[    1.873779]  do_fast_syscall_32+0x2f/0x70
[    1.873781]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.873784] RIP: 0023:0xf7e51549
[    1.873786] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.873788] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.873790] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.873792] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.873793] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.873795] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.873796] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.873799]  </TASK>
[    1.873800] BUG: Bad page state in process systemd-udevd  pfn:102e3e
[    1.873803] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3e pfn:0x102e3e
[    1.873806] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.873807] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.873810] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8f88 0000000000000000
[    1.873812] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873814] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.873816] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873817] page dumped because: corrupted mapping in tail page
[    1.873818] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.873840] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.873842] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.873844] Call Trace:
[    1.873845]  <TASK>
[    1.873845]  dump_stack_lvl+0x34/0x44
[    1.873849]  bad_page.cold+0x63/0x94
[    1.873852]  free_tail_pages_check+0xd1/0x110
[    1.873855]  ? _raw_spin_lock+0x13/0x30
[    1.873858]  free_pcp_prepare+0x251/0x2e0
[    1.873861]  free_unref_page+0x1d/0x110
[    1.873864]  __vunmap+0x28a/0x380
[    1.873867]  drm_fbdev_cleanup+0x5f/0xb0
[    1.873869]  drm_fbdev_fb_destroy+0x15/0x30
[    1.873871]  unregister_framebuffer+0x1d/0x30
[    1.873874]  drm_client_dev_unregister+0x69/0xe0
[    1.873877]  drm_dev_unregister+0x2e/0x80
[    1.873879]  drm_dev_unplug+0x21/0x40
[    1.873882]  simpledrm_remove+0x11/0x20
[    1.873884]  platform_remove+0x1f/0x40
[    1.873887]  __device_release_driver+0x17a/0x240
[    1.873890]  device_release_driver+0x24/0x30
[    1.873892]  bus_remove_device+0xd8/0x140
[    1.873895]  device_del+0x18b/0x3f0
[    1.873897]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.873900]  ? try_to_wake_up+0x94/0x5b0
[    1.873903]  platform_device_del.part.0+0x13/0x70
[    1.873906]  platform_device_unregister+0x1c/0x30
[    1.873909]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.873911]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.873914]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.873972]  local_pci_probe+0x45/0x80
[    1.873975]  ? pci_match_device+0xd7/0x130
[    1.873978]  pci_device_probe+0xc2/0x1d0
[    1.873981]  really_probe+0x1f5/0x3d0
[    1.873984]  __driver_probe_device+0xfe/0x180
[    1.873986]  driver_probe_device+0x1e/0x90
[    1.873989]  __driver_attach+0xc0/0x1c0
[    1.873991]  ? __device_attach_driver+0xe0/0xe0
[    1.873993]  ? __device_attach_driver+0xe0/0xe0
[    1.873996]  bus_for_each_dev+0x78/0xc0
[    1.873998]  bus_add_driver+0x149/0x1e0
[    1.874001]  driver_register+0x8f/0xe0
[    1.874003]  ? 0xffffffffc051d000
[    1.874005]  do_one_initcall+0x44/0x200
[    1.874008]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.874011]  do_init_module+0x5c/0x260
[    1.874014]  __do_sys_finit_module+0xb4/0x120
[    1.874018]  __do_fast_syscall_32+0x6b/0xe0
[    1.874021]  do_fast_syscall_32+0x2f/0x70
[    1.874023]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.874025] RIP: 0023:0xf7e51549
[    1.874027] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.874029] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.874032] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.874033] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.874035] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.874036] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.874037] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.874040]  </TASK>
[    1.912659] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[    1.912666] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.912669] usb usb6: Product: OHCI PCI host controller
[    1.912671] usb usb6: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ohci_hcd
[    1.912673] usb usb6: SerialNumber: 0000:00:13.0
[    1.913150] hub 6-0:1.0: USB hub found
[    1.913191] hub 6-0:1.0: 5 ports detected
[    1.921853] [drm] initializing kernel modesetting (ARUBA 0x1002:0x9996 0x1002:0x9996 0x00).
[    1.921927] ATOM BIOS: 113
[    1.922032] radeon 0000:00:01.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
[    1.922036] radeon 0000:00:01.0: GTT: 1024M 0x0000000020000000 - 0x000000005FFFFFFF
[    1.922045] [drm] Detected VRAM RAM=512M, BAR=256M
[    1.922047] [drm] RAM width 64bits DDR
[    1.922148] [drm] radeon: 512M of VRAM memory ready
[    1.922155] [drm] radeon: 1024M of GTT memory ready.
[    1.924541] [drm] Loading ARUBA Microcode
[    1.925276] ohci-pci 0000:00:14.5: OHCI PCI host controller
[    1.925304] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 8
[    1.925391] ohci-pci 0000:00:14.5: irq 18, io mem 0xf01ca000
[    1.939579] [drm] Internal thermal controller without fan control
[    1.939934] [drm] radeon: dpm initialized
[    1.944358] [drm] Found VCE firmware/feedback version 50.0.1 / 17!
[    1.944414] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    1.981529] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[    1.981536] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.981538] usb usb8: Product: OHCI PCI host controller
[    1.981540] usb usb8: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ohci_hcd
[    1.981541] usb usb8: SerialNumber: 0000:00:14.5
[    1.983991] hub 8-0:1.0: USB hub found
[    1.984020] hub 8-0:1.0: 2 ports detected
[    1.985755] ohci-pci 0000:00:16.0: OHCI PCI host controller
[    1.985782] ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 9
[    1.985875] ohci-pci 0000:00:16.0: irq 18, io mem 0xf01cb000
[    2.019185] r8169 0000:04:00.0 enp4s0: renamed from eth0
[    2.044209] [drm] PCIE GART of 1024M enabled (table at 0x00000000001D6000).
[    2.044350] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[    2.044354] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.044356] usb usb9: Product: OHCI PCI host controller
[    2.044358] usb usb9: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ohci_hcd
[    2.044360] usb usb9: SerialNumber: 0000:00:16.0
[    2.044443] radeon 0000:00:01.0: WB enabled
[    2.044445] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000020000c00
[    2.044823] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000075a18
[    2.048011] hub 9-0:1.0: USB hub found
[    2.048043] hub 9-0:1.0: 4 ports detected
[    2.080191] usb 5-1: new low-speed USB device number 2 using ohci-pci
[    2.114195] radeon 0000:00:01.0: fence driver on ring 6 use gpu addr 0x0000000020000c18
[    2.114202] radeon 0000:00:01.0: fence driver on ring 7 use gpu addr 0x0000000020000c1c
[    2.114205] radeon 0000:00:01.0: fence driver on ring 1 use gpu addr 0x0000000020000c04
[    2.114207] radeon 0000:00:01.0: fence driver on ring 2 use gpu addr 0x0000000020000c08
[    2.114208] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000020000c0c
[    2.114210] radeon 0000:00:01.0: fence driver on ring 4 use gpu addr 0x0000000020000c10
[    2.133007] radeon 0000:00:01.0: radeon: MSI limited to 32-bit
[    2.133191] radeon 0000:00:01.0: radeon: using MSI.
[    2.133273] [drm] radeon: irq initialized.
[    2.194942] r8169 0000:04:00.0: Direct firmware load for rtl_nic/rtl8168f-1.fw failed with error -2
[    2.194951] r8169 0000:04:00.0: Unable to load firmware rtl_nic/rtl8168f-1.fw (-2)
[    2.199107] RTL8211E Gigabit Ethernet r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
[    2.231882] [drm] ring test on 0 succeeded in 2 usecs
[    2.231894] [drm] ring test on 3 succeeded in 4 usecs
[    2.231900] [drm] ring test on 4 succeeded in 3 usecs
[    2.249215] usb 5-1: New USB device found, idVendor=046d, idProduct=c016, bcdDevice= 3.40
[    2.249221] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.249224] usb 5-1: Product: Optical USB Mouse
[    2.249226] usb 5-1: Manufacturer: Logitech
[    2.256790] input: Logitech Optical USB Mouse as /devices/pci0000:00/0000:00:12.0/usb5/5-1/5-1:1.0/0003:046D:C016.0001/input/input11
[    2.257356] hid-generic 0003:046D:C016.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:00:12.0-1/input0
[    2.263786] r8169 0000:04:00.0 enp4s0: Link is Down
[    2.294453] [drm] ring test on 5 succeeded in 2 usecs
[    2.314480] [drm] UVD initialized successfully.
[    2.372181] random: crng init done
[    2.372186] random: 7 urandom warning(s) missed due to ratelimiting
[    2.427356] [drm] ring test on 6 succeeded in 17 usecs
[    2.427372] [drm] ring test on 7 succeeded in 4 usecs
[    2.427373] [drm] VCE initialized successfully.
[    2.427557] [drm] ib test on ring 0 succeeded in 0 usecs
[    2.427608] [drm] ib test on ring 3 succeeded in 0 usecs
[    2.427657] [drm] ib test on ring 4 succeeded in 0 usecs
[    2.771261] usb 5-2: new low-speed USB device number 3 using ohci-pci
[    2.936318] usb 5-2: New USB device found, idVendor=413c, idProduct=2106, bcdDevice= 1.01
[    2.936329] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.936333] usb 5-2: Product: Dell QuietKey Keyboard
[    2.936337] usb 5-2: Manufacturer: DELL
[    2.946752] input: DELL Dell QuietKey Keyboard as /devices/pci0000:00/0000:00:12.0/usb5/5-2/5-2:1.0/0003:413C:2106.0002/input/input12
[    2.951311] [drm] ib test on ring 5 succeeded
[    2.999623] hid-generic 0003:413C:2106.0002: input,hidraw1: USB HID v1.10 Keyboard [DELL Dell QuietKey Keyboard] on usb-0000:00:12.0-2/input0
[    3.479290] [drm] ib test on ring 6 succeeded
[    3.983284] [drm] ib test on ring 7 succeeded
[    3.988459] [drm] Radeon Display Connectors
[    3.988466] [drm] Connector 0:
[    3.988469] [drm]   DP-1
[    3.988470] [drm]   HPD1
[    3.988472] [drm]   DDC: 0x6530 0x6530 0x6534 0x6534 0x6538 0x6538 0x653c 0x653c
[    3.988478] [drm]   Encoders:
[    3.988479] [drm]     DFP1: INTERNAL_UNIPHY2
[    3.988482] [drm] Connector 1:
[    3.988484] [drm]   VGA-1
[    3.988486] [drm]   HPD2
[    3.988487] [drm]   DDC: 0x6540 0x6540 0x6544 0x6544 0x6548 0x6548 0x654c 0x654c
[    3.988492] [drm]   Encoders:
[    3.988494] [drm]     CRT1: INTERNAL_UNIPHY2
[    3.988496] [drm]     CRT1: NUTMEG
[    3.988497] [drm] Connector 2:
[    3.988499] [drm]   HDMI-A-1
[    3.988501] [drm]   HPD3
[    3.988502] [drm]   DDC: 0x6550 0x6550 0x6554 0x6554 0x6558 0x6558 0x655c 0x655c
[    3.988507] [drm]   Encoders:
[    3.988508] [drm]     DFP2: INTERNAL_UNIPHY
[    4.124830] [drm] fb mappable at 0xE03E9000
[    4.124836] [drm] vram apper at 0xE0000000
[    4.124838] [drm] size 5242880
[    4.124840] [drm] fb depth is 24
[    4.124842] [drm]    pitch is 5120
[    4.125287] fbcon: radeondrmfb (fb0) is primary device
[    4.213209] Console: switching to colour frame buffer device 160x64
[    4.217134] radeon 0000:00:01.0: [drm] fb0: radeondrmfb frame buffer device
[    4.222420] [drm] Initialized radeon 2.50.0 20080528 for 0000:00:01.0 on minor 0
[    4.341909] [drm] amdgpu kernel modesetting enabled.
[    4.912351] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[    4.912370] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready

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

* Re: BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
  2022-03-26 18:46   ` BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP) Paul Menzel
@ 2022-03-27 10:36     ` Paul Menzel
  2022-03-28  6:37       ` Song Liu
  0 siblings, 1 reply; 33+ messages in thread
From: Paul Menzel @ 2022-03-27 10:36 UTC (permalink / raw)
  To: Song Liu
  Cc: ast, daniel, andrii, kernel-team, peterz, x86, iii, Song Liu,
	bpf, netdev, linux-kernel, Thomas Gleixner, Ingo Molnar,
	Borislav Petkov, Dave Hansen, Rick P Edgecombe, regressions

Dear Song,


Am 26.03.22 um 19:46 schrieb Paul Menzel:
> #regzbot introduced: fac54e2bfb5be2b0bbf115fe80d45f59fd773048
> #regzbot title: BUG: Bad page state in process systemd-udevd

> Am 04.02.22 um 19:57 schrieb Song Liu:
>> From: Song Liu <songliubraving@fb.com>
>>
>> This enables module_alloc() to allocate huge page for 2MB+ requests.
>> To check the difference of this change, we need enable config
>> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
>> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
>> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
>>
>> Signed-off-by: Song Liu <songliubraving@fb.com>
>> ---
>>   arch/x86/Kconfig | 1 +
>>   1 file changed, 1 insertion(+)
>>
>> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>> index 6fddb63271d9..e0e0d00cf103 100644
>> --- a/arch/x86/Kconfig
>> +++ b/arch/x86/Kconfig
>> @@ -159,6 +159,7 @@ config X86
>>       select HAVE_ALIGNED_STRUCT_PAGE        if SLUB
>>       select HAVE_ARCH_AUDITSYSCALL
>>       select HAVE_ARCH_HUGE_VMAP        if X86_64 || X86_PAE
>> +    select HAVE_ARCH_HUGE_VMALLOC        if HAVE_ARCH_HUGE_VMAP
>>       select HAVE_ARCH_JUMP_LABEL
>>       select HAVE_ARCH_JUMP_LABEL_RELATIVE
>>       select HAVE_ARCH_KASAN            if X86_64
> 
> Testing Linus’ current master branch, Linux logs critical messages like 
> below:
> 
>      BUG: Bad page state in process systemd-udevd  pfn:102e03
> 
> I bisected to your commit fac54e2bfb5 (x86/Kconfig: select 
> HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP).

Sorry, I forget to mention, that this is a 32-bit (i686) userspace, but 
a 64-bit Linux kernel, so it might be the same issue as mentioned in 
commit eed1fcee556f (x86: Disable HAVE_ARCH_HUGE_VMALLOC on 32-bit x86), 
but didn’t fix the issue for 64-bit Linux kernel and 32-bit userspace.


Kind regards,

Paul

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

* Re: BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
  2022-03-27 10:36     ` Paul Menzel
@ 2022-03-28  6:37       ` Song Liu
  2022-03-28  6:51         ` Paul Menzel
  2022-03-28 19:21         ` Edgecombe, Rick P
  0 siblings, 2 replies; 33+ messages in thread
From: Song Liu @ 2022-03-28  6:37 UTC (permalink / raw)
  To: Paul Menzel, Edgecombe, Rick P
  Cc: Song Liu, Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
	Kernel Team, peterz, x86, iii, bpf, netdev, linux-kernel,
	Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen,
	Rick P Edgecombe, regressions

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

Thanks Paul for highlighting the issue. 

+ Rick, who highlighted some potential issues with this. (also attached
the stack trace). 

> On Mar 27, 2022, at 3:36 AM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
> 
> Dear Song,
> 
> 
> Am 26.03.22 um 19:46 schrieb Paul Menzel:
>> #regzbot introduced: fac54e2bfb5be2b0bbf115fe80d45f59fd773048
>> #regzbot title: BUG: Bad page state in process systemd-udevd
> 
>> Am 04.02.22 um 19:57 schrieb Song Liu:
>>> From: Song Liu <songliubraving@fb.com>
>>> 
>>> This enables module_alloc() to allocate huge page for 2MB+ requests.
>>> To check the difference of this change, we need enable config
>>> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
>>> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
>>> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
>>> 
>>> Signed-off-by: Song Liu <songliubraving@fb.com>
>>> ---
>>>   arch/x86/Kconfig | 1 +
>>>   1 file changed, 1 insertion(+)
>>> 
>>> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>>> index 6fddb63271d9..e0e0d00cf103 100644
>>> --- a/arch/x86/Kconfig
>>> +++ b/arch/x86/Kconfig
>>> @@ -159,6 +159,7 @@ config X86
>>>       select HAVE_ALIGNED_STRUCT_PAGE        if SLUB
>>>       select HAVE_ARCH_AUDITSYSCALL
>>>       select HAVE_ARCH_HUGE_VMAP        if X86_64 || X86_PAE
>>> +    select HAVE_ARCH_HUGE_VMALLOC        if HAVE_ARCH_HUGE_VMAP
>>>       select HAVE_ARCH_JUMP_LABEL
>>>       select HAVE_ARCH_JUMP_LABEL_RELATIVE
>>>       select HAVE_ARCH_KASAN            if X86_64
>> Testing Linus’ current master branch, Linux logs critical messages like below:
>>     BUG: Bad page state in process systemd-udevd  pfn:102e03
>> I bisected to your commit fac54e2bfb5 (x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP).
> 
> Sorry, I forget to mention, that this is a 32-bit (i686) userspace, but a 64-bit Linux kernel, so it might be the same issue as mentioned in commit eed1fcee556f (x86: Disable HAVE_ARCH_HUGE_VMALLOC on 32-bit x86), but didn’t fix the issue for 64-bit Linux kernel and 32-bit userspace.

I will look more into this tomorrow. To clarify, what is the 32-bit user 
space that triggers this? Is it systemd-udevd? Is the systemd also i686?

Thanks,
Song

[-- Attachment #2: linux-5.18-vmap-bad-page-state.txt --]
[-- Type: text/plain, Size: 275537 bytes --]

[    1.638676] usb usb1: SerialNumber: 0000:00:12.2
[    1.639632] [drm] radeon kernel modesetting enabled.
[    1.648147] hub 1-0:1.0: USB hub found
[    1.648871] hub 1-0:1.0: 5 ports detected
[    1.653689] ehci-pci 0000:00:13.2: EHCI Host Controller
[    1.653720] ehci-pci 0000:00:13.2: new USB bus registered, assigned bus number 2
[    1.653735] ehci-pci 0000:00:13.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    1.653744] ehci-pci 0000:00:13.2: debug port 1
[    1.653830] ehci-pci 0000:00:13.2: irq 17, io mem 0xf01ce000
[    1.660203] ehci-pci 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    1.660445] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[    1.660449] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.660452] usb usb2: Product: EHCI Host Controller
[    1.660454] usb usb2: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ehci_hcd
[    1.660456] usb usb2: SerialNumber: 0000:00:13.2
[    1.661002] hub 2-0:1.0: USB hub found
[    1.661032] hub 2-0:1.0: 5 ports detected
[    1.680441] r8169 0000:04:00.0: enabling device (0000 -> 0003)
[    1.687983] BUG: Bad page state in process systemd-udevd  pfn:102e03
[    1.687992] fbcon: Taking over console
[    1.688007] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3 pfn:0x102e03
[    1.688011] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.688013] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.688018] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b80c8 0000000000000000
[    1.688020] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688022] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.688023] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688024] page dumped because: corrupted mapping in tail page
[    1.688025] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.688045] CPU: 1 PID: 151 Comm: systemd-udevd Not tainted 5.16.0-11615-gfac54e2bfb5b #319
[    1.688048] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.688050] Call Trace:
[    1.688051]  <TASK>
[    1.688053]  dump_stack_lvl+0x34/0x44
[    1.688059]  bad_page.cold+0x63/0x94
[    1.688063]  free_tail_pages_check+0xd1/0x110
[    1.688067]  ? _raw_spin_lock+0x13/0x30
[    1.688071]  free_pcp_prepare+0x251/0x2e0
[    1.688075]  free_unref_page+0x1d/0x110
[    1.688078]  __vunmap+0x28a/0x380
[    1.688082]  drm_fbdev_cleanup+0x5f/0xb0
[    1.688085]  drm_fbdev_fb_destroy+0x15/0x30
[    1.688087]  unregister_framebuffer+0x1d/0x30
[    1.688091]  drm_client_dev_unregister+0x69/0xe0
[    1.688095]  drm_dev_unregister+0x2e/0x80
[    1.688098]  drm_dev_unplug+0x21/0x40
[    1.688100]  simpledrm_remove+0x11/0x20
[    1.688103]  platform_remove+0x1f/0x40
[    1.688106]  __device_release_driver+0x17a/0x240
[    1.688109]  device_release_driver+0x24/0x30
[    1.688112]  bus_remove_device+0xd8/0x140
[    1.688115]  device_del+0x18b/0x3f0
[    1.688118]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.688121]  ? try_to_wake_up+0x94/0x5b0
[    1.688124]  platform_device_del.part.0+0x13/0x70
[    1.688127]  platform_device_unregister+0x1c/0x30
[    1.688130]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.688134]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.688137]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.688212]  local_pci_probe+0x45/0x80
[    1.688216]  ? pci_match_device+0xd7/0x130
[    1.688219]  pci_device_probe+0xc2/0x1d0
[    1.688223]  really_probe+0x1f5/0x3d0
[    1.688226]  __driver_probe_device+0xfe/0x180
[    1.688229]  driver_probe_device+0x1e/0x90
[    1.688232]  __driver_attach+0xc0/0x1c0
[    1.688235]  ? __device_attach_driver+0xe0/0xe0
[    1.688237]  ? __device_attach_driver+0xe0/0xe0
[    1.688239]  bus_for_each_dev+0x78/0xc0
[    1.688242]  bus_add_driver+0x149/0x1e0
[    1.688245]  driver_register+0x8f/0xe0
[    1.688248]  ? 0xffffffffc051d000
[    1.688250]  do_one_initcall+0x44/0x200
[    1.688254]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.688257]  do_init_module+0x5c/0x260
[    1.688262]  __do_sys_finit_module+0xb4/0x120
[    1.688266]  __do_fast_syscall_32+0x6b/0xe0
[    1.688270]  do_fast_syscall_32+0x2f/0x70
[    1.688272]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.688275] RIP: 0023:0xf7e51549
[    1.688278] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.688281] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.688285] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.688287] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.688288] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.688290] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.688291] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.688294]  </TASK>
[    1.688355] Disabling lock debugging due to kernel taint
[    1.688357] BUG: Bad page state in process systemd-udevd  pfn:102e04
[    1.688361] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x4 pfn:0x102e04
[    1.688364] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.688366] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.688370] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8108 0000000000000000
[    1.688372] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688374] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.688376] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688377] page dumped because: corrupted mapping in tail page
[    1.688379] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.688397] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.688400] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.688401] Call Trace:
[    1.688403]  <TASK>
[    1.688404]  dump_stack_lvl+0x34/0x44
[    1.688409]  bad_page.cold+0x63/0x94
[    1.688412]  free_tail_pages_check+0xd1/0x110
[    1.688415]  ? _raw_spin_lock+0x13/0x30
[    1.688418]  free_pcp_prepare+0x251/0x2e0
[    1.688421]  free_unref_page+0x1d/0x110
[    1.688425]  __vunmap+0x28a/0x380
[    1.688428]  drm_fbdev_cleanup+0x5f/0xb0
[    1.688431]  drm_fbdev_fb_destroy+0x15/0x30
[    1.688434]  unregister_framebuffer+0x1d/0x30
[    1.688437]  drm_client_dev_unregister+0x69/0xe0
[    1.688440]  drm_dev_unregister+0x2e/0x80
[    1.688443]  drm_dev_unplug+0x21/0x40
[    1.688446]  simpledrm_remove+0x11/0x20
[    1.688449]  platform_remove+0x1f/0x40
[    1.688452]  __device_release_driver+0x17a/0x240
[    1.688455]  device_release_driver+0x24/0x30
[    1.688458]  bus_remove_device+0xd8/0x140
[    1.688460]  device_del+0x18b/0x3f0
[    1.688463]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.688466]  ? try_to_wake_up+0x94/0x5b0
[    1.688469]  platform_device_del.part.0+0x13/0x70
[    1.688472]  platform_device_unregister+0x1c/0x30
[    1.688476]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.688479]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.688482]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.688546]  local_pci_probe+0x45/0x80
[    1.688549]  ? pci_match_device+0xd7/0x130
[    1.688552]  pci_device_probe+0xc2/0x1d0
[    1.688555]  really_probe+0x1f5/0x3d0
[    1.688558]  __driver_probe_device+0xfe/0x180
[    1.688560]  driver_probe_device+0x1e/0x90
[    1.688563]  __driver_attach+0xc0/0x1c0
[    1.688565]  ? __device_attach_driver+0xe0/0xe0
[    1.688567]  ? __device_attach_driver+0xe0/0xe0
[    1.688570]  bus_for_each_dev+0x78/0xc0
[    1.688572]  bus_add_driver+0x149/0x1e0
[    1.688575]  driver_register+0x8f/0xe0
[    1.688577]  ? 0xffffffffc051d000
[    1.688579]  do_one_initcall+0x44/0x200
[    1.688581]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.688585]  do_init_module+0x5c/0x260
[    1.688588]  __do_sys_finit_module+0xb4/0x120
[    1.688592]  __do_fast_syscall_32+0x6b/0xe0
[    1.688595]  do_fast_syscall_32+0x2f/0x70
[    1.688597]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.688600] RIP: 0023:0xf7e51549
[    1.688602] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.688604] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.688606] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.688608] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.688609] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.688611] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.688612] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.688615]  </TASK>
[    1.688616] BUG: Bad page state in process systemd-udevd  pfn:102e05
[    1.688620] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x5 pfn:0x102e05
[    1.688622] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.688624] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.688627] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8148 0000000000000000
[    1.688629] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688631] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.688632] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688633] page dumped because: corrupted mapping in tail page
[    1.688634] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.688649] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.688652] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.688653] Call Trace:
[    1.688654]  <TASK>
[    1.688655]  dump_stack_lvl+0x34/0x44
[    1.688658]  bad_page.cold+0x63/0x94
[    1.688661]  free_tail_pages_check+0xd1/0x110
[    1.688664]  ? _raw_spin_lock+0x13/0x30
[    1.688667]  free_pcp_prepare+0x251/0x2e0
[    1.688670]  free_unref_page+0x1d/0x110
[    1.688673]  __vunmap+0x28a/0x380
[    1.688676]  drm_fbdev_cleanup+0x5f/0xb0
[    1.688678]  drm_fbdev_fb_destroy+0x15/0x30
[    1.688680]  unregister_framebuffer+0x1d/0x30
[    1.688683]  drm_client_dev_unregister+0x69/0xe0
[    1.688685]  drm_dev_unregister+0x2e/0x80
[    1.688688]  drm_dev_unplug+0x21/0x40
[    1.688690]  simpledrm_remove+0x11/0x20
[    1.688692]  platform_remove+0x1f/0x40
[    1.688695]  __device_release_driver+0x17a/0x240
[    1.688698]  device_release_driver+0x24/0x30
[    1.688700]  bus_remove_device+0xd8/0x140
[    1.688703]  device_del+0x18b/0x3f0
[    1.688705]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.688708]  ? try_to_wake_up+0x94/0x5b0
[    1.688711]  platform_device_del.part.0+0x13/0x70
[    1.688714]  platform_device_unregister+0x1c/0x30
[    1.688716]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.688719]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.688722]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.688779]  local_pci_probe+0x45/0x80
[    1.688782]  ? pci_match_device+0xd7/0x130
[    1.688785]  pci_device_probe+0xc2/0x1d0
[    1.688788]  really_probe+0x1f5/0x3d0
[    1.688791]  __driver_probe_device+0xfe/0x180
[    1.688794]  driver_probe_device+0x1e/0x90
[    1.688796]  __driver_attach+0xc0/0x1c0
[    1.688798]  ? __device_attach_driver+0xe0/0xe0
[    1.688801]  ? __device_attach_driver+0xe0/0xe0
[    1.688803]  bus_for_each_dev+0x78/0xc0
[    1.688805]  bus_add_driver+0x149/0x1e0
[    1.688808]  driver_register+0x8f/0xe0
[    1.688810]  ? 0xffffffffc051d000
[    1.688812]  do_one_initcall+0x44/0x200
[    1.688814]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.688817]  do_init_module+0x5c/0x260
[    1.688820]  __do_sys_finit_module+0xb4/0x120
[    1.688824]  __do_fast_syscall_32+0x6b/0xe0
[    1.688827]  do_fast_syscall_32+0x2f/0x70
[    1.688829]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.688831] RIP: 0023:0xf7e51549
[    1.688833] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.688835] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.688838] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.688839] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.688841] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.688842] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.688843] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.688846]  </TASK>
[    1.688847] BUG: Bad page state in process systemd-udevd  pfn:102e06
[    1.688850] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x6 pfn:0x102e06
[    1.688852] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.688854] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.688857] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8188 0000000000000000
[    1.688859] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688860] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.688862] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.688863] page dumped because: corrupted mapping in tail page
[    1.688864] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.688878] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.688881] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.688882] Call Trace:
[    1.688883]  <TASK>
[    1.688884]  dump_stack_lvl+0x34/0x44
[    1.688887]  bad_page.cold+0x63/0x94
[    1.688890]  free_tail_pages_check+0xd1/0x110
[    1.688892]  ? _raw_spin_lock+0x13/0x30
[    1.688895]  free_pcp_prepare+0x251/0x2e0
[    1.688898]  free_unref_page+0x1d/0x110
[    1.688901]  __vunmap+0x28a/0x380
[    1.688904]  drm_fbdev_cleanup+0x5f/0xb0
[    1.688906]  drm_fbdev_fb_destroy+0x15/0x30
[    1.688908]  unregister_framebuffer+0x1d/0x30
[    1.688911]  drm_client_dev_unregister+0x69/0xe0
[    1.688913]  drm_dev_unregister+0x2e/0x80
[    1.688915]  drm_dev_unplug+0x21/0x40
[    1.688918]  simpledrm_remove+0x11/0x20
[    1.688920]  platform_remove+0x1f/0x40
[    1.688923]  __device_release_driver+0x17a/0x240
[    1.688925]  device_release_driver+0x24/0x30
[    1.688928]  bus_remove_device+0xd8/0x140
[    1.688930]  device_del+0x18b/0x3f0
[    1.688933]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.688936]  ? try_to_wake_up+0x94/0x5b0
[    1.688938]  platform_device_del.part.0+0x13/0x70
[    1.688941]  platform_device_unregister+0x1c/0x30
[    1.688944]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.688947]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.688950]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.689007]  local_pci_probe+0x45/0x80
[    1.689010]  ? pci_match_device+0xd7/0x130
[    1.689013]  pci_device_probe+0xc2/0x1d0
[    1.689016]  really_probe+0x1f5/0x3d0
[    1.689018]  __driver_probe_device+0xfe/0x180
[    1.689021]  driver_probe_device+0x1e/0x90
[    1.689023]  __driver_attach+0xc0/0x1c0
[    1.689026]  ? __device_attach_driver+0xe0/0xe0
[    1.689028]  ? __device_attach_driver+0xe0/0xe0
[    1.689030]  bus_for_each_dev+0x78/0xc0
[    1.689033]  bus_add_driver+0x149/0x1e0
[    1.689035]  driver_register+0x8f/0xe0
[    1.689037]  ? 0xffffffffc051d000
[    1.689039]  do_one_initcall+0x44/0x200
[    1.689042]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.689045]  do_init_module+0x5c/0x260
[    1.689047]  __do_sys_finit_module+0xb4/0x120
[    1.689052]  __do_fast_syscall_32+0x6b/0xe0
[    1.689054]  do_fast_syscall_32+0x2f/0x70
[    1.689056]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.689058] RIP: 0023:0xf7e51549
[    1.689060] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.689062] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.689064] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.689066] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.689067] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.689069] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.689070] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.689073]  </TASK>
[    1.689074] BUG: Bad page state in process systemd-udevd  pfn:102e07
[    1.689077] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x7 pfn:0x102e07
[    1.689079] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.689081] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.689084] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b81c8 0000000000000000
[    1.689085] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.689087] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.689089] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.689090] page dumped because: corrupted mapping in tail page
[    1.689091] Modules linked in: r8169(+) k10temp snd_pcm(+) xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.689105] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.689107] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.689108] Call Trace:
[    1.689109]  <TASK>
[    1.689110]  dump_stack_lvl+0x34/0x44
[    1.689113]  bad_page.cold+0x63/0x94
[    1.689116]  free_tail_pages_check+0xd1/0x110
[    1.689119]  ? _raw_spin_lock+0x13/0x30
[    1.689121]  free_pcp_prepare+0x251/0x2e0
[    1.689124]  free_unref_page+0x1d/0x110
[    1.689127]  __vunmap+0x28a/0x380
[    1.689130]  drm_fbdev_cleanup+0x5f/0xb0
[    1.689132]  drm_fbdev_fb_destroy+0x15/0x30
[    1.689134]  unregister_framebuffer+0x1d/0x30
[    1.689137]  drm_client_dev_unregister+0x69/0xe0
[    1.689139]  drm_dev_unregister+0x2e/0x80
[    1.689142]  drm_dev_unplug+0x21/0x40
[    1.689144]  simpledrm_remove+0x11/0x20
[    1.689146]  platform_remove+0x1f/0x40
[    1.689149]  __device_release_driver+0x17a/0x240
[    1.689152]  device_release_driver+0x24/0x30
[    1.689154]  bus_remove_device+0xd8/0x140
[    1.689157]  device_del+0x18b/0x3f0
[    1.689160]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.689162]  ? try_to_wake_up+0x94/0x5b0
[    1.689165]  platform_device_del.part.0+0x13/0x70
[    1.689168]  platform_device_unregister+0x1c/0x30
[    1.689171]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.689173]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.689176]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.689233]  local_pci_probe+0x45/0x80
[    1.689236]  ? pci_match_device+0xd7/0x130
[    1.689239]  pci_device_probe+0xc2/0x1d0
[    1.689242]  really_probe+0x1f5/0x3d0
[    1.689244]  __driver_probe_device+0xfe/0x180
[    1.689247]  driver_probe_device+0x1e/0x90
[    1.689250]  __driver_attach+0xc0/0x1c0
[    1.689252]  ? __device_attach_driver+0xe0/0xe0
[    1.689254]  ? __device_attach_driver+0xe0/0xe0
[    1.689256]  bus_for_each_dev+0x78/0xc0
[    1.689259]  bus_add_driver+0x149/0x1e0
[    1.689261]  driver_register+0x8f/0xe0
[    1.689264]  ? 0xffffffffc051d000
[    1.689266]  do_one_initcall+0x44/0x200
[    1.689268]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.689271]  do_init_module+0x5c/0x260
[    1.689274]  __do_sys_finit_module+0xb4/0x120
[    1.689278]  __do_fast_syscall_32+0x6b/0xe0
[    1.689281]  do_fast_syscall_32+0x2f/0x70
[    1.689283]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.689285] RIP: 0023:0xf7e51549
[    1.689287] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.689289] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.689291] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.689293] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.689294] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.689295] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.689296] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.689299]  </TASK>
[    1.696005] BUG: Bad page state in process systemd-udevd  pfn:102e08
[    1.696015] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x8 pfn:0x102e08
[    1.696019] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.696021] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.696026] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8208 0000000000000000
[    1.696028] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.696030] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.696031] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.696032] page dumped because: corrupted mapping in tail page
[    1.696034] Modules linked in: pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.696053] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.696057] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.696061] Call Trace:
[    1.696063]  <TASK>
[    1.696065]  dump_stack_lvl+0x34/0x44
[    1.696071]  bad_page.cold+0x63/0x94
[    1.696075]  free_tail_pages_check+0xd1/0x110
[    1.696079]  ? _raw_spin_lock+0x13/0x30
[    1.696083]  free_pcp_prepare+0x251/0x2e0
[    1.696087]  free_unref_page+0x1d/0x110
[    1.696090]  __vunmap+0x28a/0x380
[    1.696093]  drm_fbdev_cleanup+0x5f/0xb0
[    1.696097]  drm_fbdev_fb_destroy+0x15/0x30
[    1.696099]  unregister_framebuffer+0x1d/0x30
[    1.696103]  drm_client_dev_unregister+0x69/0xe0
[    1.696106]  drm_dev_unregister+0x2e/0x80
[    1.696110]  drm_dev_unplug+0x21/0x40
[    1.696113]  simpledrm_remove+0x11/0x20
[    1.696115]  platform_remove+0x1f/0x40
[    1.696119]  __device_release_driver+0x17a/0x240
[    1.696122]  device_release_driver+0x24/0x30
[    1.696124]  bus_remove_device+0xd8/0x140
[    1.696127]  device_del+0x18b/0x3f0
[    1.696130]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.696133]  ? try_to_wake_up+0x94/0x5b0
[    1.696137]  platform_device_del.part.0+0x13/0x70
[    1.696140]  platform_device_unregister+0x1c/0x30
[    1.696143]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.696147]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.696150]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.696224]  local_pci_probe+0x45/0x80
[    1.696228]  ? pci_match_device+0xd7/0x130
[    1.696232]  pci_device_probe+0xc2/0x1d0
[    1.696235]  really_probe+0x1f5/0x3d0
[    1.696239]  __driver_probe_device+0xfe/0x180
[    1.696241]  driver_probe_device+0x1e/0x90
[    1.696244]  __driver_attach+0xc0/0x1c0
[    1.696246]  ? __device_attach_driver+0xe0/0xe0
[    1.696248]  ? __device_attach_driver+0xe0/0xe0
[    1.696250]  bus_for_each_dev+0x78/0xc0
[    1.696253]  bus_add_driver+0x149/0x1e0
[    1.696256]  driver_register+0x8f/0xe0
[    1.696258]  ? 0xffffffffc051d000
[    1.696260]  do_one_initcall+0x44/0x200
[    1.696264]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.696267]  do_init_module+0x5c/0x260
[    1.696271]  __do_sys_finit_module+0xb4/0x120
[    1.696276]  __do_fast_syscall_32+0x6b/0xe0
[    1.696279]  do_fast_syscall_32+0x2f/0x70
[    1.696281]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.696284] RIP: 0023:0xf7e51549
[    1.696287] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.696289] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.696292] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.696294] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.696296] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.696297] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.696298] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.696301]  </TASK>
[    1.703351] BUG: Bad page state in process systemd-udevd  pfn:102e09
[    1.703361] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x9 pfn:0x102e09
[    1.703365] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.703367] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.703372] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8248 0000000000000000
[    1.703374] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.703376] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.703377] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.703378] page dumped because: corrupted mapping in tail page
[    1.703379] Modules linked in: r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.703399] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.703402] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.703404] Call Trace:
[    1.703406]  <TASK>
[    1.703407]  dump_stack_lvl+0x34/0x44
[    1.703414]  bad_page.cold+0x63/0x94
[    1.703417]  free_tail_pages_check+0xd1/0x110
[    1.703421]  ? _raw_spin_lock+0x13/0x30
[    1.703426]  free_pcp_prepare+0x251/0x2e0
[    1.703429]  free_unref_page+0x1d/0x110
[    1.703433]  __vunmap+0x28a/0x380
[    1.703437]  drm_fbdev_cleanup+0x5f/0xb0
[    1.703440]  drm_fbdev_fb_destroy+0x15/0x30
[    1.703442]  unregister_framebuffer+0x1d/0x30
[    1.703446]  drm_client_dev_unregister+0x69/0xe0
[    1.703450]  drm_dev_unregister+0x2e/0x80
[    1.703453]  drm_dev_unplug+0x21/0x40
[    1.703455]  simpledrm_remove+0x11/0x20
[    1.703458]  platform_remove+0x1f/0x40
[    1.703462]  __device_release_driver+0x17a/0x240
[    1.703465]  device_release_driver+0x24/0x30
[    1.703468]  bus_remove_device+0xd8/0x140
[    1.703471]  device_del+0x18b/0x3f0
[    1.703474]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.703477]  ? try_to_wake_up+0x94/0x5b0
[    1.703481]  platform_device_del.part.0+0x13/0x70
[    1.703484]  platform_device_unregister+0x1c/0x30
[    1.703487]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.703492]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.703495]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.703570]  local_pci_probe+0x45/0x80
[    1.703574]  ? pci_match_device+0xd7/0x130
[    1.703577]  pci_device_probe+0xc2/0x1d0
[    1.703581]  really_probe+0x1f5/0x3d0
[    1.703583]  __driver_probe_device+0xfe/0x180
[    1.703585]  driver_probe_device+0x1e/0x90
[    1.703588]  __driver_attach+0xc0/0x1c0
[    1.703590]  ? __device_attach_driver+0xe0/0xe0
[    1.703592]  ? __device_attach_driver+0xe0/0xe0
[    1.703595]  bus_for_each_dev+0x78/0xc0
[    1.703598]  bus_add_driver+0x149/0x1e0
[    1.703601]  driver_register+0x8f/0xe0
[    1.703603]  ? 0xffffffffc051d000
[    1.703605]  do_one_initcall+0x44/0x200
[    1.703610]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.703614]  do_init_module+0x5c/0x260
[    1.703618]  __do_sys_finit_module+0xb4/0x120
[    1.703622]  __do_fast_syscall_32+0x6b/0xe0
[    1.703626]  do_fast_syscall_32+0x2f/0x70
[    1.703628]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.703632] RIP: 0023:0xf7e51549
[    1.703635] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.703637] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.703642] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.703644] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.703645] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.703647] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.703648] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.703650]  </TASK>
[    1.710663] ehci-pci 0000:00:16.2: EHCI Host Controller
[    1.710690] ehci-pci 0000:00:16.2: new USB bus registered, assigned bus number 3
[    1.710705] ehci-pci 0000:00:16.2: applying AMD SB700/SB800/Hudson-2/3 EHCI dummy qh workaround
[    1.710713] ehci-pci 0000:00:16.2: debug port 1
[    1.710797] ehci-pci 0000:00:16.2: irq 17, io mem 0xf01cf000
[    1.722385] BUG: Bad page state in process systemd-udevd  pfn:102e0a
[    1.722393] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xa pfn:0x102e0a
[    1.722397] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.722399] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.722404] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8288 0000000000000000
[    1.722406] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722408] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.722410] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722411] page dumped because: corrupted mapping in tail page
[    1.722412] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.722433] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.722436] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.722438] Call Trace:
[    1.722439]  <TASK>
[    1.722441]  dump_stack_lvl+0x34/0x44
[    1.722447]  bad_page.cold+0x63/0x94
[    1.722451]  free_tail_pages_check+0xd1/0x110
[    1.722455]  ? _raw_spin_lock+0x13/0x30
[    1.722460]  free_pcp_prepare+0x251/0x2e0
[    1.722463]  free_unref_page+0x1d/0x110
[    1.722467]  __vunmap+0x28a/0x380
[    1.722470]  drm_fbdev_cleanup+0x5f/0xb0
[    1.722474]  drm_fbdev_fb_destroy+0x15/0x30
[    1.722476]  unregister_framebuffer+0x1d/0x30
[    1.722480]  drm_client_dev_unregister+0x69/0xe0
[    1.722484]  drm_dev_unregister+0x2e/0x80
[    1.722487]  drm_dev_unplug+0x21/0x40
[    1.722490]  simpledrm_remove+0x11/0x20
[    1.722493]  platform_remove+0x1f/0x40
[    1.722496]  __device_release_driver+0x17a/0x240
[    1.722499]  device_release_driver+0x24/0x30
[    1.722502]  bus_remove_device+0xd8/0x140
[    1.722505]  device_del+0x18b/0x3f0
[    1.722508]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.722511]  ? try_to_wake_up+0x94/0x5b0
[    1.722515]  platform_device_del.part.0+0x13/0x70
[    1.722519]  platform_device_unregister+0x1c/0x30
[    1.722522]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.722526]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.722529]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.722603]  local_pci_probe+0x45/0x80
[    1.722607]  ? pci_match_device+0xd7/0x130
[    1.722610]  pci_device_probe+0xc2/0x1d0
[    1.722614]  really_probe+0x1f5/0x3d0
[    1.722617]  __driver_probe_device+0xfe/0x180
[    1.722620]  driver_probe_device+0x1e/0x90
[    1.722624]  __driver_attach+0xc0/0x1c0
[    1.722626]  ? __device_attach_driver+0xe0/0xe0
[    1.722628]  ? __device_attach_driver+0xe0/0xe0
[    1.722630]  bus_for_each_dev+0x78/0xc0
[    1.722634]  bus_add_driver+0x149/0x1e0
[    1.722636]  driver_register+0x8f/0xe0
[    1.722639]  ? 0xffffffffc051d000
[    1.722641]  do_one_initcall+0x44/0x200
[    1.722645]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.722648]  do_init_module+0x5c/0x260
[    1.722653]  __do_sys_finit_module+0xb4/0x120
[    1.722657]  __do_fast_syscall_32+0x6b/0xe0
[    1.722660]  do_fast_syscall_32+0x2f/0x70
[    1.722663]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.722666] RIP: 0023:0xf7e51549
[    1.722669] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.722671] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.722675] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.722676] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.722678] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.722679] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.722680] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.722683]  </TASK>
[    1.722684] BUG: Bad page state in process systemd-udevd  pfn:102e0b
[    1.722689] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xb pfn:0x102e0b
[    1.722692] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.722694] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.722697] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b82c8 0000000000000000
[    1.722699] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722701] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.722702] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722703] page dumped because: corrupted mapping in tail page
[    1.722704] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.722721] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.722724] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.722725] Call Trace:
[    1.722726]  <TASK>
[    1.722727]  dump_stack_lvl+0x34/0x44
[    1.722731]  bad_page.cold+0x63/0x94
[    1.722735]  free_tail_pages_check+0xd1/0x110
[    1.722738]  ? _raw_spin_lock+0x13/0x30
[    1.722741]  free_pcp_prepare+0x251/0x2e0
[    1.722744]  free_unref_page+0x1d/0x110
[    1.722748]  __vunmap+0x28a/0x380
[    1.722750]  drm_fbdev_cleanup+0x5f/0xb0
[    1.722753]  drm_fbdev_fb_destroy+0x15/0x30
[    1.722755]  unregister_framebuffer+0x1d/0x30
[    1.722758]  drm_client_dev_unregister+0x69/0xe0
[    1.722760]  drm_dev_unregister+0x2e/0x80
[    1.722763]  drm_dev_unplug+0x21/0x40
[    1.722766]  simpledrm_remove+0x11/0x20
[    1.722768]  platform_remove+0x1f/0x40
[    1.722771]  __device_release_driver+0x17a/0x240
[    1.722774]  device_release_driver+0x24/0x30
[    1.722777]  bus_remove_device+0xd8/0x140
[    1.722779]  device_del+0x18b/0x3f0
[    1.722782]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.722785]  ? try_to_wake_up+0x94/0x5b0
[    1.722788]  platform_device_del.part.0+0x13/0x70
[    1.722791]  platform_device_unregister+0x1c/0x30
[    1.722794]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.722797]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.722800]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.722862]  local_pci_probe+0x45/0x80
[    1.722865]  ? pci_match_device+0xd7/0x130
[    1.722868]  pci_device_probe+0xc2/0x1d0
[    1.722871]  really_probe+0x1f5/0x3d0
[    1.722874]  __driver_probe_device+0xfe/0x180
[    1.722877]  driver_probe_device+0x1e/0x90
[    1.722879]  __driver_attach+0xc0/0x1c0
[    1.722882]  ? __device_attach_driver+0xe0/0xe0
[    1.722884]  ? __device_attach_driver+0xe0/0xe0
[    1.722886]  bus_for_each_dev+0x78/0xc0
[    1.722889]  bus_add_driver+0x149/0x1e0
[    1.722891]  driver_register+0x8f/0xe0
[    1.722894]  ? 0xffffffffc051d000
[    1.722896]  do_one_initcall+0x44/0x200
[    1.722899]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.722902]  do_init_module+0x5c/0x260
[    1.722905]  __do_sys_finit_module+0xb4/0x120
[    1.722909]  __do_fast_syscall_32+0x6b/0xe0
[    1.722912]  do_fast_syscall_32+0x2f/0x70
[    1.722915]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.722917] RIP: 0023:0xf7e51549
[    1.722919] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.722921] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.722924] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.722925] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.722927] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.722928] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.722929] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.722932]  </TASK>
[    1.722933] BUG: Bad page state in process systemd-udevd  pfn:102e0c
[    1.722936] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xc pfn:0x102e0c
[    1.722939] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.722941] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.722944] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8308 0000000000000000
[    1.722946] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722947] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.722949] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.722951] page dumped because: corrupted mapping in tail page
[    1.722951] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.722968] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.722971] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.722972] Call Trace:
[    1.722973]  <TASK>
[    1.722974]  dump_stack_lvl+0x34/0x44
[    1.722978]  bad_page.cold+0x63/0x94
[    1.722981]  free_tail_pages_check+0xd1/0x110
[    1.722984]  ? _raw_spin_lock+0x13/0x30
[    1.722987]  free_pcp_prepare+0x251/0x2e0
[    1.722990]  free_unref_page+0x1d/0x110
[    1.722993]  __vunmap+0x28a/0x380
[    1.722996]  drm_fbdev_cleanup+0x5f/0xb0
[    1.722998]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723000]  unregister_framebuffer+0x1d/0x30
[    1.723003]  drm_client_dev_unregister+0x69/0xe0
[    1.723005]  drm_dev_unregister+0x2e/0x80
[    1.723007]  drm_dev_unplug+0x21/0x40
[    1.723010]  simpledrm_remove+0x11/0x20
[    1.723012]  platform_remove+0x1f/0x40
[    1.723015]  __device_release_driver+0x17a/0x240
[    1.723018]  device_release_driver+0x24/0x30
[    1.723020]  bus_remove_device+0xd8/0x140
[    1.723023]  device_del+0x18b/0x3f0
[    1.723025]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723028]  ? try_to_wake_up+0x94/0x5b0
[    1.723031]  platform_device_del.part.0+0x13/0x70
[    1.723034]  platform_device_unregister+0x1c/0x30
[    1.723037]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723040]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723043]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.723100]  local_pci_probe+0x45/0x80
[    1.723103]  ? pci_match_device+0xd7/0x130
[    1.723106]  pci_device_probe+0xc2/0x1d0
[    1.723109]  really_probe+0x1f5/0x3d0
[    1.723112]  __driver_probe_device+0xfe/0x180
[    1.723115]  driver_probe_device+0x1e/0x90
[    1.723117]  __driver_attach+0xc0/0x1c0
[    1.723120]  ? __device_attach_driver+0xe0/0xe0
[    1.723122]  ? __device_attach_driver+0xe0/0xe0
[    1.723124]  bus_for_each_dev+0x78/0xc0
[    1.723127]  bus_add_driver+0x149/0x1e0
[    1.723130]  driver_register+0x8f/0xe0
[    1.723132]  ? 0xffffffffc051d000
[    1.723134]  do_one_initcall+0x44/0x200
[    1.723137]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.723139]  do_init_module+0x5c/0x260
[    1.723142]  __do_sys_finit_module+0xb4/0x120
[    1.723147]  __do_fast_syscall_32+0x6b/0xe0
[    1.723149]  do_fast_syscall_32+0x2f/0x70
[    1.723152]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.723154] RIP: 0023:0xf7e51549
[    1.723156] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.723158] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.723161] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.723162] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.723163] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.723165] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.723166] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.723169]  </TASK>
[    1.723179] BUG: Bad page state in process systemd-udevd  pfn:102e0d
[    1.723182] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xd pfn:0x102e0d
[    1.723185] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.723186] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.723190] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8348 0000000000000000
[    1.723191] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723193] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.723195] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723196] page dumped because: corrupted mapping in tail page
[    1.723197] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.723213] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.723215] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.723216] Call Trace:
[    1.723217]  <TASK>
[    1.723218]  dump_stack_lvl+0x34/0x44
[    1.723222]  bad_page.cold+0x63/0x94
[    1.723225]  free_tail_pages_check+0xd1/0x110
[    1.723227]  ? _raw_spin_lock+0x13/0x30
[    1.723230]  free_pcp_prepare+0x251/0x2e0
[    1.723234]  free_unref_page+0x1d/0x110
[    1.723237]  __vunmap+0x28a/0x380
[    1.723240]  drm_fbdev_cleanup+0x5f/0xb0
[    1.723242]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723244]  unregister_framebuffer+0x1d/0x30
[    1.723247]  drm_client_dev_unregister+0x69/0xe0
[    1.723249]  drm_dev_unregister+0x2e/0x80
[    1.723252]  drm_dev_unplug+0x21/0x40
[    1.723254]  simpledrm_remove+0x11/0x20
[    1.723257]  platform_remove+0x1f/0x40
[    1.723260]  __device_release_driver+0x17a/0x240
[    1.723262]  device_release_driver+0x24/0x30
[    1.723265]  bus_remove_device+0xd8/0x140
[    1.723267]  device_del+0x18b/0x3f0
[    1.723270]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723273]  ? try_to_wake_up+0x94/0x5b0
[    1.723276]  platform_device_del.part.0+0x13/0x70
[    1.723279]  platform_device_unregister+0x1c/0x30
[    1.723282]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723285]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723288]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.723345]  local_pci_probe+0x45/0x80
[    1.723348]  ? pci_match_device+0xd7/0x130
[    1.723351]  pci_device_probe+0xc2/0x1d0
[    1.723354]  really_probe+0x1f5/0x3d0
[    1.723357]  __driver_probe_device+0xfe/0x180
[    1.723360]  driver_probe_device+0x1e/0x90
[    1.723362]  __driver_attach+0xc0/0x1c0
[    1.723365]  ? __device_attach_driver+0xe0/0xe0
[    1.723368]  ? __device_attach_driver+0xe0/0xe0
[    1.723370]  bus_for_each_dev+0x78/0xc0
[    1.723373]  bus_add_driver+0x149/0x1e0
[    1.723376]  driver_register+0x8f/0xe0
[    1.723379]  ? 0xffffffffc051d000
[    1.723381]  do_one_initcall+0x44/0x200
[    1.723384]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.723387]  do_init_module+0x5c/0x260
[    1.723390]  __do_sys_finit_module+0xb4/0x120
[    1.723394]  __do_fast_syscall_32+0x6b/0xe0
[    1.723396]  do_fast_syscall_32+0x2f/0x70
[    1.723398]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.723401] RIP: 0023:0xf7e51549
[    1.723403] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.723405] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.723407] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.723409] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.723410] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.723412] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.723413] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.723416]  </TASK>
[    1.723417] BUG: Bad page state in process systemd-udevd  pfn:102e0e
[    1.723420] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xe pfn:0x102e0e
[    1.723423] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.723424] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.723427] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8388 0000000000000000
[    1.723429] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723431] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.723432] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723433] page dumped because: corrupted mapping in tail page
[    1.723434] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.723451] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.723453] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.723454] Call Trace:
[    1.723455]  <TASK>
[    1.723456]  dump_stack_lvl+0x34/0x44
[    1.723460]  bad_page.cold+0x63/0x94
[    1.723462]  free_tail_pages_check+0xd1/0x110
[    1.723465]  ? _raw_spin_lock+0x13/0x30
[    1.723468]  free_pcp_prepare+0x251/0x2e0
[    1.723472]  free_unref_page+0x1d/0x110
[    1.723475]  __vunmap+0x28a/0x380
[    1.723478]  drm_fbdev_cleanup+0x5f/0xb0
[    1.723480]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723482]  unregister_framebuffer+0x1d/0x30
[    1.723484]  drm_client_dev_unregister+0x69/0xe0
[    1.723487]  drm_dev_unregister+0x2e/0x80
[    1.723490]  drm_dev_unplug+0x21/0x40
[    1.723493]  simpledrm_remove+0x11/0x20
[    1.723495]  platform_remove+0x1f/0x40
[    1.723498]  __device_release_driver+0x17a/0x240
[    1.723501]  device_release_driver+0x24/0x30
[    1.723503]  bus_remove_device+0xd8/0x140
[    1.723506]  device_del+0x18b/0x3f0
[    1.723508]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723511]  ? try_to_wake_up+0x94/0x5b0
[    1.723514]  platform_device_del.part.0+0x13/0x70
[    1.723517]  platform_device_unregister+0x1c/0x30
[    1.723520]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723523]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723526]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.723582]  local_pci_probe+0x45/0x80
[    1.723585]  ? pci_match_device+0xd7/0x130
[    1.723588]  pci_device_probe+0xc2/0x1d0
[    1.723592]  really_probe+0x1f5/0x3d0
[    1.723594]  __driver_probe_device+0xfe/0x180
[    1.723597]  driver_probe_device+0x1e/0x90
[    1.723599]  __driver_attach+0xc0/0x1c0
[    1.723602]  ? __device_attach_driver+0xe0/0xe0
[    1.723604]  ? __device_attach_driver+0xe0/0xe0
[    1.723606]  bus_for_each_dev+0x78/0xc0
[    1.723609]  bus_add_driver+0x149/0x1e0
[    1.723611]  driver_register+0x8f/0xe0
[    1.723614]  ? 0xffffffffc051d000
[    1.723616]  do_one_initcall+0x44/0x200
[    1.723618]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.723621]  do_init_module+0x5c/0x260
[    1.723624]  __do_sys_finit_module+0xb4/0x120
[    1.723629]  __do_fast_syscall_32+0x6b/0xe0
[    1.723631]  do_fast_syscall_32+0x2f/0x70
[    1.723633]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.723636] RIP: 0023:0xf7e51549
[    1.723638] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.723639] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.723642] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.723643] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.723645] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.723646] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.723647] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.723650]  </TASK>
[    1.723651] BUG: Bad page state in process systemd-udevd  pfn:102e0f
[    1.723654] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0xf pfn:0x102e0f
[    1.723657] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.723658] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.723661] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b83c8 0000000000000000
[    1.723663] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723665] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.723666] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723667] page dumped because: corrupted mapping in tail page
[    1.723668] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.723684] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.723687] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.723688] Call Trace:
[    1.723689]  <TASK>
[    1.723690]  dump_stack_lvl+0x34/0x44
[    1.723693]  bad_page.cold+0x63/0x94
[    1.723696]  free_tail_pages_check+0xd1/0x110
[    1.723699]  ? _raw_spin_lock+0x13/0x30
[    1.723702]  free_pcp_prepare+0x251/0x2e0
[    1.723705]  free_unref_page+0x1d/0x110
[    1.723708]  __vunmap+0x28a/0x380
[    1.723711]  drm_fbdev_cleanup+0x5f/0xb0
[    1.723713]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723715]  unregister_framebuffer+0x1d/0x30
[    1.723718]  drm_client_dev_unregister+0x69/0xe0
[    1.723720]  drm_dev_unregister+0x2e/0x80
[    1.723723]  drm_dev_unplug+0x21/0x40
[    1.723725]  simpledrm_remove+0x11/0x20
[    1.723728]  platform_remove+0x1f/0x40
[    1.723730]  __device_release_driver+0x17a/0x240
[    1.723733]  device_release_driver+0x24/0x30
[    1.723735]  bus_remove_device+0xd8/0x140
[    1.723738]  device_del+0x18b/0x3f0
[    1.723741]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723744]  ? try_to_wake_up+0x94/0x5b0
[    1.723746]  platform_device_del.part.0+0x13/0x70
[    1.723749]  platform_device_unregister+0x1c/0x30
[    1.723752]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723755]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723758]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.723815]  local_pci_probe+0x45/0x80
[    1.723818]  ? pci_match_device+0xd7/0x130
[    1.723821]  pci_device_probe+0xc2/0x1d0
[    1.723824]  really_probe+0x1f5/0x3d0
[    1.723827]  __driver_probe_device+0xfe/0x180
[    1.723829]  driver_probe_device+0x1e/0x90
[    1.723832]  __driver_attach+0xc0/0x1c0
[    1.723835]  ? __device_attach_driver+0xe0/0xe0
[    1.723837]  ? __device_attach_driver+0xe0/0xe0
[    1.723839]  bus_for_each_dev+0x78/0xc0
[    1.723842]  bus_add_driver+0x149/0x1e0
[    1.723844]  driver_register+0x8f/0xe0
[    1.723847]  ? 0xffffffffc051d000
[    1.723849]  do_one_initcall+0x44/0x200
[    1.723852]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.723855]  do_init_module+0x5c/0x260
[    1.723858]  __do_sys_finit_module+0xb4/0x120
[    1.723862]  __do_fast_syscall_32+0x6b/0xe0
[    1.723865]  do_fast_syscall_32+0x2f/0x70
[    1.723867]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.723870] RIP: 0023:0xf7e51549
[    1.723872] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.723874] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.723877] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.723878] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.723880] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.723881] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.723882] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.723885]  </TASK>
[    1.723886] BUG: Bad page state in process systemd-udevd  pfn:102e10
[    1.723889] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x10 pfn:0x102e10
[    1.723892] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.723893] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.723896] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8408 0000000000000000
[    1.723898] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723900] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.723901] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.723902] page dumped because: corrupted mapping in tail page
[    1.723903] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.723919] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.723922] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.723923] Call Trace:
[    1.723924]  <TASK>
[    1.723925]  dump_stack_lvl+0x34/0x44
[    1.723928]  bad_page.cold+0x63/0x94
[    1.723931]  free_tail_pages_check+0xd1/0x110
[    1.723934]  ? _raw_spin_lock+0x13/0x30
[    1.723937]  free_pcp_prepare+0x251/0x2e0
[    1.723940]  free_unref_page+0x1d/0x110
[    1.723943]  __vunmap+0x28a/0x380
[    1.723946]  drm_fbdev_cleanup+0x5f/0xb0
[    1.723948]  drm_fbdev_fb_destroy+0x15/0x30
[    1.723950]  unregister_framebuffer+0x1d/0x30
[    1.723953]  drm_client_dev_unregister+0x69/0xe0
[    1.723955]  drm_dev_unregister+0x2e/0x80
[    1.723958]  drm_dev_unplug+0x21/0x40
[    1.723960]  simpledrm_remove+0x11/0x20
[    1.723963]  platform_remove+0x1f/0x40
[    1.723965]  __device_release_driver+0x17a/0x240
[    1.723968]  device_release_driver+0x24/0x30
[    1.723971]  bus_remove_device+0xd8/0x140
[    1.723973]  device_del+0x18b/0x3f0
[    1.723976]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.723979]  ? try_to_wake_up+0x94/0x5b0
[    1.723981]  platform_device_del.part.0+0x13/0x70
[    1.723984]  platform_device_unregister+0x1c/0x30
[    1.723987]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.723990]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.723993]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.724050]  local_pci_probe+0x45/0x80
[    1.724053]  ? pci_match_device+0xd7/0x130
[    1.724056]  pci_device_probe+0xc2/0x1d0
[    1.724060]  really_probe+0x1f5/0x3d0
[    1.724062]  __driver_probe_device+0xfe/0x180
[    1.724065]  driver_probe_device+0x1e/0x90
[    1.724067]  __driver_attach+0xc0/0x1c0
[    1.724070]  ? __device_attach_driver+0xe0/0xe0
[    1.724072]  ? __device_attach_driver+0xe0/0xe0
[    1.724074]  bus_for_each_dev+0x78/0xc0
[    1.724077]  bus_add_driver+0x149/0x1e0
[    1.724080]  driver_register+0x8f/0xe0
[    1.724082]  ? 0xffffffffc051d000
[    1.724085]  do_one_initcall+0x44/0x200
[    1.724087]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.724090]  do_init_module+0x5c/0x260
[    1.724094]  __do_sys_finit_module+0xb4/0x120
[    1.724098]  __do_fast_syscall_32+0x6b/0xe0
[    1.724101]  do_fast_syscall_32+0x2f/0x70
[    1.724103]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.724106] RIP: 0023:0xf7e51549
[    1.724107] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.724109] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.724112] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.724113] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.724115] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.724116] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.724117] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.724120]  </TASK>
[    1.724121] BUG: Bad page state in process systemd-udevd  pfn:102e11
[    1.724124] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x11 pfn:0x102e11
[    1.724126] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.724128] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.724131] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8448 0000000000000000
[    1.724133] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.724134] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.724136] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.724137] page dumped because: corrupted mapping in tail page
[    1.724138] Modules linked in: snd_hda_codec snd_hda_core pcc_cpufreq(-) r8169(+) k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci(+) i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.724154] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.724156] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.724158] Call Trace:
[    1.724158]  <TASK>
[    1.724159]  dump_stack_lvl+0x34/0x44
[    1.724163]  bad_page.cold+0x63/0x94
[    1.724166]  free_tail_pages_check+0xd1/0x110
[    1.724168]  ? _raw_spin_lock+0x13/0x30
[    1.724171]  free_pcp_prepare+0x251/0x2e0
[    1.724175]  free_unref_page+0x1d/0x110
[    1.724178]  __vunmap+0x28a/0x380
[    1.724181]  drm_fbdev_cleanup+0x5f/0xb0
[    1.724183]  drm_fbdev_fb_destroy+0x15/0x30
[    1.724185]  unregister_framebuffer+0x1d/0x30
[    1.724188]  drm_client_dev_unregister+0x69/0xe0
[    1.724190]  drm_dev_unregister+0x2e/0x80
[    1.724193]  drm_dev_unplug+0x21/0x40
[    1.724195]  simpledrm_remove+0x11/0x20
[    1.724198]  platform_remove+0x1f/0x40
[    1.724200]  __device_release_driver+0x17a/0x240
[    1.724203]  device_release_driver+0x24/0x30
[    1.724206]  bus_remove_device+0xd8/0x140
[    1.724208]  device_del+0x18b/0x3f0
[    1.724211]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.724214]  ? try_to_wake_up+0x94/0x5b0
[    1.724216]  platform_device_del.part.0+0x13/0x70
[    1.724219]  platform_device_unregister+0x1c/0x30
[    1.724222]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.724225]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.724228]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.724286]  local_pci_probe+0x45/0x80
[    1.724289]  ? pci_match_device+0xd7/0x130
[    1.724292]  pci_device_probe+0xc2/0x1d0
[    1.724295]  really_probe+0x1f5/0x3d0
[    1.724298]  __driver_probe_device+0xfe/0x180
[    1.724300]  driver_probe_device+0x1e/0x90
[    1.724303]  __driver_attach+0xc0/0x1c0
[    1.724305]  ? __device_attach_driver+0xe0/0xe0
[    1.724308]  ? __device_attach_driver+0xe0/0xe0
[    1.724310]  bus_for_each_dev+0x78/0xc0
[    1.724313]  bus_add_driver+0x149/0x1e0
[    1.724315]  driver_register+0x8f/0xe0
[    1.724318]  ? 0xffffffffc051d000
[    1.724320]  do_one_initcall+0x44/0x200
[    1.724322]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.724325]  do_init_module+0x5c/0x260
[    1.724328]  __do_sys_finit_module+0xb4/0x120
[    1.724333]  __do_fast_syscall_32+0x6b/0xe0
[    1.724335]  do_fast_syscall_32+0x2f/0x70
[    1.724338]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.724340] RIP: 0023:0xf7e51549
[    1.724342] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.724344] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.724346] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.724348] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.724349] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.724350] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.724351] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.724354]  </TASK>
[    1.727274] ehci-pci 0000:00:16.2: USB 2.0 started, EHCI 1.00
[    1.727781] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[    1.727787] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.727790] usb usb3: Product: EHCI Host Controller
[    1.727792] usb usb3: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ehci_hcd
[    1.727793] usb usb3: SerialNumber: 0000:00:16.2
[    1.729095] r8169 0000:04:00.0 eth0: RTL8168f/8111f, 08:60:6e:74:7a:51, XID 480, IRQ 28
[    1.729103] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    1.733333] hub 3-0:1.0: USB hub found
[    1.735279] hub 3-0:1.0: 4 ports detected
[    1.747408] snd_hda_intel 0000:00:01.1: Force to non-snoop mode
[    1.748058] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.748084] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 4
[    1.752003] ohci-pci: OHCI PCI platform driver
[    1.753534] BUG: Bad page state in process systemd-udevd  pfn:102e12
[    1.753544] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x12 pfn:0x102e12
[    1.753548] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.753550] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.753554] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8488 0000000000000000
[    1.753557] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.753558] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.753560] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.753561] page dumped because: corrupted mapping in tail page
[    1.753563] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.753590] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.753593] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.753595] Call Trace:
[    1.753596]  <TASK>
[    1.753598]  dump_stack_lvl+0x34/0x44
[    1.753605]  bad_page.cold+0x63/0x94
[    1.753608]  free_tail_pages_check+0xd1/0x110
[    1.753612]  ? _raw_spin_lock+0x13/0x30
[    1.753616]  free_pcp_prepare+0x251/0x2e0
[    1.753620]  free_unref_page+0x1d/0x110
[    1.753624]  __vunmap+0x28a/0x380
[    1.753627]  drm_fbdev_cleanup+0x5f/0xb0
[    1.753631]  drm_fbdev_fb_destroy+0x15/0x30
[    1.753633]  unregister_framebuffer+0x1d/0x30
[    1.753637]  drm_client_dev_unregister+0x69/0xe0
[    1.753640]  drm_dev_unregister+0x2e/0x80
[    1.753644]  drm_dev_unplug+0x21/0x40
[    1.753647]  simpledrm_remove+0x11/0x20
[    1.753649]  platform_remove+0x1f/0x40
[    1.753653]  __device_release_driver+0x17a/0x240
[    1.753656]  device_release_driver+0x24/0x30
[    1.753659]  bus_remove_device+0xd8/0x140
[    1.753661]  device_del+0x18b/0x3f0
[    1.753665]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.753667]  ? try_to_wake_up+0x94/0x5b0
[    1.753671]  platform_device_del.part.0+0x13/0x70
[    1.753675]  platform_device_unregister+0x1c/0x30
[    1.753678]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.753682]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.753685]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.753757]  local_pci_probe+0x45/0x80
[    1.753761]  ? pci_match_device+0xd7/0x130
[    1.753765]  pci_device_probe+0xc2/0x1d0
[    1.753769]  really_probe+0x1f5/0x3d0
[    1.753771]  __driver_probe_device+0xfe/0x180
[    1.753774]  driver_probe_device+0x1e/0x90
[    1.753777]  __driver_attach+0xc0/0x1c0
[    1.753780]  ? __device_attach_driver+0xe0/0xe0
[    1.753782]  ? __device_attach_driver+0xe0/0xe0
[    1.753785]  bus_for_each_dev+0x78/0xc0
[    1.753787]  bus_add_driver+0x149/0x1e0
[    1.753790]  driver_register+0x8f/0xe0
[    1.753793]  ? 0xffffffffc051d000
[    1.753795]  do_one_initcall+0x44/0x200
[    1.753798]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.753802]  do_init_module+0x5c/0x260
[    1.753806]  __do_sys_finit_module+0xb4/0x120
[    1.753811]  __do_fast_syscall_32+0x6b/0xe0
[    1.753814]  do_fast_syscall_32+0x2f/0x70
[    1.753816]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.753820] RIP: 0023:0xf7e51549
[    1.753822] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.753825] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.753828] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.753829] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.753831] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.753832] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.753834] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.753837]  </TASK>
[    1.753838] BUG: Bad page state in process systemd-udevd  pfn:102e13
[    1.753842] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x13 pfn:0x102e13
[    1.753844] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.753846] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.753849] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b84c8 0000000000000000
[    1.753851] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.753853] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.753855] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.753856] page dumped because: corrupted mapping in tail page
[    1.753856] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.753875] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.753877] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.753879] Call Trace:
[    1.753880]  <TASK>
[    1.753881]  dump_stack_lvl+0x34/0x44
[    1.753884]  bad_page.cold+0x63/0x94
[    1.753887]  free_tail_pages_check+0xd1/0x110
[    1.753890]  ? _raw_spin_lock+0x13/0x30
[    1.753893]  free_pcp_prepare+0x251/0x2e0
[    1.753896]  free_unref_page+0x1d/0x110
[    1.753899]  __vunmap+0x28a/0x380
[    1.753902]  drm_fbdev_cleanup+0x5f/0xb0
[    1.753904]  drm_fbdev_fb_destroy+0x15/0x30
[    1.753906]  unregister_framebuffer+0x1d/0x30
[    1.753909]  drm_client_dev_unregister+0x69/0xe0
[    1.753912]  drm_dev_unregister+0x2e/0x80
[    1.753914]  drm_dev_unplug+0x21/0x40
[    1.753917]  simpledrm_remove+0x11/0x20
[    1.753919]  platform_remove+0x1f/0x40
[    1.753922]  __device_release_driver+0x17a/0x240
[    1.753924]  device_release_driver+0x24/0x30
[    1.753927]  bus_remove_device+0xd8/0x140
[    1.753930]  device_del+0x18b/0x3f0
[    1.753932]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.753935]  ? try_to_wake_up+0x94/0x5b0
[    1.753938]  platform_device_del.part.0+0x13/0x70
[    1.753941]  platform_device_unregister+0x1c/0x30
[    1.753943]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.753946]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.753950]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754007]  local_pci_probe+0x45/0x80
[    1.754009]  ? pci_match_device+0xd7/0x130
[    1.754012]  pci_device_probe+0xc2/0x1d0
[    1.754016]  really_probe+0x1f5/0x3d0
[    1.754018]  __driver_probe_device+0xfe/0x180
[    1.754021]  driver_probe_device+0x1e/0x90
[    1.754024]  __driver_attach+0xc0/0x1c0
[    1.754026]  ? __device_attach_driver+0xe0/0xe0
[    1.754028]  ? __device_attach_driver+0xe0/0xe0
[    1.754031]  bus_for_each_dev+0x78/0xc0
[    1.754033]  bus_add_driver+0x149/0x1e0
[    1.754036]  driver_register+0x8f/0xe0
[    1.754039]  ? 0xffffffffc051d000
[    1.754041]  do_one_initcall+0x44/0x200
[    1.754043]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.754047]  do_init_module+0x5c/0x260
[    1.754050]  __do_sys_finit_module+0xb4/0x120
[    1.754054]  __do_fast_syscall_32+0x6b/0xe0
[    1.754057]  do_fast_syscall_32+0x2f/0x70
[    1.754059]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.754062] RIP: 0023:0xf7e51549
[    1.754064] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.754066] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.754068] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.754070] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.754071] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.754073] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.754074] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.754077]  </TASK>
[    1.754078] BUG: Bad page state in process systemd-udevd  pfn:102e14
[    1.754081] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x14 pfn:0x102e14
[    1.754084] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.754085] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.754088] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8508 0000000000000000
[    1.754090] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754091] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.754093] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754094] page dumped because: corrupted mapping in tail page
[    1.754095] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.754113] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.754115] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.754116] Call Trace:
[    1.754117]  <TASK>
[    1.754118]  dump_stack_lvl+0x34/0x44
[    1.754122]  bad_page.cold+0x63/0x94
[    1.754125]  free_tail_pages_check+0xd1/0x110
[    1.754127]  ? _raw_spin_lock+0x13/0x30
[    1.754130]  free_pcp_prepare+0x251/0x2e0
[    1.754134]  free_unref_page+0x1d/0x110
[    1.754137]  __vunmap+0x28a/0x380
[    1.754139]  drm_fbdev_cleanup+0x5f/0xb0
[    1.754142]  drm_fbdev_fb_destroy+0x15/0x30
[    1.754144]  unregister_framebuffer+0x1d/0x30
[    1.754146]  drm_client_dev_unregister+0x69/0xe0
[    1.754149]  drm_dev_unregister+0x2e/0x80
[    1.754151]  drm_dev_unplug+0x21/0x40
[    1.754154]  simpledrm_remove+0x11/0x20
[    1.754156]  platform_remove+0x1f/0x40
[    1.754159]  __device_release_driver+0x17a/0x240
[    1.754161]  device_release_driver+0x24/0x30
[    1.754164]  bus_remove_device+0xd8/0x140
[    1.754166]  device_del+0x18b/0x3f0
[    1.754169]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.754172]  ? try_to_wake_up+0x94/0x5b0
[    1.754175]  platform_device_del.part.0+0x13/0x70
[    1.754178]  platform_device_unregister+0x1c/0x30
[    1.754181]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.754183]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.754186]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754242]  local_pci_probe+0x45/0x80
[    1.754245]  ? pci_match_device+0xd7/0x130
[    1.754248]  pci_device_probe+0xc2/0x1d0
[    1.754251]  really_probe+0x1f5/0x3d0
[    1.754254]  __driver_probe_device+0xfe/0x180
[    1.754257]  driver_probe_device+0x1e/0x90
[    1.754259]  __driver_attach+0xc0/0x1c0
[    1.754262]  ? __device_attach_driver+0xe0/0xe0
[    1.754264]  ? __device_attach_driver+0xe0/0xe0
[    1.754266]  bus_for_each_dev+0x78/0xc0
[    1.754269]  bus_add_driver+0x149/0x1e0
[    1.754271]  driver_register+0x8f/0xe0
[    1.754274]  ? 0xffffffffc051d000
[    1.754276]  do_one_initcall+0x44/0x200
[    1.754278]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.754281]  do_init_module+0x5c/0x260
[    1.754284]  __do_sys_finit_module+0xb4/0x120
[    1.754288]  __do_fast_syscall_32+0x6b/0xe0
[    1.754291]  do_fast_syscall_32+0x2f/0x70
[    1.754293]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.754295] RIP: 0023:0xf7e51549
[    1.754297] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.754299] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.754302] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.754304] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.754305] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.754307] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.754308] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.754310]  </TASK>
[    1.754325] BUG: Bad page state in process systemd-udevd  pfn:102e15
[    1.754329] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x15 pfn:0x102e15
[    1.754332] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.754333] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.754336] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8548 0000000000000000
[    1.754338] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754340] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.754342] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754343] page dumped because: corrupted mapping in tail page
[    1.754344] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.754362] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.754365] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.754366] Call Trace:
[    1.754367]  <TASK>
[    1.754368]  dump_stack_lvl+0x34/0x44
[    1.754372]  bad_page.cold+0x63/0x94
[    1.754375]  free_tail_pages_check+0xd1/0x110
[    1.754378]  ? _raw_spin_lock+0x13/0x30
[    1.754380]  free_pcp_prepare+0x251/0x2e0
[    1.754383]  free_unref_page+0x1d/0x110
[    1.754387]  __vunmap+0x28a/0x380
[    1.754390]  drm_fbdev_cleanup+0x5f/0xb0
[    1.754392]  drm_fbdev_fb_destroy+0x15/0x30
[    1.754394]  unregister_framebuffer+0x1d/0x30
[    1.754397]  drm_client_dev_unregister+0x69/0xe0
[    1.754399]  drm_dev_unregister+0x2e/0x80
[    1.754402]  drm_dev_unplug+0x21/0x40
[    1.754404]  simpledrm_remove+0x11/0x20
[    1.754406]  platform_remove+0x1f/0x40
[    1.754409]  __device_release_driver+0x17a/0x240
[    1.754412]  device_release_driver+0x24/0x30
[    1.754415]  bus_remove_device+0xd8/0x140
[    1.754417]  device_del+0x18b/0x3f0
[    1.754420]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.754423]  ? try_to_wake_up+0x94/0x5b0
[    1.754425]  platform_device_del.part.0+0x13/0x70
[    1.754428]  platform_device_unregister+0x1c/0x30
[    1.754431]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.754434]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.754437]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754494]  local_pci_probe+0x45/0x80
[    1.754497]  ? pci_match_device+0xd7/0x130
[    1.754500]  pci_device_probe+0xc2/0x1d0
[    1.754504]  really_probe+0x1f5/0x3d0
[    1.754506]  __driver_probe_device+0xfe/0x180
[    1.754509]  driver_probe_device+0x1e/0x90
[    1.754511]  __driver_attach+0xc0/0x1c0
[    1.754514]  ? __device_attach_driver+0xe0/0xe0
[    1.754516]  ? __device_attach_driver+0xe0/0xe0
[    1.754518]  bus_for_each_dev+0x78/0xc0
[    1.754521]  bus_add_driver+0x149/0x1e0
[    1.754523]  driver_register+0x8f/0xe0
[    1.754526]  ? 0xffffffffc051d000
[    1.754528]  do_one_initcall+0x44/0x200
[    1.754530]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.754533]  do_init_module+0x5c/0x260
[    1.754536]  __do_sys_finit_module+0xb4/0x120
[    1.754541]  __do_fast_syscall_32+0x6b/0xe0
[    1.754543]  do_fast_syscall_32+0x2f/0x70
[    1.754546]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.754548] RIP: 0023:0xf7e51549
[    1.754550] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.754552] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.754554] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.754556] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.754557] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.754558] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.754560] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.754562]  </TASK>
[    1.754563] BUG: Bad page state in process systemd-udevd  pfn:102e16
[    1.754566] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x16 pfn:0x102e16
[    1.754569] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.754571] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.754574] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8588 0000000000000000
[    1.754575] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754577] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.754579] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754580] page dumped because: corrupted mapping in tail page
[    1.754580] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.754599] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.754602] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.754603] Call Trace:
[    1.754604]  <TASK>
[    1.754605]  dump_stack_lvl+0x34/0x44
[    1.754609]  bad_page.cold+0x63/0x94
[    1.754611]  free_tail_pages_check+0xd1/0x110
[    1.754614]  ? _raw_spin_lock+0x13/0x30
[    1.754617]  free_pcp_prepare+0x251/0x2e0
[    1.754621]  free_unref_page+0x1d/0x110
[    1.754624]  __vunmap+0x28a/0x380
[    1.754627]  drm_fbdev_cleanup+0x5f/0xb0
[    1.754629]  drm_fbdev_fb_destroy+0x15/0x30
[    1.754631]  unregister_framebuffer+0x1d/0x30
[    1.754634]  drm_client_dev_unregister+0x69/0xe0
[    1.754636]  drm_dev_unregister+0x2e/0x80
[    1.754639]  drm_dev_unplug+0x21/0x40
[    1.754642]  simpledrm_remove+0x11/0x20
[    1.754644]  platform_remove+0x1f/0x40
[    1.754647]  __device_release_driver+0x17a/0x240
[    1.754649]  device_release_driver+0x24/0x30
[    1.754652]  bus_remove_device+0xd8/0x140
[    1.754654]  device_del+0x18b/0x3f0
[    1.754657]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.754660]  ? try_to_wake_up+0x94/0x5b0
[    1.754663]  platform_device_del.part.0+0x13/0x70
[    1.754666]  platform_device_unregister+0x1c/0x30
[    1.754668]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.754671]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.754674]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754731]  local_pci_probe+0x45/0x80
[    1.754734]  ? pci_match_device+0xd7/0x130
[    1.754737]  pci_device_probe+0xc2/0x1d0
[    1.754740]  really_probe+0x1f5/0x3d0
[    1.754743]  __driver_probe_device+0xfe/0x180
[    1.754745]  driver_probe_device+0x1e/0x90
[    1.754748]  __driver_attach+0xc0/0x1c0
[    1.754750]  ? __device_attach_driver+0xe0/0xe0
[    1.754753]  ? __device_attach_driver+0xe0/0xe0
[    1.754755]  bus_for_each_dev+0x78/0xc0
[    1.754758]  bus_add_driver+0x149/0x1e0
[    1.754760]  driver_register+0x8f/0xe0
[    1.754763]  ? 0xffffffffc051d000
[    1.754764]  do_one_initcall+0x44/0x200
[    1.754767]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.754770]  do_init_module+0x5c/0x260
[    1.754773]  __do_sys_finit_module+0xb4/0x120
[    1.754778]  __do_fast_syscall_32+0x6b/0xe0
[    1.754780]  do_fast_syscall_32+0x2f/0x70
[    1.754782]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.754785] RIP: 0023:0xf7e51549
[    1.754787] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.754789] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.754791] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.754793] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.754794] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.754795] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.754796] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.754799]  </TASK>
[    1.754800] BUG: Bad page state in process systemd-udevd  pfn:102e17
[    1.754803] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x17 pfn:0x102e17
[    1.754806] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.754808] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.754811] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b85c8 0000000000000000
[    1.754812] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754814] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.754816] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.754817] page dumped because: corrupted mapping in tail page
[    1.754818] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.754836] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.754838] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.754839] Call Trace:
[    1.754840]  <TASK>
[    1.754841]  dump_stack_lvl+0x34/0x44
[    1.754845]  bad_page.cold+0x63/0x94
[    1.754848]  free_tail_pages_check+0xd1/0x110
[    1.754851]  ? _raw_spin_lock+0x13/0x30
[    1.754853]  free_pcp_prepare+0x251/0x2e0
[    1.754856]  free_unref_page+0x1d/0x110
[    1.754859]  __vunmap+0x28a/0x380
[    1.754862]  drm_fbdev_cleanup+0x5f/0xb0
[    1.754865]  drm_fbdev_fb_destroy+0x15/0x30
[    1.754867]  unregister_framebuffer+0x1d/0x30
[    1.754870]  drm_client_dev_unregister+0x69/0xe0
[    1.754872]  drm_dev_unregister+0x2e/0x80
[    1.754875]  drm_dev_unplug+0x21/0x40
[    1.754877]  simpledrm_remove+0x11/0x20
[    1.754880]  platform_remove+0x1f/0x40
[    1.754882]  __device_release_driver+0x17a/0x240
[    1.754885]  device_release_driver+0x24/0x30
[    1.754887]  bus_remove_device+0xd8/0x140
[    1.754890]  device_del+0x18b/0x3f0
[    1.754893]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.754896]  ? try_to_wake_up+0x94/0x5b0
[    1.754898]  platform_device_del.part.0+0x13/0x70
[    1.754901]  platform_device_unregister+0x1c/0x30
[    1.754904]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.754907]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.754910]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.754967]  local_pci_probe+0x45/0x80
[    1.754970]  ? pci_match_device+0xd7/0x130
[    1.754973]  pci_device_probe+0xc2/0x1d0
[    1.754976]  really_probe+0x1f5/0x3d0
[    1.754978]  __driver_probe_device+0xfe/0x180
[    1.754981]  driver_probe_device+0x1e/0x90
[    1.754984]  __driver_attach+0xc0/0x1c0
[    1.754986]  ? __device_attach_driver+0xe0/0xe0
[    1.754988]  ? __device_attach_driver+0xe0/0xe0
[    1.754990]  bus_for_each_dev+0x78/0xc0
[    1.754992]  bus_add_driver+0x149/0x1e0
[    1.754995]  driver_register+0x8f/0xe0
[    1.754997]  ? 0xffffffffc051d000
[    1.754999]  do_one_initcall+0x44/0x200
[    1.755001]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.755004]  do_init_module+0x5c/0x260
[    1.755007]  __do_sys_finit_module+0xb4/0x120
[    1.755011]  __do_fast_syscall_32+0x6b/0xe0
[    1.755013]  do_fast_syscall_32+0x2f/0x70
[    1.755016]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.755018] RIP: 0023:0xf7e51549
[    1.755020] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.755022] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.755025] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.755026] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.755027] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.755029] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.755030] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.755032]  </TASK>
[    1.755034] BUG: Bad page state in process systemd-udevd  pfn:102e18
[    1.755037] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x18 pfn:0x102e18
[    1.755039] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.755041] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.755044] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8608 0000000000000000
[    1.755045] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.755047] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.755049] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.755049] page dumped because: corrupted mapping in tail page
[    1.755050] Modules linked in: ohci_pci(+) snd_hda_intel(+) xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.755067] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.755070] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.755071] Call Trace:
[    1.755072]  <TASK>
[    1.755073]  dump_stack_lvl+0x34/0x44
[    1.755077]  bad_page.cold+0x63/0x94
[    1.755079]  free_tail_pages_check+0xd1/0x110
[    1.755082]  ? _raw_spin_lock+0x13/0x30
[    1.755085]  free_pcp_prepare+0x251/0x2e0
[    1.755088]  free_unref_page+0x1d/0x110
[    1.755091]  __vunmap+0x28a/0x380
[    1.755094]  drm_fbdev_cleanup+0x5f/0xb0
[    1.755097]  drm_fbdev_fb_destroy+0x15/0x30
[    1.755099]  unregister_framebuffer+0x1d/0x30
[    1.755101]  drm_client_dev_unregister+0x69/0xe0
[    1.755104]  drm_dev_unregister+0x2e/0x80
[    1.755107]  drm_dev_unplug+0x21/0x40
[    1.755110]  simpledrm_remove+0x11/0x20
[    1.755112]  platform_remove+0x1f/0x40
[    1.755115]  __device_release_driver+0x17a/0x240
[    1.755117]  device_release_driver+0x24/0x30
[    1.755119]  bus_remove_device+0xd8/0x140
[    1.755122]  device_del+0x18b/0x3f0
[    1.755125]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.755128]  ? try_to_wake_up+0x94/0x5b0
[    1.755131]  platform_device_del.part.0+0x13/0x70
[    1.755134]  platform_device_unregister+0x1c/0x30
[    1.755137]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.755140]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.755143]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.755202]  local_pci_probe+0x45/0x80
[    1.755205]  ? pci_match_device+0xd7/0x130
[    1.755208]  pci_device_probe+0xc2/0x1d0
[    1.755211]  really_probe+0x1f5/0x3d0
[    1.755214]  __driver_probe_device+0xfe/0x180
[    1.755217]  driver_probe_device+0x1e/0x90
[    1.755220]  __driver_attach+0xc0/0x1c0
[    1.755222]  ? __device_attach_driver+0xe0/0xe0
[    1.755224]  ? __device_attach_driver+0xe0/0xe0
[    1.755226]  bus_for_each_dev+0x78/0xc0
[    1.755228]  bus_add_driver+0x149/0x1e0
[    1.755231]  driver_register+0x8f/0xe0
[    1.755233]  ? 0xffffffffc051d000
[    1.755235]  do_one_initcall+0x44/0x200
[    1.755238]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.755241]  do_init_module+0x5c/0x260
[    1.755244]  __do_sys_finit_module+0xb4/0x120
[    1.755249]  __do_fast_syscall_32+0x6b/0xe0
[    1.755251]  do_fast_syscall_32+0x2f/0x70
[    1.755254]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.755256] RIP: 0023:0xf7e51549
[    1.755258] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.755260] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.755262] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.755264] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.755265] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.755267] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.755268] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.755270]  </TASK>
[    1.767706] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.1/sound/card0/input1
[    1.767989] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.1/sound/card0/input2
[    1.772987] ohci-pci 0000:00:12.0: OHCI PCI host controller
[    1.773018] ohci-pci 0000:00:12.0: new USB bus registered, assigned bus number 5
[    1.773158] ohci-pci 0000:00:12.0: irq 18, io mem 0xf01c8000
[    1.806119] snd_hda_codec_realtek hdaudioC1D0: ALC892: SKU not ready 0x00000100
[    1.806906] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC892: line_outs=4 (0x14/0x16/0x15/0x17/0x0) type:line
[    1.806913] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    1.806916] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    1.806918] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    1.806919] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x1e/0x0
[    1.806920] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    1.806922] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    1.806924] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    1.806926] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    1.806927] snd_hda_codec_realtek hdaudioC1D0:      CD=0x1c
[    1.812099] BUG: Bad page state in process systemd-udevd  pfn:102e19
[    1.812109] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x19 pfn:0x102e19
[    1.812113] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.812115] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.812120] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8648 0000000000000000
[    1.812122] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.812124] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.812125] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.812126] page dumped because: corrupted mapping in tail page
[    1.812127] Modules linked in: snd_hda_codec_realtek(+) snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.813026] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.813031] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.813033] Call Trace:
[    1.813034]  <TASK>
[    1.813036]  dump_stack_lvl+0x34/0x44
[    1.813043]  bad_page.cold+0x63/0x94
[    1.813046]  free_tail_pages_check+0xd1/0x110
[    1.813051]  ? _raw_spin_lock+0x13/0x30
[    1.813055]  free_pcp_prepare+0x251/0x2e0
[    1.813059]  free_unref_page+0x1d/0x110
[    1.813062]  __vunmap+0x28a/0x380
[    1.813065]  drm_fbdev_cleanup+0x5f/0xb0
[    1.813069]  drm_fbdev_fb_destroy+0x15/0x30
[    1.813071]  unregister_framebuffer+0x1d/0x30
[    1.813075]  drm_client_dev_unregister+0x69/0xe0
[    1.813078]  drm_dev_unregister+0x2e/0x80
[    1.813082]  drm_dev_unplug+0x21/0x40
[    1.813084]  simpledrm_remove+0x11/0x20
[    1.813087]  platform_remove+0x1f/0x40
[    1.813090]  __device_release_driver+0x17a/0x240
[    1.813093]  device_release_driver+0x24/0x30
[    1.813095]  bus_remove_device+0xd8/0x140
[    1.813098]  device_del+0x18b/0x3f0
[    1.813101]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.813104]  ? try_to_wake_up+0x94/0x5b0
[    1.813107]  platform_device_del.part.0+0x13/0x70
[    1.813110]  platform_device_unregister+0x1c/0x30
[    1.813113]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.813117]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.813120]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.813191]  local_pci_probe+0x45/0x80
[    1.813195]  ? pci_match_device+0xd7/0x130
[    1.813199]  pci_device_probe+0xc2/0x1d0
[    1.813203]  really_probe+0x1f5/0x3d0
[    1.813206]  __driver_probe_device+0xfe/0x180
[    1.813209]  driver_probe_device+0x1e/0x90
[    1.813212]  __driver_attach+0xc0/0x1c0
[    1.813214]  ? __device_attach_driver+0xe0/0xe0
[    1.813216]  ? __device_attach_driver+0xe0/0xe0
[    1.813219]  bus_for_each_dev+0x78/0xc0
[    1.813221]  bus_add_driver+0x149/0x1e0
[    1.813224]  driver_register+0x8f/0xe0
[    1.813226]  ? 0xffffffffc051d000
[    1.813228]  do_one_initcall+0x44/0x200
[    1.813232]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.813235]  do_init_module+0x5c/0x260
[    1.813240]  __do_sys_finit_module+0xb4/0x120
[    1.813244]  __do_fast_syscall_32+0x6b/0xe0
[    1.813247]  do_fast_syscall_32+0x2f/0x70
[    1.813250]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.813253] RIP: 0023:0xf7e51549
[    1.813256] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.813258] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.813261] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.813263] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.813264] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.813266] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.813267] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.813270]  </TASK>
[    1.818974] BUG: Bad page state in process systemd-udevd  pfn:102e1a
[    1.818989] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1a pfn:0x102e1a
[    1.818993] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.818995] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.818999] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8688 0000000000000000
[    1.819002] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.820135] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.820138] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.820140] page dumped because: corrupted mapping in tail page
[    1.820141] Modules linked in: snd_hda_codec_realtek(+) snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.820356] xhci_hcd 0000:03:00.0: hcc params 0x0200f180 hci version 0x96 quirks 0x0000000000080000

[    1.820373] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.820377] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.820378] Call Trace:
[    1.820380]  <TASK>
[    1.820382]  dump_stack_lvl+0x34/0x44
[    1.820388]  bad_page.cold+0x63/0x94
[    1.820392]  free_tail_pages_check+0xd1/0x110
[    1.820396]  ? _raw_spin_lock+0x13/0x30
[    1.820401]  free_pcp_prepare+0x251/0x2e0
[    1.820404]  free_unref_page+0x1d/0x110
[    1.820408]  __vunmap+0x28a/0x380
[    1.820411]  drm_fbdev_cleanup+0x5f/0xb0
[    1.820415]  drm_fbdev_fb_destroy+0x15/0x30
[    1.820417]  unregister_framebuffer+0x1d/0x30
[    1.820421]  drm_client_dev_unregister+0x69/0xe0
[    1.820424]  drm_dev_unregister+0x2e/0x80
[    1.820428]  drm_dev_unplug+0x21/0x40
[    1.820430]  simpledrm_remove+0x11/0x20
[    1.820433]  platform_remove+0x1f/0x40
[    1.820436]  __device_release_driver+0x17a/0x240
[    1.820439]  device_release_driver+0x24/0x30
[    1.820441]  bus_remove_device+0xd8/0x140
[    1.820444]  device_del+0x18b/0x3f0
[    1.820447]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.820450]  ? try_to_wake_up+0x94/0x5b0
[    1.820454]  platform_device_del.part.0+0x13/0x70
[    1.820458]  platform_device_unregister+0x1c/0x30
[    1.820461]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.820465]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.820468]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.820541]  local_pci_probe+0x45/0x80
[    1.820545]  ? pci_match_device+0xd7/0x130
[    1.820548]  pci_device_probe+0xc2/0x1d0
[    1.820551]  really_probe+0x1f5/0x3d0
[    1.820554]  __driver_probe_device+0xfe/0x180
[    1.820557]  driver_probe_device+0x1e/0x90
[    1.820560]  __driver_attach+0xc0/0x1c0
[    1.820562]  ? __device_attach_driver+0xe0/0xe0
[    1.820565]  ? __device_attach_driver+0xe0/0xe0
[    1.820567]  bus_for_each_dev+0x78/0xc0
[    1.820570]  bus_add_driver+0x149/0x1e0
[    1.820573]  driver_register+0x8f/0xe0
[    1.820576]  ? 0xffffffffc051d000
[    1.820578]  do_one_initcall+0x44/0x200
[    1.820582]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.820586]  do_init_module+0x5c/0x260
[    1.820590]  __do_sys_finit_module+0xb4/0x120
[    1.820595]  __do_fast_syscall_32+0x6b/0xe0
[    1.820598]  do_fast_syscall_32+0x2f/0x70
[    1.820600]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.820604] RIP: 0023:0xf7e51549
[    1.820606] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.820609] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.820612] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.820614] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.820616] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.820617] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.820619] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.820622]  </TASK>
[    1.823537] BUG: Bad page state in process systemd-udevd  pfn:102e1b
[    1.823552] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1b pfn:0x102e1b
[    1.823556] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.823558] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.823563] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b86c8 0000000000000000
[    1.827457] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input3
[    1.827741] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:14.2/sound/card1/input4
[    1.828020] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:14.2/sound/card1/input5
[    1.828308] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:14.2/sound/card1/input6
[    1.828591] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:14.2/sound/card1/input7
[    1.828856] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:14.2/sound/card1/input8
[    1.829120] input: HD-Audio Generic Line Out Side as /devices/pci0000:00/0000:00:14.2/sound/card1/input9
[    1.829466] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:14.2/sound/card1/input10
[    1.829917] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[    1.829921] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.829923] usb usb5: Product: OHCI PCI host controller
[    1.829925] usb usb5: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ohci_hcd
[    1.829927] usb usb5: SerialNumber: 0000:00:12.0
[    1.830438] hub 5-0:1.0: USB hub found
[    1.830470] hub 5-0:1.0: 5 ports detected
[    1.831925] ohci-pci 0000:00:13.0: OHCI PCI host controller
[    1.831948] ohci-pci 0000:00:13.0: new USB bus registered, assigned bus number 6
[    1.832041] ohci-pci 0000:00:13.0: irq 18, io mem 0xf01c9000
[    1.832487] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.832492] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.832493] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.832495] page dumped because: corrupted mapping in tail page
[    1.832496] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.832523] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.832525] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.832527] Call Trace:
[    1.832529]  <TASK>
[    1.832530]  dump_stack_lvl+0x34/0x44
[    1.832537]  bad_page.cold+0x63/0x94
[    1.832541]  free_tail_pages_check+0xd1/0x110
[    1.832545]  ? _raw_spin_lock+0x13/0x30
[    1.832549]  free_pcp_prepare+0x251/0x2e0
[    1.832552]  free_unref_page+0x1d/0x110
[    1.832556]  __vunmap+0x28a/0x380
[    1.832560]  drm_fbdev_cleanup+0x5f/0xb0
[    1.832563]  drm_fbdev_fb_destroy+0x15/0x30
[    1.832565]  unregister_framebuffer+0x1d/0x30
[    1.832570]  drm_client_dev_unregister+0x69/0xe0
[    1.832573]  drm_dev_unregister+0x2e/0x80
[    1.832576]  drm_dev_unplug+0x21/0x40
[    1.832579]  simpledrm_remove+0x11/0x20
[    1.832581]  platform_remove+0x1f/0x40
[    1.832585]  __device_release_driver+0x17a/0x240
[    1.832588]  device_release_driver+0x24/0x30
[    1.832591]  bus_remove_device+0xd8/0x140
[    1.832594]  device_del+0x18b/0x3f0
[    1.832597]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.832600]  ? try_to_wake_up+0x94/0x5b0
[    1.832604]  platform_device_del.part.0+0x13/0x70
[    1.832607]  platform_device_unregister+0x1c/0x30
[    1.832611]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.832615]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.832618]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.832692]  local_pci_probe+0x45/0x80
[    1.832696]  ? pci_match_device+0xd7/0x130
[    1.832700]  pci_device_probe+0xc2/0x1d0
[    1.832704]  really_probe+0x1f5/0x3d0
[    1.832706]  __driver_probe_device+0xfe/0x180
[    1.832709]  driver_probe_device+0x1e/0x90
[    1.832711]  __driver_attach+0xc0/0x1c0
[    1.832714]  ? __device_attach_driver+0xe0/0xe0
[    1.832716]  ? __device_attach_driver+0xe0/0xe0
[    1.832719]  bus_for_each_dev+0x78/0xc0
[    1.832722]  bus_add_driver+0x149/0x1e0
[    1.832726]  driver_register+0x8f/0xe0
[    1.832729]  ? 0xffffffffc051d000
[    1.832731]  do_one_initcall+0x44/0x200
[    1.832735]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.832738]  do_init_module+0x5c/0x260
[    1.832743]  __do_sys_finit_module+0xb4/0x120
[    1.832748]  __do_fast_syscall_32+0x6b/0xe0
[    1.832751]  do_fast_syscall_32+0x2f/0x70
[    1.832753]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.832757] RIP: 0023:0xf7e51549
[    1.832759] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.832762] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.832765] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.832767] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.832768] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.832769] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.832771] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.832773]  </TASK>
[    1.832775] BUG: Bad page state in process systemd-udevd  pfn:102e1c
[    1.832783] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1c pfn:0x102e1c
[    1.832786] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.832788] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.832792] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8708 0000000000000000
[    1.832794] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.832795] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.832797] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.832798] page dumped because: corrupted mapping in tail page
[    1.832799] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.832821] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.832823] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.832825] Call Trace:
[    1.832826]  <TASK>
[    1.832827]  dump_stack_lvl+0x34/0x44
[    1.832831]  bad_page.cold+0x63/0x94
[    1.832834]  free_tail_pages_check+0xd1/0x110
[    1.832837]  ? _raw_spin_lock+0x13/0x30
[    1.832840]  free_pcp_prepare+0x251/0x2e0
[    1.832843]  free_unref_page+0x1d/0x110
[    1.832847]  __vunmap+0x28a/0x380
[    1.832850]  drm_fbdev_cleanup+0x5f/0xb0
[    1.832852]  drm_fbdev_fb_destroy+0x15/0x30
[    1.832854]  unregister_framebuffer+0x1d/0x30
[    1.832857]  drm_client_dev_unregister+0x69/0xe0
[    1.832859]  drm_dev_unregister+0x2e/0x80
[    1.832862]  drm_dev_unplug+0x21/0x40
[    1.832864]  simpledrm_remove+0x11/0x20
[    1.832867]  platform_remove+0x1f/0x40
[    1.832870]  __device_release_driver+0x17a/0x240
[    1.832872]  device_release_driver+0x24/0x30
[    1.832875]  bus_remove_device+0xd8/0x140
[    1.832878]  device_del+0x18b/0x3f0
[    1.832880]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.832883]  ? try_to_wake_up+0x94/0x5b0
[    1.832887]  platform_device_del.part.0+0x13/0x70
[    1.832890]  platform_device_unregister+0x1c/0x30
[    1.832893]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.832896]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.832899]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.832960]  local_pci_probe+0x45/0x80
[    1.832963]  ? pci_match_device+0xd7/0x130
[    1.832966]  pci_device_probe+0xc2/0x1d0
[    1.832969]  really_probe+0x1f5/0x3d0
[    1.832972]  __driver_probe_device+0xfe/0x180
[    1.832975]  driver_probe_device+0x1e/0x90
[    1.832978]  __driver_attach+0xc0/0x1c0
[    1.832980]  ? __device_attach_driver+0xe0/0xe0
[    1.832982]  ? __device_attach_driver+0xe0/0xe0
[    1.832985]  bus_for_each_dev+0x78/0xc0
[    1.832988]  bus_add_driver+0x149/0x1e0
[    1.832990]  driver_register+0x8f/0xe0
[    1.832993]  ? 0xffffffffc051d000
[    1.832995]  do_one_initcall+0x44/0x200
[    1.832998]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833001]  do_init_module+0x5c/0x260
[    1.833004]  __do_sys_finit_module+0xb4/0x120
[    1.833008]  __do_fast_syscall_32+0x6b/0xe0
[    1.833011]  do_fast_syscall_32+0x2f/0x70
[    1.833014]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.833016] RIP: 0023:0xf7e51549
[    1.833018] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.833021] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.833023] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.833025] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.833027] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.833028] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.833029] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.833032]  </TASK>
[    1.833033] BUG: Bad page state in process systemd-udevd  pfn:102e1d
[    1.833037] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1d pfn:0x102e1d
[    1.833040] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.833042] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.833045] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8748 0000000000000000
[    1.833047] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833048] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.833051] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833052] page dumped because: corrupted mapping in tail page
[    1.833052] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.833073] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.833076] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.833077] Call Trace:
[    1.833078]  <TASK>
[    1.833079]  dump_stack_lvl+0x34/0x44
[    1.833083]  bad_page.cold+0x63/0x94
[    1.833085]  free_tail_pages_check+0xd1/0x110
[    1.833089]  ? _raw_spin_lock+0x13/0x30
[    1.833091]  free_pcp_prepare+0x251/0x2e0
[    1.833094]  free_unref_page+0x1d/0x110
[    1.833097]  __vunmap+0x28a/0x380
[    1.833100]  drm_fbdev_cleanup+0x5f/0xb0
[    1.833103]  drm_fbdev_fb_destroy+0x15/0x30
[    1.833105]  unregister_framebuffer+0x1d/0x30
[    1.833108]  drm_client_dev_unregister+0x69/0xe0
[    1.833110]  drm_dev_unregister+0x2e/0x80
[    1.833113]  drm_dev_unplug+0x21/0x40
[    1.833116]  simpledrm_remove+0x11/0x20
[    1.833118]  platform_remove+0x1f/0x40
[    1.833120]  __device_release_driver+0x17a/0x240
[    1.833123]  device_release_driver+0x24/0x30
[    1.833126]  bus_remove_device+0xd8/0x140
[    1.833128]  device_del+0x18b/0x3f0
[    1.833131]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.833133]  ? try_to_wake_up+0x94/0x5b0
[    1.833136]  platform_device_del.part.0+0x13/0x70
[    1.833139]  platform_device_unregister+0x1c/0x30
[    1.833142]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.833145]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.833149]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.833207]  local_pci_probe+0x45/0x80
[    1.833210]  ? pci_match_device+0xd7/0x130
[    1.833214]  pci_device_probe+0xc2/0x1d0
[    1.833217]  really_probe+0x1f5/0x3d0
[    1.833220]  __driver_probe_device+0xfe/0x180
[    1.833223]  driver_probe_device+0x1e/0x90
[    1.833226]  __driver_attach+0xc0/0x1c0
[    1.833228]  ? __device_attach_driver+0xe0/0xe0
[    1.833230]  ? __device_attach_driver+0xe0/0xe0
[    1.833233]  bus_for_each_dev+0x78/0xc0
[    1.833236]  bus_add_driver+0x149/0x1e0
[    1.833238]  driver_register+0x8f/0xe0
[    1.833241]  ? 0xffffffffc051d000
[    1.833243]  do_one_initcall+0x44/0x200
[    1.833246]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833249]  do_init_module+0x5c/0x260
[    1.833252]  __do_sys_finit_module+0xb4/0x120
[    1.833257]  __do_fast_syscall_32+0x6b/0xe0
[    1.833259]  do_fast_syscall_32+0x2f/0x70
[    1.833262]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.833264] RIP: 0023:0xf7e51549
[    1.833267] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.833269] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.833271] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.833273] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.833274] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.833275] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.833277] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.833280]  </TASK>
[    1.833288] BUG: Bad page state in process systemd-udevd  pfn:102e1e
[    1.833293] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1e pfn:0x102e1e
[    1.833296] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.833298] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.833302] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8788 0000000000000000
[    1.833303] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833305] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.833307] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833308] page dumped because: corrupted mapping in tail page
[    1.833309] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.833331] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.833333] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.833334] Call Trace:
[    1.833335]  <TASK>
[    1.833336]  dump_stack_lvl+0x34/0x44
[    1.833340]  bad_page.cold+0x63/0x94
[    1.833343]  free_tail_pages_check+0xd1/0x110
[    1.833346]  ? _raw_spin_lock+0x13/0x30
[    1.833349]  free_pcp_prepare+0x251/0x2e0
[    1.833352]  free_unref_page+0x1d/0x110
[    1.833355]  __vunmap+0x28a/0x380
[    1.833359]  drm_fbdev_cleanup+0x5f/0xb0
[    1.833361]  drm_fbdev_fb_destroy+0x15/0x30
[    1.833363]  unregister_framebuffer+0x1d/0x30
[    1.833366]  drm_client_dev_unregister+0x69/0xe0
[    1.833369]  drm_dev_unregister+0x2e/0x80
[    1.833371]  drm_dev_unplug+0x21/0x40
[    1.833374]  simpledrm_remove+0x11/0x20
[    1.833377]  platform_remove+0x1f/0x40
[    1.833380]  __device_release_driver+0x17a/0x240
[    1.833382]  device_release_driver+0x24/0x30
[    1.833385]  bus_remove_device+0xd8/0x140
[    1.833388]  device_del+0x18b/0x3f0
[    1.833390]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.833393]  ? try_to_wake_up+0x94/0x5b0
[    1.833396]  platform_device_del.part.0+0x13/0x70
[    1.833399]  platform_device_unregister+0x1c/0x30
[    1.833402]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.833405]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.833408]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.833468]  local_pci_probe+0x45/0x80
[    1.833471]  ? pci_match_device+0xd7/0x130
[    1.833474]  pci_device_probe+0xc2/0x1d0
[    1.833477]  really_probe+0x1f5/0x3d0
[    1.833480]  __driver_probe_device+0xfe/0x180
[    1.833483]  driver_probe_device+0x1e/0x90
[    1.833485]  __driver_attach+0xc0/0x1c0
[    1.833487]  ? __device_attach_driver+0xe0/0xe0
[    1.833490]  ? __device_attach_driver+0xe0/0xe0
[    1.833492]  bus_for_each_dev+0x78/0xc0
[    1.833495]  bus_add_driver+0x149/0x1e0
[    1.833497]  driver_register+0x8f/0xe0
[    1.833500]  ? 0xffffffffc051d000
[    1.833502]  do_one_initcall+0x44/0x200
[    1.833505]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833508]  do_init_module+0x5c/0x260
[    1.833511]  __do_sys_finit_module+0xb4/0x120
[    1.833515]  __do_fast_syscall_32+0x6b/0xe0
[    1.833518]  do_fast_syscall_32+0x2f/0x70
[    1.833521]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.833524] RIP: 0023:0xf7e51549
[    1.833526] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.833528] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.833531] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.833532] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.833534] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.833535] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.833536] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.833539]  </TASK>
[    1.833540] BUG: Bad page state in process systemd-udevd  pfn:102e1f
[    1.833544] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x1f pfn:0x102e1f
[    1.833547] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.833549] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.833552] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b87c8 0000000000000000
[    1.833554] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833556] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.833557] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833558] page dumped because: corrupted mapping in tail page
[    1.833559] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.833580] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.833583] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.833584] Call Trace:
[    1.833585]  <TASK>
[    1.833586]  dump_stack_lvl+0x34/0x44
[    1.833591]  bad_page.cold+0x63/0x94
[    1.833594]  free_tail_pages_check+0xd1/0x110
[    1.833596]  ? _raw_spin_lock+0x13/0x30
[    1.833599]  free_pcp_prepare+0x251/0x2e0
[    1.833602]  free_unref_page+0x1d/0x110
[    1.833605]  __vunmap+0x28a/0x380
[    1.833608]  drm_fbdev_cleanup+0x5f/0xb0
[    1.833611]  drm_fbdev_fb_destroy+0x15/0x30
[    1.833613]  unregister_framebuffer+0x1d/0x30
[    1.833616]  drm_client_dev_unregister+0x69/0xe0
[    1.833618]  drm_dev_unregister+0x2e/0x80
[    1.833621]  drm_dev_unplug+0x21/0x40
[    1.833624]  simpledrm_remove+0x11/0x20
[    1.833626]  platform_remove+0x1f/0x40
[    1.833629]  __device_release_driver+0x17a/0x240
[    1.833631]  device_release_driver+0x24/0x30
[    1.833634]  bus_remove_device+0xd8/0x140
[    1.833637]  device_del+0x18b/0x3f0
[    1.833639]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.833642]  ? try_to_wake_up+0x94/0x5b0
[    1.833645]  platform_device_del.part.0+0x13/0x70
[    1.833648]  platform_device_unregister+0x1c/0x30
[    1.833651]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.833654]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.833657]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.833715]  local_pci_probe+0x45/0x80
[    1.833718]  ? pci_match_device+0xd7/0x130
[    1.833721]  pci_device_probe+0xc2/0x1d0
[    1.833725]  really_probe+0x1f5/0x3d0
[    1.833727]  __driver_probe_device+0xfe/0x180
[    1.833730]  driver_probe_device+0x1e/0x90
[    1.833732]  __driver_attach+0xc0/0x1c0
[    1.833735]  ? __device_attach_driver+0xe0/0xe0
[    1.833737]  ? __device_attach_driver+0xe0/0xe0
[    1.833740]  bus_for_each_dev+0x78/0xc0
[    1.833742]  bus_add_driver+0x149/0x1e0
[    1.833745]  driver_register+0x8f/0xe0
[    1.833747]  ? 0xffffffffc051d000
[    1.833749]  do_one_initcall+0x44/0x200
[    1.833751]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833754]  do_init_module+0x5c/0x260
[    1.833757]  __do_sys_finit_module+0xb4/0x120
[    1.833762]  __do_fast_syscall_32+0x6b/0xe0
[    1.833764]  do_fast_syscall_32+0x2f/0x70
[    1.833767]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.833769] RIP: 0023:0xf7e51549
[    1.833771] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.833773] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.833776] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.833777] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.833779] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.833780] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.833781] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.833784]  </TASK>
[    1.833785] BUG: Bad page state in process systemd-udevd  pfn:102e20
[    1.833789] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x20 pfn:0x102e20
[    1.833792] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.833793] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.833796] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8808 0000000000000000
[    1.833798] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833800] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.833801] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.833802] page dumped because: corrupted mapping in tail page
[    1.833803] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.833824] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.833826] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.833827] Call Trace:
[    1.833828]  <TASK>
[    1.833829]  dump_stack_lvl+0x34/0x44
[    1.833833]  bad_page.cold+0x63/0x94
[    1.833835]  free_tail_pages_check+0xd1/0x110
[    1.833838]  ? _raw_spin_lock+0x13/0x30
[    1.833841]  free_pcp_prepare+0x251/0x2e0
[    1.833844]  free_unref_page+0x1d/0x110
[    1.833847]  __vunmap+0x28a/0x380
[    1.833850]  drm_fbdev_cleanup+0x5f/0xb0
[    1.833853]  drm_fbdev_fb_destroy+0x15/0x30
[    1.833855]  unregister_framebuffer+0x1d/0x30
[    1.833857]  drm_client_dev_unregister+0x69/0xe0
[    1.833860]  drm_dev_unregister+0x2e/0x80
[    1.833862]  drm_dev_unplug+0x21/0x40
[    1.833864]  simpledrm_remove+0x11/0x20
[    1.833867]  platform_remove+0x1f/0x40
[    1.833869]  __device_release_driver+0x17a/0x240
[    1.833873]  device_release_driver+0x24/0x30
[    1.833876]  bus_remove_device+0xd8/0x140
[    1.833878]  device_del+0x18b/0x3f0
[    1.833881]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.833883]  ? try_to_wake_up+0x94/0x5b0
[    1.833886]  platform_device_del.part.0+0x13/0x70
[    1.833889]  platform_device_unregister+0x1c/0x30
[    1.833892]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.833895]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.833898]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.833955]  local_pci_probe+0x45/0x80
[    1.833958]  ? pci_match_device+0xd7/0x130
[    1.833961]  pci_device_probe+0xc2/0x1d0
[    1.833964]  really_probe+0x1f5/0x3d0
[    1.833967]  __driver_probe_device+0xfe/0x180
[    1.833970]  driver_probe_device+0x1e/0x90
[    1.833972]  __driver_attach+0xc0/0x1c0
[    1.833974]  ? __device_attach_driver+0xe0/0xe0
[    1.833977]  ? __device_attach_driver+0xe0/0xe0
[    1.833979]  bus_for_each_dev+0x78/0xc0
[    1.833982]  bus_add_driver+0x149/0x1e0
[    1.833984]  driver_register+0x8f/0xe0
[    1.833986]  ? 0xffffffffc051d000
[    1.833988]  do_one_initcall+0x44/0x200
[    1.833991]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.833994]  do_init_module+0x5c/0x260
[    1.833997]  __do_sys_finit_module+0xb4/0x120
[    1.834001]  __do_fast_syscall_32+0x6b/0xe0
[    1.834004]  do_fast_syscall_32+0x2f/0x70
[    1.834006]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.834008] RIP: 0023:0xf7e51549
[    1.834010] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.834012] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.834014] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.834016] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.834017] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.834019] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.834020] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.834023]  </TASK>
[    1.834024] BUG: Bad page state in process systemd-udevd  pfn:102e21
[    1.834027] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x21 pfn:0x102e21
[    1.834030] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.834031] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.834034] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8848 0000000000000000
[    1.834036] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.834038] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.834039] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.834040] page dumped because: corrupted mapping in tail page
[    1.834041] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.834061] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.834064] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.834065] Call Trace:
[    1.834066]  <TASK>
[    1.834067]  dump_stack_lvl+0x34/0x44
[    1.834070]  bad_page.cold+0x63/0x94
[    1.834073]  free_tail_pages_check+0xd1/0x110
[    1.834076]  ? _raw_spin_lock+0x13/0x30
[    1.834079]  free_pcp_prepare+0x251/0x2e0
[    1.834082]  free_unref_page+0x1d/0x110
[    1.834085]  __vunmap+0x28a/0x380
[    1.834088]  drm_fbdev_cleanup+0x5f/0xb0
[    1.834090]  drm_fbdev_fb_destroy+0x15/0x30
[    1.834092]  unregister_framebuffer+0x1d/0x30
[    1.834095]  drm_client_dev_unregister+0x69/0xe0
[    1.834097]  drm_dev_unregister+0x2e/0x80
[    1.834100]  drm_dev_unplug+0x21/0x40
[    1.834103]  simpledrm_remove+0x11/0x20
[    1.834105]  platform_remove+0x1f/0x40
[    1.834107]  __device_release_driver+0x17a/0x240
[    1.834110]  device_release_driver+0x24/0x30
[    1.834113]  bus_remove_device+0xd8/0x140
[    1.834115]  device_del+0x18b/0x3f0
[    1.834118]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.834121]  ? try_to_wake_up+0x94/0x5b0
[    1.834123]  platform_device_del.part.0+0x13/0x70
[    1.834126]  platform_device_unregister+0x1c/0x30
[    1.834129]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.834132]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.834135]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.834192]  local_pci_probe+0x45/0x80
[    1.834195]  ? pci_match_device+0xd7/0x130
[    1.834198]  pci_device_probe+0xc2/0x1d0
[    1.834201]  really_probe+0x1f5/0x3d0
[    1.834204]  __driver_probe_device+0xfe/0x180
[    1.834207]  driver_probe_device+0x1e/0x90
[    1.834209]  __driver_attach+0xc0/0x1c0
[    1.834211]  ? __device_attach_driver+0xe0/0xe0
[    1.834214]  ? __device_attach_driver+0xe0/0xe0
[    1.834216]  bus_for_each_dev+0x78/0xc0
[    1.834219]  bus_add_driver+0x149/0x1e0
[    1.834221]  driver_register+0x8f/0xe0
[    1.834224]  ? 0xffffffffc051d000
[    1.834225]  do_one_initcall+0x44/0x200
[    1.834228]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.834231]  do_init_module+0x5c/0x260
[    1.834234]  __do_sys_finit_module+0xb4/0x120
[    1.834238]  __do_fast_syscall_32+0x6b/0xe0
[    1.834241]  do_fast_syscall_32+0x2f/0x70
[    1.834243]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.834245] RIP: 0023:0xf7e51549
[    1.834247] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.834249] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.834251] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.834253] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.834254] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.834255] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.834257] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.834259]  </TASK>
[    1.837229] BUG: Bad page state in process systemd-udevd  pfn:102e22
[    1.837239] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x22 pfn:0x102e22
[    1.837243] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.837245] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.837250] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8888 0000000000000000
[    1.837252] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837254] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.837256] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837257] page dumped because: corrupted mapping in tail page
[    1.837258] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.837285] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.837289] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.837290] Call Trace:
[    1.837292]  <TASK>
[    1.837294]  dump_stack_lvl+0x34/0x44
[    1.837300]  bad_page.cold+0x63/0x94
[    1.837304]  free_tail_pages_check+0xd1/0x110
[    1.837308]  ? _raw_spin_lock+0x13/0x30
[    1.837312]  free_pcp_prepare+0x251/0x2e0
[    1.837315]  free_unref_page+0x1d/0x110
[    1.837319]  __vunmap+0x28a/0x380
[    1.837322]  drm_fbdev_cleanup+0x5f/0xb0
[    1.837326]  drm_fbdev_fb_destroy+0x15/0x30
[    1.837328]  unregister_framebuffer+0x1d/0x30
[    1.837332]  drm_client_dev_unregister+0x69/0xe0
[    1.837335]  drm_dev_unregister+0x2e/0x80
[    1.837338]  drm_dev_unplug+0x21/0x40
[    1.837341]  simpledrm_remove+0x11/0x20
[    1.837344]  platform_remove+0x1f/0x40
[    1.837347]  __device_release_driver+0x17a/0x240
[    1.837350]  device_release_driver+0x24/0x30
[    1.837353]  bus_remove_device+0xd8/0x140
[    1.837356]  device_del+0x18b/0x3f0
[    1.837359]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.837362]  ? try_to_wake_up+0x94/0x5b0
[    1.837365]  platform_device_del.part.0+0x13/0x70
[    1.837369]  platform_device_unregister+0x1c/0x30
[    1.837372]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.837376]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.837379]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.837453]  local_pci_probe+0x45/0x80
[    1.837457]  ? pci_match_device+0xd7/0x130
[    1.837460]  pci_device_probe+0xc2/0x1d0
[    1.837464]  really_probe+0x1f5/0x3d0
[    1.837467]  __driver_probe_device+0xfe/0x180
[    1.837470]  driver_probe_device+0x1e/0x90
[    1.837472]  __driver_attach+0xc0/0x1c0
[    1.837475]  ? __device_attach_driver+0xe0/0xe0
[    1.837477]  ? __device_attach_driver+0xe0/0xe0
[    1.837479]  bus_for_each_dev+0x78/0xc0
[    1.837482]  bus_add_driver+0x149/0x1e0
[    1.837485]  driver_register+0x8f/0xe0
[    1.837487]  ? 0xffffffffc051d000
[    1.837490]  do_one_initcall+0x44/0x200
[    1.837493]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.837497]  do_init_module+0x5c/0x260
[    1.837501]  __do_sys_finit_module+0xb4/0x120
[    1.837506]  __do_fast_syscall_32+0x6b/0xe0
[    1.837509]  do_fast_syscall_32+0x2f/0x70
[    1.837512]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.837515] RIP: 0023:0xf7e51549
[    1.837518] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.837520] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.837523] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.837525] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.837526] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.837528] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.837529] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.837532]  </TASK>
[    1.837533] BUG: Bad page state in process systemd-udevd  pfn:102e23
[    1.837538] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x23 pfn:0x102e23
[    1.837541] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.837542] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.837546] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b88c8 0000000000000000
[    1.837548] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837550] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.837551] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837552] page dumped because: corrupted mapping in tail page
[    1.837553] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.837574] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.837577] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.837578] Call Trace:
[    1.837579]  <TASK>
[    1.837580]  dump_stack_lvl+0x34/0x44
[    1.837584]  bad_page.cold+0x63/0x94
[    1.837587]  free_tail_pages_check+0xd1/0x110
[    1.837590]  ? _raw_spin_lock+0x13/0x30
[    1.837593]  free_pcp_prepare+0x251/0x2e0
[    1.837596]  free_unref_page+0x1d/0x110
[    1.837599]  __vunmap+0x28a/0x380
[    1.837602]  drm_fbdev_cleanup+0x5f/0xb0
[    1.837604]  drm_fbdev_fb_destroy+0x15/0x30
[    1.837606]  unregister_framebuffer+0x1d/0x30
[    1.837609]  drm_client_dev_unregister+0x69/0xe0
[    1.837612]  drm_dev_unregister+0x2e/0x80
[    1.837615]  drm_dev_unplug+0x21/0x40
[    1.837617]  simpledrm_remove+0x11/0x20
[    1.837620]  platform_remove+0x1f/0x40
[    1.837622]  __device_release_driver+0x17a/0x240
[    1.837625]  device_release_driver+0x24/0x30
[    1.837627]  bus_remove_device+0xd8/0x140
[    1.837630]  device_del+0x18b/0x3f0
[    1.837632]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.837635]  ? try_to_wake_up+0x94/0x5b0
[    1.837638]  platform_device_del.part.0+0x13/0x70
[    1.837641]  platform_device_unregister+0x1c/0x30
[    1.837644]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.837647]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.837650]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.837710]  local_pci_probe+0x45/0x80
[    1.837713]  ? pci_match_device+0xd7/0x130
[    1.837716]  pci_device_probe+0xc2/0x1d0
[    1.837719]  really_probe+0x1f5/0x3d0
[    1.837722]  __driver_probe_device+0xfe/0x180
[    1.837725]  driver_probe_device+0x1e/0x90
[    1.837728]  __driver_attach+0xc0/0x1c0
[    1.837730]  ? __device_attach_driver+0xe0/0xe0
[    1.837733]  ? __device_attach_driver+0xe0/0xe0
[    1.837735]  bus_for_each_dev+0x78/0xc0
[    1.837738]  bus_add_driver+0x149/0x1e0
[    1.837740]  driver_register+0x8f/0xe0
[    1.837743]  ? 0xffffffffc051d000
[    1.837745]  do_one_initcall+0x44/0x200
[    1.837748]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.837751]  do_init_module+0x5c/0x260
[    1.837755]  __do_sys_finit_module+0xb4/0x120
[    1.837759]  __do_fast_syscall_32+0x6b/0xe0
[    1.837762]  do_fast_syscall_32+0x2f/0x70
[    1.837764]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.837767] RIP: 0023:0xf7e51549
[    1.837769] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.837771] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.837773] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.837775] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.837776] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.837778] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.837779] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.837782]  </TASK>
[    1.837783] BUG: Bad page state in process systemd-udevd  pfn:102e24
[    1.837787] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x24 pfn:0x102e24
[    1.837790] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.837792] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.837795] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8908 0000000000000000
[    1.837797] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837798] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.837800] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.837801] page dumped because: corrupted mapping in tail page
[    1.837802] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.837824] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.837827] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.837828] Call Trace:
[    1.837829]  <TASK>
[    1.837830]  dump_stack_lvl+0x34/0x44
[    1.837834]  bad_page.cold+0x63/0x94
[    1.837836]  free_tail_pages_check+0xd1/0x110
[    1.837839]  ? _raw_spin_lock+0x13/0x30
[    1.837842]  free_pcp_prepare+0x251/0x2e0
[    1.837846]  free_unref_page+0x1d/0x110
[    1.837849]  __vunmap+0x28a/0x380
[    1.837851]  drm_fbdev_cleanup+0x5f/0xb0
[    1.837854]  drm_fbdev_fb_destroy+0x15/0x30
[    1.837856]  unregister_framebuffer+0x1d/0x30
[    1.837859]  drm_client_dev_unregister+0x69/0xe0
[    1.837861]  drm_dev_unregister+0x2e/0x80
[    1.837864]  drm_dev_unplug+0x21/0x40
[    1.837866]  simpledrm_remove+0x11/0x20
[    1.837868]  platform_remove+0x1f/0x40
[    1.837871]  __device_release_driver+0x17a/0x240
[    1.837873]  device_release_driver+0x24/0x30
[    1.837876]  bus_remove_device+0xd8/0x140
[    1.837878]  device_del+0x18b/0x3f0
[    1.837881]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.837884]  ? try_to_wake_up+0x94/0x5b0
[    1.837887]  platform_device_del.part.0+0x13/0x70
[    1.837890]  platform_device_unregister+0x1c/0x30
[    1.837893]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.837896]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.837899]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.837959]  local_pci_probe+0x45/0x80
[    1.837962]  ? pci_match_device+0xd7/0x130
[    1.837965]  pci_device_probe+0xc2/0x1d0
[    1.837969]  really_probe+0x1f5/0x3d0
[    1.837972]  __driver_probe_device+0xfe/0x180
[    1.837975]  driver_probe_device+0x1e/0x90
[    1.837977]  __driver_attach+0xc0/0x1c0
[    1.837980]  ? __device_attach_driver+0xe0/0xe0
[    1.837982]  ? __device_attach_driver+0xe0/0xe0
[    1.837984]  bus_for_each_dev+0x78/0xc0
[    1.837987]  bus_add_driver+0x149/0x1e0
[    1.837990]  driver_register+0x8f/0xe0
[    1.837992]  ? 0xffffffffc051d000
[    1.837994]  do_one_initcall+0x44/0x200
[    1.837998]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.838001]  do_init_module+0x5c/0x260
[    1.838004]  __do_sys_finit_module+0xb4/0x120
[    1.838008]  __do_fast_syscall_32+0x6b/0xe0
[    1.838011]  do_fast_syscall_32+0x2f/0x70
[    1.838014]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.838016] RIP: 0023:0xf7e51549
[    1.838019] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.838021] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.838024] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.838025] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.838027] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.838028] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.838029] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.838032]  </TASK>
[    1.838033] BUG: Bad page state in process systemd-udevd  pfn:102e25
[    1.838038] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x25 pfn:0x102e25
[    1.838041] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.838042] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.838046] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8948 0000000000000000
[    1.838048] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.838049] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.838051] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.838052] page dumped because: corrupted mapping in tail page
[    1.838053] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.838075] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.838077] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.838078] Call Trace:
[    1.838079]  <TASK>
[    1.838081]  dump_stack_lvl+0x34/0x44
[    1.838084]  bad_page.cold+0x63/0x94
[    1.838087]  free_tail_pages_check+0xd1/0x110
[    1.838090]  ? _raw_spin_lock+0x13/0x30
[    1.838093]  free_pcp_prepare+0x251/0x2e0
[    1.838097]  free_unref_page+0x1d/0x110
[    1.838100]  __vunmap+0x28a/0x380
[    1.838103]  drm_fbdev_cleanup+0x5f/0xb0
[    1.838105]  drm_fbdev_fb_destroy+0x15/0x30
[    1.838107]  unregister_framebuffer+0x1d/0x30
[    1.838111]  drm_client_dev_unregister+0x69/0xe0
[    1.838113]  drm_dev_unregister+0x2e/0x80
[    1.838116]  drm_dev_unplug+0x21/0x40
[    1.838119]  simpledrm_remove+0x11/0x20
[    1.838122]  platform_remove+0x1f/0x40
[    1.838125]  __device_release_driver+0x17a/0x240
[    1.838127]  device_release_driver+0x24/0x30
[    1.838129]  bus_remove_device+0xd8/0x140
[    1.838132]  device_del+0x18b/0x3f0
[    1.838135]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.838137]  ? try_to_wake_up+0x94/0x5b0
[    1.838140]  platform_device_del.part.0+0x13/0x70
[    1.838143]  platform_device_unregister+0x1c/0x30
[    1.838146]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.838149]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.838152]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.838215]  local_pci_probe+0x45/0x80
[    1.838218]  ? pci_match_device+0xd7/0x130
[    1.838221]  pci_device_probe+0xc2/0x1d0
[    1.838224]  really_probe+0x1f5/0x3d0
[    1.838227]  __driver_probe_device+0xfe/0x180
[    1.838229]  driver_probe_device+0x1e/0x90
[    1.838232]  __driver_attach+0xc0/0x1c0
[    1.838234]  ? __device_attach_driver+0xe0/0xe0
[    1.838236]  ? __device_attach_driver+0xe0/0xe0
[    1.838239]  bus_for_each_dev+0x78/0xc0
[    1.838243]  bus_add_driver+0x149/0x1e0
[    1.838245]  driver_register+0x8f/0xe0
[    1.838247]  ? 0xffffffffc051d000
[    1.838249]  do_one_initcall+0x44/0x200
[    1.838252]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.838255]  do_init_module+0x5c/0x260
[    1.838259]  __do_sys_finit_module+0xb4/0x120
[    1.838263]  __do_fast_syscall_32+0x6b/0xe0
[    1.838266]  do_fast_syscall_32+0x2f/0x70
[    1.838268]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.838271] RIP: 0023:0xf7e51549
[    1.838273] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.838275] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.838278] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.838279] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.838281] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.838282] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.838283] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.838286]  </TASK>
[    1.844998] usb usb4: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
[    1.845004] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.845007] usb usb4: Product: xHCI Host Controller
[    1.845009] usb usb4: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b xhci-hcd
[    1.845010] usb usb4: SerialNumber: 0000:03:00.0
[    1.845059] BUG: Bad page state in process systemd-udevd  pfn:102e26
[    1.845068] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x26 pfn:0x102e26
[    1.845071] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.845073] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.845078] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8988 0000000000000000
[    1.845080] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.845082] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.845084] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.845085] page dumped because: corrupted mapping in tail page
[    1.845086] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.845112] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.845115] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.845117] Call Trace:
[    1.845118]  <TASK>
[    1.845120]  dump_stack_lvl+0x34/0x44
[    1.845127]  bad_page.cold+0x63/0x94
[    1.845130]  free_tail_pages_check+0xd1/0x110
[    1.845135]  ? _raw_spin_lock+0x13/0x30
[    1.845139]  free_pcp_prepare+0x251/0x2e0
[    1.845142]  free_unref_page+0x1d/0x110
[    1.845146]  __vunmap+0x28a/0x380
[    1.845149]  drm_fbdev_cleanup+0x5f/0xb0
[    1.845152]  drm_fbdev_fb_destroy+0x15/0x30
[    1.845155]  unregister_framebuffer+0x1d/0x30
[    1.845159]  drm_client_dev_unregister+0x69/0xe0
[    1.845162]  drm_dev_unregister+0x2e/0x80
[    1.845165]  drm_dev_unplug+0x21/0x40
[    1.845168]  simpledrm_remove+0x11/0x20
[    1.845171]  platform_remove+0x1f/0x40
[    1.845174]  __device_release_driver+0x17a/0x240
[    1.845177]  device_release_driver+0x24/0x30
[    1.845179]  bus_remove_device+0xd8/0x140
[    1.845182]  device_del+0x18b/0x3f0
[    1.845185]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.845188]  ? try_to_wake_up+0x94/0x5b0
[    1.845192]  platform_device_del.part.0+0x13/0x70
[    1.845195]  platform_device_unregister+0x1c/0x30
[    1.845198]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.845202]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.845206]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.845279]  local_pci_probe+0x45/0x80
[    1.845283]  ? pci_match_device+0xd7/0x130
[    1.845286]  pci_device_probe+0xc2/0x1d0
[    1.845289]  really_probe+0x1f5/0x3d0
[    1.845292]  __driver_probe_device+0xfe/0x180
[    1.845295]  driver_probe_device+0x1e/0x90
[    1.845297]  __driver_attach+0xc0/0x1c0
[    1.845300]  ? __device_attach_driver+0xe0/0xe0
[    1.845302]  ? __device_attach_driver+0xe0/0xe0
[    1.845304]  bus_for_each_dev+0x78/0xc0
[    1.845307]  bus_add_driver+0x149/0x1e0
[    1.845310]  driver_register+0x8f/0xe0
[    1.845312]  ? 0xffffffffc051d000
[    1.845314]  do_one_initcall+0x44/0x200
[    1.845318]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.845321]  do_init_module+0x5c/0x260
[    1.845326]  __do_sys_finit_module+0xb4/0x120
[    1.845331]  __do_fast_syscall_32+0x6b/0xe0
[    1.845334]  do_fast_syscall_32+0x2f/0x70
[    1.845336]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.845339] RIP: 0023:0xf7e51549
[    1.845342] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.845344] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.845347] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.845349] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.845350] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.845352] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.845353] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.845355]  </TASK>
[    1.846566] hub 4-0:1.0: USB hub found
[    1.848020] hub 4-0:1.0: 2 ports detected
[    1.849128] BUG: Bad page state in process systemd-udevd  pfn:102e27
[    1.849141] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x27 pfn:0x102e27
[    1.849145] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.849146] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.849151] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b89c8 0000000000000000
[    1.849153] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.849155] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.849157] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.849158] page dumped because: corrupted mapping in tail page
[    1.849159] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.849199] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.849202] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.849204] Call Trace:
[    1.849205]  <TASK>
[    1.849207]  dump_stack_lvl+0x34/0x44
[    1.849214]  bad_page.cold+0x63/0x94
[    1.849217]  free_tail_pages_check+0xd1/0x110
[    1.849222]  ? _raw_spin_lock+0x13/0x30
[    1.849227]  free_pcp_prepare+0x251/0x2e0
[    1.849230]  free_unref_page+0x1d/0x110
[    1.849234]  __vunmap+0x28a/0x380
[    1.849237]  drm_fbdev_cleanup+0x5f/0xb0
[    1.849240]  drm_fbdev_fb_destroy+0x15/0x30
[    1.849243]  unregister_framebuffer+0x1d/0x30
[    1.849247]  drm_client_dev_unregister+0x69/0xe0
[    1.849250]  drm_dev_unregister+0x2e/0x80
[    1.849254]  drm_dev_unplug+0x21/0x40
[    1.849257]  simpledrm_remove+0x11/0x20
[    1.849259]  platform_remove+0x1f/0x40
[    1.849263]  __device_release_driver+0x17a/0x240
[    1.849265]  device_release_driver+0x24/0x30
[    1.849268]  bus_remove_device+0xd8/0x140
[    1.849271]  device_del+0x18b/0x3f0
[    1.849274]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.849277]  ? try_to_wake_up+0x94/0x5b0
[    1.849280]  platform_device_del.part.0+0x13/0x70
[    1.849284]  platform_device_unregister+0x1c/0x30
[    1.849287]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.849291]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.849295]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.849366]  local_pci_probe+0x45/0x80
[    1.849370]  ? pci_match_device+0xd7/0x130
[    1.849374]  pci_device_probe+0xc2/0x1d0
[    1.849377]  really_probe+0x1f5/0x3d0
[    1.849380]  __driver_probe_device+0xfe/0x180
[    1.849384]  driver_probe_device+0x1e/0x90
[    1.849386]  __driver_attach+0xc0/0x1c0
[    1.849389]  ? __device_attach_driver+0xe0/0xe0
[    1.849392]  ? __device_attach_driver+0xe0/0xe0
[    1.849394]  bus_for_each_dev+0x78/0xc0
[    1.849397]  bus_add_driver+0x149/0x1e0
[    1.849400]  driver_register+0x8f/0xe0
[    1.849403]  ? 0xffffffffc051d000
[    1.849405]  do_one_initcall+0x44/0x200
[    1.849410]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.849414]  do_init_module+0x5c/0x260
[    1.849418]  __do_sys_finit_module+0xb4/0x120
[    1.849423]  __do_fast_syscall_32+0x6b/0xe0
[    1.849426]  do_fast_syscall_32+0x2f/0x70
[    1.849428]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.849432] RIP: 0023:0xf7e51549
[    1.849435] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.849437] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.849441] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.849443] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.849444] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.849445] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.849447] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.849450]  </TASK>
[    1.849452] BUG: Bad page state in process systemd-udevd  pfn:102e28
[    1.849458] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x28 pfn:0x102e28
[    1.849461] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.849463] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.849466] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8a08 0000000000000000
[    1.849468] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.849471] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.849472] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.849473] page dumped because: corrupted mapping in tail page
[    1.849474] Modules linked in: snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.850591] xhci_hcd 0000:03:00.0: xHCI Host Controller
[    1.850610] xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 7
[    1.850621] xhci_hcd 0000:03:00.0: Host supports USB 3.0 SuperSpeed
[    1.853205] usb usb7: We don't know the algorithms for LPM for this host, disabling LPM.
[    1.854757] usb usb7: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.16
[    1.854763] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.854765] usb usb7: Product: xHCI Host Controller
[    1.854767] usb usb7: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b xhci-hcd
[    1.854769] usb usb7: SerialNumber: 0000:03:00.0
[    1.855905] hub 7-0:1.0: USB hub found
[    1.857433] hub 7-0:1.0: 2 ports detected

[    1.857817] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.857820] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.857822] Call Trace:
[    1.857824]  <TASK>
[    1.857825]  dump_stack_lvl+0x34/0x44
[    1.857832]  bad_page.cold+0x63/0x94
[    1.857836]  free_tail_pages_check+0xd1/0x110
[    1.857840]  ? _raw_spin_lock+0x13/0x30
[    1.857844]  free_pcp_prepare+0x251/0x2e0
[    1.857848]  free_unref_page+0x1d/0x110
[    1.857851]  __vunmap+0x28a/0x380
[    1.857855]  drm_fbdev_cleanup+0x5f/0xb0
[    1.857858]  drm_fbdev_fb_destroy+0x15/0x30
[    1.857860]  unregister_framebuffer+0x1d/0x30
[    1.857864]  drm_client_dev_unregister+0x69/0xe0
[    1.857868]  drm_dev_unregister+0x2e/0x80
[    1.857872]  drm_dev_unplug+0x21/0x40
[    1.857874]  simpledrm_remove+0x11/0x20
[    1.857877]  platform_remove+0x1f/0x40
[    1.857881]  __device_release_driver+0x17a/0x240
[    1.857884]  device_release_driver+0x24/0x30
[    1.857887]  bus_remove_device+0xd8/0x140
[    1.857889]  device_del+0x18b/0x3f0
[    1.857892]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.857895]  ? try_to_wake_up+0x94/0x5b0
[    1.857899]  platform_device_del.part.0+0x13/0x70
[    1.857902]  platform_device_unregister+0x1c/0x30
[    1.857905]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.857910]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.857913]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.857987]  local_pci_probe+0x45/0x80
[    1.857991]  ? pci_match_device+0xd7/0x130
[    1.857994]  pci_device_probe+0xc2/0x1d0
[    1.857998]  really_probe+0x1f5/0x3d0
[    1.858001]  __driver_probe_device+0xfe/0x180
[    1.858004]  driver_probe_device+0x1e/0x90
[    1.858006]  __driver_attach+0xc0/0x1c0
[    1.858009]  ? __device_attach_driver+0xe0/0xe0
[    1.858011]  ? __device_attach_driver+0xe0/0xe0
[    1.858014]  bus_for_each_dev+0x78/0xc0
[    1.858017]  bus_add_driver+0x149/0x1e0
[    1.858019]  driver_register+0x8f/0xe0
[    1.858022]  ? 0xffffffffc051d000
[    1.858024]  do_one_initcall+0x44/0x200
[    1.858028]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.858031]  do_init_module+0x5c/0x260
[    1.858035]  __do_sys_finit_module+0xb4/0x120
[    1.858040]  __do_fast_syscall_32+0x6b/0xe0
[    1.858043]  do_fast_syscall_32+0x2f/0x70
[    1.858046]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.858050] RIP: 0023:0xf7e51549
[    1.858053] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.858055] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.858058] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.858060] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.858062] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.858063] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.858065] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.858067]  </TASK>
[    1.858070] BUG: Bad page state in process systemd-udevd  pfn:102e29
[    1.858078] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x29 pfn:0x102e29
[    1.858081] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.858083] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.858088] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8a48 0000000000000000
[    1.858090] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858092] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.858093] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858094] page dumped because: corrupted mapping in tail page
[    1.858095] Modules linked in: ghash_clmulni_intel(+) snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.858121] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.858124] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.858125] Call Trace:
[    1.858126]  <TASK>
[    1.858127]  dump_stack_lvl+0x34/0x44
[    1.858131]  bad_page.cold+0x63/0x94
[    1.858135]  free_tail_pages_check+0xd1/0x110
[    1.858138]  ? _raw_spin_lock+0x13/0x30
[    1.858141]  free_pcp_prepare+0x251/0x2e0
[    1.858145]  free_unref_page+0x1d/0x110
[    1.858148]  __vunmap+0x28a/0x380
[    1.858151]  drm_fbdev_cleanup+0x5f/0xb0
[    1.858153]  drm_fbdev_fb_destroy+0x15/0x30
[    1.858156]  unregister_framebuffer+0x1d/0x30
[    1.858159]  drm_client_dev_unregister+0x69/0xe0
[    1.858162]  drm_dev_unregister+0x2e/0x80
[    1.858165]  drm_dev_unplug+0x21/0x40
[    1.858167]  simpledrm_remove+0x11/0x20
[    1.858170]  platform_remove+0x1f/0x40
[    1.858173]  __device_release_driver+0x17a/0x240
[    1.858175]  device_release_driver+0x24/0x30
[    1.858178]  bus_remove_device+0xd8/0x140
[    1.858180]  device_del+0x18b/0x3f0
[    1.858183]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.858186]  ? try_to_wake_up+0x94/0x5b0
[    1.858189]  platform_device_del.part.0+0x13/0x70
[    1.858192]  platform_device_unregister+0x1c/0x30
[    1.858195]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.858198]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.858202]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.858264]  local_pci_probe+0x45/0x80
[    1.858267]  ? pci_match_device+0xd7/0x130
[    1.858271]  pci_device_probe+0xc2/0x1d0
[    1.858274]  really_probe+0x1f5/0x3d0
[    1.858277]  __driver_probe_device+0xfe/0x180
[    1.858280]  driver_probe_device+0x1e/0x90
[    1.858283]  __driver_attach+0xc0/0x1c0
[    1.858285]  ? __device_attach_driver+0xe0/0xe0
[    1.858287]  ? __device_attach_driver+0xe0/0xe0
[    1.858290]  bus_for_each_dev+0x78/0xc0
[    1.858292]  bus_add_driver+0x149/0x1e0
[    1.858295]  driver_register+0x8f/0xe0
[    1.858297]  ? 0xffffffffc051d000
[    1.858299]  do_one_initcall+0x44/0x200
[    1.858302]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.858306]  do_init_module+0x5c/0x260
[    1.858309]  __do_sys_finit_module+0xb4/0x120
[    1.858314]  __do_fast_syscall_32+0x6b/0xe0
[    1.858317]  do_fast_syscall_32+0x2f/0x70
[    1.858319]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.858321] RIP: 0023:0xf7e51549
[    1.858324] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.858326] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.858329] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.858330] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.858332] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.858333] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.858334] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.858337]  </TASK>
[    1.858360] BUG: Bad page state in process systemd-udevd  pfn:102e2a
[    1.858367] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2a pfn:0x102e2a
[    1.858370] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.858372] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.858376] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8a88 0000000000000000
[    1.858378] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858379] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.858381] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858382] page dumped because: corrupted mapping in tail page
[    1.858383] Modules linked in: ghash_clmulni_intel(+) snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.858407] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.858410] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.858411] Call Trace:
[    1.858412]  <TASK>
[    1.858414]  dump_stack_lvl+0x34/0x44
[    1.858418]  bad_page.cold+0x63/0x94
[    1.858421]  free_tail_pages_check+0xd1/0x110
[    1.858424]  ? _raw_spin_lock+0x13/0x30
[    1.858428]  free_pcp_prepare+0x251/0x2e0
[    1.858431]  free_unref_page+0x1d/0x110
[    1.858434]  __vunmap+0x28a/0x380
[    1.858437]  drm_fbdev_cleanup+0x5f/0xb0
[    1.858439]  drm_fbdev_fb_destroy+0x15/0x30
[    1.858441]  unregister_framebuffer+0x1d/0x30
[    1.858444]  drm_client_dev_unregister+0x69/0xe0
[    1.858447]  drm_dev_unregister+0x2e/0x80
[    1.858450]  drm_dev_unplug+0x21/0x40
[    1.858453]  simpledrm_remove+0x11/0x20
[    1.858455]  platform_remove+0x1f/0x40
[    1.858458]  __device_release_driver+0x17a/0x240
[    1.858461]  device_release_driver+0x24/0x30
[    1.858463]  bus_remove_device+0xd8/0x140
[    1.858466]  device_del+0x18b/0x3f0
[    1.858468]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.858471]  ? try_to_wake_up+0x94/0x5b0
[    1.858475]  platform_device_del.part.0+0x13/0x70
[    1.858477]  platform_device_unregister+0x1c/0x30
[    1.858480]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.858484]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.858487]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.858551]  local_pci_probe+0x45/0x80
[    1.858554]  ? pci_match_device+0xd7/0x130
[    1.858558]  pci_device_probe+0xc2/0x1d0
[    1.858561]  really_probe+0x1f5/0x3d0
[    1.858564]  __driver_probe_device+0xfe/0x180
[    1.858566]  driver_probe_device+0x1e/0x90
[    1.858569]  __driver_attach+0xc0/0x1c0
[    1.858571]  ? __device_attach_driver+0xe0/0xe0
[    1.858574]  ? __device_attach_driver+0xe0/0xe0
[    1.858576]  bus_for_each_dev+0x78/0xc0
[    1.858579]  bus_add_driver+0x149/0x1e0
[    1.858581]  driver_register+0x8f/0xe0
[    1.858584]  ? 0xffffffffc051d000
[    1.858586]  do_one_initcall+0x44/0x200
[    1.858589]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.858592]  do_init_module+0x5c/0x260
[    1.858595]  __do_sys_finit_module+0xb4/0x120
[    1.858600]  __do_fast_syscall_32+0x6b/0xe0
[    1.858602]  do_fast_syscall_32+0x2f/0x70
[    1.858605]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.858607] RIP: 0023:0xf7e51549
[    1.858610] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.858612] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.858614] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.858616] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.858617] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.858619] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.858620] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.858623]  </TASK>
[    1.858624] BUG: Bad page state in process systemd-udevd  pfn:102e2b
[    1.858629] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2b pfn:0x102e2b
[    1.858631] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.858633] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.858636] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8ac8 0000000000000000
[    1.858638] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858641] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.858642] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858643] page dumped because: corrupted mapping in tail page
[    1.858644] Modules linked in: ghash_clmulni_intel(+) snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.858665] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.858667] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.858668] Call Trace:
[    1.858669]  <TASK>
[    1.858670]  dump_stack_lvl+0x34/0x44
[    1.858674]  bad_page.cold+0x63/0x94
[    1.858677]  free_tail_pages_check+0xd1/0x110
[    1.858680]  ? _raw_spin_lock+0x13/0x30
[    1.858683]  free_pcp_prepare+0x251/0x2e0
[    1.858687]  free_unref_page+0x1d/0x110
[    1.858690]  __vunmap+0x28a/0x380
[    1.858693]  drm_fbdev_cleanup+0x5f/0xb0
[    1.858695]  drm_fbdev_fb_destroy+0x15/0x30
[    1.858697]  unregister_framebuffer+0x1d/0x30
[    1.858700]  drm_client_dev_unregister+0x69/0xe0
[    1.858702]  drm_dev_unregister+0x2e/0x80
[    1.858705]  drm_dev_unplug+0x21/0x40
[    1.858707]  simpledrm_remove+0x11/0x20
[    1.858710]  platform_remove+0x1f/0x40
[    1.858713]  __device_release_driver+0x17a/0x240
[    1.858715]  device_release_driver+0x24/0x30
[    1.858718]  bus_remove_device+0xd8/0x140
[    1.858720]  device_del+0x18b/0x3f0
[    1.858723]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.858726]  ? try_to_wake_up+0x94/0x5b0
[    1.858729]  platform_device_del.part.0+0x13/0x70
[    1.858733]  platform_device_unregister+0x1c/0x30
[    1.858735]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.858738]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.858741]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.858804]  local_pci_probe+0x45/0x80
[    1.858807]  ? pci_match_device+0xd7/0x130
[    1.858810]  pci_device_probe+0xc2/0x1d0
[    1.858813]  really_probe+0x1f5/0x3d0
[    1.858816]  __driver_probe_device+0xfe/0x180
[    1.858819]  driver_probe_device+0x1e/0x90
[    1.858821]  __driver_attach+0xc0/0x1c0
[    1.858824]  ? __device_attach_driver+0xe0/0xe0
[    1.858826]  ? __device_attach_driver+0xe0/0xe0
[    1.858829]  bus_for_each_dev+0x78/0xc0
[    1.858831]  bus_add_driver+0x149/0x1e0
[    1.858834]  driver_register+0x8f/0xe0
[    1.858836]  ? 0xffffffffc051d000
[    1.858838]  do_one_initcall+0x44/0x200
[    1.858841]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.858844]  do_init_module+0x5c/0x260
[    1.858847]  __do_sys_finit_module+0xb4/0x120
[    1.858852]  __do_fast_syscall_32+0x6b/0xe0
[    1.858855]  do_fast_syscall_32+0x2f/0x70
[    1.858857]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.858860] RIP: 0023:0xf7e51549
[    1.858862] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.858864] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.858867] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.858868] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.858870] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.858871] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.858873] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.858876]  </TASK>
[    1.858880] BUG: Bad page state in process systemd-udevd  pfn:102e2c
[    1.858885] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2c pfn:0x102e2c
[    1.858887] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.858889] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.858893] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8b08 0000000000000000
[    1.858894] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858896] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.858898] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.858899] page dumped because: corrupted mapping in tail page
[    1.858900] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.858922] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.858924] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.858925] Call Trace:
[    1.858926]  <TASK>
[    1.858927]  dump_stack_lvl+0x34/0x44
[    1.858931]  bad_page.cold+0x63/0x94
[    1.858934]  free_tail_pages_check+0xd1/0x110
[    1.858937]  ? _raw_spin_lock+0x13/0x30
[    1.858939]  free_pcp_prepare+0x251/0x2e0
[    1.858942]  free_unref_page+0x1d/0x110
[    1.858945]  __vunmap+0x28a/0x380
[    1.858948]  drm_fbdev_cleanup+0x5f/0xb0
[    1.858951]  drm_fbdev_fb_destroy+0x15/0x30
[    1.858953]  unregister_framebuffer+0x1d/0x30
[    1.858956]  drm_client_dev_unregister+0x69/0xe0
[    1.858958]  drm_dev_unregister+0x2e/0x80
[    1.858960]  drm_dev_unplug+0x21/0x40
[    1.858963]  simpledrm_remove+0x11/0x20
[    1.858965]  platform_remove+0x1f/0x40
[    1.858968]  __device_release_driver+0x17a/0x240
[    1.858970]  device_release_driver+0x24/0x30
[    1.858973]  bus_remove_device+0xd8/0x140
[    1.858975]  device_del+0x18b/0x3f0
[    1.858978]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.858981]  ? try_to_wake_up+0x94/0x5b0
[    1.858983]  platform_device_del.part.0+0x13/0x70
[    1.858986]  platform_device_unregister+0x1c/0x30
[    1.858989]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.858993]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.858995]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.859055]  local_pci_probe+0x45/0x80
[    1.859058]  ? pci_match_device+0xd7/0x130
[    1.859060]  pci_device_probe+0xc2/0x1d0
[    1.859064]  really_probe+0x1f5/0x3d0
[    1.859066]  __driver_probe_device+0xfe/0x180
[    1.859069]  driver_probe_device+0x1e/0x90
[    1.859072]  __driver_attach+0xc0/0x1c0
[    1.859074]  ? __device_attach_driver+0xe0/0xe0
[    1.859076]  ? __device_attach_driver+0xe0/0xe0
[    1.859079]  bus_for_each_dev+0x78/0xc0
[    1.859081]  bus_add_driver+0x149/0x1e0
[    1.859084]  driver_register+0x8f/0xe0
[    1.859086]  ? 0xffffffffc051d000
[    1.859088]  do_one_initcall+0x44/0x200
[    1.859090]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.859093]  do_init_module+0x5c/0x260
[    1.859096]  __do_sys_finit_module+0xb4/0x120
[    1.859101]  __do_fast_syscall_32+0x6b/0xe0
[    1.859104]  do_fast_syscall_32+0x2f/0x70
[    1.859106]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.859109] RIP: 0023:0xf7e51549
[    1.859112] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.859113] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.859116] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.859118] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.859119] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.859120] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.859121] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.859124]  </TASK>
[    1.859128] BUG: Bad page state in process systemd-udevd  pfn:102e2d
[    1.859133] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2d pfn:0x102e2d
[    1.859136] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.859145] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.859149] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8b48 0000000000000000
[    1.859151] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859153] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.859154] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859155] page dumped because: corrupted mapping in tail page
[    1.859156] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.859189] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.859191] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.859193] Call Trace:
[    1.859194]  <TASK>
[    1.859195]  dump_stack_lvl+0x34/0x44
[    1.859199]  bad_page.cold+0x63/0x94
[    1.859202]  free_tail_pages_check+0xd1/0x110
[    1.859206]  ? _raw_spin_lock+0x13/0x30
[    1.859209]  free_pcp_prepare+0x251/0x2e0
[    1.859212]  free_unref_page+0x1d/0x110
[    1.859215]  __vunmap+0x28a/0x380
[    1.859218]  drm_fbdev_cleanup+0x5f/0xb0
[    1.859221]  drm_fbdev_fb_destroy+0x15/0x30
[    1.859223]  unregister_framebuffer+0x1d/0x30
[    1.859226]  drm_client_dev_unregister+0x69/0xe0
[    1.859228]  drm_dev_unregister+0x2e/0x80
[    1.859231]  drm_dev_unplug+0x21/0x40
[    1.859234]  simpledrm_remove+0x11/0x20
[    1.859236]  platform_remove+0x1f/0x40
[    1.859239]  __device_release_driver+0x17a/0x240
[    1.859242]  device_release_driver+0x24/0x30
[    1.859244]  bus_remove_device+0xd8/0x140
[    1.859246]  device_del+0x18b/0x3f0
[    1.859249]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.859252]  ? try_to_wake_up+0x94/0x5b0
[    1.859255]  platform_device_del.part.0+0x13/0x70
[    1.859258]  platform_device_unregister+0x1c/0x30
[    1.859261]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.859264]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.859267]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.859331]  local_pci_probe+0x45/0x80
[    1.859335]  ? pci_match_device+0xd7/0x130
[    1.859338]  pci_device_probe+0xc2/0x1d0
[    1.859341]  really_probe+0x1f5/0x3d0
[    1.859344]  __driver_probe_device+0xfe/0x180
[    1.859346]  driver_probe_device+0x1e/0x90
[    1.859349]  __driver_attach+0xc0/0x1c0
[    1.859351]  ? __device_attach_driver+0xe0/0xe0
[    1.859354]  ? __device_attach_driver+0xe0/0xe0
[    1.859356]  bus_for_each_dev+0x78/0xc0
[    1.859359]  bus_add_driver+0x149/0x1e0
[    1.859361]  driver_register+0x8f/0xe0
[    1.859364]  ? 0xffffffffc051d000
[    1.859366]  do_one_initcall+0x44/0x200
[    1.859369]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.859372]  do_init_module+0x5c/0x260
[    1.859375]  __do_sys_finit_module+0xb4/0x120
[    1.859380]  __do_fast_syscall_32+0x6b/0xe0
[    1.859382]  do_fast_syscall_32+0x2f/0x70
[    1.859385]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.859387] RIP: 0023:0xf7e51549
[    1.859389] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.859391] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.859394] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.859396] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.859397] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.859399] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.859400] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.859402]  </TASK>
[    1.859403] BUG: Bad page state in process systemd-udevd  pfn:102e2e
[    1.859409] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2e pfn:0x102e2e
[    1.859412] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.859413] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.859417] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8b88 0000000000000000
[    1.859418] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859420] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.859422] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859422] page dumped because: corrupted mapping in tail page
[    1.859423] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.859445] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.859448] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.859450] Call Trace:
[    1.859451]  <TASK>
[    1.859452]  dump_stack_lvl+0x34/0x44
[    1.859456]  bad_page.cold+0x63/0x94
[    1.859459]  free_tail_pages_check+0xd1/0x110
[    1.859463]  ? _raw_spin_lock+0x13/0x30
[    1.859466]  free_pcp_prepare+0x251/0x2e0
[    1.859469]  free_unref_page+0x1d/0x110
[    1.859472]  __vunmap+0x28a/0x380
[    1.859475]  drm_fbdev_cleanup+0x5f/0xb0
[    1.859478]  drm_fbdev_fb_destroy+0x15/0x30
[    1.859480]  unregister_framebuffer+0x1d/0x30
[    1.859483]  drm_client_dev_unregister+0x69/0xe0
[    1.859486]  drm_dev_unregister+0x2e/0x80
[    1.859488]  drm_dev_unplug+0x21/0x40
[    1.859491]  simpledrm_remove+0x11/0x20
[    1.859493]  platform_remove+0x1f/0x40
[    1.859496]  __device_release_driver+0x17a/0x240
[    1.859499]  device_release_driver+0x24/0x30
[    1.859501]  bus_remove_device+0xd8/0x140
[    1.859503]  device_del+0x18b/0x3f0
[    1.859506]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.859509]  ? try_to_wake_up+0x94/0x5b0
[    1.859512]  platform_device_del.part.0+0x13/0x70
[    1.859515]  platform_device_unregister+0x1c/0x30
[    1.859518]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.859521]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.859524]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.859586]  local_pci_probe+0x45/0x80
[    1.859590]  ? pci_match_device+0xd7/0x130
[    1.859593]  pci_device_probe+0xc2/0x1d0
[    1.859596]  really_probe+0x1f5/0x3d0
[    1.859599]  __driver_probe_device+0xfe/0x180
[    1.859602]  driver_probe_device+0x1e/0x90
[    1.859604]  __driver_attach+0xc0/0x1c0
[    1.859607]  ? __device_attach_driver+0xe0/0xe0
[    1.859609]  ? __device_attach_driver+0xe0/0xe0
[    1.859611]  bus_for_each_dev+0x78/0xc0
[    1.859614]  bus_add_driver+0x149/0x1e0
[    1.859616]  driver_register+0x8f/0xe0
[    1.859619]  ? 0xffffffffc051d000
[    1.859621]  do_one_initcall+0x44/0x200
[    1.859624]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.859627]  do_init_module+0x5c/0x260
[    1.859631]  __do_sys_finit_module+0xb4/0x120
[    1.859635]  __do_fast_syscall_32+0x6b/0xe0
[    1.859638]  do_fast_syscall_32+0x2f/0x70
[    1.859641]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.859644] RIP: 0023:0xf7e51549
[    1.859646] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.859648] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.859651] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.859652] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.859654] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.859655] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.859656] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.859659]  </TASK>
[    1.859694] BUG: Bad page state in process systemd-udevd  pfn:102e2f
[    1.859700] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x2f pfn:0x102e2f
[    1.859702] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.859704] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.859707] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8bc8 0000000000000000
[    1.859709] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859710] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.859712] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.859713] page dumped because: corrupted mapping in tail page
[    1.859714] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.859736] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.859739] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.859740] Call Trace:
[    1.859741]  <TASK>
[    1.859742]  dump_stack_lvl+0x34/0x44
[    1.859747]  bad_page.cold+0x63/0x94
[    1.859750]  free_tail_pages_check+0xd1/0x110
[    1.859753]  ? _raw_spin_lock+0x13/0x30
[    1.859756]  free_pcp_prepare+0x251/0x2e0
[    1.859759]  free_unref_page+0x1d/0x110
[    1.859763]  __vunmap+0x28a/0x380
[    1.859766]  drm_fbdev_cleanup+0x5f/0xb0
[    1.859769]  drm_fbdev_fb_destroy+0x15/0x30
[    1.859771]  unregister_framebuffer+0x1d/0x30
[    1.859774]  drm_client_dev_unregister+0x69/0xe0
[    1.859776]  drm_dev_unregister+0x2e/0x80
[    1.859779]  drm_dev_unplug+0x21/0x40
[    1.859781]  simpledrm_remove+0x11/0x20
[    1.859784]  platform_remove+0x1f/0x40
[    1.859787]  __device_release_driver+0x17a/0x240
[    1.859790]  device_release_driver+0x24/0x30
[    1.859793]  bus_remove_device+0xd8/0x140
[    1.859795]  device_del+0x18b/0x3f0
[    1.859798]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.859801]  ? try_to_wake_up+0x94/0x5b0
[    1.859804]  platform_device_del.part.0+0x13/0x70
[    1.859807]  platform_device_unregister+0x1c/0x30
[    1.859810]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.859813]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.859817]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.859883]  local_pci_probe+0x45/0x80
[    1.859886]  ? pci_match_device+0xd7/0x130
[    1.859889]  pci_device_probe+0xc2/0x1d0
[    1.859893]  really_probe+0x1f5/0x3d0
[    1.859896]  __driver_probe_device+0xfe/0x180
[    1.859899]  driver_probe_device+0x1e/0x90
[    1.859901]  __driver_attach+0xc0/0x1c0
[    1.859904]  ? __device_attach_driver+0xe0/0xe0
[    1.859906]  ? __device_attach_driver+0xe0/0xe0
[    1.859908]  bus_for_each_dev+0x78/0xc0
[    1.859911]  bus_add_driver+0x149/0x1e0
[    1.859913]  driver_register+0x8f/0xe0
[    1.859916]  ? 0xffffffffc051d000
[    1.859918]  do_one_initcall+0x44/0x200
[    1.859921]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.859925]  do_init_module+0x5c/0x260
[    1.859928]  __do_sys_finit_module+0xb4/0x120
[    1.859933]  __do_fast_syscall_32+0x6b/0xe0
[    1.859936]  do_fast_syscall_32+0x2f/0x70
[    1.859938]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.859941] RIP: 0023:0xf7e51549
[    1.859944] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.859946] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.859949] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.859951] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.859953] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.859954] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.859956] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.859958]  </TASK>
[    1.859967] BUG: Bad page state in process systemd-udevd  pfn:102e30
[    1.859972] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x30 pfn:0x102e30
[    1.859975] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.859977] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.860011] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8c08 0000000000000000
[    1.860013] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.860015] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.860016] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.860017] page dumped because: corrupted mapping in tail page
[    1.860018] Modules linked in: ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci(+) snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.860046] CPU: 0 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.860048] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.860050] Call Trace:
[    1.860051]  <TASK>
[    1.860052]  dump_stack_lvl+0x34/0x44
[    1.860058]  bad_page.cold+0x63/0x94
[    1.860061]  free_tail_pages_check+0xd1/0x110
[    1.860065]  ? _raw_spin_lock+0x13/0x30
[    1.860068]  free_pcp_prepare+0x251/0x2e0
[    1.860071]  free_unref_page+0x1d/0x110
[    1.860075]  __vunmap+0x28a/0x380
[    1.860078]  drm_fbdev_cleanup+0x5f/0xb0
[    1.860080]  drm_fbdev_fb_destroy+0x15/0x30
[    1.860083]  unregister_framebuffer+0x1d/0x30
[    1.860086]  drm_client_dev_unregister+0x69/0xe0
[    1.860089]  drm_dev_unregister+0x2e/0x80
[    1.860092]  drm_dev_unplug+0x21/0x40
[    1.860094]  simpledrm_remove+0x11/0x20
[    1.860097]  platform_remove+0x1f/0x40
[    1.860100]  __device_release_driver+0x17a/0x240
[    1.860103]  device_release_driver+0x24/0x30
[    1.860105]  bus_remove_device+0xd8/0x140
[    1.860107]  device_del+0x18b/0x3f0
[    1.860110]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.860113]  ? try_to_wake_up+0x94/0x5b0
[    1.860116]  platform_device_del.part.0+0x13/0x70
[    1.860119]  platform_device_unregister+0x1c/0x30
[    1.860121]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.860124]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.860127]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.860192]  local_pci_probe+0x45/0x80
[    1.860196]  ? pci_match_device+0xd7/0x130
[    1.860198]  pci_device_probe+0xc2/0x1d0
[    1.860202]  really_probe+0x1f5/0x3d0
[    1.860205]  __driver_probe_device+0xfe/0x180
[    1.860207]  driver_probe_device+0x1e/0x90
[    1.860210]  __driver_attach+0xc0/0x1c0
[    1.860213]  ? __device_attach_driver+0xe0/0xe0
[    1.860215]  ? __device_attach_driver+0xe0/0xe0
[    1.860218]  bus_for_each_dev+0x78/0xc0
[    1.860221]  bus_add_driver+0x149/0x1e0
[    1.860224]  driver_register+0x8f/0xe0
[    1.860226]  ? 0xffffffffc051d000
[    1.860228]  do_one_initcall+0x44/0x200
[    1.860232]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.860235]  do_init_module+0x5c/0x260
[    1.860239]  __do_sys_finit_module+0xb4/0x120
[    1.860243]  __do_fast_syscall_32+0x6b/0xe0
[    1.860246]  do_fast_syscall_32+0x2f/0x70
[    1.860248]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.860251] RIP: 0023:0xf7e51549
[    1.860254] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.860256] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.860259] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.860261] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.860262] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.860264] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.860265] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.860268]  </TASK>
[    1.868859] BUG: Bad page state in process systemd-udevd  pfn:102e31
[    1.868869] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x31 pfn:0x102e31
[    1.868873] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.868875] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.868880] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8c48 0000000000000000
[    1.868882] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.868884] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.868885] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.868886] page dumped because: corrupted mapping in tail page
[    1.868887] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.868916] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.868919] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.868921] Call Trace:
[    1.868922]  <TASK>
[    1.868924]  dump_stack_lvl+0x34/0x44
[    1.868931]  bad_page.cold+0x63/0x94
[    1.868934]  free_tail_pages_check+0xd1/0x110
[    1.868939]  ? _raw_spin_lock+0x13/0x30
[    1.868943]  free_pcp_prepare+0x251/0x2e0
[    1.868946]  free_unref_page+0x1d/0x110
[    1.868950]  __vunmap+0x28a/0x380
[    1.868953]  drm_fbdev_cleanup+0x5f/0xb0
[    1.868957]  drm_fbdev_fb_destroy+0x15/0x30
[    1.868959]  unregister_framebuffer+0x1d/0x30
[    1.868963]  drm_client_dev_unregister+0x69/0xe0
[    1.868967]  drm_dev_unregister+0x2e/0x80
[    1.868970]  drm_dev_unplug+0x21/0x40
[    1.868973]  simpledrm_remove+0x11/0x20
[    1.868975]  platform_remove+0x1f/0x40
[    1.868979]  __device_release_driver+0x17a/0x240
[    1.868982]  device_release_driver+0x24/0x30
[    1.868985]  bus_remove_device+0xd8/0x140
[    1.868987]  device_del+0x18b/0x3f0
[    1.868990]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.868993]  ? try_to_wake_up+0x94/0x5b0
[    1.868997]  platform_device_del.part.0+0x13/0x70
[    1.869001]  platform_device_unregister+0x1c/0x30
[    1.869004]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.869008]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.869011]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.869081]  local_pci_probe+0x45/0x80
[    1.869085]  ? pci_match_device+0xd7/0x130
[    1.869089]  pci_device_probe+0xc2/0x1d0
[    1.869093]  really_probe+0x1f5/0x3d0
[    1.869095]  __driver_probe_device+0xfe/0x180
[    1.869098]  driver_probe_device+0x1e/0x90
[    1.869101]  __driver_attach+0xc0/0x1c0
[    1.869104]  ? __device_attach_driver+0xe0/0xe0
[    1.869106]  ? __device_attach_driver+0xe0/0xe0
[    1.869109]  bus_for_each_dev+0x78/0xc0
[    1.869112]  bus_add_driver+0x149/0x1e0
[    1.869114]  driver_register+0x8f/0xe0
[    1.869117]  ? 0xffffffffc051d000
[    1.869119]  do_one_initcall+0x44/0x200
[    1.869122]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.869126]  do_init_module+0x5c/0x260
[    1.869130]  __do_sys_finit_module+0xb4/0x120
[    1.869134]  __do_fast_syscall_32+0x6b/0xe0
[    1.869138]  do_fast_syscall_32+0x2f/0x70
[    1.869140]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.869143] RIP: 0023:0xf7e51549
[    1.869146] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.869148] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.869150] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.869152] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.869153] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.869154] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.869156] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.869158]  </TASK>
[    1.869160] BUG: Bad page state in process systemd-udevd  pfn:102e32
[    1.869164] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x32 pfn:0x102e32
[    1.869166] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.869168] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.869943] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8c88 0000000000000000
[    1.869947] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.869949] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.869951] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.869952] page dumped because: corrupted mapping in tail page
[    1.869954] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.869981] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.869985] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.869986] Call Trace:
[    1.869988]  <TASK>
[    1.869989]  dump_stack_lvl+0x34/0x44
[    1.869996]  bad_page.cold+0x63/0x94
[    1.870000]  free_tail_pages_check+0xd1/0x110
[    1.870004]  ? _raw_spin_lock+0x13/0x30
[    1.870008]  free_pcp_prepare+0x251/0x2e0
[    1.870011]  free_unref_page+0x1d/0x110
[    1.870014]  __vunmap+0x28a/0x380
[    1.870018]  drm_fbdev_cleanup+0x5f/0xb0
[    1.870021]  drm_fbdev_fb_destroy+0x15/0x30
[    1.870023]  unregister_framebuffer+0x1d/0x30
[    1.870027]  drm_client_dev_unregister+0x69/0xe0
[    1.870030]  drm_dev_unregister+0x2e/0x80
[    1.870034]  drm_dev_unplug+0x21/0x40
[    1.870036]  simpledrm_remove+0x11/0x20
[    1.870039]  platform_remove+0x1f/0x40
[    1.870042]  __device_release_driver+0x17a/0x240
[    1.870045]  device_release_driver+0x24/0x30
[    1.870047]  bus_remove_device+0xd8/0x140
[    1.870050]  device_del+0x18b/0x3f0
[    1.870053]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.870056]  ? try_to_wake_up+0x94/0x5b0
[    1.870059]  platform_device_del.part.0+0x13/0x70
[    1.870062]  platform_device_unregister+0x1c/0x30
[    1.870065]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.870069]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.870072]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.870142]  local_pci_probe+0x45/0x80
[    1.870145]  ? pci_match_device+0xd7/0x130
[    1.870148]  pci_device_probe+0xc2/0x1d0
[    1.870152]  really_probe+0x1f5/0x3d0
[    1.870155]  __driver_probe_device+0xfe/0x180
[    1.870158]  driver_probe_device+0x1e/0x90
[    1.870160]  __driver_attach+0xc0/0x1c0
[    1.870163]  ? __device_attach_driver+0xe0/0xe0
[    1.870165]  ? __device_attach_driver+0xe0/0xe0
[    1.870167]  bus_for_each_dev+0x78/0xc0
[    1.870170]  bus_add_driver+0x149/0x1e0
[    1.870173]  driver_register+0x8f/0xe0
[    1.870175]  ? 0xffffffffc051d000
[    1.870178]  do_one_initcall+0x44/0x200
[    1.870181]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.870185]  do_init_module+0x5c/0x260
[    1.870189]  __do_sys_finit_module+0xb4/0x120
[    1.870195]  __do_fast_syscall_32+0x6b/0xe0
[    1.870198]  do_fast_syscall_32+0x2f/0x70
[    1.870200]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.870203] RIP: 0023:0xf7e51549
[    1.870206] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.870208] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.870211] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.870213] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.870214] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.870216] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.870217] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.870220]  </TASK>
[    1.870340] BUG: Bad page state in process systemd-udevd  pfn:102e33
[    1.870348] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x33 pfn:0x102e33
[    1.870351] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.870353] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.870356] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8cc8 0000000000000000
[    1.870358] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870360] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.870362] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870363] page dumped because: corrupted mapping in tail page
[    1.870364] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.870386] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.870389] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.870390] Call Trace:
[    1.870391]  <TASK>
[    1.870392]  dump_stack_lvl+0x34/0x44
[    1.870396]  bad_page.cold+0x63/0x94
[    1.870399]  free_tail_pages_check+0xd1/0x110
[    1.870402]  ? _raw_spin_lock+0x13/0x30
[    1.870405]  free_pcp_prepare+0x251/0x2e0
[    1.870408]  free_unref_page+0x1d/0x110
[    1.870412]  __vunmap+0x28a/0x380
[    1.870415]  drm_fbdev_cleanup+0x5f/0xb0
[    1.870417]  drm_fbdev_fb_destroy+0x15/0x30
[    1.870419]  unregister_framebuffer+0x1d/0x30
[    1.870422]  drm_client_dev_unregister+0x69/0xe0
[    1.870425]  drm_dev_unregister+0x2e/0x80
[    1.870427]  drm_dev_unplug+0x21/0x40
[    1.870430]  simpledrm_remove+0x11/0x20
[    1.870432]  platform_remove+0x1f/0x40
[    1.870435]  __device_release_driver+0x17a/0x240
[    1.870437]  device_release_driver+0x24/0x30
[    1.870439]  bus_remove_device+0xd8/0x140
[    1.870442]  device_del+0x18b/0x3f0
[    1.870445]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.870447]  ? try_to_wake_up+0x94/0x5b0
[    1.870450]  platform_device_del.part.0+0x13/0x70
[    1.870453]  platform_device_unregister+0x1c/0x30
[    1.870456]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.870459]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.870462]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.870521]  local_pci_probe+0x45/0x80
[    1.870524]  ? pci_match_device+0xd7/0x130
[    1.870527]  pci_device_probe+0xc2/0x1d0
[    1.870530]  really_probe+0x1f5/0x3d0
[    1.870532]  __driver_probe_device+0xfe/0x180
[    1.870535]  driver_probe_device+0x1e/0x90
[    1.870538]  __driver_attach+0xc0/0x1c0
[    1.870540]  ? __device_attach_driver+0xe0/0xe0
[    1.870542]  ? __device_attach_driver+0xe0/0xe0
[    1.870545]  bus_for_each_dev+0x78/0xc0
[    1.870547]  bus_add_driver+0x149/0x1e0
[    1.870550]  driver_register+0x8f/0xe0
[    1.870552]  ? 0xffffffffc051d000
[    1.870554]  do_one_initcall+0x44/0x200
[    1.870557]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.870560]  do_init_module+0x5c/0x260
[    1.870563]  __do_sys_finit_module+0xb4/0x120
[    1.870567]  __do_fast_syscall_32+0x6b/0xe0
[    1.870570]  do_fast_syscall_32+0x2f/0x70
[    1.870572]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.870574] RIP: 0023:0xf7e51549
[    1.870576] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.870578] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.870581] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.870582] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.870584] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.870585] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.870586] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.870589]  </TASK>
[    1.870590] BUG: Bad page state in process systemd-udevd  pfn:102e34
[    1.870594] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x34 pfn:0x102e34
[    1.870596] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.870598] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.870601] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8d08 0000000000000000
[    1.870603] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870604] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.870606] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870607] page dumped because: corrupted mapping in tail page
[    1.870608] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.870629] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.870632] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.870633] Call Trace:
[    1.870634]  <TASK>
[    1.870635]  dump_stack_lvl+0x34/0x44
[    1.870639]  bad_page.cold+0x63/0x94
[    1.870641]  free_tail_pages_check+0xd1/0x110
[    1.870644]  ? _raw_spin_lock+0x13/0x30
[    1.870647]  free_pcp_prepare+0x251/0x2e0
[    1.870650]  free_unref_page+0x1d/0x110
[    1.870653]  __vunmap+0x28a/0x380
[    1.870656]  drm_fbdev_cleanup+0x5f/0xb0
[    1.870658]  drm_fbdev_fb_destroy+0x15/0x30
[    1.870660]  unregister_framebuffer+0x1d/0x30
[    1.870662]  drm_client_dev_unregister+0x69/0xe0
[    1.870665]  drm_dev_unregister+0x2e/0x80
[    1.870667]  drm_dev_unplug+0x21/0x40
[    1.870670]  simpledrm_remove+0x11/0x20
[    1.870672]  platform_remove+0x1f/0x40
[    1.870675]  __device_release_driver+0x17a/0x240
[    1.870677]  device_release_driver+0x24/0x30
[    1.870680]  bus_remove_device+0xd8/0x140
[    1.870682]  device_del+0x18b/0x3f0
[    1.870685]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.870688]  ? try_to_wake_up+0x94/0x5b0
[    1.870690]  platform_device_del.part.0+0x13/0x70
[    1.870693]  platform_device_unregister+0x1c/0x30
[    1.870696]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.870699]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.870702]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.870759]  local_pci_probe+0x45/0x80
[    1.870762]  ? pci_match_device+0xd7/0x130
[    1.870765]  pci_device_probe+0xc2/0x1d0
[    1.870768]  really_probe+0x1f5/0x3d0
[    1.870771]  __driver_probe_device+0xfe/0x180
[    1.870773]  driver_probe_device+0x1e/0x90
[    1.870776]  __driver_attach+0xc0/0x1c0
[    1.870778]  ? __device_attach_driver+0xe0/0xe0
[    1.870780]  ? __device_attach_driver+0xe0/0xe0
[    1.870783]  bus_for_each_dev+0x78/0xc0
[    1.870785]  bus_add_driver+0x149/0x1e0
[    1.870788]  driver_register+0x8f/0xe0
[    1.870790]  ? 0xffffffffc051d000
[    1.870792]  do_one_initcall+0x44/0x200
[    1.870794]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.870797]  do_init_module+0x5c/0x260
[    1.870800]  __do_sys_finit_module+0xb4/0x120
[    1.870804]  __do_fast_syscall_32+0x6b/0xe0
[    1.870807]  do_fast_syscall_32+0x2f/0x70
[    1.870809]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.870811] RIP: 0023:0xf7e51549
[    1.870813] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.870815] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.870818] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.870819] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.870820] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.870822] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.870823] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.870825]  </TASK>
[    1.870826] BUG: Bad page state in process systemd-udevd  pfn:102e35
[    1.870829] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x35 pfn:0x102e35
[    1.870832] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.870833] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.870836] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8d48 0000000000000000
[    1.870838] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870840] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.870841] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.870842] page dumped because: corrupted mapping in tail page
[    1.870842] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.870863] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.870865] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.870866] Call Trace:
[    1.870867]  <TASK>
[    1.870868]  dump_stack_lvl+0x34/0x44
[    1.870872]  bad_page.cold+0x63/0x94
[    1.870874]  free_tail_pages_check+0xd1/0x110
[    1.870877]  ? _raw_spin_lock+0x13/0x30
[    1.870880]  free_pcp_prepare+0x251/0x2e0
[    1.870883]  free_unref_page+0x1d/0x110
[    1.870886]  __vunmap+0x28a/0x380
[    1.870889]  drm_fbdev_cleanup+0x5f/0xb0
[    1.870891]  drm_fbdev_fb_destroy+0x15/0x30
[    1.870893]  unregister_framebuffer+0x1d/0x30
[    1.870895]  drm_client_dev_unregister+0x69/0xe0
[    1.870898]  drm_dev_unregister+0x2e/0x80
[    1.870900]  drm_dev_unplug+0x21/0x40
[    1.870902]  simpledrm_remove+0x11/0x20
[    1.870904]  platform_remove+0x1f/0x40
[    1.870907]  __device_release_driver+0x17a/0x240
[    1.870909]  device_release_driver+0x24/0x30
[    1.870912]  bus_remove_device+0xd8/0x140
[    1.870915]  device_del+0x18b/0x3f0
[    1.870917]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.870920]  ? try_to_wake_up+0x94/0x5b0
[    1.870923]  platform_device_del.part.0+0x13/0x70
[    1.870925]  platform_device_unregister+0x1c/0x30
[    1.870928]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.870930]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.870933]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.870990]  local_pci_probe+0x45/0x80
[    1.870993]  ? pci_match_device+0xd7/0x130
[    1.870996]  pci_device_probe+0xc2/0x1d0
[    1.870999]  really_probe+0x1f5/0x3d0
[    1.871002]  __driver_probe_device+0xfe/0x180
[    1.871004]  driver_probe_device+0x1e/0x90
[    1.871007]  __driver_attach+0xc0/0x1c0
[    1.871009]  ? __device_attach_driver+0xe0/0xe0
[    1.871011]  ? __device_attach_driver+0xe0/0xe0
[    1.871014]  bus_for_each_dev+0x78/0xc0
[    1.871016]  bus_add_driver+0x149/0x1e0
[    1.871019]  driver_register+0x8f/0xe0
[    1.871021]  ? 0xffffffffc051d000
[    1.871023]  do_one_initcall+0x44/0x200
[    1.871026]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.871029]  do_init_module+0x5c/0x260
[    1.871033]  __do_sys_finit_module+0xb4/0x120
[    1.871037]  __do_fast_syscall_32+0x6b/0xe0
[    1.871040]  do_fast_syscall_32+0x2f/0x70
[    1.871043]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.871045] RIP: 0023:0xf7e51549
[    1.871048] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.871050] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.871052] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.871054] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.871055] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.871057] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.871058] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.871061]  </TASK>
[    1.871062] BUG: Bad page state in process systemd-udevd  pfn:102e36
[    1.871068] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x36 pfn:0x102e36
[    1.871070] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.871072] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.871075] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8d88 0000000000000000
[    1.871077] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871079] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.871080] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871081] page dumped because: corrupted mapping in tail page
[    1.871082] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.871103] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.871106] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.871107] Call Trace:
[    1.871109]  <TASK>
[    1.871110]  dump_stack_lvl+0x34/0x44
[    1.871114]  bad_page.cold+0x63/0x94
[    1.871117]  free_tail_pages_check+0xd1/0x110
[    1.871120]  ? _raw_spin_lock+0x13/0x30
[    1.871123]  free_pcp_prepare+0x251/0x2e0
[    1.871126]  free_unref_page+0x1d/0x110
[    1.871129]  __vunmap+0x28a/0x380
[    1.871133]  drm_fbdev_cleanup+0x5f/0xb0
[    1.871135]  drm_fbdev_fb_destroy+0x15/0x30
[    1.871137]  unregister_framebuffer+0x1d/0x30
[    1.871139]  drm_client_dev_unregister+0x69/0xe0
[    1.871142]  drm_dev_unregister+0x2e/0x80
[    1.871145]  drm_dev_unplug+0x21/0x40
[    1.871147]  simpledrm_remove+0x11/0x20
[    1.871150]  platform_remove+0x1f/0x40
[    1.871152]  __device_release_driver+0x17a/0x240
[    1.871155]  device_release_driver+0x24/0x30
[    1.871157]  bus_remove_device+0xd8/0x140
[    1.871160]  device_del+0x18b/0x3f0
[    1.871162]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.871165]  ? try_to_wake_up+0x94/0x5b0
[    1.871168]  platform_device_del.part.0+0x13/0x70
[    1.871171]  platform_device_unregister+0x1c/0x30
[    1.871174]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.871177]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.871180]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.871240]  local_pci_probe+0x45/0x80
[    1.871243]  ? pci_match_device+0xd7/0x130
[    1.871246]  pci_device_probe+0xc2/0x1d0
[    1.871249]  really_probe+0x1f5/0x3d0
[    1.871252]  __driver_probe_device+0xfe/0x180
[    1.871255]  driver_probe_device+0x1e/0x90
[    1.871258]  __driver_attach+0xc0/0x1c0
[    1.871260]  ? __device_attach_driver+0xe0/0xe0
[    1.871262]  ? __device_attach_driver+0xe0/0xe0
[    1.871265]  bus_for_each_dev+0x78/0xc0
[    1.871267]  bus_add_driver+0x149/0x1e0
[    1.871270]  driver_register+0x8f/0xe0
[    1.871273]  ? 0xffffffffc051d000
[    1.871274]  do_one_initcall+0x44/0x200
[    1.871277]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.871281]  do_init_module+0x5c/0x260
[    1.871284]  __do_sys_finit_module+0xb4/0x120
[    1.871288]  __do_fast_syscall_32+0x6b/0xe0
[    1.871291]  do_fast_syscall_32+0x2f/0x70
[    1.871293]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.871296] RIP: 0023:0xf7e51549
[    1.871299] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.871301] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.871304] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.871305] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.871306] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.871308] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.871309] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.871312]  </TASK>
[    1.871319] BUG: Bad page state in process systemd-udevd  pfn:102e37
[    1.871324] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x37 pfn:0x102e37
[    1.871327] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.871329] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.871332] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8dc8 0000000000000000
[    1.871334] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871336] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.871337] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871338] page dumped because: corrupted mapping in tail page
[    1.871339] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.871361] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.871363] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.871365] Call Trace:
[    1.871366]  <TASK>
[    1.871367]  dump_stack_lvl+0x34/0x44
[    1.871371]  bad_page.cold+0x63/0x94
[    1.871373]  free_tail_pages_check+0xd1/0x110
[    1.871377]  ? _raw_spin_lock+0x13/0x30
[    1.871380]  free_pcp_prepare+0x251/0x2e0
[    1.871383]  free_unref_page+0x1d/0x110
[    1.871386]  __vunmap+0x28a/0x380
[    1.871389]  drm_fbdev_cleanup+0x5f/0xb0
[    1.871391]  drm_fbdev_fb_destroy+0x15/0x30
[    1.871393]  unregister_framebuffer+0x1d/0x30
[    1.871396]  drm_client_dev_unregister+0x69/0xe0
[    1.871398]  drm_dev_unregister+0x2e/0x80
[    1.871401]  drm_dev_unplug+0x21/0x40
[    1.871404]  simpledrm_remove+0x11/0x20
[    1.871406]  platform_remove+0x1f/0x40
[    1.871409]  __device_release_driver+0x17a/0x240
[    1.871411]  device_release_driver+0x24/0x30
[    1.871414]  bus_remove_device+0xd8/0x140
[    1.871416]  device_del+0x18b/0x3f0
[    1.871419]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.871422]  ? try_to_wake_up+0x94/0x5b0
[    1.871424]  platform_device_del.part.0+0x13/0x70
[    1.871427]  platform_device_unregister+0x1c/0x30
[    1.871430]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.871433]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.871436]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.871494]  local_pci_probe+0x45/0x80
[    1.871497]  ? pci_match_device+0xd7/0x130
[    1.871500]  pci_device_probe+0xc2/0x1d0
[    1.871503]  really_probe+0x1f5/0x3d0
[    1.871506]  __driver_probe_device+0xfe/0x180
[    1.871508]  driver_probe_device+0x1e/0x90
[    1.871511]  __driver_attach+0xc0/0x1c0
[    1.871514]  ? __device_attach_driver+0xe0/0xe0
[    1.871517]  ? __device_attach_driver+0xe0/0xe0
[    1.871519]  bus_for_each_dev+0x78/0xc0
[    1.871522]  bus_add_driver+0x149/0x1e0
[    1.871524]  driver_register+0x8f/0xe0
[    1.871526]  ? 0xffffffffc051d000
[    1.871528]  do_one_initcall+0x44/0x200
[    1.871531]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.871534]  do_init_module+0x5c/0x260
[    1.871537]  __do_sys_finit_module+0xb4/0x120
[    1.871541]  __do_fast_syscall_32+0x6b/0xe0
[    1.871544]  do_fast_syscall_32+0x2f/0x70
[    1.871546]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.871549] RIP: 0023:0xf7e51549
[    1.871551] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.871553] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.871555] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.871557] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.871559] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.871560] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.871562] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.871565]  </TASK>
[    1.871643] BUG: Bad page state in process systemd-udevd  pfn:102e38
[    1.871650] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x38 pfn:0x102e38
[    1.871653] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.871654] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.871658] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8e08 0000000000000000
[    1.871660] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871662] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.871663] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871664] page dumped because: corrupted mapping in tail page
[    1.871665] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.871689] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.871691] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.871693] Call Trace:
[    1.871694]  <TASK>
[    1.871695]  dump_stack_lvl+0x34/0x44
[    1.871699]  bad_page.cold+0x63/0x94
[    1.871702]  free_tail_pages_check+0xd1/0x110
[    1.871705]  ? _raw_spin_lock+0x13/0x30
[    1.871708]  free_pcp_prepare+0x251/0x2e0
[    1.871712]  free_unref_page+0x1d/0x110
[    1.871715]  __vunmap+0x28a/0x380
[    1.871718]  drm_fbdev_cleanup+0x5f/0xb0
[    1.871720]  drm_fbdev_fb_destroy+0x15/0x30
[    1.871722]  unregister_framebuffer+0x1d/0x30
[    1.871725]  drm_client_dev_unregister+0x69/0xe0
[    1.871728]  drm_dev_unregister+0x2e/0x80
[    1.871731]  drm_dev_unplug+0x21/0x40
[    1.871733]  simpledrm_remove+0x11/0x20
[    1.871735]  platform_remove+0x1f/0x40
[    1.871738]  __device_release_driver+0x17a/0x240
[    1.871741]  device_release_driver+0x24/0x30
[    1.871743]  bus_remove_device+0xd8/0x140
[    1.871745]  device_del+0x18b/0x3f0
[    1.871748]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.871751]  ? try_to_wake_up+0x94/0x5b0
[    1.871754]  platform_device_del.part.0+0x13/0x70
[    1.871757]  platform_device_unregister+0x1c/0x30
[    1.871760]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.871763]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.871766]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.871829]  local_pci_probe+0x45/0x80
[    1.871832]  ? pci_match_device+0xd7/0x130
[    1.871835]  pci_device_probe+0xc2/0x1d0
[    1.871838]  really_probe+0x1f5/0x3d0
[    1.871841]  __driver_probe_device+0xfe/0x180
[    1.871843]  driver_probe_device+0x1e/0x90
[    1.871846]  __driver_attach+0xc0/0x1c0
[    1.871848]  ? __device_attach_driver+0xe0/0xe0
[    1.871851]  ? __device_attach_driver+0xe0/0xe0
[    1.871853]  bus_for_each_dev+0x78/0xc0
[    1.871856]  bus_add_driver+0x149/0x1e0
[    1.871858]  driver_register+0x8f/0xe0
[    1.871860]  ? 0xffffffffc051d000
[    1.871862]  do_one_initcall+0x44/0x200
[    1.871865]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.871868]  do_init_module+0x5c/0x260
[    1.871871]  __do_sys_finit_module+0xb4/0x120
[    1.871876]  __do_fast_syscall_32+0x6b/0xe0
[    1.871878]  do_fast_syscall_32+0x2f/0x70
[    1.871880]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.871883] RIP: 0023:0xf7e51549
[    1.871885] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.871887] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.871890] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.871891] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.871893] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.871894] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.871895] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.871898]  </TASK>
[    1.871899] BUG: Bad page state in process systemd-udevd  pfn:102e39
[    1.871903] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x39 pfn:0x102e39
[    1.871905] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.871907] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.871910] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8e48 0000000000000000
[    1.871912] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871913] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.871915] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.871916] page dumped because: corrupted mapping in tail page
[    1.871917] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.871940] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.871942] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.871943] Call Trace:
[    1.871944]  <TASK>
[    1.871945]  dump_stack_lvl+0x34/0x44
[    1.871949]  bad_page.cold+0x63/0x94
[    1.871952]  free_tail_pages_check+0xd1/0x110
[    1.871955]  ? _raw_spin_lock+0x13/0x30
[    1.871957]  free_pcp_prepare+0x251/0x2e0
[    1.871961]  free_unref_page+0x1d/0x110
[    1.871964]  __vunmap+0x28a/0x380
[    1.871967]  drm_fbdev_cleanup+0x5f/0xb0
[    1.871969]  drm_fbdev_fb_destroy+0x15/0x30
[    1.871971]  unregister_framebuffer+0x1d/0x30
[    1.871973]  drm_client_dev_unregister+0x69/0xe0
[    1.871976]  drm_dev_unregister+0x2e/0x80
[    1.871979]  drm_dev_unplug+0x21/0x40
[    1.871981]  simpledrm_remove+0x11/0x20
[    1.871984]  platform_remove+0x1f/0x40
[    1.871986]  __device_release_driver+0x17a/0x240
[    1.871989]  device_release_driver+0x24/0x30
[    1.871991]  bus_remove_device+0xd8/0x140
[    1.871994]  device_del+0x18b/0x3f0
[    1.871996]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.871999]  ? try_to_wake_up+0x94/0x5b0
[    1.872002]  platform_device_del.part.0+0x13/0x70
[    1.872005]  platform_device_unregister+0x1c/0x30
[    1.872008]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.872011]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.872014]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.872071]  local_pci_probe+0x45/0x80
[    1.872073]  ? pci_match_device+0xd7/0x130
[    1.872076]  pci_device_probe+0xc2/0x1d0
[    1.872079]  really_probe+0x1f5/0x3d0
[    1.872082]  __driver_probe_device+0xfe/0x180
[    1.872085]  driver_probe_device+0x1e/0x90
[    1.872087]  __driver_attach+0xc0/0x1c0
[    1.872089]  ? __device_attach_driver+0xe0/0xe0
[    1.872092]  ? __device_attach_driver+0xe0/0xe0
[    1.872094]  bus_for_each_dev+0x78/0xc0
[    1.872097]  bus_add_driver+0x149/0x1e0
[    1.872099]  driver_register+0x8f/0xe0
[    1.872102]  ? 0xffffffffc051d000
[    1.872104]  do_one_initcall+0x44/0x200
[    1.872106]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.872109]  do_init_module+0x5c/0x260
[    1.872112]  __do_sys_finit_module+0xb4/0x120
[    1.872117]  __do_fast_syscall_32+0x6b/0xe0
[    1.872119]  do_fast_syscall_32+0x2f/0x70
[    1.872122]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.872124] RIP: 0023:0xf7e51549
[    1.872126] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.872128] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.872130] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.872132] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.872133] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.872135] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.872136] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.872139]  </TASK>
[    1.872243] BUG: Bad page state in process systemd-udevd  pfn:102e3a
[    1.872251] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3a pfn:0x102e3a
[    1.872253] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.872255] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.872259] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8e88 0000000000000000
[    1.872261] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.872262] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.872264] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.872265] page dumped because: corrupted mapping in tail page
[    1.872266] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.872289] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.872291] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.872293] Call Trace:
[    1.872294]  <TASK>
[    1.872295]  dump_stack_lvl+0x34/0x44
[    1.872299]  bad_page.cold+0x63/0x94
[    1.872302]  free_tail_pages_check+0xd1/0x110
[    1.872305]  ? _raw_spin_lock+0x13/0x30
[    1.872308]  free_pcp_prepare+0x251/0x2e0
[    1.872311]  free_unref_page+0x1d/0x110
[    1.872314]  __vunmap+0x28a/0x380
[    1.872317]  drm_fbdev_cleanup+0x5f/0xb0
[    1.872319]  drm_fbdev_fb_destroy+0x15/0x30
[    1.872321]  unregister_framebuffer+0x1d/0x30
[    1.872324]  drm_client_dev_unregister+0x69/0xe0
[    1.872327]  drm_dev_unregister+0x2e/0x80
[    1.872329]  drm_dev_unplug+0x21/0x40
[    1.872332]  simpledrm_remove+0x11/0x20
[    1.872334]  platform_remove+0x1f/0x40
[    1.872337]  __device_release_driver+0x17a/0x240
[    1.872340]  device_release_driver+0x24/0x30
[    1.872342]  bus_remove_device+0xd8/0x140
[    1.872345]  device_del+0x18b/0x3f0
[    1.872348]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.872350]  ? try_to_wake_up+0x94/0x5b0
[    1.872353]  platform_device_del.part.0+0x13/0x70
[    1.872356]  platform_device_unregister+0x1c/0x30
[    1.872359]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.872362]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.872365]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.872427]  local_pci_probe+0x45/0x80
[    1.872430]  ? pci_match_device+0xd7/0x130
[    1.872433]  pci_device_probe+0xc2/0x1d0
[    1.872437]  really_probe+0x1f5/0x3d0
[    1.872439]  __driver_probe_device+0xfe/0x180
[    1.872442]  driver_probe_device+0x1e/0x90
[    1.872445]  __driver_attach+0xc0/0x1c0
[    1.872447]  ? __device_attach_driver+0xe0/0xe0
[    1.872449]  ? __device_attach_driver+0xe0/0xe0
[    1.872451]  bus_for_each_dev+0x78/0xc0
[    1.872454]  bus_add_driver+0x149/0x1e0
[    1.872457]  driver_register+0x8f/0xe0
[    1.872459]  ? 0xffffffffc051d000
[    1.872461]  do_one_initcall+0x44/0x200
[    1.872464]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.872467]  do_init_module+0x5c/0x260
[    1.872470]  __do_sys_finit_module+0xb4/0x120
[    1.872474]  __do_fast_syscall_32+0x6b/0xe0
[    1.872477]  do_fast_syscall_32+0x2f/0x70
[    1.872479]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.872482] RIP: 0023:0xf7e51549
[    1.872484] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.872486] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.872488] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.872490] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.872491] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.872493] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.872494] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.872497]  </TASK>
[    1.872498] BUG: Bad page state in process systemd-udevd  pfn:102e3b
[    1.872502] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3b pfn:0x102e3b
[    1.872504] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.872506] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.872509] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8ec8 0000000000000000
[    1.872510] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.872512] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.872514] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.872515] page dumped because: corrupted mapping in tail page
[    1.872516] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.872537] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.872540] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.872541] Call Trace:
[    1.872542]  <TASK>
[    1.872543]  dump_stack_lvl+0x34/0x44
[    1.872546]  bad_page.cold+0x63/0x94
[    1.872549]  free_tail_pages_check+0xd1/0x110
[    1.872552]  ? _raw_spin_lock+0x13/0x30
[    1.872555]  free_pcp_prepare+0x251/0x2e0
[    1.872558]  free_unref_page+0x1d/0x110
[    1.872561]  __vunmap+0x28a/0x380
[    1.872563]  drm_fbdev_cleanup+0x5f/0xb0
[    1.872566]  drm_fbdev_fb_destroy+0x15/0x30
[    1.872568]  unregister_framebuffer+0x1d/0x30
[    1.872571]  drm_client_dev_unregister+0x69/0xe0
[    1.872573]  drm_dev_unregister+0x2e/0x80
[    1.872576]  drm_dev_unplug+0x21/0x40
[    1.872578]  simpledrm_remove+0x11/0x20
[    1.872580]  platform_remove+0x1f/0x40
[    1.872583]  __device_release_driver+0x17a/0x240
[    1.872585]  device_release_driver+0x24/0x30
[    1.872588]  bus_remove_device+0xd8/0x140
[    1.872590]  device_del+0x18b/0x3f0
[    1.872593]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.872596]  ? try_to_wake_up+0x94/0x5b0
[    1.872598]  platform_device_del.part.0+0x13/0x70
[    1.872601]  platform_device_unregister+0x1c/0x30
[    1.872604]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.872607]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.872610]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.872667]  local_pci_probe+0x45/0x80
[    1.872670]  ? pci_match_device+0xd7/0x130
[    1.872673]  pci_device_probe+0xc2/0x1d0
[    1.872676]  really_probe+0x1f5/0x3d0
[    1.872678]  __driver_probe_device+0xfe/0x180
[    1.872681]  driver_probe_device+0x1e/0x90
[    1.872683]  __driver_attach+0xc0/0x1c0
[    1.872686]  ? __device_attach_driver+0xe0/0xe0
[    1.872688]  ? __device_attach_driver+0xe0/0xe0
[    1.872690]  bus_for_each_dev+0x78/0xc0
[    1.872692]  bus_add_driver+0x149/0x1e0
[    1.872695]  driver_register+0x8f/0xe0
[    1.872697]  ? 0xffffffffc051d000
[    1.872699]  do_one_initcall+0x44/0x200
[    1.872701]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.872704]  do_init_module+0x5c/0x260
[    1.872706]  __do_sys_finit_module+0xb4/0x120
[    1.872710]  __do_fast_syscall_32+0x6b/0xe0
[    1.872713]  do_fast_syscall_32+0x2f/0x70
[    1.872715]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.872718] RIP: 0023:0xf7e51549
[    1.872720] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.872722] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.872724] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.872726] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.872727] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.872729] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.872730] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.872733]  </TASK>
[    1.873258] BUG: Bad page state in process systemd-udevd  pfn:102e3c
[    1.873270] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3c pfn:0x102e3c
[    1.873274] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.873276] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.873281] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8f08 0000000000000000
[    1.873283] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873285] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.873287] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873288] page dumped because: corrupted mapping in tail page
[    1.873289] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.873317] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.873320] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.873322] Call Trace:
[    1.873323]  <TASK>
[    1.873324]  dump_stack_lvl+0x34/0x44
[    1.873331]  bad_page.cold+0x63/0x94
[    1.873334]  free_tail_pages_check+0xd1/0x110
[    1.873339]  ? _raw_spin_lock+0x13/0x30
[    1.873342]  free_pcp_prepare+0x251/0x2e0
[    1.873346]  free_unref_page+0x1d/0x110
[    1.873350]  __vunmap+0x28a/0x380
[    1.873353]  drm_fbdev_cleanup+0x5f/0xb0
[    1.873356]  drm_fbdev_fb_destroy+0x15/0x30
[    1.873359]  unregister_framebuffer+0x1d/0x30
[    1.873363]  drm_client_dev_unregister+0x69/0xe0
[    1.873366]  drm_dev_unregister+0x2e/0x80
[    1.873369]  drm_dev_unplug+0x21/0x40
[    1.873372]  simpledrm_remove+0x11/0x20
[    1.873375]  platform_remove+0x1f/0x40
[    1.873378]  __device_release_driver+0x17a/0x240
[    1.873381]  device_release_driver+0x24/0x30
[    1.873384]  bus_remove_device+0xd8/0x140
[    1.873387]  device_del+0x18b/0x3f0
[    1.873390]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.873393]  ? try_to_wake_up+0x94/0x5b0
[    1.873396]  platform_device_del.part.0+0x13/0x70
[    1.873399]  platform_device_unregister+0x1c/0x30
[    1.873403]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.873406]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.873410]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.873481]  local_pci_probe+0x45/0x80
[    1.873484]  ? pci_match_device+0xd7/0x130
[    1.873487]  pci_device_probe+0xc2/0x1d0
[    1.873491]  really_probe+0x1f5/0x3d0
[    1.873494]  __driver_probe_device+0xfe/0x180
[    1.873496]  driver_probe_device+0x1e/0x90
[    1.873498]  __driver_attach+0xc0/0x1c0
[    1.873501]  ? __device_attach_driver+0xe0/0xe0
[    1.873503]  ? __device_attach_driver+0xe0/0xe0
[    1.873505]  bus_for_each_dev+0x78/0xc0
[    1.873508]  bus_add_driver+0x149/0x1e0
[    1.873511]  driver_register+0x8f/0xe0
[    1.873514]  ? 0xffffffffc051d000
[    1.873516]  do_one_initcall+0x44/0x200
[    1.873520]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.873523]  do_init_module+0x5c/0x260
[    1.873527]  __do_sys_finit_module+0xb4/0x120
[    1.873532]  __do_fast_syscall_32+0x6b/0xe0
[    1.873535]  do_fast_syscall_32+0x2f/0x70
[    1.873537]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.873540] RIP: 0023:0xf7e51549
[    1.873543] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.873545] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.873548] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.873550] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.873551] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.873553] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.873554] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.873557]  </TASK>
[    1.873558] BUG: Bad page state in process systemd-udevd  pfn:102e3d
[    1.873562] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3d pfn:0x102e3d
[    1.873565] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.873567] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.873570] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8f48 0000000000000000
[    1.873572] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873573] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.873575] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873576] page dumped because: corrupted mapping in tail page
[    1.873577] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.873599] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.873601] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.873603] Call Trace:
[    1.873604]  <TASK>
[    1.873605]  dump_stack_lvl+0x34/0x44
[    1.873608]  bad_page.cold+0x63/0x94
[    1.873611]  free_tail_pages_check+0xd1/0x110
[    1.873614]  ? _raw_spin_lock+0x13/0x30
[    1.873617]  free_pcp_prepare+0x251/0x2e0
[    1.873620]  free_unref_page+0x1d/0x110
[    1.873623]  __vunmap+0x28a/0x380
[    1.873626]  drm_fbdev_cleanup+0x5f/0xb0
[    1.873628]  drm_fbdev_fb_destroy+0x15/0x30
[    1.873630]  unregister_framebuffer+0x1d/0x30
[    1.873633]  drm_client_dev_unregister+0x69/0xe0
[    1.873636]  drm_dev_unregister+0x2e/0x80
[    1.873638]  drm_dev_unplug+0x21/0x40
[    1.873640]  simpledrm_remove+0x11/0x20
[    1.873643]  platform_remove+0x1f/0x40
[    1.873645]  __device_release_driver+0x17a/0x240
[    1.873648]  device_release_driver+0x24/0x30
[    1.873650]  bus_remove_device+0xd8/0x140
[    1.873653]  device_del+0x18b/0x3f0
[    1.873656]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.873658]  ? try_to_wake_up+0x94/0x5b0
[    1.873661]  platform_device_del.part.0+0x13/0x70
[    1.873664]  platform_device_unregister+0x1c/0x30
[    1.873667]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.873670]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.873673]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.873731]  local_pci_probe+0x45/0x80
[    1.873733]  ? pci_match_device+0xd7/0x130
[    1.873736]  pci_device_probe+0xc2/0x1d0
[    1.873739]  really_probe+0x1f5/0x3d0
[    1.873742]  __driver_probe_device+0xfe/0x180
[    1.873745]  driver_probe_device+0x1e/0x90
[    1.873747]  __driver_attach+0xc0/0x1c0
[    1.873749]  ? __device_attach_driver+0xe0/0xe0
[    1.873752]  ? __device_attach_driver+0xe0/0xe0
[    1.873754]  bus_for_each_dev+0x78/0xc0
[    1.873757]  bus_add_driver+0x149/0x1e0
[    1.873759]  driver_register+0x8f/0xe0
[    1.873762]  ? 0xffffffffc051d000
[    1.873764]  do_one_initcall+0x44/0x200
[    1.873766]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.873769]  do_init_module+0x5c/0x260
[    1.873772]  __do_sys_finit_module+0xb4/0x120
[    1.873776]  __do_fast_syscall_32+0x6b/0xe0
[    1.873779]  do_fast_syscall_32+0x2f/0x70
[    1.873781]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.873784] RIP: 0023:0xf7e51549
[    1.873786] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.873788] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.873790] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.873792] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.873793] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.873795] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.873796] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.873799]  </TASK>
[    1.873800] BUG: Bad page state in process systemd-udevd  pfn:102e3e
[    1.873803] page:(____ptrval____) refcount:0 mapcount:0 mapping:0000000000000000 index:0x3e pfn:0x102e3e
[    1.873806] head:(____ptrval____) order:9 compound_mapcount:0 compound_pincount:0
[    1.873807] flags: 0x2fffc000010000(head|node=0|zone=2|lastcpupid=0x3fff)
[    1.873810] raw: 002fffc000000000 ffffe815040b8001 ffffe815040b8f88 0000000000000000
[    1.873812] raw: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873814] head: 002fffc000010000 0000000000000000 dead000000000122 0000000000000000
[    1.873816] head: 0000000000000000 0000000000000000 00000000ffffffff 0000000000000000
[    1.873817] page dumped because: corrupted mapping in tail page
[    1.873818] Modules linked in: crc32_pclmul crc32c_intel ghash_clmulni_intel snd_hda_codec_realtek snd_hda_codec_generic ledtrig_audio snd_hda_codec_hdmi ohci_pci(+) snd_hda_intel xhci_pci snd_intel_dspcfg snd_hda_codec snd_hda_core r8169 k10temp snd_pcm xhci_hcd snd_timer realtek ohci_hcd ehci_pci i2c_piix4 ehci_hcd radeon(+) snd sg drm_ttm_helper ttm soundcore coreboot_table acpi_cpufreq fuse ipv6 autofs4
[    1.873840] CPU: 1 PID: 151 Comm: systemd-udevd Tainted: G    B             5.16.0-11615-gfac54e2bfb5b #319
[    1.873842] Hardware name: ASUS F2A85-M_PRO/F2A85-M_PRO, BIOS 4.16-337-gb87986e67b 03/25/2022
[    1.873844] Call Trace:
[    1.873845]  <TASK>
[    1.873845]  dump_stack_lvl+0x34/0x44
[    1.873849]  bad_page.cold+0x63/0x94
[    1.873852]  free_tail_pages_check+0xd1/0x110
[    1.873855]  ? _raw_spin_lock+0x13/0x30
[    1.873858]  free_pcp_prepare+0x251/0x2e0
[    1.873861]  free_unref_page+0x1d/0x110
[    1.873864]  __vunmap+0x28a/0x380
[    1.873867]  drm_fbdev_cleanup+0x5f/0xb0
[    1.873869]  drm_fbdev_fb_destroy+0x15/0x30
[    1.873871]  unregister_framebuffer+0x1d/0x30
[    1.873874]  drm_client_dev_unregister+0x69/0xe0
[    1.873877]  drm_dev_unregister+0x2e/0x80
[    1.873879]  drm_dev_unplug+0x21/0x40
[    1.873882]  simpledrm_remove+0x11/0x20
[    1.873884]  platform_remove+0x1f/0x40
[    1.873887]  __device_release_driver+0x17a/0x240
[    1.873890]  device_release_driver+0x24/0x30
[    1.873892]  bus_remove_device+0xd8/0x140
[    1.873895]  device_del+0x18b/0x3f0
[    1.873897]  ? _raw_spin_unlock_irqrestore+0x1b/0x30
[    1.873900]  ? try_to_wake_up+0x94/0x5b0
[    1.873903]  platform_device_del.part.0+0x13/0x70
[    1.873906]  platform_device_unregister+0x1c/0x30
[    1.873909]  drm_aperture_detach_drivers+0xa1/0xd0
[    1.873911]  drm_aperture_remove_conflicting_pci_framebuffers+0x3f/0x60
[    1.873914]  radeon_pci_probe+0x54/0xf0 [radeon]
[    1.873972]  local_pci_probe+0x45/0x80
[    1.873975]  ? pci_match_device+0xd7/0x130
[    1.873978]  pci_device_probe+0xc2/0x1d0
[    1.873981]  really_probe+0x1f5/0x3d0
[    1.873984]  __driver_probe_device+0xfe/0x180
[    1.873986]  driver_probe_device+0x1e/0x90
[    1.873989]  __driver_attach+0xc0/0x1c0
[    1.873991]  ? __device_attach_driver+0xe0/0xe0
[    1.873993]  ? __device_attach_driver+0xe0/0xe0
[    1.873996]  bus_for_each_dev+0x78/0xc0
[    1.873998]  bus_add_driver+0x149/0x1e0
[    1.874001]  driver_register+0x8f/0xe0
[    1.874003]  ? 0xffffffffc051d000
[    1.874005]  do_one_initcall+0x44/0x200
[    1.874008]  ? kmem_cache_alloc_trace+0x170/0x2c0
[    1.874011]  do_init_module+0x5c/0x260
[    1.874014]  __do_sys_finit_module+0xb4/0x120
[    1.874018]  __do_fast_syscall_32+0x6b/0xe0
[    1.874021]  do_fast_syscall_32+0x2f/0x70
[    1.874023]  entry_SYSCALL_compat_after_hwframe+0x45/0x4d
[    1.874025] RIP: 0023:0xf7e51549
[    1.874027] Code: 03 74 c0 01 10 05 03 74 b8 01 10 06 03 74 b4 01 10 07 03 74 b0 01 10 08 03 74 d8 01 00 00 00 00 00 51 52 55 89 cd 0f 05 cd 80 <5d> 5a 59 c3 90 90 90 90 8d b4 26 00 00 00 00 8d b4 26 00 00 00 00
[    1.874029] RSP: 002b:00000000ffa1666c EFLAGS: 00200292 ORIG_RAX: 000000000000015e
[    1.874032] RAX: ffffffffffffffda RBX: 0000000000000010 RCX: 00000000f7e30e09
[    1.874033] RDX: 0000000000000000 RSI: 00000000f9a705d0 RDI: 00000000f9a6f6a0
[    1.874035] RBP: 0000000000000000 R08: 0000000000000000 R09: 0000000000000000
[    1.874036] R10: 0000000000000000 R11: 0000000000000000 R12: 0000000000000000
[    1.874037] R13: 0000000000000000 R14: 0000000000000000 R15: 0000000000000000
[    1.874040]  </TASK>
[    1.912659] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[    1.912666] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.912669] usb usb6: Product: OHCI PCI host controller
[    1.912671] usb usb6: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ohci_hcd
[    1.912673] usb usb6: SerialNumber: 0000:00:13.0
[    1.913150] hub 6-0:1.0: USB hub found
[    1.913191] hub 6-0:1.0: 5 ports detected
[    1.921853] [drm] initializing kernel modesetting (ARUBA 0x1002:0x9996 0x1002:0x9996 0x00).
[    1.921927] ATOM BIOS: 113
[    1.922032] radeon 0000:00:01.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
[    1.922036] radeon 0000:00:01.0: GTT: 1024M 0x0000000020000000 - 0x000000005FFFFFFF
[    1.922045] [drm] Detected VRAM RAM=512M, BAR=256M
[    1.922047] [drm] RAM width 64bits DDR
[    1.922148] [drm] radeon: 512M of VRAM memory ready
[    1.922155] [drm] radeon: 1024M of GTT memory ready.
[    1.924541] [drm] Loading ARUBA Microcode
[    1.925276] ohci-pci 0000:00:14.5: OHCI PCI host controller
[    1.925304] ohci-pci 0000:00:14.5: new USB bus registered, assigned bus number 8
[    1.925391] ohci-pci 0000:00:14.5: irq 18, io mem 0xf01ca000
[    1.939579] [drm] Internal thermal controller without fan control
[    1.939934] [drm] radeon: dpm initialized
[    1.944358] [drm] Found VCE firmware/feedback version 50.0.1 / 17!
[    1.944414] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    1.981529] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[    1.981536] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.981538] usb usb8: Product: OHCI PCI host controller
[    1.981540] usb usb8: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ohci_hcd
[    1.981541] usb usb8: SerialNumber: 0000:00:14.5
[    1.983991] hub 8-0:1.0: USB hub found
[    1.984020] hub 8-0:1.0: 2 ports detected
[    1.985755] ohci-pci 0000:00:16.0: OHCI PCI host controller
[    1.985782] ohci-pci 0000:00:16.0: new USB bus registered, assigned bus number 9
[    1.985875] ohci-pci 0000:00:16.0: irq 18, io mem 0xf01cb000
[    2.019185] r8169 0000:04:00.0 enp4s0: renamed from eth0
[    2.044209] [drm] PCIE GART of 1024M enabled (table at 0x00000000001D6000).
[    2.044350] usb usb9: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.16
[    2.044354] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.044356] usb usb9: Product: OHCI PCI host controller
[    2.044358] usb usb9: Manufacturer: Linux 5.16.0-11615-gfac54e2bfb5b ohci_hcd
[    2.044360] usb usb9: SerialNumber: 0000:00:16.0
[    2.044443] radeon 0000:00:01.0: WB enabled
[    2.044445] radeon 0000:00:01.0: fence driver on ring 0 use gpu addr 0x0000000020000c00
[    2.044823] radeon 0000:00:01.0: fence driver on ring 5 use gpu addr 0x0000000000075a18
[    2.048011] hub 9-0:1.0: USB hub found
[    2.048043] hub 9-0:1.0: 4 ports detected
[    2.080191] usb 5-1: new low-speed USB device number 2 using ohci-pci
[    2.114195] radeon 0000:00:01.0: fence driver on ring 6 use gpu addr 0x0000000020000c18
[    2.114202] radeon 0000:00:01.0: fence driver on ring 7 use gpu addr 0x0000000020000c1c
[    2.114205] radeon 0000:00:01.0: fence driver on ring 1 use gpu addr 0x0000000020000c04
[    2.114207] radeon 0000:00:01.0: fence driver on ring 2 use gpu addr 0x0000000020000c08
[    2.114208] radeon 0000:00:01.0: fence driver on ring 3 use gpu addr 0x0000000020000c0c
[    2.114210] radeon 0000:00:01.0: fence driver on ring 4 use gpu addr 0x0000000020000c10
[    2.133007] radeon 0000:00:01.0: radeon: MSI limited to 32-bit
[    2.133191] radeon 0000:00:01.0: radeon: using MSI.
[    2.133273] [drm] radeon: irq initialized.
[    2.194942] r8169 0000:04:00.0: Direct firmware load for rtl_nic/rtl8168f-1.fw failed with error -2
[    2.194951] r8169 0000:04:00.0: Unable to load firmware rtl_nic/rtl8168f-1.fw (-2)
[    2.199107] RTL8211E Gigabit Ethernet r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
[    2.231882] [drm] ring test on 0 succeeded in 2 usecs
[    2.231894] [drm] ring test on 3 succeeded in 4 usecs
[    2.231900] [drm] ring test on 4 succeeded in 3 usecs
[    2.249215] usb 5-1: New USB device found, idVendor=046d, idProduct=c016, bcdDevice= 3.40
[    2.249221] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.249224] usb 5-1: Product: Optical USB Mouse
[    2.249226] usb 5-1: Manufacturer: Logitech
[    2.256790] input: Logitech Optical USB Mouse as /devices/pci0000:00/0000:00:12.0/usb5/5-1/5-1:1.0/0003:046D:C016.0001/input/input11
[    2.257356] hid-generic 0003:046D:C016.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:00:12.0-1/input0
[    2.263786] r8169 0000:04:00.0 enp4s0: Link is Down
[    2.294453] [drm] ring test on 5 succeeded in 2 usecs
[    2.314480] [drm] UVD initialized successfully.
[    2.372181] random: crng init done
[    2.372186] random: 7 urandom warning(s) missed due to ratelimiting
[    2.427356] [drm] ring test on 6 succeeded in 17 usecs
[    2.427372] [drm] ring test on 7 succeeded in 4 usecs
[    2.427373] [drm] VCE initialized successfully.
[    2.427557] [drm] ib test on ring 0 succeeded in 0 usecs
[    2.427608] [drm] ib test on ring 3 succeeded in 0 usecs
[    2.427657] [drm] ib test on ring 4 succeeded in 0 usecs
[    2.771261] usb 5-2: new low-speed USB device number 3 using ohci-pci
[    2.936318] usb 5-2: New USB device found, idVendor=413c, idProduct=2106, bcdDevice= 1.01
[    2.936329] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.936333] usb 5-2: Product: Dell QuietKey Keyboard
[    2.936337] usb 5-2: Manufacturer: DELL
[    2.946752] input: DELL Dell QuietKey Keyboard as /devices/pci0000:00/0000:00:12.0/usb5/5-2/5-2:1.0/0003:413C:2106.0002/input/input12
[    2.951311] [drm] ib test on ring 5 succeeded
[    2.999623] hid-generic 0003:413C:2106.0002: input,hidraw1: USB HID v1.10 Keyboard [DELL Dell QuietKey Keyboard] on usb-0000:00:12.0-2/input0
[    3.479290] [drm] ib test on ring 6 succeeded
[    3.983284] [drm] ib test on ring 7 succeeded
[    3.988459] [drm] Radeon Display Connectors
[    3.988466] [drm] Connector 0:
[    3.988469] [drm]   DP-1
[    3.988470] [drm]   HPD1
[    3.988472] [drm]   DDC: 0x6530 0x6530 0x6534 0x6534 0x6538 0x6538 0x653c 0x653c
[    3.988478] [drm]   Encoders:
[    3.988479] [drm]     DFP1: INTERNAL_UNIPHY2
[    3.988482] [drm] Connector 1:
[    3.988484] [drm]   VGA-1
[    3.988486] [drm]   HPD2
[    3.988487] [drm]   DDC: 0x6540 0x6540 0x6544 0x6544 0x6548 0x6548 0x654c 0x654c
[    3.988492] [drm]   Encoders:
[    3.988494] [drm]     CRT1: INTERNAL_UNIPHY2
[    3.988496] [drm]     CRT1: NUTMEG
[    3.988497] [drm] Connector 2:
[    3.988499] [drm]   HDMI-A-1
[    3.988501] [drm]   HPD3
[    3.988502] [drm]   DDC: 0x6550 0x6550 0x6554 0x6554 0x6558 0x6558 0x655c 0x655c
[    3.988507] [drm]   Encoders:
[    3.988508] [drm]     DFP2: INTERNAL_UNIPHY
[    4.124830] [drm] fb mappable at 0xE03E9000
[    4.124836] [drm] vram apper at 0xE0000000
[    4.124838] [drm] size 5242880
[    4.124840] [drm] fb depth is 24
[    4.124842] [drm]    pitch is 5120
[    4.125287] fbcon: radeondrmfb (fb0) is primary device
[    4.213209] Console: switching to colour frame buffer device 160x64
[    4.217134] radeon 0000:00:01.0: [drm] fb0: radeondrmfb frame buffer device
[    4.222420] [drm] Initialized radeon 2.50.0 20080528 for 0000:00:01.0 on minor 0
[    4.341909] [drm] amdgpu kernel modesetting enabled.
[    4.912351] r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
[    4.912370] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready

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

* Re: BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
  2022-03-28  6:37       ` Song Liu
@ 2022-03-28  6:51         ` Paul Menzel
  2022-03-28 19:24           ` Song Liu
  2022-03-28 19:21         ` Edgecombe, Rick P
  1 sibling, 1 reply; 33+ messages in thread
From: Paul Menzel @ 2022-03-28  6:51 UTC (permalink / raw)
  To: Song Liu, Rick P Edgecombe
  Cc: Song Liu, Alexei Starovoitov, Daniel Borkmann, Andrii Nakryiko,
	Kernel-team, Peter Zijlstra, x86, iii, bpf, netdev, linux-kernel,
	Thomas Gleixner, Ingo Molnar, Borislav Petkov, Dave Hansen,
	regressions

Dear Song,


Am 28.03.22 um 08:37 schrieb Song Liu:
> Thanks Paul for highlighting the issue.

Thank you for getting back to me so quickly.

> + Rick, who highlighted some potential issues with this. (also attached
> the stack trace).

I already had added him, but forgot to document it in the message. Sorry 
for that.

>> On Mar 27, 2022, at 3:36 AM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:

>> Am 26.03.22 um 19:46 schrieb Paul Menzel:
>>> #regzbot introduced: fac54e2bfb5be2b0bbf115fe80d45f59fd773048
>>> #regzbot title: BUG: Bad page state in process systemd-udevd
>>
>>> Am 04.02.22 um 19:57 schrieb Song Liu:
>>>> From: Song Liu <songliubraving@fb.com>
>>>>
>>>> This enables module_alloc() to allocate huge page for 2MB+ requests.
>>>> To check the difference of this change, we need enable config
>>>> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
>>>> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
>>>> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
>>>>
>>>> Signed-off-by: Song Liu <songliubraving@fb.com>
>>>> ---
>>>>    arch/x86/Kconfig | 1 +
>>>>    1 file changed, 1 insertion(+)
>>>>
>>>> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>>>> index 6fddb63271d9..e0e0d00cf103 100644
>>>> --- a/arch/x86/Kconfig
>>>> +++ b/arch/x86/Kconfig
>>>> @@ -159,6 +159,7 @@ config X86
>>>>        select HAVE_ALIGNED_STRUCT_PAGE        if SLUB
>>>>        select HAVE_ARCH_AUDITSYSCALL
>>>>        select HAVE_ARCH_HUGE_VMAP        if X86_64 || X86_PAE
>>>> +    select HAVE_ARCH_HUGE_VMALLOC        if HAVE_ARCH_HUGE_VMAP
>>>>        select HAVE_ARCH_JUMP_LABEL
>>>>        select HAVE_ARCH_JUMP_LABEL_RELATIVE
>>>>        select HAVE_ARCH_KASAN            if X86_64
>>> Testing Linus’ current master branch, Linux logs critical messages like below:
>>>      BUG: Bad page state in process systemd-udevd  pfn:102e03
>>> I bisected to your commit fac54e2bfb5 (x86/Kconfig: select
>>> HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP).
>> 
>> Sorry, I forget to mention, that this is a 32-bit (i686) userspace,
>> but a 64-bit Linux kernel, so it might be the same issue as
>> mentioned in commit eed1fcee556f (x86: Disable
>> HAVE_ARCH_HUGE_VMALLOC on 32-bit x86), but didn’t fix the issue for
>> 64-bit Linux kernel and 32-bit userspace.
> 
> I will look more into this tomorrow. To clarify, what is the 32-bit
> user space that triggers this? Is it systemd-udevd? Is the systemd
> also i686?

Yes, everything – also systemd – is i686. You can build a 32-bit VM 
image with grml-debootstrap [1]:

     sudo DEBOOTSTRAP=mmdebstrap ~/src/grml-debootstrap/grml-debootstrap 
--vm --vmfile --vmsize 3G --target /dev/shm/debian-32.img -r sid --arch 
i686 --filesystem ext4

Then run that with QEMU, but pass the 64-bit Linux kernel to QEMU 
directly with the switches `-kernel` and `-append`, or install the amd64 
Linux kernel into the Debian VM image or the package created with `make 
bindeb-pkg` with `dpkg -i …`.


Kind regards,

Paul


[1]: https://github.com/grml/grml-debootstrap/

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

* Re: BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
  2022-03-28  6:37       ` Song Liu
  2022-03-28  6:51         ` Paul Menzel
@ 2022-03-28 19:21         ` Edgecombe, Rick P
  1 sibling, 0 replies; 33+ messages in thread
From: Edgecombe, Rick P @ 2022-03-28 19:21 UTC (permalink / raw)
  To: pmenzel, songliubraving
  Cc: linux-kernel, daniel, peterz, ast, bpf, Kernel-team, tglx,
	regressions, andrii, song, dave.hansen, x86, iii, mingo, netdev,
	bp

On Mon, 2022-03-28 at 06:37 +0000, Song Liu wrote:
> + Rick, who highlighted some potential issues with this. (also
> attached
> the stack trace).

Yea, this looks like something else. Just a wild guess, but could some
vmalloc() caller be mucking with the struct page of the backing
allocation in way that trips up compound pages?

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

* Re: BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
  2022-03-28  6:51         ` Paul Menzel
@ 2022-03-28 19:24           ` Song Liu
  2022-03-28 20:14               ` Paul Menzel
  0 siblings, 1 reply; 33+ messages in thread
From: Song Liu @ 2022-03-28 19:24 UTC (permalink / raw)
  To: Paul Menzel
  Cc: Rick P Edgecombe, Song Liu, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Kernel Team, Peter Zijlstra, x86, iii, bpf,
	netdev, linux-kernel, Thomas Gleixner, Ingo Molnar,
	Borislav Petkov, Dave Hansen, regressions



> On Mar 27, 2022, at 11:51 PM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
> 
> Dear Song,
> 
> 
> Am 28.03.22 um 08:37 schrieb Song Liu:
>> Thanks Paul for highlighting the issue.
> 
> Thank you for getting back to me so quickly.
> 
>> + Rick, who highlighted some potential issues with this. (also attached
>> the stack trace).
> 
> I already had added him, but forgot to document it in the message. Sorry for that.
> 
>>> On Mar 27, 2022, at 3:36 AM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
> 
>>> Am 26.03.22 um 19:46 schrieb Paul Menzel:
>>>> #regzbot introduced: fac54e2bfb5be2b0bbf115fe80d45f59fd773048
>>>> #regzbot title: BUG: Bad page state in process systemd-udevd
>>> 
>>>> Am 04.02.22 um 19:57 schrieb Song Liu:
>>>>> From: Song Liu <songliubraving@fb.com>
>>>>> 
>>>>> This enables module_alloc() to allocate huge page for 2MB+ requests.
>>>>> To check the difference of this change, we need enable config
>>>>> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
>>>>> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
>>>>> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
>>>>> 
>>>>> Signed-off-by: Song Liu <songliubraving@fb.com>
>>>>> ---
>>>>>   arch/x86/Kconfig | 1 +
>>>>>   1 file changed, 1 insertion(+)
>>>>> 
>>>>> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>>>>> index 6fddb63271d9..e0e0d00cf103 100644
>>>>> --- a/arch/x86/Kconfig
>>>>> +++ b/arch/x86/Kconfig
>>>>> @@ -159,6 +159,7 @@ config X86
>>>>>       select HAVE_ALIGNED_STRUCT_PAGE        if SLUB
>>>>>       select HAVE_ARCH_AUDITSYSCALL
>>>>>       select HAVE_ARCH_HUGE_VMAP        if X86_64 || X86_PAE
>>>>> +    select HAVE_ARCH_HUGE_VMALLOC        if HAVE_ARCH_HUGE_VMAP
>>>>>       select HAVE_ARCH_JUMP_LABEL
>>>>>       select HAVE_ARCH_JUMP_LABEL_RELATIVE
>>>>>       select HAVE_ARCH_KASAN            if X86_64
>>>> Testing Linus’ current master branch, Linux logs critical messages like below:
>>>>     BUG: Bad page state in process systemd-udevd  pfn:102e03
>>>> I bisected to your commit fac54e2bfb5 (x86/Kconfig: select
>>>> HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP).
>>> Sorry, I forget to mention, that this is a 32-bit (i686) userspace,
>>> but a 64-bit Linux kernel, so it might be the same issue as
>>> mentioned in commit eed1fcee556f (x86: Disable
>>> HAVE_ARCH_HUGE_VMALLOC on 32-bit x86), but didn’t fix the issue for
>>> 64-bit Linux kernel and 32-bit userspace.
>> I will look more into this tomorrow. To clarify, what is the 32-bit
>> user space that triggers this? Is it systemd-udevd? Is the systemd
>> also i686?
> 
> Yes, everything – also systemd – is i686. You can build a 32-bit VM image with grml-debootstrap [1]:
> 
>    sudo DEBOOTSTRAP=mmdebstrap ~/src/grml-debootstrap/grml-debootstrap --vm --vmfile --vmsize 3G --target /dev/shm/debian-32.img -r sid --arch i686 --filesystem ext4
> 
> Then run that with QEMU, but pass the 64-bit Linux kernel to QEMU directly with the switches `-kernel` and `-append`, or install the amd64 Linux kernel into the Debian VM image or the package created with `make bindeb-pkg` with `dpkg -i …`.

Thanks for these information!

I tried the following, but couldn't reproduce the issue. 

sudo ./grml-debootstrap --vm --vmfile --vmsize 3G --target ../debian-32.img -r sid --arch i386 --filesystem ext4

Note: s/i686/i386/. Also I run this on Fedora, so I didn't specify DEBOOTSTRAP. 

Then I run it with

qemu-system-x86_64 \
  -boot d ./debian-32.img -m 1024 -smp 4 \
  -kernel ./bzImage \
  -nographic -append 'root=/dev/sda1 ro console=ttyS0,115200'

The VM boots fine. The config being used is x86_64_defconfig + 
CONFIG_DRM_FBDEV_EMULATION. 

I wonder whether this is caused by different config or different image.
Could you please share your config?

Thanks,
Song

PS: I couldn't figure out the root password of the image, --password 
option of grml-debootstrap doesn't seem to work. 


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

* Re: BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
  2022-03-28 19:24           ` Song Liu
@ 2022-03-28 20:14               ` Paul Menzel
  0 siblings, 0 replies; 33+ messages in thread
From: Paul Menzel @ 2022-03-28 20:14 UTC (permalink / raw)
  To: Song Liu
  Cc: Rick P Edgecombe, Song Liu, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Kernel Team, Peter Zijlstra, x86, iii, bpf,
	netdev, linux-kernel, Thomas Gleixner, Ingo Molnar,
	Borislav Petkov, Dave Hansen, regressions, amd-gfx

Dear Song,


Am 28.03.22 um 21:24 schrieb Song Liu:

>> On Mar 27, 2022, at 11:51 PM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:

>> Am 28.03.22 um 08:37 schrieb Song Liu:

[…]

>>>> On Mar 27, 2022, at 3:36 AM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
>>
>>>> Am 26.03.22 um 19:46 schrieb Paul Menzel:
>>>>> #regzbot introduced: fac54e2bfb5be2b0bbf115fe80d45f59fd773048
>>>>> #regzbot title: BUG: Bad page state in process systemd-udevd
>>>>
>>>>> Am 04.02.22 um 19:57 schrieb Song Liu:
>>>>>> From: Song Liu <songliubraving@fb.com>
>>>>>>
>>>>>> This enables module_alloc() to allocate huge page for 2MB+ requests.
>>>>>> To check the difference of this change, we need enable config
>>>>>> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
>>>>>> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
>>>>>> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
>>>>>>
>>>>>> Signed-off-by: Song Liu <songliubraving@fb.com>
>>>>>> ---
>>>>>>    arch/x86/Kconfig | 1 +
>>>>>>    1 file changed, 1 insertion(+)
>>>>>>
>>>>>> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>>>>>> index 6fddb63271d9..e0e0d00cf103 100644
>>>>>> --- a/arch/x86/Kconfig
>>>>>> +++ b/arch/x86/Kconfig
>>>>>> @@ -159,6 +159,7 @@ config X86
>>>>>>        select HAVE_ALIGNED_STRUCT_PAGE        if SLUB
>>>>>>        select HAVE_ARCH_AUDITSYSCALL
>>>>>>        select HAVE_ARCH_HUGE_VMAP        if X86_64 || X86_PAE
>>>>>> +    select HAVE_ARCH_HUGE_VMALLOC        if HAVE_ARCH_HUGE_VMAP
>>>>>>        select HAVE_ARCH_JUMP_LABEL
>>>>>>        select HAVE_ARCH_JUMP_LABEL_RELATIVE
>>>>>>        select HAVE_ARCH_KASAN            if X86_64
>>>>> Testing Linus’ current master branch, Linux logs critical messages like below:
>>>>>      BUG: Bad page state in process systemd-udevd  pfn:102e03
>>>>> I bisected to your commit fac54e2bfb5 (x86/Kconfig: select
>>>>> HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP).
>>>> Sorry, I forget to mention, that this is a 32-bit (i686) userspace,
>>>> but a 64-bit Linux kernel, so it might be the same issue as
>>>> mentioned in commit eed1fcee556f (x86: Disable
>>>> HAVE_ARCH_HUGE_VMALLOC on 32-bit x86), but didn’t fix the issue for
>>>> 64-bit Linux kernel and 32-bit userspace.
>>> I will look more into this tomorrow. To clarify, what is the 32-bit
>>> user space that triggers this? Is it systemd-udevd? Is the systemd
>>> also i686?
>>
>> Yes, everything – also systemd – is i686. You can build a 32-bit VM image with grml-debootstrap [1]:
>>
>>     sudo DEBOOTSTRAP=mmdebstrap ~/src/grml-debootstrap/grml-debootstrap --vm --vmfile --vmsize 3G --target /dev/shm/debian-32.img -r sid --arch i686 --filesystem ext4
>>
>> Then run that with QEMU, but pass the 64-bit Linux kernel to QEMU directly with the switches `-kernel` and `-append`, or install the amd64 Linux kernel into the Debian VM image or the package created with `make bindeb-pkg` with `dpkg -i …`.
> 
> Thanks for these information!
> 
> I tried the following, but couldn't reproduce the issue.
> 
> sudo ./grml-debootstrap --vm --vmfile --vmsize 3G --target ../debian-32.img -r sid --arch i386 --filesystem ext4
> 
> Note: s/i686/i386/. Also I run this on Fedora, so I didn't specify DEBOOTSTRAP.
> 
> Then I run it with
> 
> qemu-system-x86_64 \
>    -boot d ./debian-32.img -m 1024 -smp 4 \
>    -kernel ./bzImage \
>    -nographic -append 'root=/dev/sda1 ro console=ttyS0,115200'
> 
> The VM boots fine. The config being used is x86_64_defconfig +
> CONFIG_DRM_FBDEV_EMULATION.
> 
> I wonder whether this is caused by different config or different image.
> Could you please share your config?

Sorry, for leading you on the wrong path. I actually just wanted to help 
getting a 32-bit userspace set up quickly. I haven’t tried reproducing 
the issue in a VM, and used only the ASUS F2A85-M PRO.

Booting the system with `nomodeset`, I didn’t see the error. No idea if 
it’s related to framebuffer handling or specific to AMD graphics device.

> PS: I couldn't figure out the root password of the image, --password
> option of grml-debootstrap doesn't seem to work.

Hmm, I thought it’s asking you during install, but I haven’t done it in 
a while.


Kind regards,

Paul

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

* Re: BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
@ 2022-03-28 20:14               ` Paul Menzel
  0 siblings, 0 replies; 33+ messages in thread
From: Paul Menzel @ 2022-03-28 20:14 UTC (permalink / raw)
  To: Song Liu
  Cc: Dave Hansen, iii, Daniel Borkmann, Peter Zijlstra, netdev, x86,
	Alexei Starovoitov, amd-gfx, Andrii Nakryiko, Song Liu,
	Ingo Molnar, Thomas Gleixner, Borislav Petkov, Kernel Team,
	Rick P Edgecombe, bpf, linux-kernel, regressions

Dear Song,


Am 28.03.22 um 21:24 schrieb Song Liu:

>> On Mar 27, 2022, at 11:51 PM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:

>> Am 28.03.22 um 08:37 schrieb Song Liu:

[…]

>>>> On Mar 27, 2022, at 3:36 AM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
>>
>>>> Am 26.03.22 um 19:46 schrieb Paul Menzel:
>>>>> #regzbot introduced: fac54e2bfb5be2b0bbf115fe80d45f59fd773048
>>>>> #regzbot title: BUG: Bad page state in process systemd-udevd
>>>>
>>>>> Am 04.02.22 um 19:57 schrieb Song Liu:
>>>>>> From: Song Liu <songliubraving@fb.com>
>>>>>>
>>>>>> This enables module_alloc() to allocate huge page for 2MB+ requests.
>>>>>> To check the difference of this change, we need enable config
>>>>>> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
>>>>>> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
>>>>>> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
>>>>>>
>>>>>> Signed-off-by: Song Liu <songliubraving@fb.com>
>>>>>> ---
>>>>>>    arch/x86/Kconfig | 1 +
>>>>>>    1 file changed, 1 insertion(+)
>>>>>>
>>>>>> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>>>>>> index 6fddb63271d9..e0e0d00cf103 100644
>>>>>> --- a/arch/x86/Kconfig
>>>>>> +++ b/arch/x86/Kconfig
>>>>>> @@ -159,6 +159,7 @@ config X86
>>>>>>        select HAVE_ALIGNED_STRUCT_PAGE        if SLUB
>>>>>>        select HAVE_ARCH_AUDITSYSCALL
>>>>>>        select HAVE_ARCH_HUGE_VMAP        if X86_64 || X86_PAE
>>>>>> +    select HAVE_ARCH_HUGE_VMALLOC        if HAVE_ARCH_HUGE_VMAP
>>>>>>        select HAVE_ARCH_JUMP_LABEL
>>>>>>        select HAVE_ARCH_JUMP_LABEL_RELATIVE
>>>>>>        select HAVE_ARCH_KASAN            if X86_64
>>>>> Testing Linus’ current master branch, Linux logs critical messages like below:
>>>>>      BUG: Bad page state in process systemd-udevd  pfn:102e03
>>>>> I bisected to your commit fac54e2bfb5 (x86/Kconfig: select
>>>>> HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP).
>>>> Sorry, I forget to mention, that this is a 32-bit (i686) userspace,
>>>> but a 64-bit Linux kernel, so it might be the same issue as
>>>> mentioned in commit eed1fcee556f (x86: Disable
>>>> HAVE_ARCH_HUGE_VMALLOC on 32-bit x86), but didn’t fix the issue for
>>>> 64-bit Linux kernel and 32-bit userspace.
>>> I will look more into this tomorrow. To clarify, what is the 32-bit
>>> user space that triggers this? Is it systemd-udevd? Is the systemd
>>> also i686?
>>
>> Yes, everything – also systemd – is i686. You can build a 32-bit VM image with grml-debootstrap [1]:
>>
>>     sudo DEBOOTSTRAP=mmdebstrap ~/src/grml-debootstrap/grml-debootstrap --vm --vmfile --vmsize 3G --target /dev/shm/debian-32.img -r sid --arch i686 --filesystem ext4
>>
>> Then run that with QEMU, but pass the 64-bit Linux kernel to QEMU directly with the switches `-kernel` and `-append`, or install the amd64 Linux kernel into the Debian VM image or the package created with `make bindeb-pkg` with `dpkg -i …`.
> 
> Thanks for these information!
> 
> I tried the following, but couldn't reproduce the issue.
> 
> sudo ./grml-debootstrap --vm --vmfile --vmsize 3G --target ../debian-32.img -r sid --arch i386 --filesystem ext4
> 
> Note: s/i686/i386/. Also I run this on Fedora, so I didn't specify DEBOOTSTRAP.
> 
> Then I run it with
> 
> qemu-system-x86_64 \
>    -boot d ./debian-32.img -m 1024 -smp 4 \
>    -kernel ./bzImage \
>    -nographic -append 'root=/dev/sda1 ro console=ttyS0,115200'
> 
> The VM boots fine. The config being used is x86_64_defconfig +
> CONFIG_DRM_FBDEV_EMULATION.
> 
> I wonder whether this is caused by different config or different image.
> Could you please share your config?

Sorry, for leading you on the wrong path. I actually just wanted to help 
getting a 32-bit userspace set up quickly. I haven’t tried reproducing 
the issue in a VM, and used only the ASUS F2A85-M PRO.

Booting the system with `nomodeset`, I didn’t see the error. No idea if 
it’s related to framebuffer handling or specific to AMD graphics device.

> PS: I couldn't figure out the root password of the image, --password
> option of grml-debootstrap doesn't seem to work.

Hmm, I thought it’s asking you during install, but I haven’t done it in 
a while.


Kind regards,

Paul

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

* Re: BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
  2022-03-28 20:14               ` Paul Menzel
@ 2022-03-28 21:57                 ` Song Liu
  -1 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-03-28 21:57 UTC (permalink / raw)
  To: Paul Menzel
  Cc: Rick P Edgecombe, Song Liu, Alexei Starovoitov, Daniel Borkmann,
	Andrii Nakryiko, Kernel Team, Peter Zijlstra, x86, iii, bpf,
	netdev, linux-kernel, Thomas Gleixner, Ingo Molnar,
	Borislav Petkov, Dave Hansen, regressions, amd-gfx



> On Mar 28, 2022, at 1:14 PM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
> 
> Dear Song,
> 
> 
> Am 28.03.22 um 21:24 schrieb Song Liu:
> 
>>> On Mar 27, 2022, at 11:51 PM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
> 
>>> Am 28.03.22 um 08:37 schrieb Song Liu:
> 
> […]
> 
>>>>> On Mar 27, 2022, at 3:36 AM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
>>> 
>>>>> Am 26.03.22 um 19:46 schrieb Paul Menzel:
>>>>>> #regzbot introduced: fac54e2bfb5be2b0bbf115fe80d45f59fd773048
>>>>>> #regzbot title: BUG: Bad page state in process systemd-udevd
>>>>> 
>>>>>> Am 04.02.22 um 19:57 schrieb Song Liu:
>>>>>>> From: Song Liu <songliubraving@fb.com>
>>>>>>> 
>>>>>>> This enables module_alloc() to allocate huge page for 2MB+ requests.
>>>>>>> To check the difference of this change, we need enable config
>>>>>>> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
>>>>>>> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
>>>>>>> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
>>>>>>> 
>>>>>>> Signed-off-by: Song Liu <songliubraving@fb.com>
>>>>>>> ---
>>>>>>>   arch/x86/Kconfig | 1 +
>>>>>>>   1 file changed, 1 insertion(+)
>>>>>>> 
>>>>>>> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>>>>>>> index 6fddb63271d9..e0e0d00cf103 100644
>>>>>>> --- a/arch/x86/Kconfig
>>>>>>> +++ b/arch/x86/Kconfig
>>>>>>> @@ -159,6 +159,7 @@ config X86
>>>>>>>       select HAVE_ALIGNED_STRUCT_PAGE        if SLUB
>>>>>>>       select HAVE_ARCH_AUDITSYSCALL
>>>>>>>       select HAVE_ARCH_HUGE_VMAP        if X86_64 || X86_PAE
>>>>>>> +    select HAVE_ARCH_HUGE_VMALLOC        if HAVE_ARCH_HUGE_VMAP
>>>>>>>       select HAVE_ARCH_JUMP_LABEL
>>>>>>>       select HAVE_ARCH_JUMP_LABEL_RELATIVE
>>>>>>>       select HAVE_ARCH_KASAN            if X86_64
>>>>>> Testing Linus’ current master branch, Linux logs critical messages like below:
>>>>>>     BUG: Bad page state in process systemd-udevd  pfn:102e03
>>>>>> I bisected to your commit fac54e2bfb5 (x86/Kconfig: select
>>>>>> HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP).
>>>>> Sorry, I forget to mention, that this is a 32-bit (i686) userspace,
>>>>> but a 64-bit Linux kernel, so it might be the same issue as
>>>>> mentioned in commit eed1fcee556f (x86: Disable
>>>>> HAVE_ARCH_HUGE_VMALLOC on 32-bit x86), but didn’t fix the issue for
>>>>> 64-bit Linux kernel and 32-bit userspace.
>>>> I will look more into this tomorrow. To clarify, what is the 32-bit
>>>> user space that triggers this? Is it systemd-udevd? Is the systemd
>>>> also i686?
>>> 
>>> Yes, everything – also systemd – is i686. You can build a 32-bit VM image with grml-debootstrap [1]:
>>> 
>>>    sudo DEBOOTSTRAP=mmdebstrap ~/src/grml-debootstrap/grml-debootstrap --vm --vmfile --vmsize 3G --target /dev/shm/debian-32.img -r sid --arch i686 --filesystem ext4
>>> 
>>> Then run that with QEMU, but pass the 64-bit Linux kernel to QEMU directly with the switches `-kernel` and `-append`, or install the amd64 Linux kernel into the Debian VM image or the package created with `make bindeb-pkg` with `dpkg -i …`.
>> Thanks for these information!
>> I tried the following, but couldn't reproduce the issue.
>> sudo ./grml-debootstrap --vm --vmfile --vmsize 3G --target ../debian-32.img -r sid --arch i386 --filesystem ext4
>> Note: s/i686/i386/. Also I run this on Fedora, so I didn't specify DEBOOTSTRAP.
>> Then I run it with
>> qemu-system-x86_64 \
>>   -boot d ./debian-32.img -m 1024 -smp 4 \
>>   -kernel ./bzImage \
>>   -nographic -append 'root=/dev/sda1 ro console=ttyS0,115200'
>> The VM boots fine. The config being used is x86_64_defconfig +
>> CONFIG_DRM_FBDEV_EMULATION.
>> I wonder whether this is caused by different config or different image.
>> Could you please share your config?
> 
> Sorry, for leading you on the wrong path. I actually just wanted to help getting a 32-bit userspace set up quickly. I haven’t tried reproducing the issue in a VM, and used only the ASUS F2A85-M PRO.
> 
> Booting the system with `nomodeset`, I didn’t see the error. No idea if it’s related to framebuffer handling or specific to AMD graphics device.

I guess this only happens on specific hardware and configuration. 
Let me see what's the best way to not allocate huge pages for this
case. 

Thanks,
Song

> 
>> PS: I couldn't figure out the root password of the image, --password
>> option of grml-debootstrap doesn't seem to work.
> 
> Hmm, I thought it’s asking you during install, but I haven’t done it in a while.
> 
> 
> Kind regards,
> 
> Paul


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

* Re: BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP)
@ 2022-03-28 21:57                 ` Song Liu
  0 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-03-28 21:57 UTC (permalink / raw)
  To: Paul Menzel
  Cc: Dave Hansen, iii, Daniel Borkmann, Peter Zijlstra, netdev, x86,
	Alexei Starovoitov, amd-gfx, Andrii Nakryiko, Song Liu,
	Ingo Molnar, Thomas Gleixner, Borislav Petkov, Kernel Team,
	Rick P Edgecombe, bpf, linux-kernel, regressions



> On Mar 28, 2022, at 1:14 PM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
> 
> Dear Song,
> 
> 
> Am 28.03.22 um 21:24 schrieb Song Liu:
> 
>>> On Mar 27, 2022, at 11:51 PM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
> 
>>> Am 28.03.22 um 08:37 schrieb Song Liu:
> 
> […]
> 
>>>>> On Mar 27, 2022, at 3:36 AM, Paul Menzel <pmenzel@molgen.mpg.de> wrote:
>>> 
>>>>> Am 26.03.22 um 19:46 schrieb Paul Menzel:
>>>>>> #regzbot introduced: fac54e2bfb5be2b0bbf115fe80d45f59fd773048
>>>>>> #regzbot title: BUG: Bad page state in process systemd-udevd
>>>>> 
>>>>>> Am 04.02.22 um 19:57 schrieb Song Liu:
>>>>>>> From: Song Liu <songliubraving@fb.com>
>>>>>>> 
>>>>>>> This enables module_alloc() to allocate huge page for 2MB+ requests.
>>>>>>> To check the difference of this change, we need enable config
>>>>>>> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
>>>>>>> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
>>>>>>> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
>>>>>>> 
>>>>>>> Signed-off-by: Song Liu <songliubraving@fb.com>
>>>>>>> ---
>>>>>>>   arch/x86/Kconfig | 1 +
>>>>>>>   1 file changed, 1 insertion(+)
>>>>>>> 
>>>>>>> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>>>>>>> index 6fddb63271d9..e0e0d00cf103 100644
>>>>>>> --- a/arch/x86/Kconfig
>>>>>>> +++ b/arch/x86/Kconfig
>>>>>>> @@ -159,6 +159,7 @@ config X86
>>>>>>>       select HAVE_ALIGNED_STRUCT_PAGE        if SLUB
>>>>>>>       select HAVE_ARCH_AUDITSYSCALL
>>>>>>>       select HAVE_ARCH_HUGE_VMAP        if X86_64 || X86_PAE
>>>>>>> +    select HAVE_ARCH_HUGE_VMALLOC        if HAVE_ARCH_HUGE_VMAP
>>>>>>>       select HAVE_ARCH_JUMP_LABEL
>>>>>>>       select HAVE_ARCH_JUMP_LABEL_RELATIVE
>>>>>>>       select HAVE_ARCH_KASAN            if X86_64
>>>>>> Testing Linus’ current master branch, Linux logs critical messages like below:
>>>>>>     BUG: Bad page state in process systemd-udevd  pfn:102e03
>>>>>> I bisected to your commit fac54e2bfb5 (x86/Kconfig: select
>>>>>> HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP).
>>>>> Sorry, I forget to mention, that this is a 32-bit (i686) userspace,
>>>>> but a 64-bit Linux kernel, so it might be the same issue as
>>>>> mentioned in commit eed1fcee556f (x86: Disable
>>>>> HAVE_ARCH_HUGE_VMALLOC on 32-bit x86), but didn’t fix the issue for
>>>>> 64-bit Linux kernel and 32-bit userspace.
>>>> I will look more into this tomorrow. To clarify, what is the 32-bit
>>>> user space that triggers this? Is it systemd-udevd? Is the systemd
>>>> also i686?
>>> 
>>> Yes, everything – also systemd – is i686. You can build a 32-bit VM image with grml-debootstrap [1]:
>>> 
>>>    sudo DEBOOTSTRAP=mmdebstrap ~/src/grml-debootstrap/grml-debootstrap --vm --vmfile --vmsize 3G --target /dev/shm/debian-32.img -r sid --arch i686 --filesystem ext4
>>> 
>>> Then run that with QEMU, but pass the 64-bit Linux kernel to QEMU directly with the switches `-kernel` and `-append`, or install the amd64 Linux kernel into the Debian VM image or the package created with `make bindeb-pkg` with `dpkg -i …`.
>> Thanks for these information!
>> I tried the following, but couldn't reproduce the issue.
>> sudo ./grml-debootstrap --vm --vmfile --vmsize 3G --target ../debian-32.img -r sid --arch i386 --filesystem ext4
>> Note: s/i686/i386/. Also I run this on Fedora, so I didn't specify DEBOOTSTRAP.
>> Then I run it with
>> qemu-system-x86_64 \
>>   -boot d ./debian-32.img -m 1024 -smp 4 \
>>   -kernel ./bzImage \
>>   -nographic -append 'root=/dev/sda1 ro console=ttyS0,115200'
>> The VM boots fine. The config being used is x86_64_defconfig +
>> CONFIG_DRM_FBDEV_EMULATION.
>> I wonder whether this is caused by different config or different image.
>> Could you please share your config?
> 
> Sorry, for leading you on the wrong path. I actually just wanted to help getting a 32-bit userspace set up quickly. I haven’t tried reproducing the issue in a VM, and used only the ASUS F2A85-M PRO.
> 
> Booting the system with `nomodeset`, I didn’t see the error. No idea if it’s related to framebuffer handling or specific to AMD graphics device.

I guess this only happens on specific hardware and configuration. 
Let me see what's the best way to not allocate huge pages for this
case. 

Thanks,
Song

> 
>> PS: I couldn't figure out the root password of the image, --password
>> option of grml-debootstrap doesn't seem to work.
> 
> Hmm, I thought it’s asking you during install, but I haven’t done it in a while.
> 
> 
> Kind regards,
> 
> Paul


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

* Re: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  2022-03-26  0:06   ` Edgecombe, Rick P
@ 2022-03-28 23:27     ` Song Liu
  2022-03-29  0:18       ` Edgecombe, Rick P
  0 siblings, 1 reply; 33+ messages in thread
From: Song Liu @ 2022-03-28 23:27 UTC (permalink / raw)
  To: Edgecombe, Rick P, Paul Menzel
  Cc: netdev, linux-kernel, song, bpf, daniel, peterz, ast,
	Kernel Team, andrii, x86, iii

+Paul

> On Mar 25, 2022, at 5:06 PM, Edgecombe, Rick P <rick.p.edgecombe@intel.com> wrote:
> 
> On Fri, 2022-02-04 at 10:57 -0800, Song Liu wrote:
>> From: Song Liu <songliubraving@fb.com>
>> 
>> This enables module_alloc() to allocate huge page for 2MB+ requests.
>> To check the difference of this change, we need enable config
>> CONFIG_PTDUMP_DEBUGFS, and call module_alloc(2MB). Before the change,
>> /sys/kernel/debug/page_tables/kernel shows pte for this map. With the
>> change, /sys/kernel/debug/page_tables/ show pmd for thie map.
>> 
>> Signed-off-by: Song Liu <songliubraving@fb.com>
>> ---
>> arch/x86/Kconfig | 1 +
>> 1 file changed, 1 insertion(+)
> 
> Hi,
> 
> I just saw this upstream today. Glad to see this functionality, but I
> think turning on huge vmalloc pages for x86 needs a bit more. I’ll
> describe a couple possible failure modes I haven’t actually tested.
> 
> One problem is that the direct map permission reset part in vmalloc
> assumes any special permissioned pages are mapped 4k on the direct map.
> Otherwise the operation could fail to reset a page RW if a PTE page
> allocation fails when it tries to split the page to toggle a 4k sized
> region NP/P. If you are not familiar, x86 CPA generally leaves the
> direct map page sizes mirroring the primary alias (vmalloc). So once
> vmalloc has huge pages, the special permissioned direct map aliases
> will have them too. This limitation of HAVE_ARCH_HUGE_VMALLOC is
> actually hinted about in the Kconfig comments, but I guess it wasn’t
> specific that x86 has these properties.
> 
> I think to make the vmalloc resetting part safe:
> 1. set_direct_map_invalid/default() needs to support multiple pages
> like this[0].
> 2. vm_remove_mappings() needs to call them with the correct page size
> in the hpage case so they don't cause a split[1].
> 3. Then hibernate needs to be blocked during this operation so it
> doesn’t encounter the now sometimes huge NP pages, which it can’t
> handle. Not sure what the right way to do this is, but potentially like
> in the diff below[1].
> 
> Another problem is that CPA will sometimes now split pages of vmalloc
> mappings in cases where it sets a region of an allocation to a
> different permission than the rest (for example regular modules calling
> set_memory_x() on the text section). Before this change, these couldn’t
> fail since the module space mapping would never require a split.
> Modules doesn’t check for failure there, so I’m thinking now it would
> proceed to try to execute NX memory if the split failed. It could only
> happen on allocation of especially large modules. Maybe it should just
> be avoided for now by having regular module allocations pass
> VM_NO_HUGE_VMAP on x86. And BPF could call __vmalloc_node_range()
> directly to get 2MB vmallocs.

I like this direction. But I am afraid this is not enough. Using
VM_NO_HUGE_VMAP in module_alloc() will make sure we don't allocate 
huge pages for modules. But other users of __vmalloc_node_range(), 
such as vzalloc in Paul's report, may still hit the issue. 

Maybe we need another flag VM_FORCE_HUGE_VMAP that bypasses 
vmap_allow_huge check. Something like the diff below.

Would this work?

Thanks,
Song



diff --git i/include/linux/vmalloc.h w/include/linux/vmalloc.h
index 3b1df7da402d..a639405dab99 100644
--- i/include/linux/vmalloc.h
+++ w/include/linux/vmalloc.h
@@ -27,6 +27,7 @@ struct notifier_block;                /* in notifier.h */
 #define VM_FLUSH_RESET_PERMS   0x00000100      /* reset direct map and flush TLB on unmap, can't be freed in atomic context */
 #define VM_MAP_PUT_PAGES       0x00000200      /* put pages and free array in vfree */
 #define VM_NO_HUGE_VMAP                0x00000400      /* force PAGE_SIZE pte mapping */
+#define VM_FORCE_HUGE_VMAP     0x00000800      /* force PMD_SIZE mapping (bypass vmap_allow_huge check) */

 #if (defined(CONFIG_KASAN_GENERIC) || defined(CONFIG_KASAN_SW_TAGS)) && \
        !defined(CONFIG_KASAN_VMALLOC)
diff --git i/kernel/bpf/core.c w/kernel/bpf/core.c
index 13e9dbeeedf3..3cd0ff66d39c 100644
--- i/kernel/bpf/core.c
+++ w/kernel/bpf/core.c
@@ -851,13 +851,22 @@ static LIST_HEAD(pack_list);
 #define BPF_HPAGE_MASK PAGE_MASK
 #endif

+static void *bpf_prog_pack_vmalloc(unsigned long size)
+{
+       return __vmalloc_node_range(size, MODULE_ALIGN,
+                                   MODULES_VADDR + get_module_load_offset(),
+                                   MODULES_END, gfp_mask, PAGE_KERNEL,
+                                   VM_DEFER_KMEMLEAK | VM_FORCE_HUGE_VMAP,
+                                   NUMA_NO_NODE, __builtin_return_address(0));
+}
+
 static size_t select_bpf_prog_pack_size(void)
 {
        size_t size;
        void *ptr;

        size = BPF_HPAGE_SIZE * num_online_nodes();
-       ptr = module_alloc(size);
+       ptr = bpf_prog_pack_vmalloc(size);

        /* Test whether we can get huge pages. If not just use PAGE_SIZE
         * packs.
@@ -881,7 +890,7 @@ static struct bpf_prog_pack *alloc_new_pack(void)
                       GFP_KERNEL);
        if (!pack)
                return NULL;
-       pack->ptr = module_alloc(bpf_prog_pack_size);
+       pack->ptr = bpf_prog_pack_vmalloc(bpf_prog_pack_size);
        if (!pack->ptr) {
                kfree(pack);
                return NULL;
diff --git i/mm/vmalloc.c w/mm/vmalloc.c
index e163372d3967..df2dd6779fa8 100644
--- i/mm/vmalloc.c
+++ w/mm/vmalloc.c
@@ -3106,7 +3106,8 @@ void *__vmalloc_node_range(unsigned long size, unsigned long align,
                return NULL;
        }

-       if (vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP)) {
+       if ((vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP)) ||
+           (vm_flags & VM_FORCE_HUGE_VMAP)) {
                unsigned long size_per_node;

                /*



> 
> [0] 
> https://lore.kernel.org/lkml/20210208084920.2884-5-rppt@kernel.org/#t
> 
> [1] Untested, but something like this possibly:
> diff --git a/mm/vmalloc.c b/mm/vmalloc.c
> index 99e0f3e8d1a5..97c4ca3a29b1 100644
> --- a/mm/vmalloc.c
> +++ b/mm/vmalloc.c
> @@ -42,6 +42,7 @@
> #include <linux/sched/mm.h>
> #include <asm/tlbflush.h>
> #include <asm/shmparam.h>
> +#include <linux/suspend.h>
> 
> #include "internal.h"
> #include "pgalloc-track.h"
> @@ -2241,7 +2242,7 @@ EXPORT_SYMBOL(vm_map_ram);
> 
> static struct vm_struct *vmlist __initdata;
> 
> -static inline unsigned int vm_area_page_order(struct vm_struct *vm)
> +static inline unsigned int vm_area_page_order(const struct vm_struct
> *vm)
> {
> #ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
>        return vm->page_order;
> @@ -2560,12 +2561,12 @@ struct vm_struct *remove_vm_area(const void
> *addr)
> static inline void set_area_direct_map(const struct vm_struct *area,
>                                       int (*set_direct_map)(struct
> page *page))
> {
> +       unsigned int page_order = vm_area_page_order(area);
>        int i;
> 
> -       /* HUGE_VMALLOC passes small pages to set_direct_map */
> -       for (i = 0; i < area->nr_pages; i++)
> +       for (i = 0; i < area->nr_pages; i += 1U << page_order)
>                if (page_address(area->pages[i]))
> -                       set_direct_map(area->pages[i]);
> +                       set_direct_map(area->pages[i], 1U <<
> page_order);
> }
> 
> /* Handle removing and resetting vm mappings related to the vm_struct.
> */
> @@ -2592,6 +2593,10 @@ static void vm_remove_mappings(struct vm_struct
> *area, int deallocate_pages)
>                return;
>        }
> 
> +       /* Hibernate can't handle large NP pages */
> +       if (page_order)
> +               lock_system_sleep();
> +
>        /*
>         * If execution gets here, flush the vm mapping and reset the
> direct
>         * map. Find the start and end range of the direct mappings to
> make sure
> @@ -2617,6 +2622,9 @@ static void vm_remove_mappings(struct vm_struct
> *area, int deallocate_pages)
>        set_area_direct_map(area, set_direct_map_invalid_noflush);
>        _vm_unmap_aliases(start, end, flush_dmap);
>        set_area_direct_map(area, set_direct_map_default_noflush);
> +
> +       if (page_order)
> +               unlock_system_sleep();
> }
> 
> static void __vunmap(const void *addr, int deallocate_pages)


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

* Re: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  2022-03-28 23:27     ` Song Liu
@ 2022-03-29  0:18       ` Edgecombe, Rick P
  2022-03-29  8:23         ` Song Liu
  0 siblings, 1 reply; 33+ messages in thread
From: Edgecombe, Rick P @ 2022-03-29  0:18 UTC (permalink / raw)
  To: pmenzel, songliubraving
  Cc: linux-kernel, daniel, peterz, ast, bpf, Kernel-team, song,
	andrii, x86, iii, netdev

On Mon, 2022-03-28 at 23:27 +0000, Song Liu wrote:
> I like this direction. But I am afraid this is not enough. Using
> VM_NO_HUGE_VMAP in module_alloc() will make sure we don't allocate 
> huge pages for modules. But other users of __vmalloc_node_range(), 
> such as vzalloc in Paul's report, may still hit the issue. 
> 
> Maybe we need another flag VM_FORCE_HUGE_VMAP that bypasses 
> vmap_allow_huge check. Something like the diff below.
> 
> Would this work?

Yea, that looks like a safer direction. It's too bad we can't have
automatic large pages, but it doesn't seem ready to just turn on for
the whole x86 kernel.

I'm not sure about this implementation though. It would let large pages
get enabled without HAVE_ARCH_HUGE_VMALLOC and also despite the disable
kernel parameter.

Apparently some architectures can handle large pages automatically and
it has benefits for them, so maybe vmalloc should support both
behaviors based on config. Like there should a
ARCH_HUGE_VMALLOC_REQUIRE_FLAG config. If configured it requires
VM_HUGE_VMAP (or some name). I don't think FORCE fits, because the
current logic would not always give huge pages.

But yea, seems risky to leave it on generally, even if you could fix
Paul's specific issue.


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

* Re: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  2022-03-29  0:18       ` Edgecombe, Rick P
@ 2022-03-29  8:23         ` Song Liu
  2022-03-29 18:39           ` Edgecombe, Rick P
  0 siblings, 1 reply; 33+ messages in thread
From: Song Liu @ 2022-03-29  8:23 UTC (permalink / raw)
  To: Edgecombe, Rick P
  Cc: pmenzel, linux-kernel, daniel, peterz, ast, bpf, Kernel Team,
	song, andrii, x86, iii, netdev



> On Mar 28, 2022, at 5:18 PM, Edgecombe, Rick P <rick.p.edgecombe@intel.com> wrote:
> 
> On Mon, 2022-03-28 at 23:27 +0000, Song Liu wrote:
>> I like this direction. But I am afraid this is not enough. Using
>> VM_NO_HUGE_VMAP in module_alloc() will make sure we don't allocate 
>> huge pages for modules. But other users of __vmalloc_node_range(), 
>> such as vzalloc in Paul's report, may still hit the issue. 
>> 
>> Maybe we need another flag VM_FORCE_HUGE_VMAP that bypasses 
>> vmap_allow_huge check. Something like the diff below.
>> 
>> Would this work?
> 
> Yea, that looks like a safer direction. It's too bad we can't have
> automatic large pages, but it doesn't seem ready to just turn on for
> the whole x86 kernel.
> 
> I'm not sure about this implementation though. It would let large pages
> get enabled without HAVE_ARCH_HUGE_VMALLOC and also despite the disable
> kernel parameter.
> 
> Apparently some architectures can handle large pages automatically and
> it has benefits for them, so maybe vmalloc should support both
> behaviors based on config. Like there should a
> ARCH_HUGE_VMALLOC_REQUIRE_FLAG config. If configured it requires
> VM_HUGE_VMAP (or some name). I don't think FORCE fits, because the
> current logic would not always give huge pages.
> 
> But yea, seems risky to leave it on generally, even if you could fix
> Paul's specific issue.
> 


How about something like the following? (I still need to fix something, but
would like some feedbacks on the API).

Thanks,
Song


diff --git a/arch/Kconfig b/arch/Kconfig
index 84bc1de02720..defef50ff527 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -858,6 +858,15 @@ config HAVE_ARCH_HUGE_VMALLOC
 	depends on HAVE_ARCH_HUGE_VMAP
 	bool
 
+#
+# HAVE_ARCH_HUGE_VMALLOC_FLAG allows users of __vmalloc_node_range to allocate
+# huge page without HAVE_ARCH_HUGE_VMALLOC. To allocate huge pages,, the user
+# need to call __vmalloc_node_range with VM_PREFER_HUGE_VMAP.
+#
+config HAVE_ARCH_HUGE_VMALLOC_FLAG
+	depends on HAVE_ARCH_HUGE_VMAP
+	bool
+
 config ARCH_WANT_HUGE_PMD_SHARE
 	bool
 
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 7340d9f01b62..e64f00415575 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -161,7 +161,7 @@ config X86
 	select HAVE_ALIGNED_STRUCT_PAGE		if SLUB
 	select HAVE_ARCH_AUDITSYSCALL
 	select HAVE_ARCH_HUGE_VMAP		if X86_64 || X86_PAE
-	select HAVE_ARCH_HUGE_VMALLOC		if X86_64
+	select HAVE_ARCH_HUGE_VMALLOC_FLAG	if X86_64
 	select HAVE_ARCH_JUMP_LABEL
 	select HAVE_ARCH_JUMP_LABEL_RELATIVE
 	select HAVE_ARCH_KASAN			if X86_64
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h
index 3b1df7da402d..98f8a93fcfd4 100644
--- a/include/linux/vmalloc.h
+++ b/include/linux/vmalloc.h
@@ -35,6 +35,11 @@ struct notifier_block;		/* in notifier.h */
 #define VM_DEFER_KMEMLEAK	0
 #endif
 
+#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG
+#define VM_PREFER_HUGE_VMAP	0x00001000	/* prefer PMD_SIZE mapping (bypass vmap_allow_huge check) */
+#else
+#define VM_PREFER_HUGE_VMAP	0
+#endif
 /* bits [20..32] reserved for arch specific ioremap internals */
 
 /*
@@ -51,7 +56,7 @@ struct vm_struct {
 	unsigned long		size;
 	unsigned long		flags;
 	struct page		**pages;
-#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
+#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) || defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
 	unsigned int		page_order;
 #endif
 	unsigned int		nr_pages;
@@ -225,7 +230,7 @@ static inline bool is_vm_area_hugepages(const void *addr)
 	 * prevents that. This only indicates the size of the physical page
 	 * allocated in the vmalloc layer.
 	 */
-#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
+#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) || defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
 	return find_vm_area(addr)->page_order > 0;
 #else
 	return false;
diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index 13e9dbeeedf3..fc9dae095079 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -851,13 +851,28 @@ static LIST_HEAD(pack_list);
 #define BPF_HPAGE_MASK PAGE_MASK
 #endif
 
+static void *bpf_prog_pack_vmalloc(unsigned long size)
+{
+#if defined(MODULES_VADDR)
+	unsigned long start = MODULES_VADDR;
+	unsigned long end = MODULES_END;
+#else
+	unsigned long start = VMALLOC_START;
+	unsigned long end = VMALLOC_END;
+#endif
+
+	return __vmalloc_node_range(size, PAGE_SIZE, start, end, GFP_KERNEL, PAGE_KERNEL,
+				    VM_DEFER_KMEMLEAK | VM_PREFER_HUGE_VMAP,
+				    NUMA_NO_NODE, __builtin_return_address(0));
+}
+
 static size_t select_bpf_prog_pack_size(void)
 {
 	size_t size;
 	void *ptr;
 
 	size = BPF_HPAGE_SIZE * num_online_nodes();
-	ptr = module_alloc(size);
+	ptr = bpf_prog_pack_vmalloc(size);
 
 	/* Test whether we can get huge pages. If not just use PAGE_SIZE
 	 * packs.
@@ -881,7 +896,7 @@ static struct bpf_prog_pack *alloc_new_pack(void)
 		       GFP_KERNEL);
 	if (!pack)
 		return NULL;
-	pack->ptr = module_alloc(bpf_prog_pack_size);
+	pack->ptr = bpf_prog_pack_vmalloc(bpf_prog_pack_size);
 	if (!pack->ptr) {
 		kfree(pack);
 		return NULL;
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index e163372d3967..9d3c1ab8bdf1 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -2261,7 +2261,7 @@ static inline unsigned int vm_area_page_order(struct vm_struct *vm)
 
 static inline void set_vm_area_page_order(struct vm_struct *vm, unsigned int order)
 {
-#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
+#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) || defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
 	vm->page_order = order;
 #else
 	BUG_ON(order != 0);
@@ -3106,7 +3106,8 @@ void *__vmalloc_node_range(unsigned long size, unsigned long align,
 		return NULL;
 	}
 
-	if (vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP)) {
+	if ((vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP)) ||
+	    (IS_ENABLED(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG) && (vm_flags & VM_PREFER_HUGE_VMAP))) {
 		unsigned long size_per_node;
 
 		/*

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

* Re: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  2022-03-29  8:23         ` Song Liu
@ 2022-03-29 18:39           ` Edgecombe, Rick P
  2022-03-29 19:13             ` Song Liu
  0 siblings, 1 reply; 33+ messages in thread
From: Edgecombe, Rick P @ 2022-03-29 18:39 UTC (permalink / raw)
  To: songliubraving
  Cc: linux-kernel, daniel, peterz, ast, bpf, Kernel-team, song, hch,
	pmenzel, andrii, x86, iii, netdev, urezki, npiggin

CC some vmalloc folks. What happened was vmalloc huge pages was turned
on for x86 with the rest of the kernel unprepared and problems have
popped up. We are discussing a possible new config and vmap flag such
that for some arch's, huge pages would only be used for certain
allocations such as BPF's.

Thread:

https://lore.kernel.org/lkml/6080EC28-E3FE-4B00-B94A-ED7EBA1F55ED@fb.com/

On Tue, 2022-03-29 at 08:23 +0000, Song Liu wrote:
> > On Mar 28, 2022, at 5:18 PM, Edgecombe, Rick P <
> > rick.p.edgecombe@intel.com> wrote:
> > 
> > On Mon, 2022-03-28 at 23:27 +0000, Song Liu wrote:
> > > I like this direction. But I am afraid this is not enough. Using
> > > VM_NO_HUGE_VMAP in module_alloc() will make sure we don't
> > > allocate 
> > > huge pages for modules. But other users of
> > > __vmalloc_node_range(), 
> > > such as vzalloc in Paul's report, may still hit the issue. 
> > > 
> > > Maybe we need another flag VM_FORCE_HUGE_VMAP that bypasses 
> > > vmap_allow_huge check. Something like the diff below.
> > > 
> > > Would this work?
> > 
> > Yea, that looks like a safer direction. It's too bad we can't have
> > automatic large pages, but it doesn't seem ready to just turn on
> > for
> > the whole x86 kernel.
> > 
> > I'm not sure about this implementation though. It would let large
> > pages
> > get enabled without HAVE_ARCH_HUGE_VMALLOC and also despite the
> > disable
> > kernel parameter.
> > 
> > Apparently some architectures can handle large pages automatically
> > and
> > it has benefits for them, so maybe vmalloc should support both
> > behaviors based on config. Like there should a
> > ARCH_HUGE_VMALLOC_REQUIRE_FLAG config. If configured it requires
> > VM_HUGE_VMAP (or some name). I don't think FORCE fits, because the
> > current logic would not always give huge pages.
> > 
> > But yea, seems risky to leave it on generally, even if you could
> > fix
> > Paul's specific issue.
> > 
> 
> 
> How about something like the following? (I still need to fix
> something, but
> would like some feedbacks on the API).
> 
> Thanks,
> Song
> 
> 
> diff --git a/arch/Kconfig b/arch/Kconfig
> index 84bc1de02720..defef50ff527 100644
> --- a/arch/Kconfig
> +++ b/arch/Kconfig
> @@ -858,6 +858,15 @@ config HAVE_ARCH_HUGE_VMALLOC
>  	depends on HAVE_ARCH_HUGE_VMAP
>  	bool
>  
> +#
> +# HAVE_ARCH_HUGE_VMALLOC_FLAG allows users of __vmalloc_node_range
> to allocate
> +# huge page without HAVE_ARCH_HUGE_VMALLOC. To allocate huge pages,,
> the user
> +# need to call __vmalloc_node_range with VM_PREFER_HUGE_VMAP.
> +#
> +config HAVE_ARCH_HUGE_VMALLOC_FLAG
> +	depends on HAVE_ARCH_HUGE_VMAP
> +	bool
> +
>  config ARCH_WANT_HUGE_PMD_SHARE
>  	bool
>  
> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
> index 7340d9f01b62..e64f00415575 100644
> --- a/arch/x86/Kconfig
> +++ b/arch/x86/Kconfig
> @@ -161,7 +161,7 @@ config X86
>  	select HAVE_ALIGNED_STRUCT_PAGE		if SLUB
>  	select HAVE_ARCH_AUDITSYSCALL
>  	select HAVE_ARCH_HUGE_VMAP		if X86_64 || X86_PAE
> -	select HAVE_ARCH_HUGE_VMALLOC		if X86_64
> +	select HAVE_ARCH_HUGE_VMALLOC_FLAG	if X86_64
>  	select HAVE_ARCH_JUMP_LABEL
>  	select HAVE_ARCH_JUMP_LABEL_RELATIVE
>  	select HAVE_ARCH_KASAN			if X86_64
> diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h
> index 3b1df7da402d..98f8a93fcfd4 100644
> --- a/include/linux/vmalloc.h
> +++ b/include/linux/vmalloc.h
> @@ -35,6 +35,11 @@ struct notifier_block;		/* in
> notifier.h */
>  #define VM_DEFER_KMEMLEAK	0
>  #endif
>  
> +#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG
> +#define VM_PREFER_HUGE_VMAP	0x00001000	/* prefer PMD_SIZE
> mapping (bypass vmap_allow_huge check) */

I don't think we should tie this to vmap_allow_huge by definition.
Also, what it does is try 2MB pages for allocations larger than 2MB.
For smaller allocations it doesn't try or "prefer" them.

> +#else
> +#define VM_PREFER_HUGE_VMAP	0
> +#endif
>  /* bits [20..32] reserved for arch specific ioremap internals */
>  
>  /*
> @@ -51,7 +56,7 @@ struct vm_struct {
>  	unsigned long		size;
>  	unsigned long		flags;
>  	struct page		**pages;
> -#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
> +#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) ||
> defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
>  	unsigned int		page_order;
>  #endif
>  	unsigned int		nr_pages;
> @@ -225,7 +230,7 @@ static inline bool is_vm_area_hugepages(const
> void *addr)
>  	 * prevents that. This only indicates the size of the physical
> page
>  	 * allocated in the vmalloc layer.
>  	 */
> -#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
> +#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) ||
> defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
>  	return find_vm_area(addr)->page_order > 0;
>  #else
>  	return false;
> diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
> index 13e9dbeeedf3..fc9dae095079 100644
> --- a/kernel/bpf/core.c
> +++ b/kernel/bpf/core.c
> @@ -851,13 +851,28 @@ static LIST_HEAD(pack_list);
>  #define BPF_HPAGE_MASK PAGE_MASK
>  #endif
>  
> +static void *bpf_prog_pack_vmalloc(unsigned long size)
> +{
> +#if defined(MODULES_VADDR)
> +	unsigned long start = MODULES_VADDR;
> +	unsigned long end = MODULES_END;
> +#else
> +	unsigned long start = VMALLOC_START;
> +	unsigned long end = VMALLOC_END;
> +#endif
> +
> +	return __vmalloc_node_range(size, PAGE_SIZE, start, end,
> GFP_KERNEL, PAGE_KERNEL,
> +				    VM_DEFER_KMEMLEAK |
> VM_PREFER_HUGE_VMAP,
> +				    NUMA_NO_NODE,
> __builtin_return_address(0));
> +}
> +
>  static size_t select_bpf_prog_pack_size(void)
>  {
>  	size_t size;
>  	void *ptr;
>  
>  	size = BPF_HPAGE_SIZE * num_online_nodes();
> -	ptr = module_alloc(size);
> +	ptr = bpf_prog_pack_vmalloc(size);
>  
>  	/* Test whether we can get huge pages. If not just use
> PAGE_SIZE
>  	 * packs.
> @@ -881,7 +896,7 @@ static struct bpf_prog_pack *alloc_new_pack(void)
>  		       GFP_KERNEL);
>  	if (!pack)
>  		return NULL;
> -	pack->ptr = module_alloc(bpf_prog_pack_size);
> +	pack->ptr = bpf_prog_pack_vmalloc(bpf_prog_pack_size);
>  	if (!pack->ptr) {
>  		kfree(pack);
>  		return NULL;
> diff --git a/mm/vmalloc.c b/mm/vmalloc.c
> index e163372d3967..9d3c1ab8bdf1 100644
> --- a/mm/vmalloc.c
> +++ b/mm/vmalloc.c
> @@ -2261,7 +2261,7 @@ static inline unsigned int
> vm_area_page_order(struct vm_struct *vm)
>  
>  static inline void set_vm_area_page_order(struct vm_struct *vm,
> unsigned int order)
>  {
> -#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
> +#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) ||
> defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
>  	vm->page_order = order;
>  #else
>  	BUG_ON(order != 0);
> @@ -3106,7 +3106,8 @@ void *__vmalloc_node_range(unsigned long size,
> unsigned long align,
>  		return NULL;
>  	}
>  
> -	if (vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP)) {
> +	if ((vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP)) ||
> +	    (IS_ENABLED(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG) &&
> (vm_flags & VM_PREFER_HUGE_VMAP))) {

vmap_allow_huge is how the kernel parameter that can disable vmalloc
huge pages works. I don't think we should separate it. Disabling
vmalloc huge pages should still disable this alternate mode.

>  		unsigned long size_per_node;
>  
>  		/*

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

* Re: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  2022-03-29 18:39           ` Edgecombe, Rick P
@ 2022-03-29 19:13             ` Song Liu
  2022-03-29 21:36               ` Edgecombe, Rick P
  0 siblings, 1 reply; 33+ messages in thread
From: Song Liu @ 2022-03-29 19:13 UTC (permalink / raw)
  To: Edgecombe, Rick P
  Cc: linux-kernel, daniel, peterz, ast, bpf, Kernel Team, song, hch,
	pmenzel, andrii, x86, iii, netdev, urezki, npiggin



> On Mar 29, 2022, at 11:39 AM, Edgecombe, Rick P <rick.p.edgecombe@intel.com> wrote:
> 
> CC some vmalloc folks. What happened was vmalloc huge pages was turned
> on for x86 with the rest of the kernel unprepared and problems have
> popped up. We are discussing a possible new config and vmap flag such
> that for some arch's, huge pages would only be used for certain
> allocations such as BPF's.
> 
> Thread:
> 
> https://lore.kernel.org/lkml/6080EC28-E3FE-4B00-B94A-ED7EBA1F55ED@fb.com/
> 
> On Tue, 2022-03-29 at 08:23 +0000, Song Liu wrote:
>>> On Mar 28, 2022, at 5:18 PM, Edgecombe, Rick P <
>>> rick.p.edgecombe@intel.com> wrote:
>>> 
>>> On Mon, 2022-03-28 at 23:27 +0000, Song Liu wrote:
>>>> I like this direction. But I am afraid this is not enough. Using
>>>> VM_NO_HUGE_VMAP in module_alloc() will make sure we don't
>>>> allocate 
>>>> huge pages for modules. But other users of
>>>> __vmalloc_node_range(), 
>>>> such as vzalloc in Paul's report, may still hit the issue. 
>>>> 
>>>> Maybe we need another flag VM_FORCE_HUGE_VMAP that bypasses 
>>>> vmap_allow_huge check. Something like the diff below.
>>>> 
>>>> Would this work?
>>> 
>>> Yea, that looks like a safer direction. It's too bad we can't have
>>> automatic large pages, but it doesn't seem ready to just turn on
>>> for
>>> the whole x86 kernel.
>>> 
>>> I'm not sure about this implementation though. It would let large
>>> pages
>>> get enabled without HAVE_ARCH_HUGE_VMALLOC and also despite the
>>> disable
>>> kernel parameter.
>>> 
>>> Apparently some architectures can handle large pages automatically
>>> and
>>> it has benefits for them, so maybe vmalloc should support both
>>> behaviors based on config. Like there should a
>>> ARCH_HUGE_VMALLOC_REQUIRE_FLAG config. If configured it requires
>>> VM_HUGE_VMAP (or some name). I don't think FORCE fits, because the
>>> current logic would not always give huge pages.
>>> 
>>> But yea, seems risky to leave it on generally, even if you could
>>> fix
>>> Paul's specific issue.
>>> 
>> 
>> 
>> How about something like the following? (I still need to fix
>> something, but
>> would like some feedbacks on the API).
>> 
>> Thanks,
>> Song
>> 
>> 
>> diff --git a/arch/Kconfig b/arch/Kconfig
>> index 84bc1de02720..defef50ff527 100644
>> --- a/arch/Kconfig
>> +++ b/arch/Kconfig
>> @@ -858,6 +858,15 @@ config HAVE_ARCH_HUGE_VMALLOC
>> 	depends on HAVE_ARCH_HUGE_VMAP
>> 	bool
>> 
>> +#
>> +# HAVE_ARCH_HUGE_VMALLOC_FLAG allows users of __vmalloc_node_range
>> to allocate
>> +# huge page without HAVE_ARCH_HUGE_VMALLOC. To allocate huge pages,,
>> the user
>> +# need to call __vmalloc_node_range with VM_PREFER_HUGE_VMAP.
>> +#
>> +config HAVE_ARCH_HUGE_VMALLOC_FLAG
>> +	depends on HAVE_ARCH_HUGE_VMAP
>> +	bool
>> +
>> config ARCH_WANT_HUGE_PMD_SHARE
>> 	bool
>> 
>> diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
>> index 7340d9f01b62..e64f00415575 100644
>> --- a/arch/x86/Kconfig
>> +++ b/arch/x86/Kconfig
>> @@ -161,7 +161,7 @@ config X86
>> 	select HAVE_ALIGNED_STRUCT_PAGE		if SLUB
>> 	select HAVE_ARCH_AUDITSYSCALL
>> 	select HAVE_ARCH_HUGE_VMAP		if X86_64 || X86_PAE
>> -	select HAVE_ARCH_HUGE_VMALLOC		if X86_64
>> +	select HAVE_ARCH_HUGE_VMALLOC_FLAG	if X86_64
>> 	select HAVE_ARCH_JUMP_LABEL
>> 	select HAVE_ARCH_JUMP_LABEL_RELATIVE
>> 	select HAVE_ARCH_KASAN			if X86_64
>> diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h
>> index 3b1df7da402d..98f8a93fcfd4 100644
>> --- a/include/linux/vmalloc.h
>> +++ b/include/linux/vmalloc.h
>> @@ -35,6 +35,11 @@ struct notifier_block;		/* in
>> notifier.h */
>> #define VM_DEFER_KMEMLEAK	0
>> #endif
>> 
>> +#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG
>> +#define VM_PREFER_HUGE_VMAP	0x00001000	/* prefer PMD_SIZE
>> mapping (bypass vmap_allow_huge check) */
> 
> I don't think we should tie this to vmap_allow_huge by definition.
> Also, what it does is try 2MB pages for allocations larger than 2MB.
> For smaller allocations it doesn't try or "prefer" them.

How about something like:

#define VM_TRY_HUGE_VMAP        0x00001000      /* try PMD_SIZE mapping if size-per-node >= PMD_SIZE */

> 
>> +#else
>> +#define VM_PREFER_HUGE_VMAP	0
>> +#endif
>> /* bits [20..32] reserved for arch specific ioremap internals */
>> 
>> /*
>> @@ -51,7 +56,7 @@ struct vm_struct {
>> 	unsigned long		size;
>> 	unsigned long		flags;
>> 	struct page		**pages;
>> -#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
>> +#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) ||
>> defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
>> 	unsigned int		page_order;
>> #endif
>> 	unsigned int		nr_pages;
>> @@ -225,7 +230,7 @@ static inline bool is_vm_area_hugepages(const
>> void *addr)
>> 	 * prevents that. This only indicates the size of the physical
>> page
>> 	 * allocated in the vmalloc layer.
>> 	 */
>> -#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
>> +#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) ||
>> defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
>> 	return find_vm_area(addr)->page_order > 0;
>> #else
>> 	return false;
>> diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
>> index 13e9dbeeedf3..fc9dae095079 100644
>> --- a/kernel/bpf/core.c
>> +++ b/kernel/bpf/core.c
>> @@ -851,13 +851,28 @@ static LIST_HEAD(pack_list);
>> #define BPF_HPAGE_MASK PAGE_MASK
>> #endif
>> 
>> +static void *bpf_prog_pack_vmalloc(unsigned long size)
>> +{
>> +#if defined(MODULES_VADDR)
>> +	unsigned long start = MODULES_VADDR;
>> +	unsigned long end = MODULES_END;
>> +#else
>> +	unsigned long start = VMALLOC_START;
>> +	unsigned long end = VMALLOC_END;
>> +#endif
>> +
>> +	return __vmalloc_node_range(size, PAGE_SIZE, start, end,
>> GFP_KERNEL, PAGE_KERNEL,
>> +				    VM_DEFER_KMEMLEAK |
>> VM_PREFER_HUGE_VMAP,
>> +				    NUMA_NO_NODE,
>> __builtin_return_address(0));
>> +}
>> +
>> static size_t select_bpf_prog_pack_size(void)
>> {
>> 	size_t size;
>> 	void *ptr;
>> 
>> 	size = BPF_HPAGE_SIZE * num_online_nodes();
>> -	ptr = module_alloc(size);
>> +	ptr = bpf_prog_pack_vmalloc(size);
>> 
>> 	/* Test whether we can get huge pages. If not just use
>> PAGE_SIZE
>> 	 * packs.
>> @@ -881,7 +896,7 @@ static struct bpf_prog_pack *alloc_new_pack(void)
>> 		       GFP_KERNEL);
>> 	if (!pack)
>> 		return NULL;
>> -	pack->ptr = module_alloc(bpf_prog_pack_size);
>> +	pack->ptr = bpf_prog_pack_vmalloc(bpf_prog_pack_size);
>> 	if (!pack->ptr) {
>> 		kfree(pack);
>> 		return NULL;
>> diff --git a/mm/vmalloc.c b/mm/vmalloc.c
>> index e163372d3967..9d3c1ab8bdf1 100644
>> --- a/mm/vmalloc.c
>> +++ b/mm/vmalloc.c
>> @@ -2261,7 +2261,7 @@ static inline unsigned int
>> vm_area_page_order(struct vm_struct *vm)
>> 
>> static inline void set_vm_area_page_order(struct vm_struct *vm,
>> unsigned int order)
>> {
>> -#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
>> +#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) ||
>> defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
>> 	vm->page_order = order;
>> #else
>> 	BUG_ON(order != 0);
>> @@ -3106,7 +3106,8 @@ void *__vmalloc_node_range(unsigned long size,
>> unsigned long align,
>> 		return NULL;
>> 	}
>> 
>> -	if (vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP)) {
>> +	if ((vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP)) ||
>> +	    (IS_ENABLED(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG) &&
>> (vm_flags & VM_PREFER_HUGE_VMAP))) {
> 
> vmap_allow_huge is how the kernel parameter that can disable vmalloc
> huge pages works. I don't think we should separate it. Disabling
> vmalloc huge pages should still disable this alternate mode.

Yeah, this makes sense. I will fix it. 

> 
>> 		unsigned long size_per_node;
>> 
>> 		/*


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

* Re: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  2022-03-29 19:13             ` Song Liu
@ 2022-03-29 21:36               ` Edgecombe, Rick P
  2022-03-29 22:12                 ` Song Liu
  0 siblings, 1 reply; 33+ messages in thread
From: Edgecombe, Rick P @ 2022-03-29 21:36 UTC (permalink / raw)
  To: songliubraving
  Cc: linux-kernel, daniel, peterz, ast, bpf, Kernel-team, song, hch,
	pmenzel, andrii, x86, iii, netdev, urezki, npiggin

On Tue, 2022-03-29 at 19:13 +0000, Song Liu wrote:
> > 
> > I don't think we should tie this to vmap_allow_huge by definition.
> > Also, what it does is try 2MB pages for allocations larger than
> > 2MB.
> > For smaller allocations it doesn't try or "prefer" them.
> 
> How about something like:
> 
> #define VM_TRY_HUGE_VMAP        0x00001000      /* try PMD_SIZE
> mapping if size-per-node >= PMD_SIZE */

Seems reasonable name. I don't know if "size-per-node >= PMD_SIZE" is
going to be useful information. Maybe something like:

/* Allow for huge pages on HAVE_ARCH_HUGE_VMALLOC_FLAG arch's */

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

* Re: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP
  2022-03-29 21:36               ` Edgecombe, Rick P
@ 2022-03-29 22:12                 ` Song Liu
  0 siblings, 0 replies; 33+ messages in thread
From: Song Liu @ 2022-03-29 22:12 UTC (permalink / raw)
  To: Edgecombe, Rick P
  Cc: linux-kernel, daniel, peterz, ast, bpf, Kernel Team, song, hch,
	pmenzel, andrii, x86, iii, netdev, urezki, npiggin



> On Mar 29, 2022, at 2:36 PM, Edgecombe, Rick P <rick.p.edgecombe@intel.com> wrote:
> 
> On Tue, 2022-03-29 at 19:13 +0000, Song Liu wrote:
>>> 
>>> I don't think we should tie this to vmap_allow_huge by definition.
>>> Also, what it does is try 2MB pages for allocations larger than
>>> 2MB.
>>> For smaller allocations it doesn't try or "prefer" them.
>> 
>> How about something like:
>> 
>> #define VM_TRY_HUGE_VMAP        0x00001000      /* try PMD_SIZE
>> mapping if size-per-node >= PMD_SIZE */
> 
> Seems reasonable name. I don't know if "size-per-node >= PMD_SIZE" is
> going to be useful information. Maybe something like:
> 
> /* Allow for huge pages on HAVE_ARCH_HUGE_VMALLOC_FLAG arch's */

Sounds great. I updated the version based on this (below). I will split it
into two patches, I guess. 

@Paul, could you please test whether this version fixes the issue you were
seeing?

Thanks,
Song



diff --git a/arch/Kconfig b/arch/Kconfig
index 84bc1de02720..0fb2bd5fd1f8 100644
--- a/arch/Kconfig
+++ b/arch/Kconfig
@@ -858,6 +858,15 @@ config HAVE_ARCH_HUGE_VMALLOC
 	depends on HAVE_ARCH_HUGE_VMAP
 	bool
 
+#
+# HAVE_ARCH_HUGE_VMALLOC_FLAG allows users of __vmalloc_node_range to allocate
+# huge page without HAVE_ARCH_HUGE_VMALLOC. To allocate huge pages, the user
+# need to call __vmalloc_node_range with VM_TRY_HUGE_VMAP.
+#
+config HAVE_ARCH_HUGE_VMALLOC_FLAG
+	depends on HAVE_ARCH_HUGE_VMAP
+	bool
+
 config ARCH_WANT_HUGE_PMD_SHARE
 	bool
 
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 7340d9f01b62..e64f00415575 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -45,7 +45,7 @@ config FORCE_DYNAMIC_FTRACE
 	 in order to test the non static function tracing in the
 	 generic code, as other architectures still use it. But we
 	 only need to keep it around for x86_64. No need to keep it
-	 for x86_32. For x86_32, force DYNAMIC_FTRACE. 
+	 for x86_32. For x86_32, force DYNAMIC_FTRACE.
 #
 # Arch settings
 #
@@ -161,7 +161,7 @@ config X86
 	select HAVE_ALIGNED_STRUCT_PAGE		if SLUB
 	select HAVE_ARCH_AUDITSYSCALL
 	select HAVE_ARCH_HUGE_VMAP		if X86_64 || X86_PAE
-	select HAVE_ARCH_HUGE_VMALLOC		if X86_64
+	select HAVE_ARCH_HUGE_VMALLOC_FLAG	if X86_64
 	select HAVE_ARCH_JUMP_LABEL
 	select HAVE_ARCH_JUMP_LABEL_RELATIVE
 	select HAVE_ARCH_KASAN			if X86_64
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h
index 3b1df7da402d..a48d0690b66f 100644
--- a/include/linux/vmalloc.h
+++ b/include/linux/vmalloc.h
@@ -35,6 +35,11 @@ struct notifier_block;		/* in notifier.h */
 #define VM_DEFER_KMEMLEAK	0
 #endif
 
+#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG
+#define VM_TRY_HUGE_VMAP	0x00001000	/* Allow for huge pages on HAVE_ARCH_HUGE_VMALLOC_FLAG arch's */
+#else
+#define VM_TRY_HUGE_VMAP	0
+#endif
 /* bits [20..32] reserved for arch specific ioremap internals */
 
 /*
@@ -51,7 +56,7 @@ struct vm_struct {
 	unsigned long		size;
 	unsigned long		flags;
 	struct page		**pages;
-#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
+#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) || defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
 	unsigned int		page_order;
 #endif
 	unsigned int		nr_pages;
@@ -225,7 +230,7 @@ static inline bool is_vm_area_hugepages(const void *addr)
 	 * prevents that. This only indicates the size of the physical page
 	 * allocated in the vmalloc layer.
 	 */
-#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
+#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) || defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
 	return find_vm_area(addr)->page_order > 0;
 #else
 	return false;
diff --git a/kernel/bpf/core.c b/kernel/bpf/core.c
index 13e9dbeeedf3..5659677b18f3 100644
--- a/kernel/bpf/core.c
+++ b/kernel/bpf/core.c
@@ -851,13 +851,28 @@ static LIST_HEAD(pack_list);
 #define BPF_HPAGE_MASK PAGE_MASK
 #endif
 
+static void *bpf_prog_pack_vmalloc(unsigned long size)
+{
+#if defined(MODULES_VADDR)
+	unsigned long start = MODULES_VADDR;
+	unsigned long end = MODULES_END;
+#else
+	unsigned long start = VMALLOC_START;
+	unsigned long end = VMALLOC_END;
+#endif
+
+	return __vmalloc_node_range(size, PAGE_SIZE, start, end, GFP_KERNEL, PAGE_KERNEL,
+				    VM_DEFER_KMEMLEAK | VM_TRY_HUGE_VMAP,
+				    NUMA_NO_NODE, __builtin_return_address(0));
+}
+
 static size_t select_bpf_prog_pack_size(void)
 {
 	size_t size;
 	void *ptr;
 
 	size = BPF_HPAGE_SIZE * num_online_nodes();
-	ptr = module_alloc(size);
+	ptr = bpf_prog_pack_vmalloc(size);
 
 	/* Test whether we can get huge pages. If not just use PAGE_SIZE
 	 * packs.
@@ -881,7 +896,7 @@ static struct bpf_prog_pack *alloc_new_pack(void)
 		       GFP_KERNEL);
 	if (!pack)
 		return NULL;
-	pack->ptr = module_alloc(bpf_prog_pack_size);
+	pack->ptr = bpf_prog_pack_vmalloc(bpf_prog_pack_size);
 	if (!pack->ptr) {
 		kfree(pack);
 		return NULL;
diff --git a/mm/vmalloc.c b/mm/vmalloc.c
index e163372d3967..179200bce285 100644
--- a/mm/vmalloc.c
+++ b/mm/vmalloc.c
@@ -46,7 +46,7 @@
 #include "internal.h"
 #include "pgalloc-track.h"
 
-#ifdef CONFIG_HAVE_ARCH_HUGE_VMAP
+#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) || defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
 static unsigned int __ro_after_init ioremap_max_page_shift = BITS_PER_LONG - 1;
 
 static int __init set_nohugeiomap(char *str)
@@ -55,11 +55,11 @@ static int __init set_nohugeiomap(char *str)
 	return 0;
 }
 early_param("nohugeiomap", set_nohugeiomap);
-#else /* CONFIG_HAVE_ARCH_HUGE_VMAP */
+#else /* CONFIG_HAVE_ARCH_HUGE_VMAP || CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG */
 static const unsigned int ioremap_max_page_shift = PAGE_SHIFT;
-#endif	/* CONFIG_HAVE_ARCH_HUGE_VMAP */
+#endif	/* CONFIG_HAVE_ARCH_HUGE_VMAP || CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG*/
 
-#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
+#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) || defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
 static bool __ro_after_init vmap_allow_huge = true;
 
 static int __init set_nohugevmalloc(char *str)
@@ -582,8 +582,9 @@ int vmap_pages_range_noflush(unsigned long addr, unsigned long end,
 
 	WARN_ON(page_shift < PAGE_SHIFT);
 
-	if (!IS_ENABLED(CONFIG_HAVE_ARCH_HUGE_VMALLOC) ||
-			page_shift == PAGE_SHIFT)
+	if ((!IS_ENABLED(CONFIG_HAVE_ARCH_HUGE_VMALLOC) &&
+	     !IS_ENABLED(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG)) ||
+	    (page_shift == PAGE_SHIFT))
 		return vmap_small_pages_range_noflush(addr, end, prot, pages);
 
 	for (i = 0; i < nr; i += 1U << (page_shift - PAGE_SHIFT)) {
@@ -2252,7 +2253,7 @@ static struct vm_struct *vmlist __initdata;
 
 static inline unsigned int vm_area_page_order(struct vm_struct *vm)
 {
-#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
+#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) || defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
 	return vm->page_order;
 #else
 	return 0;
@@ -2261,7 +2262,7 @@ static inline unsigned int vm_area_page_order(struct vm_struct *vm)
 
 static inline void set_vm_area_page_order(struct vm_struct *vm, unsigned int order)
 {
-#ifdef CONFIG_HAVE_ARCH_HUGE_VMALLOC
+#if (defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC) || defined(CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG))
 	vm->page_order = order;
 #else
 	BUG_ON(order != 0);
@@ -3056,6 +3057,15 @@ static void *__vmalloc_area_node(struct vm_struct *area, gfp_t gfp_mask,
 	return NULL;
 }
 
+static bool vmalloc_try_huge_page(unsigned long vm_flags)
+{
+	if (!vmap_allow_huge || (vm_flags & VM_NO_HUGE_VMAP))
+		return false;
+
+	/* VM_TRY_HUGE_VMAP only works for CONFIG_HAVE_ARCH_HUGE_VMALLOC_FLAG */
+	return vm_flags & VM_TRY_HUGE_VMAP;
+}
+
 /**
  * __vmalloc_node_range - allocate virtually contiguous memory
  * @size:		  allocation size
@@ -3106,7 +3116,7 @@ void *__vmalloc_node_range(unsigned long size, unsigned long align,
 		return NULL;
 	}
 
-	if (vmap_allow_huge && !(vm_flags & VM_NO_HUGE_VMAP)) {
+	if (vmalloc_try_huge_page(vm_flags)) {
 		unsigned long size_per_node;
 
 		/*

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

* Re: [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc
  2022-02-04 18:57 ` [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc Song Liu
  2022-02-08  2:24   ` Alexei Starovoitov
@ 2022-07-03  3:02   ` Andres Freund
  2022-07-03  3:03     ` Alexei Starovoitov
  1 sibling, 1 reply; 33+ messages in thread
From: Andres Freund @ 2022-07-03  3:02 UTC (permalink / raw)
  To: Song Liu
  Cc: bpf, netdev, linux-kernel, ast, daniel, andrii, kernel-team,
	peterz, x86, iii, Song Liu

Hi,

On 2022-02-04 10:57:42 -0800, Song Liu wrote:
> From: Song Liu <songliubraving@fb.com>
> 
> Use bpf_jit_binary_pack_alloc in x86_64 jit. The jit engine first writes
> the program to the rw buffer. When the jit is done, the program is copied
> to the final location with bpf_jit_binary_pack_finalize.
> 
> Note that we need to do bpf_tail_call_direct_fixup after finalize.
> Therefore, the text_live = false logic in __bpf_arch_text_poke is no
> longer needed.

I think this broke bpf_jit_enable = 2. I just tried to use that, to verify I
didn't break tools/bpf/bpf_jit_disasm, and I just see output like

Jul 02 18:34:40 awork3 kernel: flen=142 proglen=735 pass=5 image=00000000d076e0db from=sshd pid=440127
Jul 02 18:34:40 awork3 kernel: JIT code: 00000000: cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc
Jul 02 18:34:40 awork3 kernel: JIT code: 00000010: cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc
Jul 02 18:34:40 awork3 kernel: JIT code: 00000020: cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc
Jul 02 18:34:40 awork3 kernel: JIT code: 00000030: cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc
...

while bpftool keeps showing reasonable content. The 'cc' content only started
with a later commit, but I think this is the commit that broke bpf_jit_enable
== 2.

At the time bpf_jit_dump() is called bpf_jit_binary_pack_alloc() pointed image to
ro_header->image, but that's not yet written to, because
bpf_jit_binary_pack_finalize() hasn't been called.

Greetings,

Andres Freund

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

* Re: [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc
  2022-07-03  3:02   ` Andres Freund
@ 2022-07-03  3:03     ` Alexei Starovoitov
  2022-07-03  3:14       ` Andres Freund
  0 siblings, 1 reply; 33+ messages in thread
From: Alexei Starovoitov @ 2022-07-03  3:03 UTC (permalink / raw)
  To: Andres Freund
  Cc: Song Liu, bpf, Network Development, LKML, Alexei Starovoitov,
	Daniel Borkmann, Andrii Nakryiko, Kernel Team, Peter Zijlstra,
	X86 ML, Ilya Leoshkevich, Song Liu

On Sat, Jul 2, 2022 at 8:02 PM Andres Freund <andres@anarazel.de> wrote:
>
> Hi,
>
> On 2022-02-04 10:57:42 -0800, Song Liu wrote:
> > From: Song Liu <songliubraving@fb.com>
> >
> > Use bpf_jit_binary_pack_alloc in x86_64 jit. The jit engine first writes
> > the program to the rw buffer. When the jit is done, the program is copied
> > to the final location with bpf_jit_binary_pack_finalize.
> >
> > Note that we need to do bpf_tail_call_direct_fixup after finalize.
> > Therefore, the text_live = false logic in __bpf_arch_text_poke is no
> > longer needed.
>
> I think this broke bpf_jit_enable = 2.

Good. We need to remove that knob.
It's been wrong for a long time.

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

* Re: [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc
  2022-07-03  3:03     ` Alexei Starovoitov
@ 2022-07-03  3:14       ` Andres Freund
  0 siblings, 0 replies; 33+ messages in thread
From: Andres Freund @ 2022-07-03  3:14 UTC (permalink / raw)
  To: Alexei Starovoitov
  Cc: Song Liu, bpf, Network Development, LKML, Alexei Starovoitov,
	Daniel Borkmann, Andrii Nakryiko, Kernel Team, Peter Zijlstra,
	X86 ML, Ilya Leoshkevich, Song Liu

Hi,

On 2022-07-02 20:03:56 -0700, Alexei Starovoitov wrote:
> On Sat, Jul 2, 2022 at 8:02 PM Andres Freund <andres@anarazel.de> wrote:
> > On 2022-02-04 10:57:42 -0800, Song Liu wrote:
> > > From: Song Liu <songliubraving@fb.com>
> > >
> > > Use bpf_jit_binary_pack_alloc in x86_64 jit. The jit engine first writes
> > > the program to the rw buffer. When the jit is done, the program is copied
> > > to the final location with bpf_jit_binary_pack_finalize.
> > >
> > > Note that we need to do bpf_tail_call_direct_fixup after finalize.
> > > Therefore, the text_live = false logic in __bpf_arch_text_poke is no
> > > longer needed.
> >
> > I think this broke bpf_jit_enable = 2.
> 
> Good. We need to remove that knob.
> It's been wrong for a long time.

Fine with me - I've never used it before trying to verify I am not breaking
tools/bpf/bpf_jit_disasm...

And yea, it does look like it bpf_jit_dump() was called too early before that
commit as well, just not as consequentially so.

Greetings,

Andres Freund

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

end of thread, other threads:[~2022-07-03  3:15 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-04 18:57 [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator Song Liu
2022-02-04 18:57 ` [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP Song Liu
2022-03-26  0:06   ` Edgecombe, Rick P
2022-03-28 23:27     ` Song Liu
2022-03-29  0:18       ` Edgecombe, Rick P
2022-03-29  8:23         ` Song Liu
2022-03-29 18:39           ` Edgecombe, Rick P
2022-03-29 19:13             ` Song Liu
2022-03-29 21:36               ` Edgecombe, Rick P
2022-03-29 22:12                 ` Song Liu
2022-03-26 18:46   ` BUG: Bad page state in process systemd-udevd (was: [PATCH v9 bpf-next 1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP) Paul Menzel
2022-03-27 10:36     ` Paul Menzel
2022-03-28  6:37       ` Song Liu
2022-03-28  6:51         ` Paul Menzel
2022-03-28 19:24           ` Song Liu
2022-03-28 20:14             ` Paul Menzel
2022-03-28 20:14               ` Paul Menzel
2022-03-28 21:57               ` Song Liu
2022-03-28 21:57                 ` Song Liu
2022-03-28 19:21         ` Edgecombe, Rick P
2022-02-04 18:57 ` [PATCH v9 bpf-next 2/9] bpf: use bytes instead of pages for bpf_jit_[charge|uncharge]_modmem Song Liu
2022-02-04 18:57 ` [PATCH v9 bpf-next 3/9] bpf: use size instead of pages in bpf_binary_header Song Liu
2022-02-04 18:57 ` [PATCH v9 bpf-next 4/9] bpf: use prog->jited_len in bpf_prog_ksym_set_addr() Song Liu
2022-02-04 18:57 ` [PATCH v9 bpf-next 5/9] x86/alternative: introduce text_poke_copy Song Liu
2022-02-04 18:57 ` [PATCH v9 bpf-next 6/9] bpf: introduce bpf_arch_text_copy Song Liu
2022-02-04 18:57 ` [PATCH v9 bpf-next 7/9] bpf: introduce bpf_prog_pack allocator Song Liu
2022-02-04 18:57 ` [PATCH v9 bpf-next 8/9] bpf: introduce bpf_jit_binary_pack_[alloc|finalize|free] Song Liu
2022-02-04 18:57 ` [PATCH v9 bpf-next 9/9] bpf, x86_64: use bpf_jit_binary_pack_alloc Song Liu
2022-02-08  2:24   ` Alexei Starovoitov
2022-07-03  3:02   ` Andres Freund
2022-07-03  3:03     ` Alexei Starovoitov
2022-07-03  3:14       ` Andres Freund
2022-02-08  2:30 ` [PATCH v9 bpf-next 0/9] bpf_prog_pack allocator patchwork-bot+netdevbpf

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