You are not logged in.

#1 2021-09-06 18:26:11

jairot
Member
Registered: 2021-09-06
Posts: 7

[SOLVED] Bluetooth with rtl8822ce card is not working

Hello, I'm using an HP Laptop 17-cn0045cl that uses the Realtek rtl8822ce card as a Wifi-Bluetooth combo. Currently only the WIFI is working properly, but Linux doesn't recognize the Bluetooth side of things.

I found this solved thread in which they discuss the issue and use a patch to fix it, but for the love of me I am unable to find the file that I'm supposed to modify. The file and line in question are net/bluetooth/hci_core.c line 766

change it from

if (hdev->commands[35] & 0x40) {

to

if (hdev->commands[35] & 0x04) {

They discuss there that the issue should be fixed with an update around the 5.9.11 versions of the kernel, I'm running 5.13.13 and the problem persists.

I have also tried to run the card with the rtl88x2ce-dkms driver from the AUR, but during installation it prompted an error regarding the kernel and then both my Bluetooth and my WIFI stopped working, so I unistalled it. The error message reads:

==> dkms install --no-depmod -m rtl88x2ce -v 5.7.3_35403 -k 5.13.13-arch1-1
Error! Bad return status for module build on kernel: 5.13.13-arch1-1 (x86_64)
Consult /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/make.log for more information.
==> Warning, `dkms install --no-depmod -m rtl88x2ce -v 5.7.3_35403 -k 5.13.13-arch1-1' returned 10

Any help or guidance would be greatly appreciated.

Last edited by jairot (2021-09-07 04:22:47)

Offline

#2 2021-09-06 18:44:08

Slithery
Administrator
From: Norfolk, UK
Registered: 2013-12-01
Posts: 5,776

Re: [SOLVED] Bluetooth with rtl8822ce card is not working

jairot wrote:
Consult /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/make.log for more information.

No, it didn't "fix" anything. It just shifted the brokeness one space to the right. - jasonwryan
Closing -- for deletion; Banning -- for muppetry. - jasonwryan

aur - dotfiles

Offline

#3 2021-09-06 20:40:42

jairot
Member
Registered: 2021-09-06
Posts: 7

Re: [SOLVED] Bluetooth with rtl8822ce card is not working

After reading the make.log it seems like the issue are the following things that aren't being run properly:

 14 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_mlme.c: In function 'rtw_drv_scan_by_self':
 15 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_mlme.c:3139:17: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
 16  3139 |                 else
 17     | |                 ^~~~
 18 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_mlme.c:3142:25: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'else'
 19  3142 |                         goto exit;
 20     | |                         ^~~~
 27 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_mlme_ext.c: In function 'rtw_txpwr_init_regd':
 28 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_mlme_ext.c:260:20: warning: this statement may fall through [-Wimplicit-fallthrough=]
 29   260 |                 if (rfctl->regd_name)
 30     | |                    ^
 31 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_mlme_ext.c:262:9: note: here
 32   262 |         default:
 33     | |         ^~~~~~~
 34 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_mlme_ext.c: In function 'mgt_dispatcher':
 35 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_mlme_ext.c:1345:38: warning: this statement may fall through [-Wimplicit-fallthrough=]
 36  1345 |                         ptable->func = &OnAuthClient;
 37     | |                         ~~~~~~~~~~~~~^~~~~~~~~~~~~~~
 38 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_mlme_ext.c:1347:9: note: here
 39  1347 |         case WIFI_ASSOCREQ:
 40     | |         ^~~~
 50 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_recv.c: In function 'validate_mp_recv_frame':
 51 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_recv.c:3558:25: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
 52  3558 |                         for (i = 0; i < precv_frame->u.hdr.len; i = i + 8)
 53     | |                         ^~~
 54 In file included from /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/include/drv_types.h:60,
 55     |   |   |   |from /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_recv.c:17:
 56 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/include/rtw_debug.h:52:33: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
 57    52 |         #define RTW_INFO(x,...) do {} while (0)
 58     | |                                 ^~
 59 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/rtw_recv.c:3561:33: note: in expansion of macro 'RTW_INFO'
 60  3561 |                                 RTW_INFO("#############################\n");
 61     | |                                 ^~~~~~~~
 77 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/efuse/rtw_efuse.c: In function 'rtw_efuse_analyze':
 78 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/efuse/rtw_efuse.c:901:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
 79   901 |                 if (i % 16 == 0)
 80     | |                 ^~
 81 In file included from /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/include/drv_types.h:60,
 82     |   |   |   |from /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/efuse/rtw_efuse.c:17:
 83 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/include/rtw_debug.h:231:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
 84   231 |         do {\
 85     | |         ^~
 86 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/core/efuse/rtw_efuse.c:903:25: note: in expansion of macro '_RTW_PRINT_SEL'
 87   903 |                         _RTW_PRINT_SEL(RTW_DBGDUMP, "%02X%s"
 88     | |                         ^~~~~~~~~~~~~~
 92 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c: In function 'isFileReadable':
 93 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c:2203:25: error: implicit declaration of function 'get_fs'; did you mean 'get_sa'? [-Werror=implicit-function
 94  2203 |                 oldfs = get_fs();
 95     | |                         ^~~~~~
 96     | |                         get_sa
 97 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c:2203:25: error: incompatible types when assigning to type 'mm_segment_t' from type 'int'
 98 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c:2205:17: error: implicit declaration of function 'set_fs'; did you mean 'sget_fc'? [-Werror=implicit-functio
 99  2205 |                 set_fs(KERNEL_DS);
100     | |                 ^~~~~~
101     | |                 sget_fc
102 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c:2205:24: error: 'KERNEL_DS' undeclared (first use in this function); did you mean 'KERNFS_NS'?
103  2205 |                 set_fs(KERNEL_DS);
104     | |                        ^~~~~~~~~
105     | |                        KERNFS_NS
106 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c:2205:24: note: each undeclared identifier is reported only once for each function it appears in
107 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c: In function 'retriveFromFile':
108 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c:2245:33: error: incompatible types when assigning to type 'mm_segment_t' from type 'int'
109  2245 |                         oldfs = get_fs();
110     | |                                 ^~~~~~
111 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c:2247:32: error: 'KERNEL_DS' undeclared (first use in this function); did you mean 'KERNFS_NS'?
112  2247 |                         set_fs(KERNEL_DS);
113     | |                                ^~~~~~~~~
114     | |                                KERNFS_NS
115 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c: In function 'storeToFile':
116 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c:2284:33: error: incompatible types when assigning to type 'mm_segment_t' from type 'int'
117  2284 |                         oldfs = get_fs();
118     | |                                 ^~~~~~
119 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.c:2286:32: error: 'KERNEL_DS' undeclared (first use in this function); did you mean 'KERNFS_NS'?
120  2286 |                         set_fs(KERNEL_DS);
121     | |                                ^~~~~~~~~
122     | |                                KERNFS_NS
124 cc1: some warnings being treated as errors
125 make[2]: *** [scripts/Makefile.build:273: /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/osdep_service.o] Error 1
126 make[2]: *** Waiting for unfinished jobs....
127 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/ioctl_linux.c: In function 'rtw_wowlan_set_pattern':
128 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/ioctl_linux.c:8045:9: warning: ISO C90 forbids variable length array 'input' [-Wvla]
129  8045 |         u8 input[wrqu->data.length];
130     | |         ^~
131 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/ioctl_linux.c: In function 'rtw_priv_mp_get':
132 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/ioctl_linux.c:10210:26: warning: this statement may fall through [-Wimplicit-fallthrough=]
133 10210 |                 status = rtw_mp_dpk(dev, info, wdata, extra);
134     | |                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
135 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/recv_linux.c: In function 'napi_recv':
136 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/recv_linux.c:358:76: error: 'GRO_DROP' undeclared (first use in this function)
137   358 |                         if (rtw_napi_gro_receive(&padapter->napi, pskb) != GRO_DROP)
138     | |                                                                            ^~~~~~~~
139 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/recv_linux.c:358:76: note: each undeclared identifier is reported only once for each function it appears in
140 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/ioctl_linux.c:10211:9: note: here
141 10211 |         default:
142     | |         ^~~~~~~
143 make[2]: *** [scripts/Makefile.build:273: /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/recv_linux.o] Error 1
144 make[1]: *** [Makefile:1862: /var/lib/dkms/rtl88x2ce/5.7.3_35403/build] Error 2
145 make[1]: Leaving directory '/usr/lib/modules/5.13.13-arch1-1/build'
146 make: *** [Makefile:2296: modules] Error 2

Most seem to be typos that corrected themselves, but others like

127 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/ioctl_linux.c: In function 'rtw_wowlan_set_pattern':
128 /var/lib/dkms/rtl88x2ce/5.7.3_35403/build/os_dep/linux/ioctl_linux.c:8045:9: warning: ISO C90 forbids variable length array 'input' [-Wvla]
129  8045 |         u8 input[wrqu->data.length];
130     | |         ^~

I have not a clue how to solve, I don't know C and I wouldn't like to break my computer by incompetence, should I go try editing these files to see if that fixes things up?

Or on the patching the Kernel side of things where are those files usually stored?

Offline

#4 2021-09-06 21:03:22

loqs
Member
Registered: 2014-03-06
Posts: 19,001

Re: [SOLVED] Bluetooth with rtl8822ce card is not working

jairot wrote:

Hello, I'm using an HP Laptop 17-cn0045cl that uses the Realtek rtl8822ce card as a Wifi-Bluetooth combo. Currently only the WIFI is working properly, but Linux doesn't recognize the Bluetooth side of things.

I found this solved thread in which they discuss the issue and use a patch to fix it, but for the love of me I am unable to find the file that I'm supposed to modify. The file and line in question are net/bluetooth/hci_core.c line 766

Fix is in commit a31489d2a368d2f9225ed6a6f595c63bc7d10de8 applied in 5.11 and above.
Please post the output of dmesg and rfkill.

Offline

#5 2021-09-06 21:10:42

jairot
Member
Registered: 2021-09-06
Posts: 7

Re: [SOLVED] Bluetooth with rtl8822ce card is not working

Output of dmesg:

[    0.000000] Linux version 5.13.13-arch1-1 (linux@archlinux) (gcc (GCC) 11.1.0, GNU ld (GNU Binutils) 2.36.1) #1 SMP PREEMPT Thu, 26 Aug 2021 19:14:36 +0000
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=d5e6c84c-a11a-4647-ab9c-e8741763b661 rw loglevel=3 quiet
[    0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[    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 0x020: 'AVX-512 opmask'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256'
[    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[5]:  832, xstate_sizes[5]:   64
[    0.000000] x86/fpu: xstate_offset[6]:  896, xstate_sizes[6]:  512
[    0.000000] x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024
[    0.000000] x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]:    8
[    0.000000] x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003b772fff] usable
[    0.000000] BIOS-e820: [mem 0x000000003b773000-0x000000003e872fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000003e873000-0x000000003e93efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000003e93f000-0x000000003ea39fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000003ea3a000-0x00000000437fefff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000437ff000-0x00000000437fffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000043800000-0x0000000049ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000004a200000-0x000000004a3fffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000004b000000-0x00000000503fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000004afbfffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] e820: update [mem 0x36b28018-0x36b36a57] usable ==> usable
[    0.000000] e820: update [mem 0x36b28018-0x36b36a57] usable ==> usable
[    0.000000] extended physical RAM map:
[    0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[    0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000036b28017] usable
[    0.000000] reserve setup_data: [mem 0x0000000036b28018-0x0000000036b36a57] usable
[    0.000000] reserve setup_data: [mem 0x0000000036b36a58-0x000000003b772fff] usable
[    0.000000] reserve setup_data: [mem 0x000000003b773000-0x000000003e872fff] reserved
[    0.000000] reserve setup_data: [mem 0x000000003e873000-0x000000003e93efff] ACPI data
[    0.000000] reserve setup_data: [mem 0x000000003e93f000-0x000000003ea39fff] ACPI NVS
[    0.000000] reserve setup_data: [mem 0x000000003ea3a000-0x00000000437fefff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000437ff000-0x00000000437fffff] usable
[    0.000000] reserve setup_data: [mem 0x0000000043800000-0x0000000049ffffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000004a200000-0x000000004a3fffff] reserved
[    0.000000] reserve setup_data: [mem 0x000000004b000000-0x00000000503fffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] reserve setup_data: [mem 0x0000000100000000-0x00000004afbfffff] usable
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi: ACPI=0x3e93e000 ACPI 2.0=0x3e93e014 TPMFinalLog=0x3e9c5000 SMBIOS=0x435a1000 SMBIOS 3.0=0x435a0000 MEMATTR=0x36b7a518 ESRT=0x39ccf398 RNG=0x435a4b18 TPMEventLog=0x36b73018
[    0.000000] efi: seeding entropy pool
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: HP HP Laptop 17-cn0xxx/883D, BIOS F.04 04/01/2021
[    0.000000] tsc: Detected 2800.000 MHz processor
[    0.000000] tsc: Detected 2803.200 MHz TSC
[    0.000536] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000538] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000541] last_pfn = 0x4afc00 max_arch_pfn = 0x400000000
[    0.000654] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT
[    0.001416] last_pfn = 0x43800 max_arch_pfn = 0x400000000
[    0.013114] esrt: Reserving ESRT space from 0x0000000039ccf398 to 0x0000000039ccf3d0.
[    0.013117] e820: update [mem 0x39ccf000-0x39ccffff] usable ==> reserved
[    0.013129] Using GB pages for direct mapping
[    0.013257] Secure boot disabled
[    0.013257] RAMDISK: [mem 0x35e54000-0x36628fff]
[    0.013259] ACPI: Early table checksum verification disabled
[    0.013261] ACPI: RSDP 0x000000003E93E014 000024 (v02 HPQOEM)
[    0.013264] ACPI: XSDT 0x000000003E93D728 00012C (v01 HPQOEM SLIC-MPC 01072009 AMI  01000013)
[    0.013267] ACPI: FACP 0x000000003E938000 000114 (v06 HPQOEM SLIC-MPC 01072009 HP   01000013)
[    0.013271] ACPI: DSDT 0x000000003E8D6000 0612B6 (v02 HPQOEM 883D     01072009 ACPI 20191018)
[    0.013273] ACPI: FACS 0x000000003EA36000 000040
[    0.013275] ACPI: MCFG 0x000000003E93C000 00003C (v01 HPQOEM 883D     01072009 HP   00000097)
[    0.013276] ACPI: SSDT 0x000000003E939000 00255D (v02 HPQOEM 883D     00003000 ACPI 20191018)
[    0.013278] ACPI: FIDT 0x000000003E8D5000 00009C (v01 HPQOEM 883D     01072009 HP   00010013)
[    0.013280] ACPI: MSDM 0x000000003E8D4000 000055 (v03 HPQOEM SLIC-MPC 00000001 HP   00010013)
[    0.013282] ACPI: SSDT 0x000000003E8D1000 002D8F (v02 HPQOEM 883D     00001000 ACPI 20191018)
[    0.013284] ACPI: SSDT 0x000000003E8CE000 002EBF (v02 HPQOEM 883D     00003000 ACPI 20191018)
[    0.013286] ACPI: SSDT 0x000000003E8CA000 003378 (v02 HPQOEM 883D     00003000 ACPI 20191018)
[    0.013287] ACPI: HPET 0x000000003E8C9000 000038 (v01 HPQOEM 883D     01072009 HP   01000013)
[    0.013289] ACPI: APIC 0x000000003E8C8000 00012C (v04 HPQOEM 883D     01072009 HP   01000013)
[    0.013291] ACPI: SSDT 0x000000003E8C4000 003D22 (v02 HPQOEM 883D     00001000 ACPI 20191018)
[    0.013293] ACPI: SSDT 0x000000003E8C3000 000E7C (v02 HPQOEM 883D     00001000 ACPI 20191018)
[    0.013295] ACPI: NHLT 0x000000003E8C1000 001B84 (v00 HPQOEM 883D     01072009 HP   01000013)
[    0.013296] ACPI: LPIT 0x000000003E8C0000 0000CC (v01 HPQOEM 883D     01072009 HP   01000013)
[    0.013298] ACPI: SSDT 0x000000003E8BC000 002720 (v02 HPQOEM 883D     00001000 ACPI 20191018)
[    0.013300] ACPI: SSDT 0x000000003E8BB000 00012A (v02 HPQOEM 883D     00000000 ACPI 20191018)
[    0.013302] ACPI: DBGP 0x000000003E8BA000 000034 (v01 HPQOEM 883D     01072009 HP   01000013)
[    0.013303] ACPI: DBG2 0x000000003E8B9000 000054 (v00 HPQOEM 883D     01072009 HP   01000013)
[    0.013305] ACPI: SSDT 0x000000003E8B7000 00164A (v02 HPQOEM 883D     00001000 ACPI 20191018)
[    0.013307] ACPI: DMAR 0x000000003E8B6000 000088 (v02 HPQOEM 883D     00000002 HP   01000013)
[    0.013309] ACPI: SSDT 0x000000003E8B5000 000BB3 (v02 HPQOEM 883D     00000000 ACPI 20191018)
[    0.013311] ACPI: SSDT 0x000000003E8B4000 0000AE (v02 HPQOEM 883D     00001000 ACPI 20191018)
[    0.013313] ACPI: SSDT 0x000000003E8B3000 000144 (v02 HPQOEM 883D     00001000 ACPI 20191018)
[    0.013314] ACPI: SSDT 0x000000003E8B2000 000060 (v01 HPQOEM 883D     00000001 ACPI 20191018)
[    0.013317] ACPI: UEFI 0x000000003E9A5000 00063A (v01 HPQOEM 883D     00000000 HP   00000000)
[    0.013318] ACPI: UEFI 0x000000003E9A4000 00005C (v01 HPQOEM 883D     00000000 HP   00000000)
[    0.013320] ACPI: TPM2 0x000000003E8B1000 00004C (v04 HPQOEM 883D     00000001 HP   00000000)
[    0.013322] ACPI: SSDT 0x000000003E8AE000 0021CF (v01 HPQOEM 883D     00001000 ACPI 20191018)
[    0.013324] ACPI: PTDT 0x000000003E8AD000 000CFE (v00 HPQOEM 883D     00000005 HP   0100000D)
[    0.013325] ACPI: WSMT 0x000000003E8BF000 000028 (v01 HPQOEM 883D     01072009 HP   00010013)
[    0.013327] ACPI: SSDT 0x000000003E8AC000 000054 (v01 HPQOEM 883D     00000001 ACPI 20191018)
[    0.013329] ACPI: FPDT 0x000000003E8AB000 000044 (v01 HPQOEM 883D     01072009 HP   01000013)
[    0.013331] ACPI: BGRT 0x000000003E8AA000 000038 (v01 HPQOEM 883D     01072009 HP   00010013)
[    0.013332] ACPI: Reserving FACP table memory at [mem 0x3e938000-0x3e938113]
[    0.013333] ACPI: Reserving DSDT table memory at [mem 0x3e8d6000-0x3e9372b5]
[    0.013334] ACPI: Reserving FACS table memory at [mem 0x3ea36000-0x3ea3603f]
[    0.013334] ACPI: Reserving MCFG table memory at [mem 0x3e93c000-0x3e93c03b]
[    0.013335] ACPI: Reserving SSDT table memory at [mem 0x3e939000-0x3e93b55c]
[    0.013335] ACPI: Reserving FIDT table memory at [mem 0x3e8d5000-0x3e8d509b]
[    0.013336] ACPI: Reserving MSDM table memory at [mem 0x3e8d4000-0x3e8d4054]
[    0.013336] ACPI: Reserving SSDT table memory at [mem 0x3e8d1000-0x3e8d3d8e]
[    0.013337] ACPI: Reserving SSDT table memory at [mem 0x3e8ce000-0x3e8d0ebe]
[    0.013337] ACPI: Reserving SSDT table memory at [mem 0x3e8ca000-0x3e8cd377]
[    0.013337] ACPI: Reserving HPET table memory at [mem 0x3e8c9000-0x3e8c9037]
[    0.013338] ACPI: Reserving APIC table memory at [mem 0x3e8c8000-0x3e8c812b]
[    0.013338] ACPI: Reserving SSDT table memory at [mem 0x3e8c4000-0x3e8c7d21]
[    0.013339] ACPI: Reserving SSDT table memory at [mem 0x3e8c3000-0x3e8c3e7b]
[    0.013339] ACPI: Reserving NHLT table memory at [mem 0x3e8c1000-0x3e8c2b83]
[    0.013340] ACPI: Reserving LPIT table memory at [mem 0x3e8c0000-0x3e8c00cb]
[    0.013340] ACPI: Reserving SSDT table memory at [mem 0x3e8bc000-0x3e8be71f]
[    0.013341] ACPI: Reserving SSDT table memory at [mem 0x3e8bb000-0x3e8bb129]
[    0.013341] ACPI: Reserving DBGP table memory at [mem 0x3e8ba000-0x3e8ba033]
[    0.013342] ACPI: Reserving DBG2 table memory at [mem 0x3e8b9000-0x3e8b9053]
[    0.013342] ACPI: Reserving SSDT table memory at [mem 0x3e8b7000-0x3e8b8649]
[    0.013343] ACPI: Reserving DMAR table memory at [mem 0x3e8b6000-0x3e8b6087]
[    0.013343] ACPI: Reserving SSDT table memory at [mem 0x3e8b5000-0x3e8b5bb2]
[    0.013344] ACPI: Reserving SSDT table memory at [mem 0x3e8b4000-0x3e8b40ad]
[    0.013344] ACPI: Reserving SSDT table memory at [mem 0x3e8b3000-0x3e8b3143]
[    0.013345] ACPI: Reserving SSDT table memory at [mem 0x3e8b2000-0x3e8b205f]
[    0.013345] ACPI: Reserving UEFI table memory at [mem 0x3e9a5000-0x3e9a5639]
[    0.013346] ACPI: Reserving UEFI table memory at [mem 0x3e9a4000-0x3e9a405b]
[    0.013346] ACPI: Reserving TPM2 table memory at [mem 0x3e8b1000-0x3e8b104b]
[    0.013347] ACPI: Reserving SSDT table memory at [mem 0x3e8ae000-0x3e8b01ce]
[    0.013347] ACPI: Reserving PTDT table memory at [mem 0x3e8ad000-0x3e8adcfd]
[    0.013348] ACPI: Reserving WSMT table memory at [mem 0x3e8bf000-0x3e8bf027]
[    0.013348] ACPI: Reserving SSDT table memory at [mem 0x3e8ac000-0x3e8ac053]
[    0.013349] ACPI: Reserving FPDT table memory at [mem 0x3e8ab000-0x3e8ab043]
[    0.013349] ACPI: Reserving BGRT table memory at [mem 0x3e8aa000-0x3e8aa037]
[    0.013358] ACPI: Local APIC address 0xfee00000
[    0.013503] No NUMA configuration found
[    0.013503] Faking a node at [mem 0x0000000000000000-0x00000004afbfffff]
[    0.013505] NODE_DATA(0) allocated [mem 0x4afbfc000-0x4afbfffff]
[    0.013520] Zone ranges:
[    0.013521]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.013522]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.013523]   Normal   [mem 0x0000000100000000-0x00000004afbfffff]
[    0.013524]   Device   empty
[    0.013524] Movable zone start for each node
[    0.013525] Early memory node ranges
[    0.013525]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.013526]   node   0: [mem 0x0000000000100000-0x000000003b772fff]
[    0.013526]   node   0: [mem 0x00000000437ff000-0x00000000437fffff]
[    0.013527]   node   0: [mem 0x0000000100000000-0x00000004afbfffff]
[    0.013529] Initmem setup node 0 [mem 0x0000000000001000-0x00000004afbfffff]
[    0.013529] On node 0 totalpages: 4109074
[    0.013530]   DMA zone: 64 pages used for memmap
[    0.013531]   DMA zone: 158 pages reserved
[    0.013531]   DMA zone: 3998 pages, LIFO batch:0
[    0.013532]   DMA32 zone: 3742 pages used for memmap
[    0.013532]   DMA32 zone: 239476 pages, LIFO batch:63
[    0.013533]   Normal zone: 60400 pages used for memmap
[    0.013533]   Normal zone: 3865600 pages, LIFO batch:63
[    0.013535] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.013556] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.014885] On node 0, zone DMA32: 32908 pages in unavailable ranges
[    0.032092] On node 0, zone Normal: 18432 pages in unavailable ranges
[    0.032098] On node 0, zone Normal: 1024 pages in unavailable ranges
[    0.032118] Reserving Intel graphics memory at [mem 0x4c800000-0x503fffff]
[    0.032684] ACPI: PM-Timer IO Port: 0x1808
[    0.032686] ACPI: Local APIC address 0xfee00000
[    0.032690] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.032691] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.032691] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.032692] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.032692] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.032692] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.032693] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.032693] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.032694] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.032694] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.032695] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.032695] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.032695] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.032696] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.032696] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.032697] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.032732] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.032734] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.032735] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.032736] ACPI: IRQ0 used by override.
[    0.032737] ACPI: IRQ9 used by override.
[    0.032738] Using ACPI (MADT) for SMP configuration information
[    0.032739] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.032745] e820: update [mem 0x3805f000-0x3806cfff] usable ==> reserved
[    0.032750] TSC deadline timer available
[    0.032751] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.032762] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.032764] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[    0.032765] PM: hibernation: Registered nosave memory: [mem 0x36b28000-0x36b28fff]
[    0.032766] PM: hibernation: Registered nosave memory: [mem 0x36b36000-0x36b36fff]
[    0.032767] PM: hibernation: Registered nosave memory: [mem 0x3805f000-0x3806cfff]
[    0.032768] PM: hibernation: Registered nosave memory: [mem 0x39ccf000-0x39ccffff]
[    0.032769] PM: hibernation: Registered nosave memory: [mem 0x3b773000-0x3e872fff]
[    0.032769] PM: hibernation: Registered nosave memory: [mem 0x3e873000-0x3e93efff]
[    0.032770] PM: hibernation: Registered nosave memory: [mem 0x3e93f000-0x3ea39fff]
[    0.032770] PM: hibernation: Registered nosave memory: [mem 0x3ea3a000-0x437fefff]
[    0.032771] PM: hibernation: Registered nosave memory: [mem 0x43800000-0x49ffffff]
[    0.032772] PM: hibernation: Registered nosave memory: [mem 0x4a000000-0x4a1fffff]
[    0.032772] PM: hibernation: Registered nosave memory: [mem 0x4a200000-0x4a3fffff]
[    0.032772] PM: hibernation: Registered nosave memory: [mem 0x4a400000-0x4affffff]
[    0.032773] PM: hibernation: Registered nosave memory: [mem 0x4b000000-0x503fffff]
[    0.032773] PM: hibernation: Registered nosave memory: [mem 0x50400000-0xbfffffff]
[    0.032774] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
[    0.032774] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfdffffff]
[    0.032775] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.032775] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.032775] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.032776] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.032776] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.032777] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
[    0.032777] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[    0.032777] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
[    0.032778] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.032778] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.032779] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.032780] [mem 0x50400000-0xbfffffff] available for PCI devices
[    0.032780] Booting paravirtualized kernel on bare hardware
[    0.032782] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.035909] setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:8 nr_node_ids:1
[    0.036017] percpu: Embedded 57 pages/cpu s196608 r8192 d28672 u262144
[    0.036022] pcpu-alloc: s196608 r8192 d28672 u262144 alloc=1*2097152
[    0.036023] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[    0.036035] Built 1 zonelists, mobility grouping on.  Total pages: 4044710
[    0.036036] Policy zone: Normal
[    0.036037] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=d5e6c84c-a11a-4647-ab9c-e8741763b661 rw loglevel=3 quiet
[    0.036483] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.036686] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.036785] mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
[    0.059701] Memory: 15957044K/16436296K available (14344K kernel code, 2050K rwdata, 9084K rodata, 1796K init, 4128K bss, 478992K reserved, 0K cma-reserved)
[    0.059704] random: get_random_u64 called from __kmem_cache_create+0x2a/0x580 with crng_init=0
[    0.059790] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.059797] ftrace: allocating 42290 entries in 166 pages
[    0.068585] ftrace: allocated 166 pages with 4 groups
[    0.068648] rcu: Preemptible hierarchical RCU implementation.
[    0.068648] rcu: 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.068649] rcu: 	RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=8.
[    0.068650] rcu: 	RCU priority boosting: priority 1 delay 500 ms.
[    0.068650] 	Trampoline variant of Tasks RCU enabled.
[    0.068651] 	Rude variant of Tasks RCU enabled.
[    0.068651] 	Tracing variant of Tasks RCU enabled.
[    0.068651] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.068652] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.070676] NR_IRQS: 20736, nr_irqs: 2048, preallocated irqs: 16
[    0.071098] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.071191] Console: colour dummy device 80x25
[    0.071200] printk: console [tty0] enabled
[    0.071213] ACPI: Core revision 20210331
[    0.071513] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 99544814920 ns
[    0.071620] APIC: Switch to symmetric I/O mode setup
[    0.071621] DMAR: Host address width 39
[    0.071622] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.071625] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[    0.071627] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.071631] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.071633] DMAR: RMRR base: 0x0000004c000000 end: 0x000000503fffff
[    0.071635] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
[    0.071636] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.071637] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.073180] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.073182] x2apic enabled
[    0.073211] Switched APIC routing to cluster x2apic.
[    0.077884] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.091572] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.091576] Calibrating delay loop (skipped), value calculated using timer frequency.. 5608.00 BogoMIPS (lpj=9344000)
[    0.091578] pid_max: default: 32768 minimum: 301
[    0.093359] LSM: Security Framework initializing
[    0.093365] landlock: Up and running.
[    0.093366] Yama: becoming mindful.
[    0.093370] LSM support for eBPF active
[    0.093400] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093422] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.093582] CPU0: Thermal monitoring enabled (TM1)
[    0.093583] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.093672] process: using mwait in idle threads
[    0.093673] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.093673] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.093675] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.093677] Spectre V2 : Mitigation: Enhanced IBRS
[    0.093677] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.093678] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.093679] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.096509] Freeing SMP alternatives memory: 36K
[    0.097458] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1499
[    0.097478] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i7-1165G7 @ 2.80GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.097580] Performance Events: PEBS fmt4+-baseline,  AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.097589] ... version:                5
[    0.097590] ... bit width:              48
[    0.097590] ... generic registers:      8
[    0.097591] ... value mask:             0000ffffffffffff
[    0.097591] ... max period:             00007fffffffffff
[    0.097591] ... fixed-purpose events:   4
[    0.097592] ... event mask:             0001000f000000ff
[    0.097650] rcu: Hierarchical SRCU implementation.
[    0.098120] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.098164] smp: Bringing up secondary CPUs ...
[    0.098226] x86: Booting SMP configuration:
[    0.098227] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.099058] smp: Brought up 1 node, 8 CPUs
[    0.099058] smpboot: Max logical packages: 1
[    0.099058] smpboot: Total of 8 processors activated (44869.00 BogoMIPS)
[    0.102138] devtmpfs: initialized
[    0.102138] x86/mm: Memory block size: 128MB
[    0.102170] PM: Registering ACPI NVS region [mem 0x3e93f000-0x3ea39fff] (1028096 bytes)
[    0.102170] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.102170] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.102170] pinctrl core: initialized pinctrl subsystem
[    0.102170] PM: RTC time: 17:20:39, date: 2021-09-06
[    0.102170] NET: Registered protocol family 16
[    0.102175] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.102280] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.102383] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.102387] audit: initializing netlink subsys (disabled)
[    0.102390] audit: type=2000 audit(1630948839.029:1): state=initialized audit_enabled=0 res=1
[    0.102390] thermal_sys: Registered thermal governor 'fair_share'
[    0.102390] thermal_sys: Registered thermal governor 'bang_bang'
[    0.102390] thermal_sys: Registered thermal governor 'step_wise'
[    0.102390] thermal_sys: Registered thermal governor 'user_space'
[    0.102390] thermal_sys: Registered thermal governor 'power_allocator'
[    0.102390] cpuidle: using governor ladder
[    0.102390] cpuidle: using governor menu
[    0.102390] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.102390] ACPI: bus type PCI registered
[    0.102390] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.102390] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
[    0.102390] PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
[    0.102390] PCI: Using configuration type 1 for base access
[    0.102390] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.102390] Kprobes globally optimized
[    0.102390] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.102390] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.104953] ACPI: Added _OSI(Module Device)
[    0.104954] ACPI: Added _OSI(Processor Device)
[    0.104955] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.104955] ACPI: Added _OSI(Processor Aggregator Device)
[    0.104956] ACPI: Added _OSI(Linux-Dell-Video)
[    0.104956] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.104957] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.163413] ACPI BIOS Error (bug): Failure creating named object [\_TZ.FN00], AE_ALREADY_EXISTS (20210331/dswload2-326)
[    0.163417] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20210331/psobject-220)
[    0.163419] ACPI: Skipping parse of AML opcode: PowerResource (0x5B84)
[    0.163421] ACPI BIOS Error (bug): Failure creating named object [\_TZ.FAN0], AE_ALREADY_EXISTS (20210331/dswload2-326)
[    0.163422] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20210331/psobject-220)
[    0.163423] ACPI: Skipping parse of AML opcode: Device (0x5B82)
[    0.163459] ACPI BIOS Error (bug): Failure creating named object [\_TZ.TZ00], AE_ALREADY_EXISTS (20210331/dswload2-326)
[    0.163461] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20210331/psobject-220)
[    0.163462] ACPI: Skipping parse of AML opcode: ThermalZone (0x5B85)
[    0.166741] ACPI: 16 ACPI AML tables successfully acquired and loaded
[    0.176072] ACPI: Dynamic OEM Table Load:
[    0.176079] ACPI: SSDT 0xFFFF93D3410CA400 0001CB (v02 PmRef  Cpu0Psd  00003000 INTL 20191018)
[    0.176783] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    0.178590] ACPI: Dynamic OEM Table Load:
[    0.178595] ACPI: SSDT 0xFFFF93D3410D5000 000394 (v02 PmRef  Cpu0Cst  00003001 INTL 20191018)
[    0.179451] ACPI: Dynamic OEM Table Load:
[    0.179455] ACPI: SSDT 0xFFFF93D341577800 000647 (v02 PmRef  Cpu0Ist  00003000 INTL 20191018)
[    0.180379] ACPI: Dynamic OEM Table Load:
[    0.180383] ACPI: SSDT 0xFFFF93D3410D1800 00028B (v02 PmRef  Cpu0Hwp  00003000 INTL 20191018)
[    0.181374] ACPI: Dynamic OEM Table Load:
[    0.181380] ACPI: SSDT 0xFFFF93D34157B000 0008E7 (v02 PmRef  ApIst    00003000 INTL 20191018)
[    0.182344] ACPI: Dynamic OEM Table Load:
[    0.182349] ACPI: SSDT 0xFFFF93D341576800 00048A (v02 PmRef  ApHwp    00003000 INTL 20191018)
[    0.183233] ACPI: Dynamic OEM Table Load:
[    0.183237] ACPI: SSDT 0xFFFF93D341575800 0004D4 (v02 PmRef  ApPsd    00003000 INTL 20191018)
[    0.184117] ACPI: Dynamic OEM Table Load:
[    0.184121] ACPI: SSDT 0xFFFF93D341570800 00048A (v02 PmRef  ApCst    00003000 INTL 20191018)
[    0.188359] ACPI: EC: EC started
[    0.188360] ACPI: EC: interrupt blocked
[    0.189534] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.189536] ACPI: \_SB_.PC00.LPCB.ITEC: Boot DSDT EC used to handle transactions
[    0.189536] ACPI: Interpreter enabled
[    0.189576] ACPI: (supports S0 S3 S4 S5)
[    0.189576] ACPI: Using IOAPIC for interrupt routing
[    0.189609] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.191111] ACPI: Enabled 7 GPEs in block 00 to 7F
[    0.191627] ACPI: PM: Power Resource [PG01] (on)
[    0.191961] ACPI: PM: Power Resource [PG02] (on)
[    0.192281] ACPI: PM: Power Resource [PG03] (on)
[    0.192602] ACPI: PM: Power Resource [PG00] (on)
[    0.194870] ACPI: PM: Power Resource [PXP] (off)
[    0.196910] ACPI: PM: Power Resource [WRST] (on)
[    0.196924] ACPI: PM: Power Resource [DRST] (on)
[    0.197161] ACPI: PM: Power Resource [PXP] (off)
[    0.203987] ACPI: PM: Power Resource [PAUD] (on)
[    0.206055] ACPI: PM: Power Resource [V0PR] (on)
[    0.206157] ACPI: PM: Power Resource [V1PR] (on)
[    0.206253] ACPI: PM: Power Resource [V2PR] (on)
[    0.207983] ACPI: PM: Power Resource [WRST] (on)
[    0.211107] ACPI: PM: Power Resource [V0PR] (on)
[    0.211148] ACPI: PM: Power Resource [V1PR] (on)
[    0.211188] ACPI: PM: Power Resource [V2PR] (on)
[    0.211228] ACPI: PM: Power Resource [V3PR] (on)
[    0.214747] ACPI: PM: Power Resource [FN00] (on)
[    0.214827] ACPI: PM: Power Resource [FN01] (off)
[    0.214880] ACPI: PM: Power Resource [FN02] (off)
[    0.214938] ACPI: PM: Power Resource [FN03] (off)
[    0.214992] ACPI: PM: Power Resource [FN04] (off)
[    0.215370] ACPI: PM: Power Resource [PIN] (off)
[    0.215676] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[    0.215681] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.218524] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[    0.218525] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.219801] PCI host bridge to bus 0000:00
[    0.219802] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.219803] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.219804] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.219805] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.219806] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.219807] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[    0.219807] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[    0.219808] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[    0.219809] pci_bus 0000:00: root bus resource [mem 0x50400000-0xbfffffff window]
[    0.219809] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.219810] pci_bus 0000:00: root bus resource [bus 00-e0]
[    0.219833] pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
[    0.220100] pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
[    0.220107] pci 0000:00:02.0: reg 0x10: [mem 0x6014000000-0x6014ffffff 64bit]
[    0.220112] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.220115] pci 0000:00:02.0: reg 0x20: [io  0x5000-0x503f]
[    0.220129] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.220130] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.220152] pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
[    0.220154] pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
[    0.220158] pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
[    0.220158] pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
[    0.220357] pci 0000:00:04.0: [8086:9a03] type 00 class 0x118000
[    0.220373] pci 0000:00:04.0: reg 0x10: [mem 0x6015200000-0x601521ffff 64bit]
[    0.220714] pci 0000:00:06.0: [8086:9a09] type 01 class 0x060400
[    0.220773] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.220797] pci 0000:00:06.0: PTM enabled (root), 4ns granularity
[    0.221318] pci 0000:00:08.0: [8086:9a11] type 00 class 0x088000
[    0.221325] pci 0000:00:08.0: reg 0x10: [mem 0x6015245000-0x6015245fff 64bit]
[    0.221484] pci 0000:00:0a.0: [8086:9a0d] type 00 class 0x118000
[    0.221490] pci 0000:00:0a.0: reg 0x10: [mem 0x6015230000-0x6015237fff 64bit]
[    0.221510] pci 0000:00:0a.0: enabling Extended Tags
[    0.221674] pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
[    0.221685] pci 0000:00:0e.0: reg 0x10: [mem 0x6012000000-0x6013ffffff 64bit]
[    0.221691] pci 0000:00:0e.0: reg 0x18: [mem 0x52000000-0x53ffffff]
[    0.221703] pci 0000:00:0e.0: reg 0x20: [mem 0x6015100000-0x60151fffff 64bit]
[    0.221945] pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
[    0.221965] pci 0000:00:14.0: reg 0x10: [mem 0x6015220000-0x601522ffff 64bit]
[    0.222051] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.223590] pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
[    0.223610] pci 0000:00:14.2: reg 0x10: [mem 0x601523c000-0x601523ffff 64bit]
[    0.223623] pci 0000:00:14.2: reg 0x18: [mem 0x6015244000-0x6015244fff 64bit]
[    0.223865] pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
[    0.223893] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.224386] pci 0000:00:15.1: [8086:a0e9] type 00 class 0x0c8000
[    0.224414] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.224843] pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
[    0.224866] pci 0000:00:16.0: reg 0x10: [mem 0x6015241000-0x6015241fff 64bit]
[    0.224958] pci 0000:00:16.0: PME# supported from D3hot
[    0.225378] pci 0000:00:17.0: [8086:09ab] type 00 class 0x088000
[    0.225977] pci 0000:00:1d.0: [8086:a0b0] type 01 class 0x060400
[    0.226085] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.226125] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[    0.226755] pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
[    0.227150] pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
[    0.227191] pci 0000:00:1f.3: reg 0x10: [mem 0x6015238000-0x601523bfff 64bit]
[    0.227246] pci 0000:00:1f.3: reg 0x20: [mem 0x6015000000-0x60150fffff 64bit]
[    0.227352] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.227805] pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
[    0.227830] pci 0000:00:1f.4: reg 0x10: [mem 0x6015240000-0x60152400ff 64bit]
[    0.227859] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.228155] pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
[    0.228173] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    0.228420] pci 0000:01:00.0: [10de:1f97] type 00 class 0x030200
[    0.228430] pci 0000:01:00.0: reg 0x10: [mem 0x54000000-0x54ffffff]
[    0.228438] pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x600fffffff 64bit pref]
[    0.228445] pci 0000:01:00.0: reg 0x1c: [mem 0x6010000000-0x6011ffffff 64bit pref]
[    0.228450] pci 0000:01:00.0: reg 0x24: [io  0x4000-0x407f]
[    0.228455] pci 0000:01:00.0: reg 0x30: [mem 0x55000000-0x5507ffff pref]
[    0.228510] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
[    0.228577] pci 0000:01:00.0: 63.012 Gb/s available PCIe bandwidth, limited by 16.0 GT/s PCIe x4 link at 0000:00:06.0 (capable of 252.048 Gb/s with 16.0 GT/s PCIe x16 link)
[    0.228755] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.228757] pci 0000:00:06.0:   bridge window [io  0x4000-0x4fff]
[    0.228758] pci 0000:00:06.0:   bridge window [mem 0x54000000-0x550fffff]
[    0.228761] pci 0000:00:06.0:   bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
[    0.229100] pci 0000:02:00.0: [10ec:c822] type 00 class 0x028000
[    0.229123] pci 0000:02:00.0: reg 0x10: [io  0x3000-0x30ff]
[    0.229152] pci 0000:02:00.0: reg 0x18: [mem 0x55200000-0x5520ffff 64bit]
[    0.229299] pci 0000:02:00.0: supports D1 D2
[    0.229300] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.229741] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.229743] pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
[    0.229746] pci 0000:00:1d.0:   bridge window [mem 0x55200000-0x552fffff]
[    0.230995] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.231072] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[    0.231148] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.231225] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.231301] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.231375] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.231451] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.231526] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.251833] acpi LNXPOWER:16: Turning OFF
[    0.251837] acpi LNXPOWER:0c: Turning OFF
[    0.251839] acpi LNXPOWER:06: Turning OFF
[    0.251842] acpi LNXPOWER:05: Turning OFF
[    0.251872] ACPI: EC: interrupt unblocked
[    0.251873] ACPI: EC: event unblocked
[    0.251897] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.251898] ACPI: EC: GPE=0x6e
[    0.251898] ACPI: \_SB_.PC00.LPCB.ITEC: Boot DSDT EC initialization complete
[    0.251899] ACPI: \_SB_.PC00.LPCB.ITEC: EC: Used to handle transactions and events
[    0.251941] iommu: Default domain type: Translated
[    0.251948] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.251948] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.251948] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.251948] vgaarb: loaded
[    0.251948] SCSI subsystem initialized
[    0.251948] libata version 3.00 loaded.
[    0.251948] ACPI: bus type USB registered
[    0.251948] usbcore: registered new interface driver usbfs
[    0.251948] usbcore: registered new interface driver hub
[    0.251948] usbcore: registered new device driver usb
[    0.251948] pps_core: LinuxPPS API ver. 1 registered
[    0.251948] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.251948] PTP clock support registered
[    0.251948] EDAC MC: Ver: 3.0.0
[    0.251987] Registered efivars operations
[    0.251987] NetLabel: Initializing
[    0.251987] NetLabel:  domain hash size = 128
[    0.251987] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.251987] NetLabel:  unlabeled traffic allowed by default
[    0.251987] PCI: Using ACPI for IRQ routing
[    0.272752] PCI: pci_cache_line_size set to 64 bytes
[    0.273094] pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
[    0.273433] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.273435] e820: reserve RAM buffer [mem 0x36b28018-0x37ffffff]
[    0.273435] e820: reserve RAM buffer [mem 0x3805f000-0x3bffffff]
[    0.273436] e820: reserve RAM buffer [mem 0x39ccf000-0x3bffffff]
[    0.273437] e820: reserve RAM buffer [mem 0x3b773000-0x3bffffff]
[    0.273437] e820: reserve RAM buffer [mem 0x43800000-0x43ffffff]
[    0.273438] e820: reserve RAM buffer [mem 0x4afc00000-0x4afffffff]
[    0.273440] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.273440] hpet0: 8 comparators, 64-bit 19.200000 MHz counter
[    0.274955] clocksource: Switched to clocksource tsc-early
[    0.279339] VFS: Disk quotas dquot_6.6.0
[    0.279348] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.279392] pnp: PnP ACPI init
[    0.279486] pnp 00:00: Plug and Play ACPI device, IDs HPQ8001 PNP0303 (active)
[    0.279577] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.279578] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.279581] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.279611] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.279679] system 00:03: [io  0x1854-0x1857] has been reserved
[    0.279681] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.280040] pnp 00:04: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    0.280054] system 00:04: [mem 0xfedc0000-0xfedc7fff] has been reserved
[    0.280055] system 00:04: [mem 0xfeda0000-0xfeda0fff] has been reserved
[    0.280056] system 00:04: [mem 0xfeda1000-0xfeda1fff] has been reserved
[    0.280057] system 00:04: [mem 0xfed20000-0xfed7ffff] could not be reserved
[    0.280058] system 00:04: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.280059] system 00:04: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    0.280060] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.280061] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.280818] system 00:05: [io  0x1800-0x18fe] could not be reserved
[    0.280819] system 00:05: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.280820] system 00:05: [mem 0xfe04c000-0xfe04ffff] has been reserved
[    0.280821] system 00:05: [mem 0xfe050000-0xfe0affff] has been reserved
[    0.280822] system 00:05: [mem 0xfe0d0000-0xfe0fffff] has been reserved
[    0.280823] system 00:05: [mem 0xfe200000-0xfe7fffff] has been reserved
[    0.280824] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.280825] system 00:05: [mem 0xfd000000-0xfd68ffff] has been reserved
[    0.280826] system 00:05: [mem 0xfd6b0000-0xfd6cffff] has been reserved
[    0.280827] system 00:05: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    0.280829] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.281075] system 00:06: [io  0x2000-0x20fe] has been reserved
[    0.281077] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.281244] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.282309] pnp: PnP ACPI: found 8 devices
[    0.287387] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.287417] NET: Registered protocol family 2
[    0.287563] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.288545] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.288621] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.288769] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.288816] TCP: Hash tables configured (established 131072 bind 65536)
[    0.288880] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[    0.288922] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.288952] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.288990] NET: Registered protocol family 1
[    0.288993] NET: Registered protocol family 44
[    0.289002] pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
[    0.289006] pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
[    0.289008] pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
[    0.289067] pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
[    0.289080] pci 0000:00:1f.5: BAR 0: assigned [mem 0x50400000-0x50400fff]
[    0.289092] pci 0000:00:06.0: PCI bridge to [bus 01]
[    0.289093] pci 0000:00:06.0:   bridge window [io  0x4000-0x4fff]
[    0.289095] pci 0000:00:06.0:   bridge window [mem 0x54000000-0x550fffff]
[    0.289097] pci 0000:00:06.0:   bridge window [mem 0x6000000000-0x6011ffffff 64bit pref]
[    0.289100] pci 0000:00:1d.0: PCI bridge to [bus 02]
[    0.289107] pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
[    0.289111] pci 0000:00:1d.0:   bridge window [mem 0x55200000-0x552fffff]
[    0.289118] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.289119] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.289120] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.289120] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000e3fff window]
[    0.289121] pci_bus 0000:00: resource 8 [mem 0x000e4000-0x000e7fff window]
[    0.289122] pci_bus 0000:00: resource 9 [mem 0x000e8000-0x000ebfff window]
[    0.289122] pci_bus 0000:00: resource 10 [mem 0x000ec000-0x000effff window]
[    0.289123] pci_bus 0000:00: resource 11 [mem 0x000f0000-0x000fffff window]
[    0.289124] pci_bus 0000:00: resource 12 [mem 0x50400000-0xbfffffff window]
[    0.289124] pci_bus 0000:00: resource 13 [mem 0x4000000000-0x7fffffffff window]
[    0.289125] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    0.289126] pci_bus 0000:01: resource 1 [mem 0x54000000-0x550fffff]
[    0.289127] pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6011ffffff 64bit pref]
[    0.289127] pci_bus 0000:02: resource 0 [io  0x3000-0x3fff]
[    0.289128] pci_bus 0000:02: resource 1 [mem 0x55200000-0x552fffff]
[    0.289248] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.289808] PCI: CLS 64 bytes, default 64
[    0.289826] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.289827] software IO TLB: mapped [mem 0x0000000031e54000-0x0000000035e54000] (64MB)
[    0.289842] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28680fa287f, max_idle_ns: 440795281151 ns
[    0.289875] Trying to unpack rootfs image as initramfs...
[    0.289876] clocksource: Switched to clocksource tsc
[    0.298790] Initialise system trusted keyrings
[    0.298798] Key type blacklist registered
[    0.298814] workingset: timestamp_bits=41 max_order=22 bucket_order=0
[    0.299342] zbud: loaded
[    0.306159] Key type asymmetric registered
[    0.306160] Asymmetric key parser 'x509' registered
[    0.306164] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.306199] io scheduler mq-deadline registered
[    0.306200] io scheduler kyber registered
[    0.306215] io scheduler bfq registered
[    0.307997] pcieport 0000:00:06.0: PME: Signaling with IRQ 122
[    0.308027] pcieport 0000:00:06.0: AER: enabled with IRQ 122
[    0.308045] pcieport 0000:00:06.0: DPC: enabled with IRQ 122
[    0.308046] pcieport 0000:00:06.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    0.308231] pcieport 0000:00:1d.0: PME: Signaling with IRQ 123
[    0.308275] pcieport 0000:00:1d.0: AER: enabled with IRQ 123
[    0.308300] pcieport 0000:00:1d.0: DPC: enabled with IRQ 123
[    0.308302] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    0.308389] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.308405] efifb: probing for efifb
[    0.308414] efifb: showing boot graphics
[    0.309116] efifb: framebuffer at 0x4000000000, using 5628k, total 5625k
[    0.309116] efifb: mode is 1600x900x32, linelength=6400, pages=1
[    0.309117] efifb: scrolling: redraw
[    0.309117] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.309153] fbcon: Deferring console take-over
[    0.309153] fb0: EFI VGA frame buffer device
[    0.309331] Monitor-Mwait will be used to enter C-1 state
[    0.309334] Monitor-Mwait will be used to enter C-2 state
[    0.309336] Monitor-Mwait will be used to enter C-3 state
[    0.309337] ACPI: \_SB_.PR00: Found 3 idle states
[    0.309850] ACPI: AC: AC Adapter [AC] (on-line)
[    0.309899] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:01/input/input0
[    0.309912] ACPI: button: Lid Switch [LID1]
[    0.309930] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.309942] ACPI: button: Power Button [PWRB]
[    0.309963] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.311616] ACPI: button: Power Button [PWRF]
[    0.311899] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1499
[    0.313174] thermal LNXTHERM:00: registered as thermal_zone0
[    0.313175] ACPI: thermal: Thermal Zone [TZ00] (51 C)
[    0.313286] thermal LNXTHERM:01: registered as thermal_zone1
[    0.313286] ACPI: thermal: Thermal Zone [TZ01] (57 C)
[    0.313393] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.314502] Non-volatile memory driver v1.3
[    0.314505] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    0.314505] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    0.317166] ACPI: battery: Slot [BAT0] (battery present)
[    0.317689] Freeing initrd memory: 8020K
[    0.317808] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.317815] ehci-pci: EHCI PCI platform driver
[    0.317820] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.317821] ohci-pci: OHCI PCI platform driver
[    0.317824] uhci_hcd: USB Universal Host Controller Interface driver
[    0.317842] usbcore: registered new interface driver usbserial_generic
[    0.317844] usbserial: USB Serial support registered for generic
[    0.317899] rtc_cmos 00:02: RTC can wake from S4
[    0.318767] rtc_cmos 00:02: registered as rtc0
[    0.319036] rtc_cmos 00:02: setting system clock to 2021-09-06T17:20:39 UTC (1630948839)
[    0.319044] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram
[    0.319347] intel_pstate: Intel P-state driver initializing
[    0.320030] intel_pstate: HWP enabled
[    0.320061] ledtrig-cpu: registered to indicate activity on CPUs
[    0.320166] hid: raw HID events driver (C) Jiri Kosina
[    0.320260] intel_pmc_core INT33A1:00:  initialized
[    0.320297] drop_monitor: Initializing network drop monitor service
[    0.320334] Initializing XFRM netlink socket
[    0.320387] NET: Registered protocol family 10
[    0.323466] Segment Routing with IPv6
[    0.323467] RPL Segment Routing with IPv6
[    0.323483] NET: Registered protocol family 17
[    0.324094] microcode: sig=0x806c1, pf=0x80, revision=0x86
[    0.324111] microcode: Microcode Update Driver: v2.2.
[    0.324155] resctrl: L2 allocation detected
[    0.324155] resctrl: L2DATA allocation detected
[    0.324156] resctrl: L2CODE allocation detected
[    0.324157] IPI shorthand broadcast: enabled
[    0.324164] sched_clock: Marking stable (323612631, 535803)->(331795716, -7647282)
[    0.324279] registered taskstats version 1
[    0.324284] Loading compiled-in X.509 certificates
[    0.325772] Loaded X.509 cert 'Build time autogenerated kernel key: 907cfbedfbeb3d0d9cd58b4833914b9c12c54c8a'
[    0.326011] zswap: loaded using pool lz4/z3fold
[    0.326071] Key type ._fscrypt registered
[    0.326071] Key type .fscrypt registered
[    0.326072] Key type fscrypt-provisioning registered
[    0.326250] PM:   Magic number: 5:543:339
[    0.326361] RAS: Correctable Errors collector initialized.
[    0.329058] Freeing unused decrypted memory: 2036K
[    0.329219] Freeing unused kernel image (initmem) memory: 1796K
[    0.361760] Write protecting the kernel read-only data: 26624k
[    0.362650] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    0.363052] Freeing unused kernel image (rodata/data gap) memory: 1156K
[    0.377741] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.377746] rodata_test: all tests were successful
[    0.377751] Run /init as init process
[    0.377752]   with arguments:
[    0.377753]     /init
[    0.377754]   with environment:
[    0.377755]     HOME=/
[    0.377756]     TERM=linux
[    0.377756]     BOOT_IMAGE=/boot/vmlinuz-linux
[    0.404486] fbcon: Taking over console
[    0.404533] Console: switching to colour frame buffer device 200x56
[    0.416649] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[    0.416653] pci_bus 10000:e0: root bus resource [bus e0-ff]
[    0.416655] pci_bus 10000:e0: root bus resource [mem 0x52000000-0x53ffffff]
[    0.416656] pci_bus 10000:e0: root bus resource [mem 0x6015102000-0x60151fffff 64bit]
[    0.416680] pci 10000:e0:17.0: [8086:a0d3] type 00 class 0x010601
[    0.416700] pci 10000:e0:17.0: reg 0x10: [mem 0x00000000-0x00001fff]
[    0.416712] pci 10000:e0:17.0: reg 0x14: [mem 0x00000000-0x000000ff]
[    0.416723] pci 10000:e0:17.0: reg 0x18: [io  0x0000-0x0007]
[    0.416734] pci 10000:e0:17.0: reg 0x1c: [io  0x0000-0x0003]
[    0.416745] pci 10000:e0:17.0: reg 0x20: [io  0x0000-0x001f]
[    0.416757] pci 10000:e0:17.0: reg 0x24: [mem 0x52000000-0x520007ff]
[    0.416800] pci 10000:e0:17.0: PME# supported from D3hot
[    0.416849] pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
[    0.416891] pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
[    0.416992] pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
[    0.417031] pci 10000:e0:1c.4: PTM enabled (root), 4ns granularity
[    0.417075] pci 10000:e0:1c.4: Primary bus is hard wired to 0
[    0.417122] pci 10000:e1:00.0: [1e0f:0001] type 00 class 0x010802
[    0.417153] pci 10000:e1:00.0: reg 0x10: [mem 0x52100000-0x52103fff 64bit]
[    0.417304] pci 10000:e1:00.0: PME# supported from D0 D3hot
[    0.417433] pci 10000:e0:1c.4: PCI bridge to [bus e1]
[    0.417436] pci 10000:e0:1c.4:   bridge window [io  0x0000-0x0fff]
[    0.417438] pci 10000:e0:1c.4:   bridge window [mem 0x52100000-0x521fffff]
[    0.417445] pci 10000:e0:1c.4: Primary bus is hard wired to 0
[    0.417453] pci 10000:e0:1c.4: BAR 14: assigned [mem 0x52000000-0x520fffff]
[    0.417455] pci 10000:e0:17.0: BAR 0: assigned [mem 0x52100000-0x52101fff]
[    0.417459] pci 10000:e0:1c.4: BAR 13: no space for [io  size 0x1000]
[    0.417460] pci 10000:e0:1c.4: BAR 13: failed to assign [io  size 0x1000]
[    0.417461] pci 10000:e0:17.0: BAR 5: assigned [mem 0x52102000-0x521027ff]
[    0.417465] pci 10000:e0:17.0: BAR 1: assigned [mem 0x52102800-0x521028ff]
[    0.417469] pci 10000:e0:17.0: BAR 4: no space for [io  size 0x0020]
[    0.417470] pci 10000:e0:17.0: BAR 4: failed to assign [io  size 0x0020]
[    0.417471] pci 10000:e0:17.0: BAR 2: no space for [io  size 0x0008]
[    0.417471] pci 10000:e0:17.0: BAR 2: failed to assign [io  size 0x0008]
[    0.417472] pci 10000:e0:17.0: BAR 3: no space for [io  size 0x0004]
[    0.417473] pci 10000:e0:17.0: BAR 3: failed to assign [io  size 0x0004]
[    0.417475] pci 10000:e1:00.0: BAR 0: assigned [mem 0x52000000-0x52003fff 64bit]
[    0.417490] pci 10000:e0:1c.4: PCI bridge to [bus e1]
[    0.417495] pci 10000:e0:1c.4:   bridge window [mem 0x52000000-0x520fffff]
[    0.417516] ahci 10000:e0:17.0: version 3.0
[    0.417525] ahci 10000:e0:17.0: can't derive routing for PCI INT A
[    0.417527] ahci 10000:e0:17.0: PCI INT A: no GSI
[    0.417608] ahci 10000:e0:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    0.417610] ahci 10000:e0:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds
[    0.417870] scsi host0: ahci
[    0.417985] scsi host1: ahci
[    0.418035] ata1: SATA max UDMA/133 abar m2048@0x52102000 port 0x52102100 irq 143
[    0.418038] ata2: SATA max UDMA/133 abar m2048@0x52102000 port 0x52102180 irq 143
[    0.418071] pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
[    0.418073] pcieport 10000:e0:1c.4: PCI INT A: no GSI
[    0.418150] pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
[    0.418213] pcieport 10000:e0:1c.4: AER: enabled with IRQ 144
[    0.418256] pcieport 10000:e0:1c.4: DPC: enabled with IRQ 144
[    0.418257] pcieport 10000:e0:1c.4: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[    0.418411] nvme nvme0: pci function 10000:e1:00.0
[    0.418421] vmd 0000:00:0e.0: Bound to PCI domain 10000
[    0.418423] pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
[    0.418425] nvme 10000:e1:00.0: PCI INT A: no GSI
[    0.431167] nvme nvme0: allocated 61 MiB host memory buffer.
[    0.586711] nvme nvme0: 8/0/0 default/read/poll queues
[    0.589703]  nvme0n1: p1 p2 p3 p4
[    0.728548] ata1: SATA link down (SStatus 0 SControl 300)
[    0.728586] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.729410] ata2.00: ATA-10: WDC WD10SPZX-60Z10T1, 05.01A05, max UDMA/133
[    0.729417] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    0.730532] ata2.00: configured for UDMA/133
[    0.730838] scsi 1:0:0:0: Direct-Access     ATA      WDC WD10SPZX-60Z 1A05 PQ: 0 ANSI: 5
[    0.731193] sd 1:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    0.731198] sd 1:0:0:0: [sda] 4096-byte physical blocks
[    0.731208] sd 1:0:0:0: [sda] Write Protect is off
[    0.731211] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.731225] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.892310]  sda: sda1
[    0.961838] sd 1:0:0:0: [sda] Attached SCSI disk
[    1.003975] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    1.003979] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.005037] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.011801] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.011809] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    1.012914] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
[    1.013160] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.13
[    1.013164] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.013167] usb usb1: Product: xHCI Host Controller
[    1.013169] usb usb1: Manufacturer: Linux 5.13.13-arch1-1 xhci-hcd
[    1.013171] usb usb1: SerialNumber: 0000:00:14.0
[    1.013278] hub 1-0:1.0: USB hub found
[    1.013302] hub 1-0:1.0: 12 ports detected
[    1.015125] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.015130] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    1.015132] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    1.015174] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.13
[    1.015177] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.015179] usb usb2: Product: xHCI Host Controller
[    1.015180] usb usb2: Manufacturer: Linux 5.13.13-arch1-1 xhci-hcd
[    1.015182] usb usb2: SerialNumber: 0000:00:14.0
[    1.015266] hub 2-0:1.0: USB hub found
[    1.015280] hub 2-0:1.0: 4 ports detected
[    1.016004] usb: port power management may be unreliable
[    1.039967] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    1.047767] random: fast init done
[    1.090312] EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[    1.153571] systemd[1]: systemd 249.4-1-arch 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 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[    1.168528] systemd[1]: Detected architecture x86-64.
[    1.169015] systemd[1]: Hostname set to <HPLaptop17-cn0045cl>.
[    1.241413] random: lvmconfig: uninitialized urandom read (4 bytes read)
[    1.265233] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    1.272352] systemd[1]: Queued start job for default target Graphical Interface.
[    1.273103] systemd[1]: Created slice Slice /system/getty.
[    1.273217] systemd[1]: Created slice Slice /system/modprobe.
[    1.273303] systemd[1]: Created slice User and Session Slice.
[    1.273329] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    1.273347] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    1.273409] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    1.273423] systemd[1]: Reached target Local Encrypted Volumes.
[    1.273430] systemd[1]: Reached target Login Prompts.
[    1.273441] systemd[1]: Reached target Path Units.
[    1.273447] systemd[1]: Reached target Remote File Systems.
[    1.273451] systemd[1]: Reached target Slice Units.
[    1.273461] systemd[1]: Reached target Local Verity Integrity Protected Volumes.
[    1.273487] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[    1.273619] systemd[1]: Listening on LVM2 poll daemon socket.
[    1.274133] systemd[1]: Listening on Process Core Dump Socket.
[    1.274190] systemd[1]: Listening on Journal Audit Socket.
[    1.274224] systemd[1]: Listening on Journal Socket (/dev/log).
[    1.274258] systemd[1]: Listening on Journal Socket.
[    1.274396] systemd[1]: Listening on udev Control Socket.
[    1.274428] systemd[1]: Listening on udev Kernel Socket.
[    1.274745] systemd[1]: Mounting Huge Pages File System...
[    1.275109] systemd[1]: Mounting POSIX Message Queue File System...
[    1.275459] systemd[1]: Mounting Kernel Debug File System...
[    1.275762] systemd[1]: Mounting Kernel Trace File System...
[    1.276138] systemd[1]: Starting Create List of Static Device Nodes...
[    1.276505] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[    1.277108] systemd[1]: Starting Load Kernel Module configfs...
[    1.277680] systemd[1]: Starting Load Kernel Module drm...
[    1.278208] systemd[1]: Starting Load Kernel Module fuse...
[    1.278611] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
[    1.278653] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    1.278815] random: lvm: uninitialized urandom read (4 bytes read)
[    1.279943] systemd[1]: Starting Journal Service...
[    1.280806] systemd[1]: Starting Load Kernel Modules...
[    1.280854] Linux agpgart interface v0.103
[    1.281464] systemd[1]: Starting Remount Root and Kernel File Systems...
[    1.281524] systemd[1]: Condition check resulted in Repartition Root Disk being skipped.
[    1.282252] systemd[1]: Starting Coldplug All udev Devices...
[    1.283832] systemd[1]: Mounted Huge Pages File System.
[    1.283912] systemd[1]: Mounted POSIX Message Queue File System.
[    1.283974] systemd[1]: Mounted Kernel Debug File System.
[    1.284031] systemd[1]: Mounted Kernel Trace File System.
[    1.284272] systemd[1]: Finished Create List of Static Device Nodes.
[    1.284520] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[    1.284715] systemd[1]: Finished Load Kernel Module configfs.
[    1.285567] systemd[1]: Mounting Kernel Configuration File System...
[    1.286079] fuse: init (API version 7.34)
[    1.286768] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[    1.286999] systemd[1]: Finished Load Kernel Module fuse.
[    1.287055] audit: type=1130 audit(1630948840.463:2): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.287070] audit: type=1131 audit(1630948840.463:3): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@fuse comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.287614] systemd[1]: Mounted Kernel Configuration File System.
[    1.287693] EXT4-fs (nvme0n1p3): re-mounted. Opts: (null). Quota mode: none.
[    1.287886] systemd[1]: Finished Load Kernel Modules.
[    1.287909] audit: type=1130 audit(1630948840.463:4): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.288629] systemd[1]: Finished Remount Root and Kernel File Systems.
[    1.288657] audit: type=1130 audit(1630948840.466:5): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-remount-fs comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.289447] systemd[1]: Mounting FUSE Control File System...
[    1.289512] systemd[1]: Condition check resulted in First Boot Wizard being skipped.
[    1.290055] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped.
[    1.290755] systemd[1]: Starting Load/Save Random Seed...
[    1.291444] systemd[1]: Starting Apply Kernel Variables...
[    1.291501] systemd[1]: Condition check resulted in Create System Users being skipped.
[    1.292366] systemd[1]: Starting Create Static Device Nodes in /dev...
[    1.293077] systemd[1]: Mounted FUSE Control File System.
[    1.297604] systemd[1]: Finished Apply Kernel Variables.
[    1.297639] audit: type=1130 audit(1630948840.473:6): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.297859] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    1.297988] systemd[1]: Finished Load Kernel Module drm.
[    1.298007] audit: type=1130 audit(1630948840.473:7): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.298014] audit: type=1131 audit(1630948840.473:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.307305] systemd[1]: Finished Create Static Device Nodes in /dev.
[    1.307333] audit: type=1130 audit(1630948840.483:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.307935] audit: type=1334 audit(1630948840.483:10): prog-id=14 op=LOAD
[    1.308323] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[    1.313057] systemd[1]: Started Journal Service.
[    1.316432] systemd-journald[240]: Received client request to flush runtime journal.
[    1.370397] input: HP Wireless hotkeys as /devices/virtual/input/input4
[    1.412964] usb 1-1: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=24.10
[    1.412983] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.412984] usb 1-1: Product: USB Receiver
[    1.412985] usb 1-1: Manufacturer: Logitech
[    1.455952] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:02)
[    1.456035] acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:02)
[    1.538510] usb 1-5: new high-speed USB device number 3 using xhci_hcd
[    1.680544] usb 1-5: New USB device found, idVendor=04f2, idProduct=b710, bcdDevice=27.47
[    1.680547] usb 1-5: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    1.680548] usb 1-5: Product: HP TrueVision HD Camera
[    1.680549] usb 1-5: Manufacturer:
[    1.680549] usb 1-5: SerialNumber: 0001
[    1.748814] intel-pmt 0000:00:0a.0: Watcher not supported
[    1.748818] intel-pmt 0000:00:0a.0: Crashlog not supported
[    1.756638] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[    1.757351] proc_thermal 0000:00:04.0: Creating sysfs group for PROC_THERMAL_PCI
[    1.757395] intel_rapl_common: Found RAPL domain package
[    1.808259] usb 1-10: new full-speed USB device number 4 using xhci_hcd
[    1.825039] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    1.838323] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[    1.838680] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    1.848265] Adding 2097148k swap on /dev/nvme0n1p2.  Priority:-2 extents:1 across:2097148k SSFS
[    1.855286] checking generic (4000000000 57f000) vs hw (6014000000 1000000)
[    1.855289] checking generic (4000000000 57f000) vs hw (4000000000 10000000)
[    1.855291] fb0: switching to inteldrmfb from EFI VGA
[    1.855381] Console: switching to colour dummy device 80x25
[    1.855446] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.857583] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.859088] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
[    1.868275] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[    1.868652] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    1.880056] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[    1.880626] ACPI: video: Video Device [PEGP] (multi-head: no  rom: yes  post: no)
[    1.880933] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/LNXVIDEO:00/input/input5
[    1.882406] ACPI: video: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    1.883342] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input6
[    1.890204] random: dbus-daemon: uninitialized urandom read (12 bytes read)
[    1.898711] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    1.901983] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    1.902118] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    1.902122] cfg80211: failed to load regulatory.db
[    1.911784] fbcon: i915drmfb (fb0) is primary device
[    1.911875] Console: switching to colour frame buffer device 200x56
[    1.919378] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    1.935474] i2c_hid_acpi i2c-ELAN2513:00: i2c_hid_get_input: incomplete report (64/65535)
[    1.935589] input: ELAN2513:00 04F3:2D75 Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN2513:00/0018:04F3:2D75.0001/input/input7
[    1.935652] input: ELAN2513:00 04F3:2D75 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN2513:00/0018:04F3:2D75.0001/input/input8
[    1.935699] input: ELAN2513:00 04F3:2D75 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN2513:00/0018:04F3:2D75.0001/input/input9
[    1.935745] hid-generic 0018:04F3:2D75.0001: input,hidraw0: I2C HID v1.00 Device [ELAN2513:00 04F3:2D75] on i2c-ELAN2513:00
[    1.943179] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    1.943247] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    1.946103] intel-spi 0000:00:1f.5: w25q128 (16384 Kbytes)
[    1.947106] i2c i2c-13: 2/2 memory slots populated (from DMI)
[    1.947609] i2c i2c-13: Successfully instantiated SPD at 0x50
[    1.948853] Creating 1 MTD partitions on "0000:00:1f.5":
[    1.948857] 0x000000000000-0x000001000000 : "BIOS"
[    1.955752] usb 1-10: New USB device found, idVendor=0bda, idProduct=b00c, bcdDevice= 0.00
[    1.955758] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.955761] usb 1-10: Product: Bluetooth Radio
[    1.955763] usb 1-10: Manufacturer: Realtek
[    1.955765] usb 1-10: SerialNumber: 00e04c000001
[    2.028783] input: PC Speaker as /devices/platform/pcspkr/input/input11
[    2.036044] input: SYNA32B5:00 06CB:CE17 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-10/i2c-SYNA32B5:00/0018:06CB:CE17.0002/input/input12
[    2.036102] input: SYNA32B5:00 06CB:CE17 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-10/i2c-SYNA32B5:00/0018:06CB:CE17.0002/input/input13
[    2.036142] hid-generic 0018:06CB:CE17.0002: input,hidraw1: I2C HID v1.00 Mouse [SYNA32B5:00 06CB:CE17] on i2c-SYNA32B5:00
[    2.149452] resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:04 [mem 0xfedc0000-0xfedc7fff]
[    2.149457] caller tgl_uncore_imc_freerunning_init_box+0xbf/0x100 [intel_uncore] mapping multiple BARs
[    2.154940] cryptd: max_cpu_qlen set to 1000
[    2.155504] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    2.155531] snd_hda_intel 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
[    2.164045] AVX2 version of gcm_enc/dec engaged.
[    2.164082] AES CTR mode by8 optimization enabled
[    2.296211] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:046D:C52B.0003/input/input15
[    2.296295] rtw_8822ce 0000:02:00.0: enabling device (0000 -> 0003)
[    2.296907] rtw_8822ce 0000:02:00.0: Firmware version 9.9.4, H2C version 15
[    2.297239] rtw_8822ce 0000:02:00.0: Firmware version 9.9.10, H2C version 15
[    2.351782] hid-generic 0003:046D:C52B.0003: input,hidraw2: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-1/input0
[    2.355020] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:046D:C52B.0004/input/input16
[    2.355099] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:046D:C52B.0004/input/input17
[    2.389548] mc: Linux media interface: v0.10
[    2.396412] input: HP WMI hotkeys as /devices/virtual/input/input20
[    2.404524] videodev: Linux video capture interface: v2.00
[    2.405441] intel_rapl_msr: PL4 support detected.
[    2.405467] intel_rapl_common: Found RAPL domain package
[    2.405470] intel_rapl_common: Found RAPL domain core
[    2.405471] intel_rapl_common: Found RAPL domain uncore
[    2.405474] intel_rapl_common: Found RAPL domain psys
[    2.408862] intel_tcc_cooling: Programmable TCC Offset detected
[    2.415040] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:046D:C52B.0004/input/input18
[    2.415194] hid-generic 0003:046D:C52B.0004: input,hiddev96,hidraw3: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-1/input1
[    2.417646] hid-generic 0003:046D:C52B.0005: hiddev97,hidraw4: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-1/input2
[    2.417676] usbcore: registered new interface driver usbhid
[    2.417677] usbhid: USB HID core driver
[    2.482553] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[    2.493870] usb 1-5: Found UVC 1.10 device HP TrueVision HD Camera (04f2:b710)
[    2.495380] input: HP TrueVision HD Camera: HP Tru as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input21
[    2.495437] usbcore: registered new interface driver uvcvideo
[    2.532173] iTCO_vendor_support: vendor-support=0
[    2.575820] ee1004 13-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[    2.582414] rtw_8822ce 0000:02:00.0 wlp2s0: renamed from wlan0
[    2.593714] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    2.593746] sof-audio-pci-intel-tgl 0000:00:1f.3: Digital mics found on Skylake+ platform, using SOF driver
[    2.593757] sof-audio-pci-intel-tgl 0000:00:1f.3: enabling device (0000 -> 0002)
[    2.594056] sof-audio-pci-intel-tgl 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if 0x040100
[    2.595020] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    2.595287] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    2.597384] input: ELAN2513:00 04F3:2D75 as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN2513:00/0018:04F3:2D75.0001/input/input22
[    2.599572] i2c_hid_acpi i2c-ELAN2513:00: i2c_hid_get_input: incomplete report (67/65535)
[    2.618412] input: ELAN2513:00 04F3:2D75 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN2513:00/0018:04F3:2D75.0001/input/input23
[    2.618477] input: ELAN2513:00 04F3:2D75 UNKNOWN as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-ELAN2513:00/0018:04F3:2D75.0001/input/input24
[    2.618544] hid-multitouch 0018:04F3:2D75.0001: input,hidraw0: I2C HID v1.00 Device [ELAN2513:00 04F3:2D75] on i2c-ELAN2513:00
[    2.623897] Bluetooth: Core ver 2.22
[    2.623918] NET: Registered protocol family 31
[    2.623919] Bluetooth: HCI device and connection manager initialized
[    2.623924] Bluetooth: HCI socket layer initialized
[    2.623926] Bluetooth: L2CAP socket layer initialized
[    2.623930] Bluetooth: SCO socket layer initialized
[    2.632512] usbcore: registered new interface driver btusb
[    2.634270] Bluetooth: hci0: RTL: examining hci_ver=0a hci_rev=000c lmp_ver=0a lmp_subver=8822
[    2.635268] Bluetooth: hci0: RTL: rom_version status=0 version=3
[    2.635272] Bluetooth: hci0: RTL: loading rtl_bt/rtl8822cu_fw.bin
[    2.635685] Bluetooth: hci0: RTL: loading rtl_bt/rtl8822cu_config.bin
[    2.635823] Bluetooth: hci0: RTL: cfg_sz 6, total sz 38782
[    2.765633] random: crng init done
[    2.765635] random: 3 urandom warning(s) missed due to ratelimiting
[    2.770535] input: SYNA32B5:00 06CB:CE17 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-10/i2c-SYNA32B5:00/0018:06CB:CE17.0002/input/input26
[    2.817338] Bluetooth: hci0: RTL: fw version 0x09a8a0cb
[    2.838433] input: SYNA32B5:00 06CB:CE17 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-10/i2c-SYNA32B5:00/0018:06CB:CE17.0002/input/input27
[    2.908805] nvidia: loading out-of-tree module taints kernel.
[    2.908813] nvidia: module license 'NVIDIA' taints kernel.
[    2.908814] Disabling lock debugging due to kernel taint
[    2.915970] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[    2.925828] nvidia-nvlink: Nvlink Core is being initialized, major device number 510

[    2.925993] hid-multitouch 0018:06CB:CE17.0002: input,hidraw1: I2C HID v1.00 Mouse [SYNA32B5:00 06CB:CE17] on i2c-SYNA32B5:00
[    2.926230] nvidia 0000:01:00.0: enabling device (0000 -> 0003)
[    2.926329] logitech-djreceiver 0003:046D:C52B.0005: hiddev96,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-1/input2
[    2.932229] mousedev: PS/2 mouse device common for all mice
[    2.968545] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  470.63.01  Tue Aug  3 20:44:16 UTC 2021
[    3.029286] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  470.63.01  Tue Aug  3 20:30:55 UTC 2021
[    3.039872] input: Logitech Wireless Device PID:405e Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0005/0003:046D:405E.0006/input/input29
[    3.040112] input: Logitech Wireless Device PID:405e Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0005/0003:046D:405E.0006/input/input30
[    3.040194] hid-generic 0003:046D:405E.0006: input,hidraw3: USB HID v1.11 Keyboard [Logitech Wireless Device PID:405e] on usb-0000:00:14.0-1/input2:1
[    3.285382] input: Logitech M720 Triathlon as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0005/0003:046D:405E.0006/input/input34
[    3.285537] logitech-hidpp-device 0003:046D:405E.0006: input,hidraw3: USB HID v1.11 Keyboard [Logitech M720 Triathlon] on usb-0000:00:14.0-1/input2:1
[    3.299494] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[    3.299495] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
[    3.341670] sof-audio-pci-intel-tgl 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[    3.348163] sof-audio-pci-intel-tgl 0000:00:1f.3: use msi interrupt mode
[    3.430878] sof-audio-pci-intel-tgl 0000:00:1f.3: hda codecs found, mask 5
[    3.430882] sof-audio-pci-intel-tgl 0000:00:1f.3: using HDA machine driver skl_hda_dsp_generic now
[    3.430887] sof-audio-pci-intel-tgl 0000:00:1f.3: DMICs detected in NHLT tables: 2
[    3.431635] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 1:8:0-9e7a8
[    3.431638] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:18:1 Kernel ABI 3:18:0
[    3.431643] sof-audio-pci-intel-tgl 0000:00:1f.3: unknown sof_ext_man header type 3 size 0x30
[    3.455028] usb 2-4: new SuperSpeed USB device number 2 using xhci_hcd
[    3.472284] usb 2-4: New USB device found, idVendor=0bda, idProduct=8153, bcdDevice=31.00
[    3.472286] usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=6
[    3.472288] usb 2-4: Product: USB 10/100/1000 LAN
[    3.472289] usb 2-4: Manufacturer: Realtek
[    3.472290] usb 2-4: SerialNumber: 001000001
[    3.525513] usbcore: registered new interface driver r8152
[    3.528699] usbcore: registered new interface driver cdc_ether
[    3.529736] usbcore: registered new interface driver r8153_ecm
[    3.530648] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware info: version 1:8:0-9e7a8
[    3.530651] sof-audio-pci-intel-tgl 0000:00:1f.3: Firmware: ABI 3:18:1 Kernel ABI 3:18:0
[    3.537106] sof-audio-pci-intel-tgl 0000:00:1f.3: Topology: ABI 3:18:1 Kernel ABI 3:18:0
[    3.557158] sof-audio-pci-intel-tgl 0000:00:1f.3: ASoC: Parent card not yet available, widget card binding deferred
[    3.581130] snd_hda_codec_realtek ehdaudio0D0: autoconfig for ALC236: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    3.581136] snd_hda_codec_realtek ehdaudio0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    3.581138] snd_hda_codec_realtek ehdaudio0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    3.581139] snd_hda_codec_realtek ehdaudio0D0:    mono: mono_out=0x0
[    3.581139] snd_hda_codec_realtek ehdaudio0D0:    inputs:
[    3.581140] snd_hda_codec_realtek ehdaudio0D0:      Mic=0x19
[    3.594810] rtw_8822ce 0000:02:00.0: start vif 90:0f:0c:76:b4:6b on port 0
[    3.596103] rtw_8822ce 0000:02:00.0: stop vif 90:0f:0c:76:b4:6b on port 0
[    3.622534] ACPI Warning: \_SB.PC00.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20210331/nsarguments-61)
[    3.648590] usb 2-4: reset SuperSpeed USB device number 2 using xhci_hcd
[    3.682651] r8152 2-4:1.0: load rtl8153b-2 v1 10/23/19 successfully
[    3.693555] snd_hda_codec_realtek ehdaudio0D0: ASoC: sink widget AIF1TX overwritten
[    3.693559] snd_hda_codec_realtek ehdaudio0D0: ASoC: source widget AIF1RX overwritten
[    3.693648] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget hifi3 overwritten
[    3.693652] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget hifi2 overwritten
[    3.693654] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget hifi1 overwritten
[    3.693657] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Codec Output Pin1 overwritten
[    3.693659] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Codec Input Pin1 overwritten
[    3.693663] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Analog Codec Playback overwritten
[    3.693666] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Digital Codec Playback overwritten
[    3.693669] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: sink widget Alt Analog Codec Playback overwritten
[    3.693674] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Analog Codec Capture overwritten
[    3.693677] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Digital Codec Capture overwritten
[    3.693680] skl_hda_dsp_generic skl_hda_dsp_generic: ASoC: source widget Alt Analog Codec Capture overwritten
[    3.693686] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 3

[    3.693688] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 4

[    3.693688] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 5

[    3.693689] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 6

[    3.693690] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 7

[    3.693691] skl_hda_dsp_generic skl_hda_dsp_generic: hda_dsp_hdmi_build_controls: no PCM in topology for HDMI converter 8

[    3.704862] snd_hda_codec_hdmi ehdaudio0D2: Monitor plugged-in, Failed to power up codec ret=[-13]
[    3.722166] input: sof-hda-dsp Mic as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input35
[    3.722199] input: sof-hda-dsp Headphone as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input36
[    3.722218] input: sof-hda-dsp HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input37
[    3.722238] input: sof-hda-dsp HDMI/DP,pcm=4 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input38
[    3.722266] input: sof-hda-dsp HDMI/DP,pcm=5 as /devices/pci0000:00/0000:00:1f.3/skl_hda_dsp_generic/sound/card0/input39
[    3.820181] rtw_8822ce 0000:02:00.0: start vif 76:74:89:09:88:6a on port 0
[    3.821561] r8152 2-4:1.0 eth0: v1.12.11
[    3.832974] r8152 2-4:1.0 enp0s20f0u4: renamed from eth0
[    5.481670] kauditd_printk_skb: 29 callbacks suppressed
[    5.481680] audit: type=1100 audit(1630948844.656:40): pid=442 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[    5.481696] audit: type=1101 audit(1630948844.660:41): pid=442 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[    5.482026] audit: type=1103 audit(1630948844.660:42): pid=442 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_permit acct="sddm" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[    5.489084] audit: type=1130 audit(1630948844.666:43): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@973 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.493717] audit: type=1101 audit(1630948844.670:44): pid=444 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    5.493720] audit: type=1103 audit(1630948844.670:45): pid=444 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[    5.493722] audit: type=1006 audit(1630948844.670:46): pid=444 uid=0 old-auid=4294967295 auid=973 tty=(none) old-ses=4294967295 ses=1 res=1
[    5.493723] audit: type=1300 audit(1630948844.670:46): arch=c000003e syscall=1 success=yes exit=3 a0=9 a1=7ffd553a1b50 a2=3 a3=3cd items=0 ppid=1 pid=444 auid=973 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd" key=(null)
[    5.493725] audit: type=1327 audit(1630948844.670:46): proctitle="(systemd)"
[    5.494662] audit: type=1105 audit(1630948844.670:47): pid=444 uid=0 auid=973 ses=1 msg='op=PAM:session_open grantors=pam_loginuid,pam_loginuid,pam_keyinit,pam_limits,pam_unix,pam_permit,pam_mail,pam_systemd,pam_env acct="sddm" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.952014] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s20f0u4: link becomes ready
[    6.952226] r8152 2-4:1.0 enp0s20f0u4: carrier on
[   12.009763] kauditd_printk_skb: 12 callbacks suppressed
[   12.009768] audit: type=1131 audit(1630948851.186:58): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   27.858828] audit: type=1100 audit(1630948867.036:59): pid=520 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:authentication grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="jairot" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   27.860043] audit: type=1101 audit(1630948867.036:60): pid=520 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   27.860396] audit: type=1103 audit(1630948867.036:61): pid=520 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=pam_shells,pam_faillock,pam_permit,pam_faillock acct="jairot" exe="/usr/lib/sddm/sddm-helper" hostname=? addr=? terminal=? res=success'
[   27.860514] audit: type=1006 audit(1630948867.036:62): pid=520 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=2 res=1
[   27.860518] audit: type=1300 audit(1630948867.036:62): arch=c000003e syscall=1 success=yes exit=4 a0=8 a1=7fff486500e0 a2=4 a3=3e8 items=0 ppid=320 pid=520 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=2 comm="sddm-helper" exe="/usr/lib/sddm/sddm-helper" key=(null)
[   27.860522] audit: type=1327 audit(1630948867.036:62): proctitle=2F7573722F6C69622F7364646D2F7364646D2D68656C706572002D2D736F636B6574002F746D702F7364646D2D6175746833323565313630312D386564652D343065392D613561362D383532316461653535663365002D2D69640031002D2D7374617274002F7573722F62696E2F7374617274706C61736D612D783131002D2D
[   27.862640] rtw_8822ce 0000:02:00.0: stop vif 76:74:89:09:88:6a on port 0
[   27.868355] audit: type=1130 audit(1630948867.046:63): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@1000 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   27.871733] audit: type=1101 audit(1630948867.050:64): pid=522 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:accounting grantors=pam_access,pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   27.871752] audit: type=1103 audit(1630948867.050:65): pid=522 uid=0 auid=4294967295 ses=4294967295 msg='op=PAM:setcred grantors=? acct="jairot" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=failed'
[   27.871780] audit: type=1006 audit(1630948867.050:66): pid=522 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=3 res=1
[   28.088712] rtw_8822ce 0000:02:00.0: start vif 90:0f:0c:76:b4:6b on port 0
[   28.092917] rtw_8822ce 0000:02:00.0: stop vif 90:0f:0c:76:b4:6b on port 0
[   28.327079] rtw_8822ce 0000:02:00.0: start vif 1a:c3:83:b7:88:00 on port 0
[   32.425499] rtw_8822ce 0000:02:00.0: stop vif 1a:c3:83:b7:88:00 on port 0
[   32.654132] rtw_8822ce 0000:02:00.0: start vif 90:0f:0c:76:b4:6b on port 0
[   32.861371] logitech-hidpp-device 0003:046D:405E.0006: HID++ 4.5 device connected.
[   36.701846] wlp2s0: authenticate with e4:c3:2a:29:2e:ce
[   37.169903] wlp2s0: send auth to e4:c3:2a:29:2e:ce (try 1/3)
[   37.173294] wlp2s0: authenticated
[   37.174939] wlp2s0: associate with e4:c3:2a:29:2e:ce (try 1/3)
[   37.179745] wlp2s0: RX AssocResp from e4:c3:2a:29:2e:ce (capab=0x1411 status=0 aid=3)
[   37.179776] rtw_8822ce 0000:02:00.0: sta e4:c3:2a:29:2e:ce joined with macid 0
[   37.180119] wlp2s0: associated
[   37.231764] wlp2s0: Limiting TX power to 30 (30 - 0) dBm as advertised by e4:c3:2a:29:2e:ce
[   37.255153] IPv6: ADDRCONF(NETDEV_CHANGE): wlp2s0: link becomes ready
[   37.287186] kauditd_printk_skb: 16 callbacks suppressed
[   37.287192] audit: type=1130 audit(1630948876.463:79): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.062841] audit: type=1131 audit(1630948877.240:80): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user@973 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   38.066509] audit: type=1131 audit(1630948877.243:81): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=user-runtime-dir@973 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   48.013462] audit: type=1131 audit(1630948887.190:82): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   49.402943] audit: type=1334 audit(1630948888.580:83): prog-id=27 op=LOAD
[   49.403222] audit: type=1334 audit(1630948888.580:84): prog-id=28 op=LOAD
[   49.403359] audit: type=1334 audit(1630948888.580:85): prog-id=29 op=LOAD
[   49.430846] audit: type=1130 audit(1630948888.606:86): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   49.439756] audit: type=1130 audit(1630948888.616:87): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=accounts-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   79.464074] audit: type=1131 audit(1630948918.640:88): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-localed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   79.571909] audit: type=1334 audit(1630948918.750:89): prog-id=29 op=UNLOAD
[   79.571925] audit: type=1334 audit(1630948918.750:90): prog-id=28 op=UNLOAD
[   79.571931] audit: type=1334 audit(1630948918.750:91): prog-id=27 op=UNLOAD
[  226.011787] audit: type=1111 audit(1630949065.190:92): pid=307 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp0s20f0u4" ifindex=3 args=2000 pid=639 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
[  226.028390] audit: type=1111 audit(1630949065.206:93): pid=307 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="wlp2s0" ifindex=2 args=2000 pid=639 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
[  227.450971] audit: type=1111 audit(1630949066.626:94): pid=307 uid=0 auid=4294967295 ses=4294967295 msg='op=device-disconnect interface="wlp2s0" ifindex=2 pid=639 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
[  227.457756] audit: type=1130 audit(1630949066.633:95): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  227.458327] audit: type=1111 audit(1630949066.636:96): pid=307 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="wlp2s0" ifindex=2 args=0 pid=639 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
[  227.458352] wlp2s0: deauthenticating from e4:c3:2a:29:2e:ce by local choice (Reason: 3=DEAUTH_LEAVING)
[  227.528329] rtw_8822ce 0000:02:00.0: sta e4:c3:2a:29:2e:ce with macid 0 left
[  227.583485] rtw_8822ce 0000:02:00.0: stop vif 90:0f:0c:76:b4:6b on port 0
[  227.813459] rtw_8822ce 0000:02:00.0: start vif 0a:89:31:80:48:a5 on port 0
[  229.483016] audit: type=1111 audit(1630949068.660:97): pid=307 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp0s20f0u4" ifindex=3 args=0 pid=639 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
[  238.010186] audit: type=1131 audit(1630949077.186:98): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  245.201637] audit: type=1100 audit(1630949084.380:99): pid=1070 uid=1000 auid=1000 ses=3 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  245.203010] audit: type=1101 audit(1630949084.380:100): pid=1070 uid=1000 auid=1000 ses=3 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  245.203662] audit: type=1110 audit(1630949084.380:101): pid=1070 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  245.204181] audit: type=1105 audit(1630949084.380:102): pid=1070 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  256.469469] audit: type=1106 audit(1630949095.646:103): pid=1070 uid=1000 auid=1000 ses=3 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  256.469510] audit: type=1104 audit(1630949095.646:104): pid=1070 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  493.317134] audit: type=1111 audit(1630949332.493:105): pid=307 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp0s20f0u4" ifindex=3 args=2000 pid=639 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
[  502.901012] audit: type=1111 audit(1630949342.076:106): pid=307 uid=0 auid=4294967295 ses=4294967295 msg='op=statistics interface="enp0s20f0u4" ifindex=3 args=0 pid=639 uid=1000 result=success exe="/usr/bin/NetworkManager" hostname=? addr=? terminal=? res=success'
[  624.072834] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[  624.072841] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[  624.085762] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[  624.085791] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[  624.253019] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[  624.253026] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[  624.261136] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[  624.261148] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[  624.428830] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[  624.428839] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[  624.436307] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[  624.436334] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[  624.574173] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[  624.574180] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[  624.586273] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[  624.586280] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[  639.001697] rtw_8822ce 0000:02:00.0: stop vif 0a:89:31:80:48:a5 on port 0
[  639.235481] rtw_8822ce 0000:02:00.0: start vif 5a:8f:c5:86:7e:c4 on port 0
[  900.562965] audit: type=1130 audit(1630949739.740:107): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  900.562969] audit: type=1131 audit(1630949739.740:108): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  925.137749] audit: type=1100 audit(1630949764.313:109): pid=3292 uid=1000 auid=1000 ses=3 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[  925.140294] audit: type=1101 audit(1630949764.316:110): pid=3292 uid=1000 auid=1000 ses=3 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[  925.141138] audit: type=1110 audit(1630949764.316:111): pid=3292 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[  925.141718] audit: type=1105 audit(1630949764.320:112): pid=3292 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[  934.475431] audit: type=1334 audit(1630949773.653:113): prog-id=17 op=UNLOAD
[  934.483725] audit: type=1334 audit(1630949773.660:114): prog-id=14 op=UNLOAD
[  934.484017] audit: type=1334 audit(1630949773.660:115): prog-id=11 op=UNLOAD
[  934.567087] audit: type=1334 audit(1630949773.743:116): prog-id=30 op=LOAD
[  934.567116] audit: type=1334 audit(1630949773.743:117): prog-id=31 op=LOAD
[  934.567126] audit: type=1334 audit(1630949773.743:118): prog-id=24 op=UNLOAD
[  934.567131] audit: type=1334 audit(1630949773.743:119): prog-id=25 op=UNLOAD
[  934.568486] audit: type=1334 audit(1630949773.746:120): prog-id=32 op=LOAD
[  934.568555] audit: type=1334 audit(1630949773.746:121): prog-id=33 op=LOAD
[  934.568586] audit: type=1334 audit(1630949773.746:122): prog-id=34 op=LOAD
[ 1048.001833] rtw_8822ce 0000:02:00.0: stop vif 5a:8f:c5:86:7e:c4 on port 0
[ 1048.234084] rtw_8822ce 0000:02:00.0: start vif 3a:67:7b:b4:5a:79 on port 0
[ 1458.032841] rtw_8822ce 0000:02:00.0: stop vif 3a:67:7b:b4:5a:79 on port 0
[ 1458.266376] rtw_8822ce 0000:02:00.0: start vif c2:a6:bd:93:5b:ab on port 0
[ 1482.464976] kauditd_printk_skb: 14 callbacks suppressed
[ 1482.464981] audit: type=1100 audit(1630950321.643:137): pid=4041 uid=1000 auid=1000 ses=3 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1482.466506] audit: type=1101 audit(1630950321.643:138): pid=4041 uid=1000 auid=1000 ses=3 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1482.467365] audit: type=1110 audit(1630950321.643:139): pid=4041 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1482.468051] audit: type=1105 audit(1630950321.646:140): pid=4041 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1483.783607] audit: type=1106 audit(1630950322.960:141): pid=4041 uid=1000 auid=1000 ses=3 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1483.783629] audit: type=1104 audit(1630950322.960:142): pid=4041 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1504.653495] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1504.653505] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1504.663380] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1504.663392] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1504.883771] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1504.883781] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1504.891719] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1504.891729] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.084030] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1505.084040] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.092039] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1505.092048] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.264287] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1505.264297] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.272301] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1505.272310] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.440274] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1505.440285] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.447383] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1505.447392] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.684799] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1505.684809] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.692810] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1505.692818] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.925064] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1505.925074] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1505.933278] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1505.933288] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1506.171255] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1506.171266] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1506.183393] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1506.183402] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1506.425785] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1506.425797] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1506.433940] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1506.433950] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1506.712117] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1506.712125] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1506.724236] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1506.724246] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1506.997360] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1506.997370] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1507.004492] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1507.004501] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1507.422273] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1507.422284] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1507.430087] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1507.430097] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1507.813192] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1507.813201] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1507.820678] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1507.820688] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1508.203225] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1508.203235] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1508.211195] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1508.211205] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1508.824183] atkbd serio0: Unknown key pressed (translated set 2, code 0xab on isa0060/serio0).
[ 1508.824193] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1508.832035] atkbd serio0: Unknown key released (translated set 2, code 0xab on isa0060/serio0).
[ 1508.832045] atkbd serio0: Use 'setkeycodes e02b <keycode>' to make it known.
[ 1867.034744] rtw_8822ce 0000:02:00.0: stop vif c2:a6:bd:93:5b:ab on port 0
[ 1867.269363] rtw_8822ce 0000:02:00.0: start vif 32:1c:c5:3d:29:f6 on port 0
[ 2275.034757] rtw_8822ce 0000:02:00.0: stop vif 32:1c:c5:3d:29:f6 on port 0
[ 2275.270278] rtw_8822ce 0000:02:00.0: start vif ae:6b:7c:a7:11:6d on port 0
[ 2685.058160] rtw_8822ce 0000:02:00.0: stop vif ae:6b:7c:a7:11:6d on port 0
[ 2685.288130] rtw_8822ce 0000:02:00.0: start vif 06:7c:10:4f:98:46 on port 0
[ 3092.061436] rtw_8822ce 0000:02:00.0: stop vif 06:7c:10:4f:98:46 on port 0
[ 3092.291384] rtw_8822ce 0000:02:00.0: start vif 02:c5:93:57:ff:9a on port 0
[ 3446.864909] audit: type=1100 audit(1630952286.043:143): pid=10646 uid=1000 auid=1000 ses=3 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3446.866575] audit: type=1101 audit(1630952286.043:144): pid=10646 uid=1000 auid=1000 ses=3 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3446.867212] audit: type=1110 audit(1630952286.043:145): pid=10646 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3446.867875] audit: type=1105 audit(1630952286.046:146): pid=10646 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3462.509523] audit: type=1106 audit(1630952301.686:147): pid=10646 uid=1000 auid=1000 ses=3 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3462.509707] audit: type=1104 audit(1630952301.686:148): pid=10646 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3500.060967] rtw_8822ce 0000:02:00.0: stop vif 02:c5:93:57:ff:9a on port 0
[ 3500.295648] rtw_8822ce 0000:02:00.0: start vif b2:db:7c:6f:9f:05 on port 0
[ 3511.733621] audit: type=1101 audit(1630952350.910:149): pid=11691 uid=1000 auid=1000 ses=3 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3511.733892] audit: type=1110 audit(1630952350.910:150): pid=11691 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3511.734116] audit: type=1105 audit(1630952350.913:151): pid=11691 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3513.258770] audit: type=1106 audit(1630952352.436:152): pid=11691 uid=1000 auid=1000 ses=3 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3513.258819] audit: type=1104 audit(1630952352.436:153): pid=11691 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[ 3606.991087] audit: type=1130 audit(1630952446.170:154): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 3617.010364] audit: type=1131 audit(1630952456.186:155): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 3910.000905] rtw_8822ce 0000:02:00.0: stop vif b2:db:7c:6f:9f:05 on port 0
[ 3910.229187] rtw_8822ce 0000:02:00.0: start vif 2a:49:a6:dd:65:83 on port 0
[ 4318.087586] rtw_8822ce 0000:02:00.0: stop vif 2a:49:a6:dd:65:83 on port 0
[ 4318.321082] rtw_8822ce 0000:02:00.0: start vif be:e8:b8:92:a6:29 on port 0
[ 4728.000769] rtw_8822ce 0000:02:00.0: stop vif be:e8:b8:92:a6:29 on port 0
[ 4728.229515] rtw_8822ce 0000:02:00.0: start vif 32:3f:ea:b3:74:65 on port 0
[ 5137.003934] rtw_8822ce 0000:02:00.0: stop vif 32:3f:ea:b3:74:65 on port 0
[ 5137.241799] rtw_8822ce 0000:02:00.0: start vif 6e:ca:c0:d0:62:dd on port 0
[ 5547.000894] rtw_8822ce 0000:02:00.0: stop vif 6e:ca:c0:d0:62:dd on port 0
[ 5547.233000] rtw_8822ce 0000:02:00.0: start vif 36:50:47:2e:45:53 on port 0
[ 5957.031213] rtw_8822ce 0000:02:00.0: stop vif 36:50:47:2e:45:53 on port 0
[ 5957.262980] rtw_8822ce 0000:02:00.0: start vif 56:72:00:9b:89:75 on port 0
[ 6366.000641] rtw_8822ce 0000:02:00.0: stop vif 56:72:00:9b:89:75 on port 0
[ 6366.231950] rtw_8822ce 0000:02:00.0: start vif aa:60:84:05:e1:36 on port 0
[ 6774.033746] rtw_8822ce 0000:02:00.0: stop vif aa:60:84:05:e1:36 on port 0
[ 6774.267211] rtw_8822ce 0000:02:00.0: start vif 5a:bb:e4:7f:42:71 on port 0
[ 6958.981607] audit: type=1130 audit(1630955798.160:156): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 6969.009220] audit: type=1131 audit(1630955808.186:157): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 7183.056792] rtw_8822ce 0000:02:00.0: stop vif 5a:bb:e4:7f:42:71 on port 0
[ 7183.288927] rtw_8822ce 0000:02:00.0: start vif 1a:b2:d3:1e:fe:3a on port 0
[ 7315.735285] audit: type=1100 audit(1630956154.913:158): pid=13223 uid=1000 auid=1000 ses=2 msg='op=PAM:unix_chkpwd acct="jairot" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=success'
[ 7591.059996] rtw_8822ce 0000:02:00.0: stop vif 1a:b2:d3:1e:fe:3a on port 0
[ 7591.291965] rtw_8822ce 0000:02:00.0: start vif ce:18:f1:0d:93:e6 on port 0
[ 7714.722159] audit: type=1100 audit(1630956553.900:159): pid=18194 uid=1000 auid=1000 ses=3 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 7714.724308] audit: type=1101 audit(1630956553.903:160): pid=18194 uid=1000 auid=1000 ses=3 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 7714.725687] audit: type=1110 audit(1630956553.903:161): pid=18194 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 7714.726419] audit: type=1105 audit(1630956553.903:162): pid=18194 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 7729.640159] audit: type=1106 audit(1630956568.820:163): pid=18194 uid=1000 auid=1000 ses=3 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 7729.640248] audit: type=1104 audit(1630956568.820:164): pid=18194 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 7999.060010] rtw_8822ce 0000:02:00.0: stop vif ce:18:f1:0d:93:e6 on port 0
[ 7999.292448] rtw_8822ce 0000:02:00.0: start vif 76:10:a2:2b:57:2e on port 0
[ 8408.001220] rtw_8822ce 0000:02:00.0: stop vif 76:10:a2:2b:57:2e on port 0
[ 8408.234676] rtw_8822ce 0000:02:00.0: start vif 3a:62:b3:20:0c:da on port 0
[ 8817.083184] rtw_8822ce 0000:02:00.0: stop vif 3a:62:b3:20:0c:da on port 0
[ 8817.314691] rtw_8822ce 0000:02:00.0: start vif 5a:55:0d:10:c3:5b on port 0
[ 9226.086350] rtw_8822ce 0000:02:00.0: stop vif 5a:55:0d:10:c3:5b on port 0
[ 9226.318689] rtw_8822ce 0000:02:00.0: start vif 82:33:05:fd:a6:f2 on port 0
[ 9348.385151] audit: type=1100 audit(1630958187.563:165): pid=19869 uid=1000 auid=1000 ses=2 msg='op=PAM:unix_chkpwd acct="jairot" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=success'
[ 9635.001036] rtw_8822ce 0000:02:00.0: stop vif 82:33:05:fd:a6:f2 on port 0
[ 9635.234580] rtw_8822ce 0000:02:00.0: start vif de:28:6f:e1:8a:55 on port 0
[10044.001046] rtw_8822ce 0000:02:00.0: stop vif de:28:6f:e1:8a:55 on port 0
[10044.231263] rtw_8822ce 0000:02:00.0: start vif aa:9c:67:0f:80:49 on port 0
[10219.166793] audit: type=1100 audit(1630959058.346:166): pid=20199 uid=1000 auid=1000 ses=2 msg='op=PAM:unix_chkpwd acct="jairot" exe="/usr/bin/unix_chkpwd" hostname=? addr=? terminal=? res=success'
[10280.981484] audit: type=1130 audit(1630959120.160:167): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[10291.011731] audit: type=1131 audit(1630959130.190:168): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[10455.001242] rtw_8822ce 0000:02:00.0: stop vif aa:9c:67:0f:80:49 on port 0
[10455.239854] rtw_8822ce 0000:02:00.0: start vif 02:4d:b8:5e:af:e9 on port 0
[10864.033497] rtw_8822ce 0000:02:00.0: stop vif 02:4d:b8:5e:af:e9 on port 0
[10864.267541] rtw_8822ce 0000:02:00.0: start vif 86:db:67:4e:ce:9f on port 0
[11273.032510] rtw_8822ce 0000:02:00.0: stop vif 86:db:67:4e:ce:9f on port 0
[11273.270787] rtw_8822ce 0000:02:00.0: start vif 32:28:6c:28:b3:e9 on port 0
[11683.055794] rtw_8822ce 0000:02:00.0: stop vif 32:28:6c:28:b3:e9 on port 0
[11683.287209] rtw_8822ce 0000:02:00.0: start vif 76:c6:dc:39:1c:2e on port 0
[12091.016154] rtw_8822ce 0000:02:00.0: stop vif 76:c6:dc:39:1c:2e on port 0
[12091.249323] rtw_8822ce 0000:02:00.0: start vif e2:de:b6:0c:21:e8 on port 0
[12499.059023] rtw_8822ce 0000:02:00.0: stop vif e2:de:b6:0c:21:e8 on port 0
[12499.289226] rtw_8822ce 0000:02:00.0: start vif ba:80:3b:d3:a7:0b on port 0
[12777.469432] audit: type=1100 audit(1630961616.650:169): pid=21867 uid=1000 auid=1000 ses=3 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12777.470763] audit: type=1101 audit(1630961616.650:170): pid=21867 uid=1000 auid=1000 ses=3 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12777.471578] audit: type=1110 audit(1630961616.650:171): pid=21867 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12777.472339] audit: type=1105 audit(1630961616.653:172): pid=21867 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12780.365452] audit: type=1106 audit(1630961619.546:173): pid=21867 uid=1000 auid=1000 ses=3 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12780.365471] audit: type=1104 audit(1630961619.546:174): pid=21867 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12896.034358] audit: type=1101 audit(1630961735.213:175): pid=22313 uid=1000 auid=1000 ses=3 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12896.034687] audit: type=1110 audit(1630961735.213:176): pid=22313 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12896.034912] audit: type=1105 audit(1630961735.213:177): pid=22313 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12905.291442] audit: type=1106 audit(1630961744.470:178): pid=22313 uid=1000 auid=1000 ses=3 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12905.291479] audit: type=1104 audit(1630961744.470:179): pid=22313 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/3 res=success'
[12906.999550] rtw_8822ce 0000:02:00.0: stop vif ba:80:3b:d3:a7:0b on port 0
[12907.230474] rtw_8822ce 0000:02:00.0: start vif ee:9f:47:e5:da:5a on port 0
[13315.078670] rtw_8822ce 0000:02:00.0: stop vif ee:9f:47:e5:da:5a on port 0
[13315.309849] rtw_8822ce 0000:02:00.0: start vif 4e:82:8c:8a:61:48 on port 0
[13507.979651] audit: type=1130 audit(1630962347.160:180): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[13518.011197] audit: type=1131 audit(1630962357.190:181): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[13591.516011] audit: type=1100 audit(1630962430.696:182): pid=24719 uid=1000 auid=1000 ses=3 msg='op=PAM:authentication grantors=pam_faillock,pam_permit,pam_faillock acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[13591.517410] audit: type=1101 audit(1630962430.696:183): pid=24719 uid=1000 auid=1000 ses=3 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="jairot" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[13591.518245] audit: type=1110 audit(1630962430.696:184): pid=24719 uid=1000 auid=1000 ses=3 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[13591.519091] audit: type=1105 audit(1630962430.700:185): pid=24719 uid=1000 auid=1000 ses=3 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'

Output of rfkill:

ID TYPE      DEVICE      SOFT      HARD
 0 wlan      phy0   unblocked unblocked
 1 bluetooth hci0   unblocked unblocked

Offline

#6 2021-09-06 21:18:28

loqs
Member
Registered: 2014-03-06
Posts: 19,001

Re: [SOLVED] Bluetooth with rtl8822ce card is not working

What happens when you try and configure or use bluetooth?

Offline

#7 2021-09-06 21:49:43

jairot
Member
Registered: 2021-09-06
Posts: 7

Re: [SOLVED] Bluetooth with rtl8822ce card is not working

In true noob fashion it seems like I forgot to enable the bluetooth.services before I tried scanning and connecting devices, it seems to scan fine. I can't connect my devices yet, but I'll read the wiki for troubleshooting.

If I happen to run into trouble while attending to the bluetooth issue, what is the right etiquette: should I keep asking in this thread or should I open a new one?

Thanks anyway for the help and patience. Have a great one!

Last edited by jairot (2021-09-06 21:50:27)

Offline

Board footer

Powered by FluxBB