On Fri, 2 Dec 2022 21:57:09 +0000 Matthew Wilcox <willy@xxxxxxxxxxxxx> wrote: > On Fri, Dec 02, 2022 at 04:58:42PM +0000, Matthew Wilcox wrote: > > Landing on 793917d997df makes a lot more sense. That's where we > > actually start using large folios. It doesn't really help narrow > > down the problem. I have an idea for what it might be; patch to > > try will follow. But I'll need feedback by email. > > This will give us a bit more information when it does happen. > Further patch to catch it earlier will come "soon". > > diff --git a/lib/xarray.c b/lib/xarray.c > index 6f47f6375808..b358b4e1dac6 100644 > --- a/lib/xarray.c > +++ b/lib/xarray.c > @@ -6,6 +6,7 @@ > * Author: Matthew Wilcox <willy@xxxxxxxxxxxxx> > */ > > +#define XA_DEBUG > #include <linux/bitmap.h> > #include <linux/export.h> > #include <linux/list.h> > @@ -207,6 +208,12 @@ static void *xas_descend(struct xa_state *xas, struct xa_node *node) > if (xa_is_sibling(entry)) { > offset = xa_to_sibling(entry); > entry = xa_entry(xas->xa, node, offset); > + > + if (xa_is_sibling(entry)) { > + printk("***BAD SIBLING*** index %ld offset %d\n", > + xas->xa_index, offset); > + xa_dump_node(node); > + } > } > > xas->xa_offset = offset; here is the crash with your patch (full dmesg in attachement): [ 876.422920] ***BAD SIBLING*** index 104046 offset 40 [ 876.422922] node ffffa0f3a6367b50 offset 25 parent ffffa0f37bd7a480 shift 0 count 64 values 8 array ffffa0f1fab08dc0 list ffffa0f3a6367b68 ffffa0f3a6367b68 marks 0 0 0 [ 876.422926] BUG: kernel NULL pointer dereference, address: 0000000000000082 [ 876.422928] #PF: supervisor read access in kernel mode [ 876.422929] #PF: error_code(0x0000) - not-present page [ 876.422930] PGD 0 P4D 0 [ 876.422931] Oops: 0000 [#1] PREEMPT SMP NOPTI [ 876.422933] CPU: 19 PID: 8313 Comm: deluge-gtk Not tainted 5.17.0-rc4_ap_test-00163-g793917d997df-dirty #3 [ 876.422934] Hardware name: Micro-Star International Co., Ltd. MS-7C35/MEG X570 UNIFY (MS-7C35), BIOS A.C3 03/15/2022 [ 876.422935] RIP: 0010:next_uptodate_page+0x40/0x1e0 [ 876.422939] Code: 0f 84 2f 01 00 00 48 81 ff 06 04 00 00 0f 84 a3 00 00 00 48 81 ff 02 04 00 00 0f 84 22 01 00 00 40 f6 c7 01 0f 85 8c 00 00 00 <48> 8b 07 a8 01 0f 85 81 00 00 00 8b 47 34 85 c0 74 7a 8d 50 01 4c [ 876.422940] RSP: 0000:ffffbf0704aefce8 EFLAGS: 00010246 [ 876.422942] RAX: 0000000000000082 RBX: ffffbf0704aefd40 RCX: 000000000001967d [ 876.422942] RDX: ffffbf0704aefd40 RSI: ffffa0f1fab08db8 RDI: 0000000000000082 [ 876.422943] RBP: ffffa0f1fab08db8 R08: 00000000ffffdfff R09: 00000000ffffdfff [ 876.422944] R10: ffffffff9ee72dc0 R11: ffffffff9ee72dc0 R12: 000000000001967d [ 876.422944] R13: ffffa0f3cc1c06c0 R14: ffffa0f1fab08db8 R15: 000000000001966e [ 876.422945] FS: 00007f8971ffb6c0(0000) GS:ffffa0f87eec0000(0000) knlGS:0000000000000000 [ 876.422946] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 876.422947] CR2: 0000000000000082 CR3: 000000010fada000 CR4: 0000000000750ee0 [ 876.422947] PKRU: 55555554 [ 876.422948] Call Trace: [ 876.422949] <TASK> [ 876.422951] filemap_map_pages+0xa3/0x570 [ 876.422954] xfs_filemap_map_pages+0x3f/0x60 [ 876.422957] __handle_mm_fault+0xfbe/0x15c0 [ 876.422959] ? __hrtimer_init+0xd0/0xd0 [ 876.422963] handle_mm_fault+0xbc/0x280 [ 876.422964] do_user_addr_fault+0x1bc/0x640 [ 876.422968] exc_page_fault+0x60/0x140 [ 876.422971] ? asm_exc_page_fault+0x8/0x30 [ 876.422973] asm_exc_page_fault+0x1e/0x30 [ 876.422975] RIP: 0033:0x7f89ab02e409 [ 876.422977] Code: 66 66 2e 0f 1f 84 00 00 00 00 00 66 66 2e 0f 1f 84 00 00 00 00 00 66 66 2e 0f 1f 84 00 00 00 00 00 48 89 f8 48 83 fa 20 72 27 <c5> fe 6f 06 48 83 fa 40 0f 87 a9 00 00 00 c5 fe 6f 4c 16 e0 c5 fe [ 876.422978] RSP: 002b:00007f8971ffa908 EFLAGS: 00010202 [ 876.422979] RAX: 00007f895c008900 RBX: 0000000000000000 RCX: 00007f8971ffaa90 [ 876.422980] RDX: 0000000000004000 RSI: 00007f60e9fd2b7d RDI: 00007f895c008900 [ 876.422981] RBP: 00007f8971ffa928 R08: 00000000638a7d7a R09: 0000000000000000 [ 876.422981] R10: 0000000000000008 R11: 0000000000000246 R12: 00007f895c094a10 [ 876.422982] R13: 00007f89640016d0 R14: 0000000019670b7d R15: 0000000000004000 [ 876.422984] </TASK> [ 876.422984] Modules linked in: overlay xt_addrtype amdgpu drm_ttm_helper ttm gpu_sched drm_kms_helper backlight iwlmvm syscopyarea mac80211 sysfillrect libarc4 sysimgblt fb_sys_fops iwlwifi i2c_piix4 cfg80211 k10temp fuse configfs efivarfs [ 876.422994] CR2: 0000000000000082 [ 876.422995] ---[ end trace 0000000000000000 ]--- [ 876.422996] RIP: 0010:next_uptodate_page+0x40/0x1e0 [ 876.422998] Code: 0f 84 2f 01 00 00 48 81 ff 06 04 00 00 0f 84 a3 00 00 00 48 81 ff 02 04 00 00 0f 84 22 01 00 00 40 f6 c7 01 0f 85 8c 00 00 00 <48> 8b 07 a8 01 0f 85 81 00 00 00 8b 47 34 85 c0 74 7a 8d 50 01 4c [ 876.422999] RSP: 0000:ffffbf0704aefce8 EFLAGS: 00010246 [ 876.423000] RAX: 0000000000000082 RBX: ffffbf0704aefd40 RCX: 000000000001967d [ 876.423001] RDX: ffffbf0704aefd40 RSI: ffffa0f1fab08db8 RDI: 0000000000000082 [ 876.423002] RBP: ffffa0f1fab08db8 R08: 00000000ffffdfff R09: 00000000ffffdfff [ 876.423003] R10: ffffffff9ee72dc0 R11: ffffffff9ee72dc0 R12: 000000000001967d [ 876.423003] R13: ffffa0f3cc1c06c0 R14: ffffa0f1fab08db8 R15: 000000000001966e [ 876.423004] FS: 00007f8971ffb6c0(0000) GS:ffffa0f87eec0000(0000) knlGS:0000000000000000 [ 876.423005] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 876.423006] CR2: 0000000000000082 CR3: 000000010fada000 CR4: 0000000000750ee0 [ 876.423007] PKRU: 55555554 i will, of course, test further patches to help with this issue -- Mikhail Pletnev <mmp.dux@xxxxxxxxx>
[ 0.000000] Linux version 5.17.0-rc4_ap_test-00163-g793917d997df-dirty (reinhardt@Aeon) (gcc (Gentoo 12.2.1_p20221008 p1) 12.2.1 20221008, GNU ld (Gentoo 2.38 p4) 2.38) #3 SMP PREEMPT Sat Dec 3 01:18:40 MSK 2022 [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-5.17.0-rc4_ap_test-00163-g793917d997df-dirty root=/dev/nvme0n1p3 ro init=/lib/systemd/systemd zswap.enabled=1 zswap.compressor=zstd usbhid.quirks=0x04ca:0x00b0:0x00000400 usbcore.autosuspend=-1 resume=PARTUUID=78300511-c726-4211-afdf-8b6582c825f2 quiet splash drm.edid_firmware=edid/5120x1440.bin [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers' [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.000000] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8 [ 0.000000] x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format. [ 0.000000] signal: max sigframe size: 3376 [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009d81fff] usable [ 0.000000] BIOS-e820: [mem 0x0000000009d82000-0x0000000009ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable [ 0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20dfff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x000000000a20e000-0x00000000cb030fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000cb031000-0x00000000cb031fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000cb032000-0x00000000cb0a0fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000cb0a1000-0x00000000cb0a1fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000cb0a2000-0x00000000dacf0fff] usable [ 0.000000] BIOS-e820: [mem 0x00000000dacf1000-0x00000000db0a2fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000db0a3000-0x00000000db106fff] ACPI data [ 0.000000] BIOS-e820: [mem 0x00000000db107000-0x00000000dcc06fff] ACPI NVS [ 0.000000] BIOS-e820: [mem 0x00000000dcc07000-0x00000000ddb56fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ddb57000-0x00000000ddbfefff] type 20 [ 0.000000] BIOS-e820: [mem 0x00000000ddbff000-0x00000000deffffff] usable [ 0.000000] BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fd200000-0x00000000fd2fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fd400000-0x00000000fd5fffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000081f2fffff] usable [ 0.000000] BIOS-e820: [mem 0x000000081f300000-0x000000081fffffff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] efi: EFI v2.70 by American Megatrends [ 0.000000] efi: ACPI=0xdcbee000 ACPI 2.0=0xdcbee014 TPMFinalLog=0xdcbb8000 SMBIOS=0xdda08000 MEMATTR=0xd7228018 [ 0.000000] SMBIOS 2.8 present. [ 0.000000] DMI: Micro-Star International Co., Ltd. MS-7C35/MEG X570 UNIFY (MS-7C35), BIOS A.C3 03/15/2022 [ 0.000000] tsc: Fast TSC calibration using PIT [ 0.000000] tsc: Detected 3700.266 MHz processor [ 0.000112] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000113] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000117] last_pfn = 0x81f300 max_arch_pfn = 0x400000000 [ 0.000598] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.000752] e820: update [mem 0xdc980000-0xdc98ffff] usable ==> reserved [ 0.000755] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved [ 0.000757] last_pfn = 0xdf000 max_arch_pfn = 0x400000000 [ 0.002905] Using GB pages for direct mapping [ 0.003109] Secure boot disabled [ 0.003111] ACPI: Early table checksum verification disabled [ 0.003113] ACPI: RSDP 0x00000000DCBEE014 000024 (v02 ALASKA) [ 0.003115] ACPI: XSDT 0x00000000DCBED728 0000E4 (v01 ALASKA A M I 01072009 AMI 01000013) [ 0.003118] ACPI: FACP 0x00000000DB0F8000 000114 (v06 ALASKA A M I 01072009 AMI 00010013) [ 0.003120] ACPI: DSDT 0x00000000DB0BE000 0070AA (v02 ALASKA A M I 01072009 INTL 20120913) [ 0.003122] ACPI: FACS 0x00000000DCBE8000 000040 [ 0.003123] ACPI: SSDT 0x00000000DB0FE000 008CE9 (v02 AMD AmdTable 00000002 MSFT 04000000) [ 0.003124] ACPI: SSDT 0x00000000DB0FA000 003B10 (v01 AMD AMD AOD 00000001 INTL 20120913) [ 0.003125] ACPI: SSDT 0x00000000DB0F9000 000164 (v02 ALASKA CPUSSDT 01072009 AMI 01072009) [ 0.003126] ACPI: FIDT 0x00000000DB0F0000 00009C (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.003127] ACPI: MCFG 0x00000000DB0EF000 00003C (v01 ALASKA A M I 01072009 MSFT 00010013) [ 0.003128] ACPI: HPET 0x00000000DB0EE000 000038 (v01 ALASKA A M I 01072009 AMI 00000005) [ 0.003129] ACPI: SSDT 0x00000000DB0ED000 000024 (v01 AMD BIXBY 00001000 INTL 20120913) [ 0.003131] ACPI: IVRS 0x00000000DB0EC000 0000D0 (v02 AMD AmdTable 00000001 AMD 00000001) [ 0.003132] ACPI: VFCT 0x00000000DB0DD000 00E884 (v01 ALASKA A M I 00000001 AMD 31504F47) [ 0.003133] ACPI: TPM2 0x00000000DB0DC000 00004C (v04 ALASKA A M I 00000001 AMI 00000000) [ 0.003134] ACPI: PCCT 0x00000000DB0DB000 00006E (v02 AMD AmdTable 00000001 AMD 00000001) [ 0.003135] ACPI: SSDT 0x00000000DB0D4000 00603B (v02 AMD AmdTable 00000001 AMD 00000001) [ 0.003136] ACPI: CRAT 0x00000000DB0D2000 001118 (v01 AMD AmdTable 00000001 AMD 00000001) [ 0.003137] ACPI: CDIT 0x00000000DB0D1000 000029 (v01 AMD AmdTable 00000001 AMD 00000001) [ 0.003138] ACPI: BGRT 0x00000000DB0D0000 000038 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.003139] ACPI: SSDT 0x00000000DB0CF000 0002C2 (v01 AMD QOGIRDGP 00000001 INTL 20120913) [ 0.003140] ACPI: SSDT 0x00000000DB0CD000 0010B4 (v01 AMD QOGIRTPX 00000001 INTL 20120913) [ 0.003141] ACPI: SSDT 0x00000000DB0CC000 00052C (v01 AMD QOGIRNOI 00000001 INTL 20120913) [ 0.003142] ACPI: SSDT 0x00000000DB0C8000 0037B0 (v01 AMD QOGIRN 00000001 INTL 20120913) [ 0.003144] ACPI: WSMT 0x00000000DB0C7000 000028 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.003145] ACPI: APIC 0x00000000DB0C6000 00015E (v03 ALASKA A M I 01072009 AMI 00010013) [ 0.003146] ACPI: SSDT 0x00000000DB0F6000 0010AF (v01 AMD QOGIRC 00000001 INTL 20120913) [ 0.003147] ACPI: FPDT 0x00000000DB0F5000 000044 (v01 ALASKA A M I 01072009 AMI 01000013) [ 0.003148] ACPI: Reserving FACP table memory at [mem 0xdb0f8000-0xdb0f8113] [ 0.003148] ACPI: Reserving DSDT table memory at [mem 0xdb0be000-0xdb0c50a9] [ 0.003149] ACPI: Reserving FACS table memory at [mem 0xdcbe8000-0xdcbe803f] [ 0.003149] ACPI: Reserving SSDT table memory at [mem 0xdb0fe000-0xdb106ce8] [ 0.003150] ACPI: Reserving SSDT table memory at [mem 0xdb0fa000-0xdb0fdb0f] [ 0.003150] ACPI: Reserving SSDT table memory at [mem 0xdb0f9000-0xdb0f9163] [ 0.003150] ACPI: Reserving FIDT table memory at [mem 0xdb0f0000-0xdb0f009b] [ 0.003151] ACPI: Reserving MCFG table memory at [mem 0xdb0ef000-0xdb0ef03b] [ 0.003151] ACPI: Reserving HPET table memory at [mem 0xdb0ee000-0xdb0ee037] [ 0.003151] ACPI: Reserving SSDT table memory at [mem 0xdb0ed000-0xdb0ed023] [ 0.003152] ACPI: Reserving IVRS table memory at [mem 0xdb0ec000-0xdb0ec0cf] [ 0.003152] ACPI: Reserving VFCT table memory at [mem 0xdb0dd000-0xdb0eb883] [ 0.003153] ACPI: Reserving TPM2 table memory at [mem 0xdb0dc000-0xdb0dc04b] [ 0.003153] ACPI: Reserving PCCT table memory at [mem 0xdb0db000-0xdb0db06d] [ 0.003153] ACPI: Reserving SSDT table memory at [mem 0xdb0d4000-0xdb0da03a] [ 0.003154] ACPI: Reserving CRAT table memory at [mem 0xdb0d2000-0xdb0d3117] [ 0.003154] ACPI: Reserving CDIT table memory at [mem 0xdb0d1000-0xdb0d1028] [ 0.003154] ACPI: Reserving BGRT table memory at [mem 0xdb0d0000-0xdb0d0037] [ 0.003155] ACPI: Reserving SSDT table memory at [mem 0xdb0cf000-0xdb0cf2c1] [ 0.003155] ACPI: Reserving SSDT table memory at [mem 0xdb0cd000-0xdb0ce0b3] [ 0.003156] ACPI: Reserving SSDT table memory at [mem 0xdb0cc000-0xdb0cc52b] [ 0.003156] ACPI: Reserving SSDT table memory at [mem 0xdb0c8000-0xdb0cb7af] [ 0.003156] ACPI: Reserving WSMT table memory at [mem 0xdb0c7000-0xdb0c7027] [ 0.003157] ACPI: Reserving APIC table memory at [mem 0xdb0c6000-0xdb0c615d] [ 0.003157] ACPI: Reserving SSDT table memory at [mem 0xdb0f6000-0xdb0f70ae] [ 0.003158] ACPI: Reserving FPDT table memory at [mem 0xdb0f5000-0xdb0f5043] [ 0.003171] ACPI: CEDT not present [ 0.003196] No NUMA configuration found [ 0.003196] Faking a node at [mem 0x0000000000000000-0x000000081f2fffff] [ 0.003200] NODE_DATA(0) allocated [mem 0x81f2d5000-0x81f2fffff] [ 0.003225] Zone ranges: [ 0.003225] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.003226] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.003227] Normal [mem 0x0000000100000000-0x000000081f2fffff] [ 0.003228] Device empty [ 0.003228] Movable zone start for each node [ 0.003229] Early memory node ranges [ 0.003229] node 0: [mem 0x0000000000001000-0x000000000009ffff] [ 0.003230] node 0: [mem 0x0000000000100000-0x0000000009d81fff] [ 0.003230] node 0: [mem 0x000000000a000000-0x000000000a1fffff] [ 0.003230] node 0: [mem 0x000000000a20e000-0x00000000cb030fff] [ 0.003231] node 0: [mem 0x00000000cb032000-0x00000000cb0a0fff] [ 0.003231] node 0: [mem 0x00000000cb0a2000-0x00000000dacf0fff] [ 0.003232] node 0: [mem 0x00000000ddbff000-0x00000000deffffff] [ 0.003232] node 0: [mem 0x0000000100000000-0x000000081f2fffff] [ 0.003233] Initmem setup node 0 [mem 0x0000000000001000-0x000000081f2fffff] [ 0.003236] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.003244] On node 0, zone DMA: 96 pages in unavailable ranges [ 0.003316] On node 0, zone DMA32: 638 pages in unavailable ranges [ 0.005210] On node 0, zone DMA32: 14 pages in unavailable ranges [ 0.005211] On node 0, zone DMA32: 1 pages in unavailable ranges [ 0.005426] On node 0, zone DMA32: 1 pages in unavailable ranges [ 0.005493] On node 0, zone DMA32: 12046 pages in unavailable ranges [ 0.029504] On node 0, zone Normal: 4096 pages in unavailable ranges [ 0.029518] On node 0, zone Normal: 3328 pages in unavailable ranges [ 0.030104] ACPI: PM-Timer IO Port: 0x808 [ 0.030109] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.030117] IOAPIC[0]: apic_id 25, version 33, address 0xfec00000, GSI 0-23 [ 0.030121] IOAPIC[1]: apic_id 26, version 33, address 0xfec01000, GSI 24-55 [ 0.030123] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.030124] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) [ 0.030126] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.030126] ACPI: HPET id: 0x10228201 base: 0xfed00000 [ 0.030133] e820: update [mem 0xd7186000-0xd71e2fff] usable ==> reserved [ 0.030140] smpboot: Allowing 32 CPUs, 8 hotplug CPUs [ 0.030156] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.030157] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff] [ 0.030158] PM: hibernation: Registered nosave memory: [mem 0x09d82000-0x09ffffff] [ 0.030159] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20dfff] [ 0.030160] PM: hibernation: Registered nosave memory: [mem 0xcb031000-0xcb031fff] [ 0.030161] PM: hibernation: Registered nosave memory: [mem 0xcb0a1000-0xcb0a1fff] [ 0.030161] PM: hibernation: Registered nosave memory: [mem 0xd7186000-0xd71e2fff] [ 0.030162] PM: hibernation: Registered nosave memory: [mem 0xdacf1000-0xdb0a2fff] [ 0.030163] PM: hibernation: Registered nosave memory: [mem 0xdb0a3000-0xdb106fff] [ 0.030163] PM: hibernation: Registered nosave memory: [mem 0xdb107000-0xdcc06fff] [ 0.030163] PM: hibernation: Registered nosave memory: [mem 0xdcc07000-0xddb56fff] [ 0.030163] PM: hibernation: Registered nosave memory: [mem 0xddb57000-0xddbfefff] [ 0.030164] PM: hibernation: Registered nosave memory: [mem 0xdf000000-0xdfffffff] [ 0.030165] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff] [ 0.030165] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff] [ 0.030165] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfd1fffff] [ 0.030166] PM: hibernation: Registered nosave memory: [mem 0xfd200000-0xfd2fffff] [ 0.030166] PM: hibernation: Registered nosave memory: [mem 0xfd300000-0xfd3fffff] [ 0.030166] PM: hibernation: Registered nosave memory: [mem 0xfd400000-0xfd5fffff] [ 0.030166] PM: hibernation: Registered nosave memory: [mem 0xfd600000-0xfe9fffff] [ 0.030167] PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfea0ffff] [ 0.030167] PM: hibernation: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff] [ 0.030167] PM: hibernation: Registered nosave memory: [mem 0xfeb80000-0xfec01fff] [ 0.030168] PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfec0ffff] [ 0.030168] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff] [ 0.030168] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfecfffff] [ 0.030168] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff] [ 0.030169] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff] [ 0.030169] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff] [ 0.030169] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff] [ 0.030170] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff] [ 0.030170] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc1fff] [ 0.030170] PM: hibernation: Registered nosave memory: [mem 0xfedc2000-0xfedcffff] [ 0.030171] PM: hibernation: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff] [ 0.030171] PM: hibernation: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff] [ 0.030171] PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xfeffffff] [ 0.030171] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff] [ 0.030172] [mem 0xe0000000-0xefffffff] available for PCI devices [ 0.030173] Booting paravirtualized kernel on bare hardware [ 0.030175] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns [ 0.033675] setup_percpu: NR_CPUS:32 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1 [ 0.034244] percpu: Embedded 54 pages/cpu s182168 r8192 d30824 u262144 [ 0.034249] pcpu-alloc: s182168 r8192 d30824 u262144 alloc=1*2097152 [ 0.034250] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 [ 0.034254] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 [ 0.034271] Fallback order for Node 0: 0 [ 0.034274] Built 1 zonelists, mobility grouping on. Total pages: 8237470 [ 0.034275] Policy zone: Normal [ 0.034276] Kernel command line: BOOT_IMAGE=/vmlinuz-5.17.0-rc4_ap_test-00163-g793917d997df-dirty root=/dev/nvme0n1p3 ro init=/lib/systemd/systemd zswap.enabled=1 zswap.compressor=zstd usbhid.quirks=0x04ca:0x00b0:0x00000400 usbcore.autosuspend=-1 resume=PARTUUID=78300511-c726-4211-afdf-8b6582c825f2 quiet splash drm.edid_firmware=edid/5120x1440.bin [ 0.034309] Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-5.17.0-rc4_ap_test-00163-g793917d997df-dirty", will be passed to user space. [ 0.035477] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear) [ 0.036061] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear) [ 0.036105] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.072203] Memory: 32702832K/33473548K available (20499K kernel code, 3386K rwdata, 4976K rodata, 1776K init, 2624K bss, 770456K reserved, 0K cma-reserved) [ 0.072234] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1 [ 0.072273] Dynamic Preempt: full [ 0.072306] rcu: Preemptible hierarchical RCU implementation. [ 0.072306] rcu: RCU event tracing is enabled. [ 0.072307] Trampoline variant of Tasks RCU enabled. [ 0.072307] Tracing variant of Tasks RCU enabled. [ 0.072308] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.073102] NR_IRQS: 4352, nr_irqs: 1224, preallocated irqs: 16 [ 0.073332] random: get_random_bytes called from start_kernel+0x713/0x8de with crng_init=0 [ 0.073355] Console: colour dummy device 80x25 [ 0.073361] printk: console [tty0] enabled [ 0.073374] ACPI: Core revision 20211217 [ 0.073466] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns [ 0.073479] APIC: Switch to symmetric I/O mode setup [ 0.073574] x2apic: IRQ remapping doesn't support X2APIC mode [ 0.073622] Switched APIC routing to physical flat. [ 0.074097] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.078479] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x6aaca297856, max_idle_ns: 881590467234 ns [ 0.078482] Calibrating delay loop (skipped), value calculated using timer frequency.. 7400.53 BogoMIPS (lpj=3700266) [ 0.078483] pid_max: default: 32768 minimum: 301 [ 0.079775] LSM: Security Framework initializing [ 0.079778] Yama: becoming mindful. [ 0.079781] SELinux: Initializing. [ 0.079787] LSM support for eBPF active [ 0.079815] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.079840] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.079954] x86/cpu: User Mode Instruction Prevention (UMIP) activated [ 0.079986] LVT offset 1 assigned for vector 0xf9 [ 0.080097] LVT offset 2 assigned for vector 0xf4 [ 0.080127] Last level iTLB entries: 4KB 512, 2MB 512, 4MB 256 [ 0.080127] Last level dTLB entries: 4KB 2048, 2MB 2048, 4MB 1024, 1GB 0 [ 0.080129] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.080131] Spectre V2 : Mitigation: Full AMD retpoline [ 0.080131] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.080131] Spectre V2 : Enabling Restricted Speculation for firmware calls [ 0.080132] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.080133] Spectre V2 : User space: Mitigation: STIBP always-on protection [ 0.080134] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl [ 0.083332] Freeing SMP alternatives memory: 64K [ 0.186184] smpboot: CPU0: AMD Ryzen 9 5900X 12-Core Processor (family: 0x19, model: 0x21, stepping: 0x0) [ 0.186227] cblist_init_generic: Setting adjustable number of callback queues. [ 0.186229] cblist_init_generic: Setting shift to 5 and lim to 1. [ 0.186237] cblist_init_generic: Setting shift to 5 and lim to 1. [ 0.186242] Performance Events: Fam17h+ core perfctr, AMD PMU driver. [ 0.186245] ... version: 0 [ 0.186245] ... bit width: 48 [ 0.186246] ... generic registers: 6 [ 0.186246] ... value mask: 0000ffffffffffff [ 0.186246] ... max period: 00007fffffffffff [ 0.186247] ... fixed-purpose events: 0 [ 0.186247] ... event mask: 000000000000003f [ 0.186279] rcu: Hierarchical SRCU implementation. [ 0.186481] MCE: In-kernel MCE decoding enabled. [ 0.186481] smp: Bringing up secondary CPUs ... [ 0.186481] x86: Booting SMP configuration: [ 0.186481] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11 #12 [ 0.200510] Spectre V2 : Update user space SMT mitigation: STIBP always-on [ 0.200537] #13 #14 #15 #16 #17 #18 #19 #20 #21 #22 #23 [ 0.213495] smp: Brought up 1 node, 24 CPUs [ 0.213496] smpboot: Max logical packages: 2 [ 0.213497] smpboot: Total of 24 processors activated (177612.76 BogoMIPS) [ 0.214830] devtmpfs: initialized [ 0.214830] x86/mm: Memory block size: 128MB [ 0.215860] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20dfff] (57344 bytes) [ 0.215860] ACPI: PM: Registering ACPI NVS region [mem 0xdb107000-0xdcc06fff] (28311552 bytes) [ 0.215860] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.215860] futex hash table entries: 8192 (order: 7, 524288 bytes, linear) [ 0.215860] pinctrl core: initialized pinctrl subsystem [ 0.215860] PM: RTC time: 22:19:59, date: 2022-12-02 [ 0.215860] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.215897] audit: initializing netlink subsys (disabled) [ 0.215901] audit: type=2000 audit(1670019598.142:1): state=initialized audit_enabled=0 res=1 [ 0.215901] thermal_sys: Registered thermal governor 'step_wise' [ 0.215901] thermal_sys: Registered thermal governor 'user_space' [ 0.215901] cpuidle: using governor menu [ 0.215901] Detected 1 PCC Subspaces [ 0.215901] Registering PCC driver as Mailbox controller [ 0.216525] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000) [ 0.216528] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820 [ 0.216533] PCI: Using configuration type 1 for base access [ 0.217893] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.217900] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.217900] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.217900] cryptd: max_cpu_qlen set to 1000 [ 0.234481] raid6: avx2x4 gen() 48080 MB/s [ 0.251481] raid6: avx2x2 gen() 39897 MB/s [ 0.268482] raid6: avx2x1 gen() 27353 MB/s [ 0.268482] raid6: using algorithm avx2x4 gen() 48080 MB/s [ 0.285482] raid6: .... xor() 7744 MB/s, rmw enabled [ 0.285483] raid6: using avx2x2 recovery algorithm [ 0.285500] ACPI: Added _OSI(Module Device) [ 0.285500] ACPI: Added _OSI(Processor Device) [ 0.285501] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.285501] ACPI: Added _OSI(Processor Aggregator Device) [ 0.285502] ACPI: Added _OSI(Linux-Dell-Video) [ 0.285502] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 0.285503] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 0.290630] ACPI: 11 ACPI AML tables successfully acquired and loaded [ 0.291345] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored [ 0.292584] ACPI: Interpreter enabled [ 0.292592] ACPI: PM: (supports S0 S3 S4 S5) [ 0.292593] ACPI: Using IOAPIC for interrupt routing [ 0.292741] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.292914] ACPI: Enabled 2 GPEs in block 00 to 1F [ 0.296884] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.296887] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [ 0.296923] acpi PNP0A08:00: _OSC: platform does not support [PME LTR] [ 0.296979] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability] [ 0.296984] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge [ 0.297053] PCI host bridge to bus 0000:00 [ 0.297054] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] [ 0.297055] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] [ 0.297056] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] [ 0.297056] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.297057] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window] [ 0.297057] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfcffffff window] [ 0.297058] pci_bus 0000:00: root bus resource [mem 0x820000000-0x7fffffffff window] [ 0.297058] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.297065] pci 0000:00:00.0: [1022:1480] type 00 class 0x060000 [ 0.297117] pci 0000:00:00.2: [1022:1481] type 00 class 0x080600 [ 0.297173] pci 0000:00:01.0: [1022:1482] type 00 class 0x060000 [ 0.297205] pci 0000:00:01.1: [1022:1483] type 01 class 0x060400 [ 0.297261] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold [ 0.297315] pci 0000:00:01.2: [1022:1483] type 01 class 0x060400 [ 0.297370] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold [ 0.297425] pci 0000:00:02.0: [1022:1482] type 00 class 0x060000 [ 0.297460] pci 0000:00:03.0: [1022:1482] type 00 class 0x060000 [ 0.297502] pci 0000:00:03.1: [1022:1483] type 01 class 0x060400 [ 0.297558] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold [ 0.297611] pci 0000:00:04.0: [1022:1482] type 00 class 0x060000 [ 0.297646] pci 0000:00:05.0: [1022:1482] type 00 class 0x060000 [ 0.297681] pci 0000:00:07.0: [1022:1482] type 00 class 0x060000 [ 0.297711] pci 0000:00:07.1: [1022:1484] type 01 class 0x060400 [ 0.297752] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold [ 0.297796] pci 0000:00:08.0: [1022:1482] type 00 class 0x060000 [ 0.297827] pci 0000:00:08.1: [1022:1484] type 01 class 0x060400 [ 0.297873] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold [ 0.297934] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 [ 0.298009] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 [ 0.298088] pci 0000:00:18.0: [1022:1440] type 00 class 0x060000 [ 0.298106] pci 0000:00:18.1: [1022:1441] type 00 class 0x060000 [ 0.298122] pci 0000:00:18.2: [1022:1442] type 00 class 0x060000 [ 0.298139] pci 0000:00:18.3: [1022:1443] type 00 class 0x060000 [ 0.298156] pci 0000:00:18.4: [1022:1444] type 00 class 0x060000 [ 0.298173] pci 0000:00:18.5: [1022:1445] type 00 class 0x060000 [ 0.298189] pci 0000:00:18.6: [1022:1446] type 00 class 0x060000 [ 0.298206] pci 0000:00:18.7: [1022:1447] type 00 class 0x060000 [ 0.298256] pci 0000:01:00.0: [144d:a80a] type 00 class 0x010802 [ 0.298270] pci 0000:01:00.0: reg 0x10: [mem 0xfcf00000-0xfcf03fff 64bit] [ 0.298414] pci 0000:00:01.1: PCI bridge to [bus 01] [ 0.298417] pci 0000:00:01.1: bridge window [mem 0xfcf00000-0xfcffffff] [ 0.298451] pci 0000:20:00.0: [1022:57ad] type 01 class 0x060400 [ 0.298569] pci 0000:20:00.0: PME# supported from D0 D3hot D3cold [ 0.298638] pci 0000:20:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 126.024 Gb/s with 16.0 GT/s PCIe x8 link) [ 0.298681] pci 0000:00:01.2: PCI bridge to [bus 20-2c] [ 0.298684] pci 0000:00:01.2: bridge window [io 0xf000-0xffff] [ 0.298685] pci 0000:00:01.2: bridge window [mem 0xfc500000-0xfcafffff] [ 0.298818] pci 0000:21:05.0: [1022:57a3] type 01 class 0x060400 [ 0.299099] pci 0000:21:05.0: PME# supported from D0 D3hot D3cold [ 0.299452] pci 0000:21:06.0: [1022:57a3] type 01 class 0x060400 [ 0.299732] pci 0000:21:06.0: PME# supported from D0 D3hot D3cold [ 0.300070] pci 0000:21:08.0: [1022:57a4] type 01 class 0x060400 [ 0.300294] pci 0000:21:08.0: PME# supported from D0 D3hot D3cold [ 0.300439] pci 0000:21:09.0: [1022:57a4] type 01 class 0x060400 [ 0.300644] pci 0000:21:09.0: PME# supported from D0 D3hot D3cold [ 0.300783] pci 0000:21:0a.0: [1022:57a4] type 01 class 0x060400 [ 0.300987] pci 0000:21:0a.0: PME# supported from D0 D3hot D3cold [ 0.301136] pci 0000:20:00.0: PCI bridge to [bus 21-2c] [ 0.301141] pci 0000:20:00.0: bridge window [io 0xf000-0xffff] [ 0.301144] pci 0000:20:00.0: bridge window [mem 0xfc500000-0xfcafffff] [ 0.301260] pci 0000:27:00.0: [10ec:8125] type 00 class 0x020000 [ 0.301279] pci 0000:27:00.0: reg 0x10: [io 0xf000-0xf0ff] [ 0.301303] pci 0000:27:00.0: reg 0x18: [mem 0xfca00000-0xfca0ffff 64bit] [ 0.301319] pci 0000:27:00.0: reg 0x20: [mem 0xfca10000-0xfca13fff 64bit] [ 0.301464] pci 0000:27:00.0: supports D1 D2 [ 0.301465] pci 0000:27:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.301627] pci 0000:21:05.0: PCI bridge to [bus 27] [ 0.301632] pci 0000:21:05.0: bridge window [io 0xf000-0xffff] [ 0.301635] pci 0000:21:05.0: bridge window [mem 0xfca00000-0xfcafffff] [ 0.301734] pci 0000:28:00.0: [8086:2723] type 00 class 0x028000 [ 0.301763] pci 0000:28:00.0: reg 0x10: [mem 0xfc900000-0xfc903fff 64bit] [ 0.301916] pci 0000:28:00.0: PME# supported from D0 D3hot D3cold [ 0.302048] pci 0000:21:06.0: PCI bridge to [bus 28] [ 0.302056] pci 0000:21:06.0: bridge window [mem 0xfc900000-0xfc9fffff] [ 0.302142] pci 0000:2a:00.0: [1022:1485] type 00 class 0x130000 [ 0.302327] pci 0000:2a:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link) [ 0.302482] pci 0000:2a:00.1: [1022:149c] type 00 class 0x0c0330 [ 0.302784] pci 0000:2a:00.1: reg 0x10: [mem 0xfc600000-0xfc6fffff 64bit] [ 0.304088] pci 0000:2a:00.1: PME# supported from D0 D3hot D3cold [ 0.304386] pci 0000:2a:00.3: [1022:149c] type 00 class 0x0c0330 [ 0.304408] pci 0000:2a:00.3: reg 0x10: [mem 0xfc500000-0xfc5fffff 64bit] [ 0.304537] pci 0000:2a:00.3: PME# supported from D0 D3hot D3cold [ 0.304641] pci 0000:21:08.0: PCI bridge to [bus 2a] [ 0.304648] pci 0000:21:08.0: bridge window [mem 0xfc500000-0xfc6fffff] [ 0.304734] pci 0000:2b:00.0: [1022:7901] type 00 class 0x010601 [ 0.304796] pci 0000:2b:00.0: reg 0x24: [mem 0xfc800000-0xfc8007ff] [ 0.304894] pci 0000:2b:00.0: PME# supported from D3hot D3cold [ 0.304955] pci 0000:2b:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link) [ 0.304996] pci 0000:21:09.0: PCI bridge to [bus 2b] [ 0.305004] pci 0000:21:09.0: bridge window [mem 0xfc800000-0xfc8fffff] [ 0.305089] pci 0000:2c:00.0: [1022:7901] type 00 class 0x010601 [ 0.305151] pci 0000:2c:00.0: reg 0x24: [mem 0xfc700000-0xfc7007ff] [ 0.305249] pci 0000:2c:00.0: PME# supported from D3hot D3cold [ 0.305309] pci 0000:2c:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:01.2 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link) [ 0.305350] pci 0000:21:0a.0: PCI bridge to [bus 2c] [ 0.305357] pci 0000:21:0a.0: bridge window [mem 0xfc700000-0xfc7fffff] [ 0.305419] pci 0000:2d:00.0: [1002:1478] type 01 class 0x060400 [ 0.305429] pci 0000:2d:00.0: reg 0x10: [mem 0xfce00000-0xfce03fff] [ 0.305509] pci 0000:2d:00.0: PME# supported from D0 D3hot D3cold [ 0.305580] pci 0000:00:03.1: PCI bridge to [bus 2d-2f] [ 0.305583] pci 0000:00:03.1: bridge window [io 0xe000-0xefff] [ 0.305584] pci 0000:00:03.1: bridge window [mem 0xfcd00000-0xfcefffff] [ 0.305587] pci 0000:00:03.1: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref] [ 0.305617] pci 0000:2e:00.0: [1002:1479] type 01 class 0x060400 [ 0.305700] pci 0000:2e:00.0: PME# supported from D0 D3hot D3cold [ 0.305857] pci 0000:2d:00.0: PCI bridge to [bus 2e-2f] [ 0.305861] pci 0000:2d:00.0: bridge window [io 0xe000-0xefff] [ 0.305863] pci 0000:2d:00.0: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.305866] pci 0000:2d:00.0: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref] [ 0.305896] pci 0000:2f:00.0: [1002:731f] type 00 class 0x030000 [ 0.305910] pci 0000:2f:00.0: reg 0x10: [mem 0x7c00000000-0x7dffffffff 64bit pref] [ 0.305918] pci 0000:2f:00.0: reg 0x18: [mem 0x7e00000000-0x7e0fffffff 64bit pref] [ 0.305924] pci 0000:2f:00.0: reg 0x20: [io 0xe000-0xe0ff] [ 0.305930] pci 0000:2f:00.0: reg 0x24: [mem 0xfcd00000-0xfcd7ffff] [ 0.305935] pci 0000:2f:00.0: reg 0x30: [mem 0xfcd80000-0xfcd9ffff pref] [ 0.305954] pci 0000:2f:00.0: BAR 0: assigned to efifb [ 0.306010] pci 0000:2f:00.0: PME# supported from D1 D2 D3hot D3cold [ 0.306080] pci 0000:2f:00.1: [1002:ab38] type 00 class 0x040300 [ 0.306088] pci 0000:2f:00.1: reg 0x10: [mem 0xfcda0000-0xfcda3fff] [ 0.306153] pci 0000:2f:00.1: PME# supported from D1 D2 D3hot D3cold [ 0.306216] pci 0000:2e:00.0: PCI bridge to [bus 2f] [ 0.306220] pci 0000:2e:00.0: bridge window [io 0xe000-0xefff] [ 0.306222] pci 0000:2e:00.0: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.306225] pci 0000:2e:00.0: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref] [ 0.306253] pci 0000:30:00.0: [1022:148a] type 00 class 0x130000 [ 0.306338] pci 0000:00:07.1: PCI bridge to [bus 30] [ 0.306364] pci 0000:31:00.0: [1022:1485] type 00 class 0x130000 [ 0.306453] pci 0000:31:00.3: [1022:149c] type 00 class 0x0c0330 [ 0.306462] pci 0000:31:00.3: reg 0x10: [mem 0xfcb00000-0xfcbfffff 64bit] [ 0.306512] pci 0000:31:00.3: PME# supported from D0 D3hot D3cold [ 0.306554] pci 0000:31:00.4: [1022:1487] type 00 class 0x040300 [ 0.306560] pci 0000:31:00.4: reg 0x10: [mem 0xfcc00000-0xfcc07fff] [ 0.306604] pci 0000:31:00.4: PME# supported from D0 D3hot D3cold [ 0.306650] pci 0000:00:08.1: PCI bridge to [bus 31] [ 0.306653] pci 0000:00:08.1: bridge window [mem 0xfcb00000-0xfccfffff] [ 0.306787] ACPI: PCI: Interrupt link LNKA configured for IRQ 0 [ 0.306810] ACPI: PCI: Interrupt link LNKB configured for IRQ 0 [ 0.306829] ACPI: PCI: Interrupt link LNKC configured for IRQ 0 [ 0.306852] ACPI: PCI: Interrupt link LNKD configured for IRQ 0 [ 0.306872] ACPI: PCI: Interrupt link LNKE configured for IRQ 0 [ 0.306889] ACPI: PCI: Interrupt link LNKF configured for IRQ 0 [ 0.306908] ACPI: PCI: Interrupt link LNKG configured for IRQ 0 [ 0.306925] ACPI: PCI: Interrupt link LNKH configured for IRQ 0 [ 0.307185] iommu: Default domain type: Passthrough [ 0.307193] pci 0000:2f:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none [ 0.307193] pci 0000:2f:00.0: vgaarb: bridge control possible [ 0.307193] pci 0000:2f:00.0: vgaarb: setting as boot device [ 0.307193] vgaarb: loaded [ 0.307193] SCSI subsystem initialized [ 0.307193] libata version 3.00 loaded. [ 0.307193] ACPI: bus type USB registered [ 0.307193] usbcore: registered new interface driver usbfs [ 0.307193] usbcore: registered new interface driver hub [ 0.307193] usbcore: registered new device driver usb [ 0.307193] mc: Linux media interface: v0.10 [ 0.307193] videodev: Linux video capture interface: v2.00 [ 0.307193] pps_core: LinuxPPS API ver. 1 registered [ 0.307193] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@xxxxxxxx> [ 0.307193] PTP clock support registered [ 0.307193] EDAC MC: Ver: 3.0.0 [ 0.307193] Registered efivars operations [ 0.307193] Advanced Linux Sound Architecture Driver Initialized. [ 0.307519] Bluetooth: Core ver 2.22 [ 0.307522] NET: Registered PF_BLUETOOTH protocol family [ 0.307522] Bluetooth: HCI device and connection manager initialized [ 0.307523] Bluetooth: HCI socket layer initialized [ 0.307524] Bluetooth: L2CAP socket layer initialized [ 0.307525] Bluetooth: SCO socket layer initialized [ 0.307526] NetLabel: Initializing [ 0.307527] NetLabel: domain hash size = 128 [ 0.307527] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.307533] NetLabel: unlabeled traffic allowed by default [ 0.307538] PCI: Using ACPI for IRQ routing [ 0.310634] PCI: pci_cache_line_size set to 64 bytes [ 0.310720] e820: reserve RAM buffer [mem 0x09d82000-0x0bffffff] [ 0.310721] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff] [ 0.310722] e820: reserve RAM buffer [mem 0xcb031000-0xcbffffff] [ 0.310722] e820: reserve RAM buffer [mem 0xcb0a1000-0xcbffffff] [ 0.310723] e820: reserve RAM buffer [mem 0xd7186000-0xd7ffffff] [ 0.310723] e820: reserve RAM buffer [mem 0xdacf1000-0xdbffffff] [ 0.310723] e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff] [ 0.310724] e820: reserve RAM buffer [mem 0x81f300000-0x81fffffff] [ 0.310738] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0 [ 0.310740] hpet0: 3 comparators, 32-bit 14.318180 MHz counter [ 0.312518] clocksource: Switched to clocksource tsc-early [ 0.317754] VFS: Disk quotas dquot_6.6.0 [ 0.317760] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.317788] pnp: PnP ACPI init [ 0.317825] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved [ 0.317869] system 00:01: [mem 0xfd200000-0xfd2fffff] has been reserved [ 0.317957] system 00:03: [io 0x0a00-0x0a0f] has been reserved [ 0.317958] system 00:03: [io 0x0a10-0x0a1f] has been reserved [ 0.317959] system 00:03: [io 0x0a20-0x0a2f] has been reserved [ 0.317959] system 00:03: [io 0x0a40-0x0a4f] has been reserved [ 0.318048] system 00:04: [io 0x04d0-0x04d1] has been reserved [ 0.318049] system 00:04: [io 0x040b] has been reserved [ 0.318049] system 00:04: [io 0x04d6] has been reserved [ 0.318050] system 00:04: [io 0x0c00-0x0c01] has been reserved [ 0.318050] system 00:04: [io 0x0c14] has been reserved [ 0.318051] system 00:04: [io 0x0c50-0x0c51] has been reserved [ 0.318051] system 00:04: [io 0x0c52] has been reserved [ 0.318052] system 00:04: [io 0x0c6c] has been reserved [ 0.318052] system 00:04: [io 0x0c6f] has been reserved [ 0.318053] system 00:04: [io 0x0cd8-0x0cdf] has been reserved [ 0.318053] system 00:04: [io 0x0800-0x089f] has been reserved [ 0.318054] system 00:04: [io 0x0b00-0x0b0f] has been reserved [ 0.318055] system 00:04: [io 0x0b20-0x0b3f] has been reserved [ 0.318055] system 00:04: [io 0x0900-0x090f] has been reserved [ 0.318056] system 00:04: [io 0x0910-0x091f] has been reserved [ 0.318056] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved [ 0.318057] system 00:04: [mem 0xfec01000-0xfec01fff] could not be reserved [ 0.318058] system 00:04: [mem 0xfedc0000-0xfedc0fff] has been reserved [ 0.318058] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved [ 0.318059] system 00:04: [mem 0xfed80000-0xfed8ffff] could not be reserved [ 0.318060] system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved [ 0.318060] system 00:04: [mem 0xff000000-0xffffffff] has been reserved [ 0.318268] pnp: PnP ACPI: found 5 devices [ 0.323583] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.323602] NET: Registered PF_INET protocol family [ 0.323683] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.324375] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear) [ 0.324392] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.324510] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear) [ 0.324558] TCP: Hash tables configured (established 262144 bind 65536) [ 0.324629] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear) [ 0.324654] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear) [ 0.324685] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear) [ 0.324739] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.324784] RPC: Registered named UNIX socket transport module. [ 0.324785] RPC: Registered udp transport module. [ 0.324785] RPC: Registered tcp transport module. [ 0.324786] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.324790] pci 0000:00:01.1: PCI bridge to [bus 01] [ 0.324793] pci 0000:00:01.1: bridge window [mem 0xfcf00000-0xfcffffff] [ 0.324797] pci 0000:21:05.0: PCI bridge to [bus 27] [ 0.324798] pci 0000:21:05.0: bridge window [io 0xf000-0xffff] [ 0.324803] pci 0000:21:05.0: bridge window [mem 0xfca00000-0xfcafffff] [ 0.324810] pci 0000:21:06.0: PCI bridge to [bus 28] [ 0.324814] pci 0000:21:06.0: bridge window [mem 0xfc900000-0xfc9fffff] [ 0.324822] pci 0000:21:08.0: PCI bridge to [bus 2a] [ 0.324826] pci 0000:21:08.0: bridge window [mem 0xfc500000-0xfc6fffff] [ 0.324833] pci 0000:21:09.0: PCI bridge to [bus 2b] [ 0.324837] pci 0000:21:09.0: bridge window [mem 0xfc800000-0xfc8fffff] [ 0.324844] pci 0000:21:0a.0: PCI bridge to [bus 2c] [ 0.324848] pci 0000:21:0a.0: bridge window [mem 0xfc700000-0xfc7fffff] [ 0.324856] pci 0000:20:00.0: PCI bridge to [bus 21-2c] [ 0.324857] pci 0000:20:00.0: bridge window [io 0xf000-0xffff] [ 0.324861] pci 0000:20:00.0: bridge window [mem 0xfc500000-0xfcafffff] [ 0.324869] pci 0000:00:01.2: PCI bridge to [bus 20-2c] [ 0.324870] pci 0000:00:01.2: bridge window [io 0xf000-0xffff] [ 0.324872] pci 0000:00:01.2: bridge window [mem 0xfc500000-0xfcafffff] [ 0.324875] pci 0000:2e:00.0: PCI bridge to [bus 2f] [ 0.324876] pci 0000:2e:00.0: bridge window [io 0xe000-0xefff] [ 0.324879] pci 0000:2e:00.0: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.324881] pci 0000:2e:00.0: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref] [ 0.324884] pci 0000:2d:00.0: PCI bridge to [bus 2e-2f] [ 0.324885] pci 0000:2d:00.0: bridge window [io 0xe000-0xefff] [ 0.324888] pci 0000:2d:00.0: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.324890] pci 0000:2d:00.0: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref] [ 0.324893] pci 0000:00:03.1: PCI bridge to [bus 2d-2f] [ 0.324894] pci 0000:00:03.1: bridge window [io 0xe000-0xefff] [ 0.324896] pci 0000:00:03.1: bridge window [mem 0xfcd00000-0xfcefffff] [ 0.324897] pci 0000:00:03.1: bridge window [mem 0x7c00000000-0x7e0fffffff 64bit pref] [ 0.324900] pci 0000:00:07.1: PCI bridge to [bus 30] [ 0.324904] pci 0000:00:08.1: PCI bridge to [bus 31] [ 0.324905] pci 0000:00:08.1: bridge window [mem 0xfcb00000-0xfccfffff] [ 0.324909] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] [ 0.324910] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] [ 0.324910] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] [ 0.324911] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window] [ 0.324911] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window] [ 0.324912] pci_bus 0000:00: resource 9 [mem 0xe0000000-0xfcffffff window] [ 0.324912] pci_bus 0000:00: resource 10 [mem 0x820000000-0x7fffffffff window] [ 0.324913] pci_bus 0000:01: resource 1 [mem 0xfcf00000-0xfcffffff] [ 0.324914] pci_bus 0000:20: resource 0 [io 0xf000-0xffff] [ 0.324914] pci_bus 0000:20: resource 1 [mem 0xfc500000-0xfcafffff] [ 0.324915] pci_bus 0000:21: resource 0 [io 0xf000-0xffff] [ 0.324915] pci_bus 0000:21: resource 1 [mem 0xfc500000-0xfcafffff] [ 0.324916] pci_bus 0000:27: resource 0 [io 0xf000-0xffff] [ 0.324916] pci_bus 0000:27: resource 1 [mem 0xfca00000-0xfcafffff] [ 0.324916] pci_bus 0000:28: resource 1 [mem 0xfc900000-0xfc9fffff] [ 0.324917] pci_bus 0000:2a: resource 1 [mem 0xfc500000-0xfc6fffff] [ 0.324917] pci_bus 0000:2b: resource 1 [mem 0xfc800000-0xfc8fffff] [ 0.324918] pci_bus 0000:2c: resource 1 [mem 0xfc700000-0xfc7fffff] [ 0.324918] pci_bus 0000:2d: resource 0 [io 0xe000-0xefff] [ 0.324919] pci_bus 0000:2d: resource 1 [mem 0xfcd00000-0xfcefffff] [ 0.324919] pci_bus 0000:2d: resource 2 [mem 0x7c00000000-0x7e0fffffff 64bit pref] [ 0.324920] pci_bus 0000:2e: resource 0 [io 0xe000-0xefff] [ 0.324920] pci_bus 0000:2e: resource 1 [mem 0xfcd00000-0xfcdfffff] [ 0.324921] pci_bus 0000:2e: resource 2 [mem 0x7c00000000-0x7e0fffffff 64bit pref] [ 0.324921] pci_bus 0000:2f: resource 0 [io 0xe000-0xefff] [ 0.324922] pci_bus 0000:2f: resource 1 [mem 0xfcd00000-0xfcdfffff] [ 0.324922] pci_bus 0000:2f: resource 2 [mem 0x7c00000000-0x7e0fffffff 64bit pref] [ 0.324923] pci_bus 0000:31: resource 1 [mem 0xfcb00000-0xfccfffff] [ 0.325241] pci 0000:2f:00.1: D0 power state depends on 0000:2f:00.0 [ 0.325327] PCI: CLS 64 bytes, default 64 [ 0.491238] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported [ 0.491279] pci 0000:00:01.0: Adding to iommu group 0 [ 0.491285] pci 0000:00:01.1: Adding to iommu group 1 [ 0.491291] pci 0000:00:01.2: Adding to iommu group 2 [ 0.491298] pci 0000:00:02.0: Adding to iommu group 3 [ 0.491306] pci 0000:00:03.0: Adding to iommu group 4 [ 0.491311] pci 0000:00:03.1: Adding to iommu group 5 [ 0.491318] pci 0000:00:04.0: Adding to iommu group 6 [ 0.491324] pci 0000:00:05.0: Adding to iommu group 7 [ 0.491331] pci 0000:00:07.0: Adding to iommu group 8 [ 0.491336] pci 0000:00:07.1: Adding to iommu group 9 [ 0.491344] pci 0000:00:08.0: Adding to iommu group 10 [ 0.491350] pci 0000:00:08.1: Adding to iommu group 11 [ 0.491358] pci 0000:00:14.0: Adding to iommu group 12 [ 0.491363] pci 0000:00:14.3: Adding to iommu group 12 [ 0.491382] pci 0000:00:18.0: Adding to iommu group 13 [ 0.491386] pci 0000:00:18.1: Adding to iommu group 13 [ 0.491391] pci 0000:00:18.2: Adding to iommu group 13 [ 0.491396] pci 0000:00:18.3: Adding to iommu group 13 [ 0.491400] pci 0000:00:18.4: Adding to iommu group 13 [ 0.491405] pci 0000:00:18.5: Adding to iommu group 13 [ 0.491409] pci 0000:00:18.6: Adding to iommu group 13 [ 0.491414] pci 0000:00:18.7: Adding to iommu group 13 [ 0.491419] pci 0000:01:00.0: Adding to iommu group 14 [ 0.491425] pci 0000:20:00.0: Adding to iommu group 15 [ 0.491453] pci 0000:21:05.0: Adding to iommu group 16 [ 0.491481] pci 0000:21:06.0: Adding to iommu group 17 [ 0.491489] pci 0000:21:08.0: Adding to iommu group 18 [ 0.491497] pci 0000:21:09.0: Adding to iommu group 19 [ 0.491504] pci 0000:21:0a.0: Adding to iommu group 20 [ 0.491534] pci 0000:27:00.0: Adding to iommu group 21 [ 0.491563] pci 0000:28:00.0: Adding to iommu group 22 [ 0.491565] pci 0000:2a:00.0: Adding to iommu group 18 [ 0.491568] pci 0000:2a:00.1: Adding to iommu group 18 [ 0.491570] pci 0000:2a:00.3: Adding to iommu group 18 [ 0.491572] pci 0000:2b:00.0: Adding to iommu group 19 [ 0.491575] pci 0000:2c:00.0: Adding to iommu group 20 [ 0.491581] pci 0000:2d:00.0: Adding to iommu group 23 [ 0.491587] pci 0000:2e:00.0: Adding to iommu group 24 [ 0.491605] pci 0000:2f:00.0: Adding to iommu group 25 [ 0.491614] pci 0000:2f:00.1: Adding to iommu group 26 [ 0.491619] pci 0000:30:00.0: Adding to iommu group 27 [ 0.491626] pci 0000:31:00.0: Adding to iommu group 28 [ 0.491632] pci 0000:31:00.3: Adding to iommu group 29 [ 0.491639] pci 0000:31:00.4: Adding to iommu group 30 [ 0.492069] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40 [ 0.492070] AMD-Vi: Extended features (0x58f77ef22294a5a): PPR NX GT IA PC GA_vAPIC [ 0.492126] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.492129] software IO TLB: mapped [mem 0x00000000d3058000-0x00000000d7058000] (64MB) [ 0.492282] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer [ 0.492287] RAPL PMU: hw unit of domain package 2^-16 Joules [ 0.492289] LVT offset 0 assigned for vector 0x400 [ 0.492428] perf: AMD IBS detected (0x000003ff) [ 0.492431] amd_uncore: 4 amd_df counters detected [ 0.492434] amd_uncore: 6 amd_l3 counters detected [ 0.492663] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank). [ 0.492791] SVM: TSC scaling supported [ 0.492791] kvm: Nested Virtualization enabled [ 0.492792] SVM: kvm: Nested Paging enabled [ 0.492800] SVM: Virtual VMLOAD VMSAVE supported [ 0.492800] SVM: Virtual GIF supported [ 0.492800] SVM: LBR virtualization supported [ 0.497790] cryptomgr_test (160) used greatest stack depth: 15600 bytes left [ 0.498145] Initialise system trusted keyrings [ 0.498168] workingset: timestamp_bits=36 max_order=23 bucket_order=0 [ 0.498737] zbud: loaded [ 0.498851] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.498938] NFS: Registering the id_resolver key type [ 0.498942] Key type id_resolver registered [ 0.498942] Key type id_legacy registered [ 0.498951] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 0.498953] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 0.498953] Installing knfsd (copyright (C) 1996 okir@xxxxxxxxxxxx). [ 0.499162] Key type cifs.idmap registered [ 0.499180] ksmbd: The ksmbd server is experimental, use at your own risk. [ 0.499181] ntfs3: Max link count 4000 [ 0.499181] ntfs3: Enabled Linux POSIX ACLs support [ 0.499182] ntfs3: Warning: Activated 64 bits per cluster. Windows does not support this [ 0.499182] ntfs3: Read-only LZX/Xpress compression included [ 0.499204] SGI XFS with ACLs, security attributes, realtime, scrub, repair, quota, no debug enabled [ 0.501461] NET: Registered PF_ALG protocol family [ 0.501462] xor: automatically using best checksumming function avx [ 0.501463] async_tx: api initialized (async) [ 0.501463] Key type asymmetric registered [ 0.501464] Asymmetric key parser 'x509' registered [ 0.501464] Asymmetric key parser 'pkcs8' registered [ 0.501515] kworker/u64:0 (178) used greatest stack depth: 14680 bytes left [ 0.501641] alg: self-tests for CTR-KDF (hmac(sha256)) passed [ 0.501652] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) [ 0.501678] io scheduler mq-deadline registered [ 0.501679] io scheduler kyber registered [ 0.501686] io scheduler bfq registered [ 0.502619] pcieport 0000:00:01.1: AER: enabled with IRQ 28 [ 0.502724] pcieport 0000:00:01.2: AER: enabled with IRQ 29 [ 0.502821] pcieport 0000:00:03.1: AER: enabled with IRQ 30 [ 0.502935] pcieport 0000:00:07.1: AER: enabled with IRQ 32 [ 0.503015] pcieport 0000:00:08.1: AER: enabled with IRQ 33 [ 0.504249] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0 [ 0.504257] ACPI: button: Power Button [PWRB] [ 0.504270] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1 [ 0.504303] ACPI: button: Power Button [PWRF] [ 0.505076] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1197 [ 0.505084] Monitor-Mwait will be used to enter C-1 state [ 0.505088] ACPI: \_PR_.C000: Found 2 idle states [ 0.505144] ACPI: \_PR_.C002: Found 2 idle states [ 0.505191] ACPI: \_PR_.C004: Found 2 idle states [ 0.505253] ACPI: \_PR_.C006: Found 2 idle states [ 0.505319] ACPI: \_PR_.C008: Found 2 idle states [ 0.505358] ACPI: \_PR_.C00A: Found 2 idle states [ 0.505397] ACPI: \_PR_.C00C: Found 2 idle states [ 0.505441] ACPI: \_PR_.C00E: Found 2 idle states [ 0.505484] ACPI: \_PR_.C010: Found 2 idle states [ 0.505542] ACPI: \_PR_.C012: Found 2 idle states [ 0.505599] ACPI: \_PR_.C014: Found 2 idle states [ 0.505656] ACPI: \_PR_.C016: Found 2 idle states [ 0.505710] ACPI: \_PR_.C001: Found 2 idle states [ 0.505761] ACPI: \_PR_.C003: Found 2 idle states [ 0.505811] ACPI: \_PR_.C005: Found 2 idle states [ 0.505861] ACPI: \_PR_.C007: Found 2 idle states [ 0.505911] ACPI: \_PR_.C009: Found 2 idle states [ 0.505961] ACPI: \_PR_.C00B: Found 2 idle states [ 0.506025] ACPI: \_PR_.C00D: Found 2 idle states [ 0.506090] ACPI: \_PR_.C00F: Found 2 idle states [ 0.506159] ACPI: \_PR_.C011: Found 2 idle states [ 0.506227] ACPI: \_PR_.C013: Found 2 idle states [ 0.506293] ACPI: \_PR_.C015: Found 2 idle states [ 0.506349] ACPI: \_PR_.C017: Found 2 idle states [ 0.506463] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled [ 0.761505] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 0.761712] Non-volatile memory driver v1.3 [ 0.761725] Linux agpgart interface v0.103 [ 0.762227] ACPI: bus type drm_connector registered [ 0.763639] brd: module loaded [ 0.764663] loop: module loaded [ 0.764674] megasas: 07.719.03.00-rc1 [ 0.764682] VMware PVSCSI driver - version 1.0.7.0-k [ 0.764792] nvme nvme0: pci function 0000:01:00.0 [ 0.764861] ahci 0000:2b:00.0: version 3.0 [ 0.764963] ahci 0000:2b:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode [ 0.764965] ahci 0000:2b:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part [ 0.765049] scsi host0: ahci [ 0.765072] ata1: SATA max UDMA/133 abar m2048@0xfc800000 port 0xfc800100 irq 46 [ 0.765194] ahci 0000:2c:00.0: AHCI 0001.0301 32 slots 3 ports 6 Gbps 0x13 impl SATA mode [ 0.765195] ahci 0000:2c:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part [ 0.765371] scsi host1: ahci [ 0.765409] scsi host2: ahci [ 0.765444] scsi host3: ahci [ 0.765481] scsi host4: ahci [ 0.765516] scsi host5: ahci [ 0.765527] ata2: SATA max UDMA/133 abar m2048@0xfc700000 port 0xfc700100 irq 47 [ 0.765529] ata3: SATA max UDMA/133 abar m2048@0xfc700000 port 0xfc700180 irq 47 [ 0.765531] ata4: DUMMY [ 0.765531] ata5: DUMMY [ 0.765532] ata6: SATA max UDMA/133 abar m2048@0xfc700000 port 0xfc700300 irq 47 [ 0.765588] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information. [ 0.765588] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@xxxxxxxxx>. All Rights Reserved. [ 0.765641] tun: Universal TUN/TAP device driver, 1.6 [ 0.765655] e100: Intel(R) PRO/100 Network Driver [ 0.765655] e100: Copyright(c) 1999-2006 Intel Corporation [ 0.765660] e1000: Intel(R) PRO/1000 Network Driver [ 0.765661] e1000: Copyright (c) 1999-2006 Intel Corporation. [ 0.765666] e1000e: Intel(R) PRO/1000 Network Driver [ 0.765666] e1000e: Copyright(c) 1999 - 2015 Intel Corporation. [ 0.765691] r8169 0000:27:00.0: enabling device (0000 -> 0003) [ 0.771886] kworker/u64:8 (237) used greatest stack depth: 14136 bytes left [ 0.772023] r8169 0000:27:00.0 eth0: RTL8125A, 2c:f0:5d:d9:ba:31, XID 609, IRQ 48 [ 0.772025] r8169 0000:27:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko] [ 0.772055] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.772056] ehci-pci: EHCI PCI platform driver [ 0.772063] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 0.772064] ohci-pci: OHCI PCI platform driver [ 0.772069] uhci_hcd: USB Universal Host Controller Interface driver [ 0.772377] xhci_hcd 0000:2a:00.1: xHCI Host Controller [ 0.772395] xhci_hcd 0000:2a:00.1: new USB bus registered, assigned bus number 1 [ 0.772531] xhci_hcd 0000:2a:00.1: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000410 [ 0.773390] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17 [ 0.773391] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.773392] usb usb1: Product: xHCI Host Controller [ 0.773393] usb usb1: Manufacturer: Linux 5.17.0-rc4_ap_test-00163-g793917d997df-dirty xhci-hcd [ 0.773393] usb usb1: SerialNumber: 0000:2a:00.1 [ 0.773436] hub 1-0:1.0: USB hub found [ 0.773445] hub 1-0:1.0: 6 ports detected [ 0.773559] xhci_hcd 0000:2a:00.1: xHCI Host Controller [ 0.773576] xhci_hcd 0000:2a:00.1: new USB bus registered, assigned bus number 2 [ 0.773577] xhci_hcd 0000:2a:00.1: Host supports USB 3.1 Enhanced SuperSpeed [ 0.773587] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.773595] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17 [ 0.773596] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.773596] usb usb2: Product: xHCI Host Controller [ 0.773597] usb usb2: Manufacturer: Linux 5.17.0-rc4_ap_test-00163-g793917d997df-dirty xhci-hcd [ 0.773597] usb usb2: SerialNumber: 0000:2a:00.1 [ 0.773633] hub 2-0:1.0: USB hub found [ 0.773640] hub 2-0:1.0: 4 ports detected [ 0.773759] xhci_hcd 0000:2a:00.3: xHCI Host Controller [ 0.773778] xhci_hcd 0000:2a:00.3: new USB bus registered, assigned bus number 3 [ 0.773917] xhci_hcd 0000:2a:00.3: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000410 [ 0.774101] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17 [ 0.774102] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.774102] usb usb3: Product: xHCI Host Controller [ 0.774103] usb usb3: Manufacturer: Linux 5.17.0-rc4_ap_test-00163-g793917d997df-dirty xhci-hcd [ 0.774103] usb usb3: SerialNumber: 0000:2a:00.3 [ 0.774139] hub 3-0:1.0: USB hub found [ 0.774148] hub 3-0:1.0: 6 ports detected [ 0.774270] xhci_hcd 0000:2a:00.3: xHCI Host Controller [ 0.774285] xhci_hcd 0000:2a:00.3: new USB bus registered, assigned bus number 4 [ 0.774286] xhci_hcd 0000:2a:00.3: Host supports USB 3.1 Enhanced SuperSpeed [ 0.774294] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.774301] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17 [ 0.774302] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.774303] usb usb4: Product: xHCI Host Controller [ 0.774303] usb usb4: Manufacturer: Linux 5.17.0-rc4_ap_test-00163-g793917d997df-dirty xhci-hcd [ 0.774303] usb usb4: SerialNumber: 0000:2a:00.3 [ 0.774336] hub 4-0:1.0: USB hub found [ 0.774342] hub 4-0:1.0: 4 ports detected [ 0.774434] xhci_hcd 0000:31:00.3: xHCI Host Controller [ 0.774450] xhci_hcd 0000:31:00.3: new USB bus registered, assigned bus number 5 [ 0.774539] xhci_hcd 0000:31:00.3: hcc params 0x0278ffe5 hci version 0x110 quirks 0x0000000000000410 [ 0.774650] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.17 [ 0.774650] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.774651] usb usb5: Product: xHCI Host Controller [ 0.774651] usb usb5: Manufacturer: Linux 5.17.0-rc4_ap_test-00163-g793917d997df-dirty xhci-hcd [ 0.774652] usb usb5: SerialNumber: 0000:31:00.3 [ 0.774684] hub 5-0:1.0: USB hub found [ 0.774687] hub 5-0:1.0: 4 ports detected [ 0.774756] xhci_hcd 0000:31:00.3: xHCI Host Controller [ 0.774771] xhci_hcd 0000:31:00.3: new USB bus registered, assigned bus number 6 [ 0.774772] xhci_hcd 0000:31:00.3: Host supports USB 3.1 Enhanced SuperSpeed [ 0.774779] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.774786] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.17 [ 0.774787] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 0.774788] usb usb6: Product: xHCI Host Controller [ 0.774788] usb usb6: Manufacturer: Linux 5.17.0-rc4_ap_test-00163-g793917d997df-dirty xhci-hcd [ 0.774788] usb usb6: SerialNumber: 0000:31:00.3 [ 0.774820] hub 6-0:1.0: USB hub found [ 0.774824] hub 6-0:1.0: 4 ports detected [ 0.774883] usbcore: registered new interface driver usblp [ 0.774890] usbcore: registered new interface driver usb-storage [ 0.774895] i8042: PNP: No PS/2 controller found. [ 0.774912] mousedev: PS/2 mouse device common for all mice [ 0.774968] rtc_cmos 00:02: RTC can wake from S4 [ 0.775109] rtc_cmos 00:02: registered as rtc0 [ 0.775115] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 0.775132] fail to initialize ptp_kvm [ 0.775181] nct6775: Enabling hardware monitor logical device mappings. [ 0.775191] nct6775: Found NCT6797D or compatible chip at 0x4e:0xa20 [ 0.775193] nvme nvme0: Shutdown timeout set to 10 seconds [ 0.775943] device-mapper: uevent: version 1.0.3 [ 0.775965] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@xxxxxxxxxx [ 0.775993] device-mapper: raid: Loading target version 1.15.1 [ 0.775995] Bluetooth: HCI UART driver ver 2.3 [ 0.775996] Bluetooth: HCI UART protocol H4 registered [ 0.775996] Bluetooth: HCI UART protocol BCSP registered [ 0.775997] Bluetooth: HCI UART protocol ATH3K registered [ 0.776001] usbcore: registered new interface driver btusb [ 0.776002] amd_pstate: This processor supports shared memory solution, you can enable it with amd_pstate.shared_mem=1 [ 0.776012] efifb: probing for efifb [ 0.776017] efifb: framebuffer at 0x7c00000000, using 3072k, total 3072k [ 0.776018] efifb: mode is 1024x768x32, linelength=4096, pages=1 [ 0.776018] efifb: scrolling: redraw [ 0.776019] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 0.776054] Console: switching to colour frame buffer device 128x48 [ 0.776586] fb0: EFI VGA frame buffer device [ 0.776592] hid: raw HID events driver (C) Jiri Kosina [ 0.776631] usbcore: registered new interface driver usbhid [ 0.776632] usbhid: USB HID core driver [ 0.776749] snd_hda_intel 0000:2f:00.1: enabling device (0000 -> 0002) [ 0.776768] snd_hda_intel 0000:2f:00.1: Force to non-snoop mode [ 0.776777] snd_hda_intel 0000:31:00.4: enabling device (0000 -> 0002) [ 0.776808] u32 classifier [ 0.776809] input device check on [ 0.776809] Actions configured [ 0.777154] Initializing XFRM netlink socket [ 0.777192] NET: Registered PF_INET6 protocol family [ 0.777597] Segment Routing with IPv6 [ 0.777598] RPL Segment Routing with IPv6 [ 0.777602] In-situ OAM (IOAM) with IPv6 [ 0.777621] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 0.777682] NET: Registered PF_PACKET protocol family [ 0.777691] Bridge firewalling registered [ 0.777708] Bluetooth: RFCOMM TTY layer initialized [ 0.777709] Bluetooth: RFCOMM socket layer initialized [ 0.777711] Bluetooth: RFCOMM ver 1.11 [ 0.777713] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 0.777714] Bluetooth: BNEP filters: protocol multicast [ 0.777715] Bluetooth: BNEP socket layer initialized [ 0.777715] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 [ 0.777717] Bluetooth: HIDP socket layer initialized [ 0.777728] Key type dns_resolver registered [ 0.778376] microcode: CPU0: patch_level=0x0a201016 [ 0.778378] microcode: CPU1: patch_level=0x0a201016 [ 0.778383] microcode: CPU2: patch_level=0x0a201016 [ 0.778385] microcode: CPU3: patch_level=0x0a201016 [ 0.778389] microcode: CPU4: patch_level=0x0a201016 [ 0.778392] microcode: CPU5: patch_level=0x0a201016 [ 0.778397] microcode: CPU6: patch_level=0x0a201016 [ 0.778402] microcode: CPU7: patch_level=0x0a201016 [ 0.778408] microcode: CPU8: patch_level=0x0a201016 [ 0.778411] microcode: CPU9: patch_level=0x0a201016 [ 0.778416] microcode: CPU10: patch_level=0x0a201016 [ 0.778422] microcode: CPU11: patch_level=0x0a201016 [ 0.778426] microcode: CPU12: patch_level=0x0a201016 [ 0.778430] microcode: CPU13: patch_level=0x0a201016 [ 0.778435] microcode: CPU14: patch_level=0x0a201016 [ 0.778438] microcode: CPU15: patch_level=0x0a201016 [ 0.778441] microcode: CPU16: patch_level=0x0a201016 [ 0.778446] microcode: CPU17: patch_level=0x0a201016 [ 0.778450] microcode: CPU18: patch_level=0x0a201016 [ 0.778455] microcode: CPU19: patch_level=0x0a201016 [ 0.778460] microcode: CPU20: patch_level=0x0a201016 [ 0.778465] microcode: CPU21: patch_level=0x0a201016 [ 0.778468] microcode: CPU22: patch_level=0x0a201016 [ 0.778472] microcode: CPU23: patch_level=0x0a201016 [ 0.778474] microcode: Microcode Update Driver: v2.2. [ 0.778476] IPI shorthand broadcast: enabled [ 0.778479] AVX2 version of gcm_enc/dec engaged. [ 0.778643] AES CTR mode by8 optimization enabled [ 0.778788] sched_clock: Marking stable (778573672, 210186)->(803784564, -25000706) [ 0.778838] registered taskstats version 1 [ 0.778840] Loading compiled-in X.509 certificates [ 0.780879] zswap: loaded using pool zstd/zbud [ 0.780975] nvme nvme0: 32/0/0 default/read/poll queues [ 0.781631] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:2d:00.0/0000:2e:00.0/0000:2f:00.1/sound/card0/input2 [ 0.781649] input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:2d:00.0/0000:2e:00.0/0000:2f:00.1/sound/card0/input3 [ 0.781665] input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:2d:00.0/0000:2e:00.0/0000:2f:00.1/sound/card0/input4 [ 0.781680] input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:2d:00.0/0000:2e:00.0/0000:2f:00.1/sound/card0/input5 [ 0.781695] input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:2d:00.0/0000:2e:00.0/0000:2f:00.1/sound/card0/input6 [ 0.781711] input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:2d:00.0/0000:2e:00.0/0000:2f:00.1/sound/card0/input7 [ 0.782703] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=no [ 0.782759] kworker/u64:8 (285) used greatest stack depth: 14128 bytes left [ 0.782881] Key type encrypted registered [ 0.783682] nvme0n1: p1 p2 p3 [ 0.783751] random: fast init done [ 0.784691] PM: Magic number: 2:792:349 [ 0.784721] platform efivars.0: hash matches [ 0.784734] memory memory195: hash matches [ 0.784742] printk: console [netcon0] enabled [ 0.784743] netconsole: network logging started [ 0.786898] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC1220: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line [ 0.786899] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 0.786900] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0) [ 0.786901] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0 [ 0.786901] snd_hda_codec_realtek hdaudioC1D0: dig-out=0x1e/0x0 [ 0.786902] snd_hda_codec_realtek hdaudioC1D0: inputs: [ 0.786902] snd_hda_codec_realtek hdaudioC1D0: Front Mic=0x19 [ 0.786903] snd_hda_codec_realtek hdaudioC1D0: Rear Mic=0x18 [ 0.786903] snd_hda_codec_realtek hdaudioC1D0: Line=0x1a [ 0.798920] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:31:00.4/sound/card1/input8 [ 0.798942] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:31:00.4/sound/card1/input9 [ 0.798962] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:31:00.4/sound/card1/input10 [ 0.798979] input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:31:00.4/sound/card1/input11 [ 0.798997] input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:31:00.4/sound/card1/input12 [ 0.799013] input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:31:00.4/sound/card1/input13 [ 0.799031] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:31:00.4/sound/card1/input14 [ 0.811214] PM: Image not found (code -22) [ 0.811251] ALSA device list: [ 0.811251] #0: HDA ATI HDMI at 0xfcda0000 irq 101 [ 0.811252] #1: HD-Audio Generic at 0xfcc00000 irq 102 [ 1.011375] usb 5-1: new full-speed USB device number 2 using xhci_hcd [ 1.011380] usb 1-1: new full-speed USB device number 2 using xhci_hcd [ 1.011384] usb 3-5: new full-speed USB device number 2 using xhci_hcd [ 1.071937] ata1: SATA link down (SStatus 0 SControl 300) [ 1.152786] usb 5-1: config 1 interface 0 altsetting 0 has 3 endpoint descriptors, different from the interface descriptor's value: 2 [ 1.158564] usb 3-5: New USB device found, idVendor=1462, idProduct=7c35, bcdDevice= 0.01 [ 1.158566] usb 3-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 1.158567] usb 3-5: Product: MYSTIC LIGHT [ 1.158567] usb 3-5: Manufacturer: MSI [ 1.158568] usb 3-5: SerialNumber: A02019111101 [ 1.161601] usb 1-1: New USB device found, idVendor=05ac, idProduct=024f, bcdDevice= 1.24 [ 1.161603] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.161603] usb 1-1: Product: Keychron K2 [ 1.161604] usb 1-1: Manufacturer: Keytron [ 1.161776] usb 5-1: New USB device found, idVendor=0a89, idProduct=0025, bcdDevice= 1.00 [ 1.161777] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.161778] usb 5-1: Product: Rutoken lite [ 1.161778] usb 5-1: Manufacturer: Aktiv [ 1.173727] input: Keytron Keychron K2 as /devices/pci0000:00/0000:00:01.2/0000:20:00.0/0000:21:08.0/0000:2a:00.1/usb1/1-1/1-1:1.0/0003:05AC:024F.0001/input/input15 [ 1.179639] input: MSI MYSTIC LIGHT as /devices/pci0000:00/0000:00:01.2/0000:20:00.0/0000:21:08.0/0000:2a:00.3/usb3/3-5/3-5:1.0/0003:1462:7C35.0002/input/input16 [ 1.225640] hid-generic 0003:05AC:024F.0001: input,hidraw0: USB HID v1.11 Keyboard [Keytron Keychron K2] on usb-0000:2a:00.1-1/input0 [ 1.225735] hid-generic 0003:1462:7C35.0002: input,hiddev96,hidraw1: USB HID v1.10 Device [MSI MYSTIC LIGHT ] on usb-0000:2a:00.3-5/input0 [ 1.229757] input: Keytron Keychron K2 Consumer Control as /devices/pci0000:00/0000:00:01.2/0000:20:00.0/0000:21:08.0/0000:2a:00.1/usb1/1-1/1-1:1.1/0003:05AC:024F.0003/input/input17 [ 1.232509] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300) [ 1.232534] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.232557] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 1.232790] ata6.00: ATA-8: Corsair Neutron GTX SSD, M206, max UDMA/133 [ 1.232818] ata6.00: 468862128 sectors, multi 1: LBA48 NCQ (depth 32), AA [ 1.232861] ata3.00: supports DRM functions and may not be fully accessible [ 1.232863] ata3.00: ATA-11: Samsung SSD 860 EVO 250GB, RVT01B6Q, max UDMA/133 [ 1.233095] ata6.00: configured for UDMA/133 [ 1.233601] ata3.00: 488397168 sectors, multi 1: LBA48 NCQ (depth 32), AA [ 1.235645] ata2.00: ATA-8: WDC WD7500BPVT-24HXZT1, 02.01A02, max UDMA/133 [ 1.236204] ata2.00: 1465149168 sectors, multi 16: LBA48 NCQ (depth 32), AA [ 1.236843] ata3.00: Features: Trust Dev-Sleep NCQ-sndrcv [ 1.237267] ata3.00: supports DRM functions and may not be fully accessible [ 1.239613] ata2.00: configured for UDMA/133 [ 1.239850] scsi 1:0:0:0: Direct-Access ATA WDC WD7500BPVT-2 1A02 PQ: 0 ANSI: 5 [ 1.239969] sd 1:0:0:0: Attached scsi generic sg0 type 0 [ 1.240216] sd 1:0:0:0: [sda] 1465149168 512-byte logical blocks: (750 GB/699 GiB) [ 1.240217] sd 1:0:0:0: [sda] 4096-byte physical blocks [ 1.240237] sd 1:0:0:0: [sda] Write Protect is off [ 1.240239] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 1.240259] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.241508] ata3.00: configured for UDMA/133 [ 1.241566] scsi 2:0:0:0: Direct-Access ATA Samsung SSD 860 1B6Q PQ: 0 ANSI: 5 [ 1.241666] ata3.00: Enabling discard_zeroes_data [ 1.241671] sd 2:0:0:0: Attached scsi generic sg1 type 0 [ 1.242583] sd 2:0:0:0: [sdb] 488397168 512-byte logical blocks: (250 GB/233 GiB) [ 1.242588] sd 2:0:0:0: [sdb] Write Protect is off [ 1.242589] sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00 [ 1.242600] sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.243048] ata3.00: Enabling discard_zeroes_data [ 1.243145] scsi 5:0:0:0: Direct-Access ATA Corsair Neutron M206 PQ: 0 ANSI: 5 [ 1.243222] sd 5:0:0:0: Attached scsi generic sg2 type 0 [ 1.243527] sd 5:0:0:0: [sdc] 468862128 512-byte logical blocks: (240 GB/224 GiB) [ 1.243533] sd 5:0:0:0: [sdc] Write Protect is off [ 1.243534] sd 5:0:0:0: [sdc] Mode Sense: 00 3a 00 00 [ 1.243542] sd 5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.251630] sdb: sdb1 [ 1.251685] ata3.00: Enabling discard_zeroes_data [ 1.256103] sdc: sdc1 [ 1.260566] sd 2:0:0:0: [sdb] supports TCG Opal [ 1.260567] sd 2:0:0:0: [sdb] Attached SCSI disk [ 1.263533] sd 5:0:0:0: [sdc] Attached SCSI disk [ 1.281594] input: Keytron Keychron K2 System Control as /devices/pci0000:00/0000:00:01.2/0000:20:00.0/0000:21:08.0/0000:2a:00.1/usb1/1-1/1-1:1.1/0003:05AC:024F.0003/input/input18 [ 1.281629] input: Keytron Keychron K2 Keyboard as /devices/pci0000:00/0000:00:01.2/0000:20:00.0/0000:21:08.0/0000:2a:00.1/usb1/1-1/1-1:1.1/0003:05AC:024F.0003/input/input19 [ 1.281656] input: Keytron Keychron K2 Mouse as /devices/pci0000:00/0000:00:01.2/0000:20:00.0/0000:21:08.0/0000:2a:00.1/usb1/1-1/1-1:1.1/0003:05AC:024F.0003/input/input20 [ 1.281698] input: Keytron Keychron K2 as /devices/pci0000:00/0000:00:01.2/0000:20:00.0/0000:21:08.0/0000:2a:00.1/usb1/1-1/1-1:1.1/0003:05AC:024F.0003/input/input21 [ 1.281744] hid-generic 0003:05AC:024F.0003: input,hiddev97,hidraw2: USB HID v1.11 Keyboard [Keytron Keychron K2] on usb-0000:2a:00.1-1/input1 [ 1.291451] sda: sda1 [ 1.295824] usb 6-3: new SuperSpeed USB device number 2 using xhci_hcd [ 1.296581] sd 1:0:0:0: [sda] Attached SCSI disk [ 1.296818] md: Waiting for all devices to be available before autodetect [ 1.296820] md: If you don't use raid, use raid=noautodetect [ 1.296821] md: Autodetecting RAID arrays. [ 1.296822] md: autorun ... [ 1.296822] md: ... autorun DONE. [ 1.305460] exFAT-fs (nvme0n1p3): invalid boot record signature [ 1.305475] exFAT-fs (nvme0n1p3): failed to read boot sector [ 1.305489] exFAT-fs (nvme0n1p3): failed to recognize exfat type [ 1.312022] XFS (nvme0n1p3): Mounting V5 Filesystem [ 1.317745] XFS (nvme0n1p3): Ending clean mount [ 1.330657] VFS: Mounted root (xfs filesystem) readonly on device 259:3. [ 1.330749] devtmpfs: mounted [ 1.331208] Freeing unused kernel image (initmem) memory: 1776K [ 1.331210] Write protecting the kernel read-only data: 28672k [ 1.331548] Freeing unused kernel image (text/rodata gap) memory: 2028K [ 1.331722] Freeing unused kernel image (rodata/data gap) memory: 1168K [ 1.331726] Run /lib/systemd/systemd as init process [ 1.331726] with arguments: [ 1.331727] /lib/systemd/systemd [ 1.331727] splash [ 1.331727] with environment: [ 1.331728] HOME=/ [ 1.331728] TERM=linux [ 1.331728] BOOT_IMAGE=/vmlinuz-5.17.0-rc4_ap_test-00163-g793917d997df-dirty [ 1.339705] usb 3-6: new high-speed USB device number 3 using xhci_hcd [ 1.368226] modprobe (401) used greatest stack depth: 13304 bytes left [ 1.371366] systemd[1]: systemd 251 running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID -CURL +ELFUTILS -FIDO2 +IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 +LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=hybrid) [ 1.371368] systemd[1]: Detected architecture x86-64. [ 1.392384] usb 6-3: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11 [ 1.392386] usb 6-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.392386] usb 6-3: Product: USB3.0 Hub [ 1.392387] usb 6-3: Manufacturer: VIA Labs, Inc. [ 1.395488] usb 1-4: new full-speed USB device number 3 using xhci_hcd [ 1.414959] hub 6-3:1.0: USB hub found [ 1.415202] hub 6-3:1.0: 4 ports detected [ 1.426996] gentoo-local-ge (407) used greatest stack depth: 13160 bytes left [ 1.433089] random: lvmconfig: uninitialized urandom read (4 bytes read) [ 1.469370] systemd[1]: /usr/lib/systemd/system/ethtool@.service:6: Unknown key name 'Requires' in section 'Service', ignoring. [ 1.469373] systemd[1]: /usr/lib/systemd/system/ethtool@.service:7: Unknown key name 'After' in section 'Service', ignoring. [ 1.470520] usb 3-6: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice=60.70 [ 1.470522] usb 3-6: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 1.470523] usb 3-6: Product: USB2.0 Hub [ 1.483341] systemd[1]: Queued start job for default target Graphical Interface. [ 1.490600] systemd[1]: Created slice Virtual Machine and Container Slice. [ 1.491002] systemd[1]: Created slice Slice /system/ethtool. [ 1.491211] systemd[1]: Created slice Slice /system/getty. [ 1.491426] systemd[1]: Created slice Slice /system/modprobe. [ 1.491654] systemd[1]: Created slice Slice /system/syncthing. [ 1.491840] systemd[1]: Created slice User and Session Slice. [ 1.491867] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ 1.491882] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 1.491930] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ 1.491958] systemd[1]: Reached target Path Units. [ 1.491964] systemd[1]: Reached target Remote File Systems. [ 1.491969] systemd[1]: Reached target Slice Units. [ 1.494192] systemd[1]: Listening on RPCbind Server Activation Socket. [ 1.494219] systemd[1]: Reached target RPC Port Mapper. [ 1.494991] systemd[1]: Listening on Process Core Dump Socket. [ 1.495026] systemd[1]: Listening on initctl Compatibility Named Pipe. [ 1.495097] systemd[1]: Listening on Journal Audit Socket. [ 1.495140] systemd[1]: Listening on Journal Socket (/dev/log). [ 1.495184] systemd[1]: Listening on Journal Socket. [ 1.495344] systemd[1]: Listening on Network Service Netlink Socket. [ 1.495742] systemd[1]: Listening on udev Control Socket. [ 1.495778] systemd[1]: Listening on udev Kernel Socket. [ 1.496252] systemd[1]: Mounting Huge Pages File System... [ 1.496681] systemd[1]: Mounting POSIX Message Queue File System... [ 1.497127] systemd[1]: Mounting Kernel Debug File System... [ 1.497557] systemd[1]: Mounting Kernel Trace File System... [ 1.498056] systemd[1]: Starting Create List of Static Device Nodes... [ 1.498423] systemd[1]: Starting Load Kernel Module configfs... [ 1.498798] systemd[1]: Starting Load Kernel Module drm... [ 1.499136] systemd[1]: Starting Load Kernel Module fuse... [ 1.499621] systemd[1]: Starting RPC Bind... [ 1.500678] systemd[1]: Starting Journal Service... [ 1.501440] systemd[1]: Starting Load Kernel Modules... [ 1.502013] systemd[1]: Starting Remount Root and Kernel File Systems... [ 1.502043] systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed. [ 1.502055] fuse: init (API version 7.36) [ 1.502531] systemd[1]: Starting Coldplug All udev Devices... [ 1.503162] systemd[1]: Started RPC Bind. [ 1.503208] systemd[1]: Mounted Huge Pages File System. [ 1.503244] systemd[1]: Mounted POSIX Message Queue File System. [ 1.503272] systemd[1]: Mounted Kernel Debug File System. [ 1.503301] systemd[1]: Mounted Kernel Trace File System. [ 1.503443] systemd[1]: Finished Create List of Static Device Nodes. [ 1.503528] systemd[1]: modprobe@configfs.service: Deactivated successfully. [ 1.503611] systemd[1]: Finished Load Kernel Module configfs. [ 1.503719] systemd[1]: modprobe@drm.service: Deactivated successfully. [ 1.503812] systemd[1]: Finished Load Kernel Module drm. [ 1.503893] systemd[1]: modprobe@fuse.service: Deactivated successfully. [ 1.503965] systemd[1]: Finished Load Kernel Module fuse. [ 1.504453] systemd[1]: Mounting FUSE Control File System... [ 1.504931] systemd[1]: Mounting Kernel Configuration File System... [ 1.505129] systemd[1]: Finished Load Kernel Modules. [ 1.505384] systemd[1]: Mounted FUSE Control File System. [ 1.505861] systemd[1]: Starting Apply Kernel Variables... [ 1.506146] systemd[1]: Mounted Kernel Configuration File System. [ 1.506486] usb 5-3: new high-speed USB device number 3 using xhci_hcd [ 1.509913] systemd[1]: Finished Apply Kernel Variables. [ 1.510926] hub 3-6:1.0: USB hub found [ 1.511514] hub 3-6:1.0: 4 ports detected [ 1.512499] tsc: Refined TSC clocksource calibration: 3700.029 MHz [ 1.512505] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6aaae08e541, max_idle_ns: 881590514464 ns [ 1.512542] clocksource: Switched to clocksource tsc [ 1.532327] systemd[1]: Started Journal Service. [ 1.546577] usb 1-4: New USB device found, idVendor=8087, idProduct=0029, bcdDevice= 0.01 [ 1.546579] usb 1-4: New USB device strings: Mfr=0, Product=0, SerialNumber=0 [ 1.567550] Bluetooth: hci0: Found device firmware: intel/ibt-20-1-3.sfi [ 1.567561] Bluetooth: hci0: Boot Address: 0x24800 [ 1.567562] Bluetooth: hci0: Firmware Version: 106-39.22 [ 1.567563] Bluetooth: hci0: Firmware already loaded [ 1.639490] usb 5-3: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11 [ 1.639493] usb 5-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.639494] usb 5-3: Product: USB2.0 Hub [ 1.639495] usb 5-3: Manufacturer: VIA Labs, Inc. [ 1.703017] hub 5-3:1.0: USB hub found [ 1.704126] hub 5-3:1.0: 4 ports detected [ 1.704168] xfs filesystem being remounted at / supports timestamps until 2038 (0x7fffffff) [ 1.707386] systemd-journald[437]: Received client request to flush runtime journal. [ 1.778903] r8169 0000:27:00.0 enp39s0: renamed from eth0 [ 1.835704] usb 6-3.1: new SuperSpeed USB device number 3 using xhci_hcd [ 1.835793] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 [ 1.835797] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection [ 1.835885] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 1.835888] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20 [ 1.838820] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' [ 1.842076] Intel(R) Wireless WiFi driver for Linux [ 1.842131] iwlwifi 0000:28:00.0: enabling device (0000 -> 0002) [ 1.856933] iwlwifi 0000:28:00.0: Direct firmware load for iwlwifi-cc-a0-69.ucode failed with error -2 [ 1.857794] iwlwifi 0000:28:00.0: api flags index 2 larger than supported by driver [ 1.857808] iwlwifi 0000:28:00.0: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37 [ 1.858046] iwlwifi 0000:28:00.0: loaded firmware version 68.01d30b0c.0 cc-a0-68.ucode op_mode iwlmvm [ 1.878993] random: crng init done [ 1.887843] iwlwifi 0000:28:00.0: Detected Intel(R) Wi-Fi 6 AX200 160MHz, REV=0x340 [ 1.897996] thermal thermal_zone0: failed to read out thermal zone (-61) [ 1.913370] Adding 24575996k swap on /dev/nvme0n1p2. Priority:-2 extents:1 across:24575996k SSFS [ 1.915149] FAT-fs (nvme0n1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [ 1.926832] XFS (sdc1): Mounting V5 Filesystem [ 1.932440] usb 6-3.1: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11 [ 1.932444] usb 6-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 1.932445] usb 6-3.1: Product: USB3.0 Hub [ 1.932446] usb 6-3.1: Manufacturer: VIA Labs, Inc. [ 1.947981] XFS (sdc1): Ending clean mount [ 1.949663] xfs filesystem being mounted at /mnt/gms2 supports timestamps until 2038 (0x7fffffff) [ 1.969944] [drm] amdgpu kernel modesetting enabled. [ 1.972623] amdgpu: CRAT table disabled by module option [ 1.972625] amdgpu: Virtual CRAT table created for CPU [ 1.972631] amdgpu: Topology: Add CPU node [ 1.972675] checking generic (7c00000000 300000) vs hw (7c00000000 200000000) [ 1.972677] checking generic (7c00000000 300000) vs hw (7c00000000 200000000) [ 1.972677] fb0: switching to amdgpu from EFI VGA [ 1.972714] Console: switching to colour dummy device 80x25 [ 1.972730] amdgpu 0000:2f:00.0: vgaarb: deactivate vga console [ 1.972755] amdgpu 0000:2f:00.0: enabling device (0006 -> 0007) [ 1.972778] [drm] initializing kernel modesetting (NAVI10 0x1002:0x731F 0x1DA2:0xE409 0xC1). [ 1.972779] amdgpu 0000:2f:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default) [ 1.972786] [drm] register mmio base: 0xFCD00000 [ 1.972787] [drm] register mmio size: 524288 [ 1.973885] [drm] add ip block number 0 <nv_common> [ 1.973886] [drm] add ip block number 1 <gmc_v10_0> [ 1.973887] [drm] add ip block number 2 <navi10_ih> [ 1.973887] [drm] add ip block number 3 <psp> [ 1.973888] [drm] add ip block number 4 <smu> [ 1.973888] [drm] add ip block number 5 <dm> [ 1.973889] [drm] add ip block number 6 <gfx_v10_0> [ 1.973890] [drm] add ip block number 7 <sdma_v5_0> [ 1.973890] [drm] add ip block number 8 <vcn_v2_0> [ 1.973891] [drm] add ip block number 9 <jpeg_v2_0> [ 1.973903] amdgpu 0000:2f:00.0: amdgpu: Fetched VBIOS from VFCT [ 1.973904] amdgpu: ATOM BIOS: 113-D1990103-O09 [ 1.973910] [drm] VCN decode is enabled in VM mode [ 1.973910] [drm] VCN encode is enabled in VM mode [ 1.973911] [drm] JPEG decode is enabled in VM mode [ 1.973942] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit [ 1.973946] amdgpu 0000:2f:00.0: amdgpu: VRAM: 8176M 0x0000008000000000 - 0x00000081FEFFFFFF (8176M used) [ 1.973947] amdgpu 0000:2f:00.0: amdgpu: GART: 512M 0x0000000000000000 - 0x000000001FFFFFFF [ 1.973948] amdgpu 0000:2f:00.0: amdgpu: AGP: 267894784M 0x0000008400000000 - 0x0000FFFFFFFFFFFF [ 1.973954] [drm] Detected VRAM RAM=8176M, BAR=8192M [ 1.973955] [drm] RAM width 256bits GDDR6 [ 1.973982] [drm] amdgpu: 8176M of VRAM memory ready [ 1.973983] [drm] amdgpu: 8176M of GTT memory ready. [ 1.973989] [drm] GART: num cpu pages 131072, num gpu pages 131072 [ 1.974102] [drm] PCIE GART of 512M enabled (table at 0x0000008000300000). [ 1.974818] hub 6-3.1:1.0: USB hub found [ 1.974997] amdgpu 0000:2f:00.0: amdgpu: PSP runtime database doesn't exist [ 1.975041] hub 6-3.1:1.0: 4 ports detected [ 1.977183] [drm] Found VCN firmware Version ENC: 1.17 DEC: 5 VEP: 0 Revision: 2 [ 1.977187] amdgpu 0000:2f:00.0: amdgpu: Will use PSP to load VCN firmware [ 2.018497] usb 5-3.1: new high-speed USB device number 4 using xhci_hcd [ 2.020987] iwlwifi 0000:28:00.0: Detected RF HR B3, rfid=0x10a100 [ 2.028712] [drm] reserve 0x900000 from 0x81fe400000 for PSP TMR [ 2.070713] amdgpu 0000:2f:00.0: amdgpu: RAS: optional ras ta ucode is not available [ 2.076711] amdgpu 0000:2f:00.0: amdgpu: RAP: optional rap ta ucode is not available [ 2.076712] amdgpu 0000:2f:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available [ 2.076773] amdgpu 0000:2f:00.0: amdgpu: use vbios provided pptable [ 2.076774] amdgpu 0000:2f:00.0: amdgpu: smc_dpm_info table revision(format.content): 4.5 [ 2.086917] iwlwifi 0000:28:00.0: base HW address: e0:d4:64:37:86:83 [ 2.112049] amdgpu 0000:2f:00.0: amdgpu: SMU is initialized successfully! [ 2.112181] [drm] Display Core initialized with v3.2.167! [ 2.117501] usb 5-3.1: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11 [ 2.117504] usb 5-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 2.117506] usb 5-3.1: Product: USB2.0 Hub [ 2.117507] usb 5-3.1: Manufacturer: VIA Labs, Inc. [ 2.134216] snd_hda_intel 0000:2f:00.1: bound 0000:2f:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu]) [ 2.150886] hub 5-3.1:1.0: USB hub found [ 2.151990] hub 5-3.1:1.0: 4 ports detected [ 2.291017] [drm] kiq ring mec 2 pipe 1 q 0 [ 2.293053] [drm] VCN decode and encode initialized successfully(under DPG Mode). [ 2.293176] [drm] JPEG decode initialized successfully. [ 2.293867] kfd kfd: amdgpu: Allocated 3969056 bytes on gart [ 2.312224] memmap_init_zone_device initialised 2097152 pages in 7ms [ 2.312226] amdgpu: HMM registered 8176MB device memory [ 2.312267] amdgpu: SRAT table not found [ 2.312267] amdgpu: Virtual CRAT table created for GPU [ 2.312338] amdgpu: Topology: Add dGPU node [0x731f:0x1002] [ 2.312339] kfd kfd: amdgpu: added device 1002:731f [ 2.312352] amdgpu 0000:2f:00.0: amdgpu: SE 2, SH per SE 2, CU per SH 10, active_cu_number 40 [ 2.312386] amdgpu 0000:2f:00.0: amdgpu: ring gfx_0.0.0 uses VM inv eng 0 on hub 0 [ 2.312387] amdgpu 0000:2f:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0 [ 2.312388] amdgpu 0000:2f:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0 [ 2.312388] amdgpu 0000:2f:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0 [ 2.312389] amdgpu 0000:2f:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0 [ 2.312389] amdgpu 0000:2f:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0 [ 2.312390] amdgpu 0000:2f:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0 [ 2.312390] amdgpu 0000:2f:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0 [ 2.312391] amdgpu 0000:2f:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0 [ 2.312391] amdgpu 0000:2f:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0 [ 2.312392] amdgpu 0000:2f:00.0: amdgpu: ring sdma0 uses VM inv eng 12 on hub 0 [ 2.312392] amdgpu 0000:2f:00.0: amdgpu: ring sdma1 uses VM inv eng 13 on hub 0 [ 2.312393] amdgpu 0000:2f:00.0: amdgpu: ring vcn_dec uses VM inv eng 0 on hub 1 [ 2.312394] amdgpu 0000:2f:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 1 on hub 1 [ 2.312394] amdgpu 0000:2f:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 4 on hub 1 [ 2.312395] amdgpu 0000:2f:00.0: amdgpu: ring jpeg_dec uses VM inv eng 5 on hub 1 [ 2.313665] [drm] Initialized amdgpu 3.44.0 20150101 for 0000:2f:00.0 on minor 0 [ 2.318911] fbcon: amdgpudrmfb (fb0) is primary device [ 2.418875] Console: switching to colour frame buffer device 640x90 [ 2.434395] amdgpu 0000:2f:00.0: [drm] fb0: amdgpudrmfb frame buffer device [ 2.452770] setfont (5258) used greatest stack depth: 11784 bytes left [ 2.465507] usb 5-3.1.3: new full-speed USB device number 5 using xhci_hcd [ 2.505641] XFS (sda1): Mounting V5 Filesystem [ 2.506333] XFS (sdb1): Mounting V5 Filesystem [ 2.519227] XFS (sdb1): Ending clean mount [ 2.520418] xfs filesystem being mounted at /mnt/gms1 supports timestamps until 2038 (0x7fffffff) [ 2.580752] usb 5-3.1.3: New USB device found, idVendor=046d, idProduct=c092, bcdDevice=52.00 [ 2.580755] usb 5-3.1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3 [ 2.580756] usb 5-3.1.3: Product: G102 LIGHTSYNC Gaming Mouse [ 2.580757] usb 5-3.1.3: Manufacturer: Logitech [ 2.580758] usb 5-3.1.3: SerialNumber: 2071379C3632 [ 2.673851] input: Logitech G102 LIGHTSYNC Gaming Mouse as /devices/pci0000:00/0000:00:08.1/0000:31:00.3/usb5/5-3/5-3.1/5-3.1.3/5-3.1.3:1.0/0003:046D:C092.0004/input/input22 [ 2.673943] hid-generic 0003:046D:C092.0004: input,hidraw3: USB HID v1.11 Mouse [Logitech G102 LIGHTSYNC Gaming Mouse] on usb-0000:31:00.3-3.1.3/input0 [ 2.680891] input: Logitech G102 LIGHTSYNC Gaming Mouse Keyboard as /devices/pci0000:00/0000:00:08.1/0000:31:00.3/usb5/5-3/5-3.1/5-3.1.3/5-3.1.3:1.1/0003:046D:C092.0005/input/input23 [ 2.732892] hid-generic 0003:046D:C092.0005: input,hiddev98,hidraw4: USB HID v1.11 Keyboard [Logitech G102 LIGHTSYNC Gaming Mouse] on usb-0000:31:00.3-3.1.3/input1 [ 2.814162] XFS (sda1): Ending clean mount [ 2.816551] xfs filesystem being mounted at /mnt/wind supports timestamps until 2038 (0x7fffffff) [ 2.931495] RTL8226 2.5Gbps PHY r8169-0-2700:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2700:00, irq=MAC) [ 3.097537] r8169 0000:27:00.0 enp39s0: Link is Down [ 3.283615] br0: port 1(wlan0) entered blocking state [ 3.283618] br0: port 1(wlan0) entered disabled state [ 3.283658] device wlan0 entered promiscuous mode [ 3.283681] br0: port 1(wlan0) entered blocking state [ 3.283682] br0: port 1(wlan0) entered forwarding state [ 3.283798] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready [ 3.288931] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready [ 3.453491] r8169 0000:27:00.0: invalid VPD tag 0x00 (size 0) at offset 0; assume missing optional EEPROM [ 5.901226] r8169 0000:27:00.0 enp39s0: Link is Up - 1Gbps/Full - flow control off [ 5.901236] IPv6: ADDRCONF(NETDEV_CHANGE): enp39s0: link becomes ready [ 7.993381] systemd-udevd (1466) used greatest stack depth: 11272 bytes left [ 876.422920] ***BAD SIBLING*** index 104046 offset 40 [ 876.422922] node ffffa0f3a6367b50 offset 25 parent ffffa0f37bd7a480 shift 0 count 64 values 8 array ffffa0f1fab08dc0 list ffffa0f3a6367b68 ffffa0f3a6367b68 marks 0 0 0 [ 876.422926] BUG: kernel NULL pointer dereference, address: 0000000000000082 [ 876.422928] #PF: supervisor read access in kernel mode [ 876.422929] #PF: error_code(0x0000) - not-present page [ 876.422930] PGD 0 P4D 0 [ 876.422931] Oops: 0000 [#1] PREEMPT SMP NOPTI [ 876.422933] CPU: 19 PID: 8313 Comm: deluge-gtk Not tainted 5.17.0-rc4_ap_test-00163-g793917d997df-dirty #3 [ 876.422934] Hardware name: Micro-Star International Co., Ltd. MS-7C35/MEG X570 UNIFY (MS-7C35), BIOS A.C3 03/15/2022 [ 876.422935] RIP: 0010:next_uptodate_page+0x40/0x1e0 [ 876.422939] Code: 0f 84 2f 01 00 00 48 81 ff 06 04 00 00 0f 84 a3 00 00 00 48 81 ff 02 04 00 00 0f 84 22 01 00 00 40 f6 c7 01 0f 85 8c 00 00 00 <48> 8b 07 a8 01 0f 85 81 00 00 00 8b 47 34 85 c0 74 7a 8d 50 01 4c [ 876.422940] RSP: 0000:ffffbf0704aefce8 EFLAGS: 00010246 [ 876.422942] RAX: 0000000000000082 RBX: ffffbf0704aefd40 RCX: 000000000001967d [ 876.422942] RDX: ffffbf0704aefd40 RSI: ffffa0f1fab08db8 RDI: 0000000000000082 [ 876.422943] RBP: ffffa0f1fab08db8 R08: 00000000ffffdfff R09: 00000000ffffdfff [ 876.422944] R10: ffffffff9ee72dc0 R11: ffffffff9ee72dc0 R12: 000000000001967d [ 876.422944] R13: ffffa0f3cc1c06c0 R14: ffffa0f1fab08db8 R15: 000000000001966e [ 876.422945] FS: 00007f8971ffb6c0(0000) GS:ffffa0f87eec0000(0000) knlGS:0000000000000000 [ 876.422946] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 876.422947] CR2: 0000000000000082 CR3: 000000010fada000 CR4: 0000000000750ee0 [ 876.422947] PKRU: 55555554 [ 876.422948] Call Trace: [ 876.422949] <TASK> [ 876.422951] filemap_map_pages+0xa3/0x570 [ 876.422954] xfs_filemap_map_pages+0x3f/0x60 [ 876.422957] __handle_mm_fault+0xfbe/0x15c0 [ 876.422959] ? __hrtimer_init+0xd0/0xd0 [ 876.422963] handle_mm_fault+0xbc/0x280 [ 876.422964] do_user_addr_fault+0x1bc/0x640 [ 876.422968] exc_page_fault+0x60/0x140 [ 876.422971] ? asm_exc_page_fault+0x8/0x30 [ 876.422973] asm_exc_page_fault+0x1e/0x30 [ 876.422975] RIP: 0033:0x7f89ab02e409 [ 876.422977] Code: 66 66 2e 0f 1f 84 00 00 00 00 00 66 66 2e 0f 1f 84 00 00 00 00 00 66 66 2e 0f 1f 84 00 00 00 00 00 48 89 f8 48 83 fa 20 72 27 <c5> fe 6f 06 48 83 fa 40 0f 87 a9 00 00 00 c5 fe 6f 4c 16 e0 c5 fe [ 876.422978] RSP: 002b:00007f8971ffa908 EFLAGS: 00010202 [ 876.422979] RAX: 00007f895c008900 RBX: 0000000000000000 RCX: 00007f8971ffaa90 [ 876.422980] RDX: 0000000000004000 RSI: 00007f60e9fd2b7d RDI: 00007f895c008900 [ 876.422981] RBP: 00007f8971ffa928 R08: 00000000638a7d7a R09: 0000000000000000 [ 876.422981] R10: 0000000000000008 R11: 0000000000000246 R12: 00007f895c094a10 [ 876.422982] R13: 00007f89640016d0 R14: 0000000019670b7d R15: 0000000000004000 [ 876.422984] </TASK> [ 876.422984] Modules linked in: overlay xt_addrtype amdgpu drm_ttm_helper ttm gpu_sched drm_kms_helper backlight iwlmvm syscopyarea mac80211 sysfillrect libarc4 sysimgblt fb_sys_fops iwlwifi i2c_piix4 cfg80211 k10temp fuse configfs efivarfs [ 876.422994] CR2: 0000000000000082 [ 876.422995] ---[ end trace 0000000000000000 ]--- [ 876.422996] RIP: 0010:next_uptodate_page+0x40/0x1e0 [ 876.422998] Code: 0f 84 2f 01 00 00 48 81 ff 06 04 00 00 0f 84 a3 00 00 00 48 81 ff 02 04 00 00 0f 84 22 01 00 00 40 f6 c7 01 0f 85 8c 00 00 00 <48> 8b 07 a8 01 0f 85 81 00 00 00 8b 47 34 85 c0 74 7a 8d 50 01 4c [ 876.422999] RSP: 0000:ffffbf0704aefce8 EFLAGS: 00010246 [ 876.423000] RAX: 0000000000000082 RBX: ffffbf0704aefd40 RCX: 000000000001967d [ 876.423001] RDX: ffffbf0704aefd40 RSI: ffffa0f1fab08db8 RDI: 0000000000000082 [ 876.423002] RBP: ffffa0f1fab08db8 R08: 00000000ffffdfff R09: 00000000ffffdfff [ 876.423003] R10: ffffffff9ee72dc0 R11: ffffffff9ee72dc0 R12: 000000000001967d [ 876.423003] R13: ffffa0f3cc1c06c0 R14: ffffa0f1fab08db8 R15: 000000000001966e [ 876.423004] FS: 00007f8971ffb6c0(0000) GS:ffffa0f87eec0000(0000) knlGS:0000000000000000 [ 876.423005] CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 [ 876.423006] CR2: 0000000000000082 CR3: 000000010fada000 CR4: 0000000000750ee0 [ 876.423007] PKRU: 55555554 [ 1169.897512] nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based firewall rule not found. Use the iptables CT target to attach helpers instead.