diff mbox series

[v9,bpf-next,1/9] x86/Kconfig: select HAVE_ARCH_HUGE_VMALLOC with HAVE_ARCH_HUGE_VMAP

Message ID 20220204185742.271030-2-song@kernel.org (mailing list archive)
State Accepted
Commit fac54e2bfb5be2b0bbf115fe80d45f59fd773048
Delegated to: BPF
Headers show
Series bpf_prog_pack allocator | expand

Checks

Context Check Description
netdev/tree_selection success Clearly marked for bpf-next
netdev/fixes_present success Fixes tag not required for -next series
netdev/subject_prefix success Link
netdev/cover_letter success Series has a cover letter
netdev/patch_count success Link
netdev/header_inline success No static functions without inline keyword in header files
netdev/build_32bit success Errors and warnings before: 0 this patch: 0
netdev/cc_maintainers warning 9 maintainers not CCed: hpa@zytor.com bp@alien8.de kpsingh@kernel.org john.fastabend@gmail.com kafai@fb.com dave.hansen@linux.intel.com yhs@fb.com mingo@redhat.com tglx@linutronix.de
netdev/build_clang success Errors and warnings before: 2632 this patch: 2632
netdev/module_param success Was 0 now: 0
netdev/verify_signedoff success Signed-off-by tag matches author and committer
netdev/verify_fixes success No Fixes tag
netdev/build_allmodconfig_warn success Errors and warnings before: 15583 this patch: 15583
netdev/checkpatch success total: 0 errors, 0 warnings, 0 checks, 7 lines checked
netdev/kdoc success Errors and warnings before: 0 this patch: 0
netdev/source_inline success Was 0 now: 0
bpf/vmtest-bpf-next-PR fail PR summary
bpf/vmtest-bpf-next fail VM_Test

Commit Message

Song Liu Feb. 4, 2022, 6:57 p.m. UTC
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(+)

Comments

Edgecombe, Rick P March 26, 2022, 12:06 a.m. UTC | #1
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)
Paul Menzel March 26, 2022, 6:46 p.m. UTC | #2
#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
[    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
Paul Menzel March 27, 2022, 10:36 a.m. UTC | #3
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
Song Liu March 28, 2022, 6:37 a.m. UTC | #4
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
[    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
Paul Menzel March 28, 2022, 6:51 a.m. UTC | #5
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/
Edgecombe, Rick P March 28, 2022, 7:21 p.m. UTC | #6
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?
Song Liu March 28, 2022, 7:24 p.m. UTC | #7
> 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.
Paul Menzel March 28, 2022, 8:14 p.m. UTC | #8
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
Song Liu March 28, 2022, 9:57 p.m. UTC | #9
> 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
Song Liu March 28, 2022, 11:27 p.m. UTC | #10
+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)
Edgecombe, Rick P March 29, 2022, 12:18 a.m. UTC | #11
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.
Song Liu March 29, 2022, 8:23 a.m. UTC | #12
> 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;
 
 		/*
Edgecombe, Rick P March 29, 2022, 6:39 p.m. UTC | #13
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;
>  
>  		/*
Song Liu March 29, 2022, 7:13 p.m. UTC | #14
> 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;
>> 
>> 		/*
Edgecombe, Rick P March 29, 2022, 9:36 p.m. UTC | #15
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 */
Song Liu March 29, 2022, 10:12 p.m. UTC | #16
> 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;
 
 		/*
diff mbox series

Patch

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