-
Notifications
You must be signed in to change notification settings - Fork 1
/
boot.log
3182 lines (3182 loc) · 354 KB
/
boot.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- Logs begin at Fri 2020-07-31 09:00:17 MDT, end at Sun 2021-01-03 14:38:18 MST. --
Jan 03 14:36:41 thiccpad kernel: Linux version 5.8.18-200.fc32.x86_64 ([email protected]) (gcc (GCC) 10.2.1 20201016 (Red Hat 10.2.1-6), GNU ld version 2.34-5.fc32) #1 SMP Mon Nov 2 19:49:11 UTC 2020
Jan 03 14:36:41 thiccpad kernel: Command line: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.8.18-200.fc32.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet loglevel=3 nouveau.modeset=0 rd.plymouth=0 plymouth.enable=0
Jan 03 14:36:41 thiccpad kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Jan 03 14:36:41 thiccpad kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Jan 03 14:36:41 thiccpad kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Jan 03 14:36:41 thiccpad kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Jan 03 14:36:41 thiccpad kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Jan 03 14:36:41 thiccpad kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Jan 03 14:36:41 thiccpad kernel: x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
Jan 03 14:36:41 thiccpad kernel: x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
Jan 03 14:36:41 thiccpad kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Jan 03 14:36:41 thiccpad kernel: BIOS-provided physical RAM map:
Jan 03 14:36:41 thiccpad kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Jan 03 14:36:41 thiccpad kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jan 03 14:36:41 thiccpad kernel: BIOS-e820: [mem 0x0000000000100000-0x000000006a681fff] usable
Jan 03 14:36:41 thiccpad kernel: BIOS-e820: [mem 0x000000006a682000-0x000000006e85ffff] reserved
Jan 03 14:36:41 thiccpad kernel: BIOS-e820: [mem 0x000000006e860000-0x000000006fbe9fff] ACPI NVS
Jan 03 14:36:41 thiccpad kernel: BIOS-e820: [mem 0x000000006fbea000-0x000000006fc4efff] ACPI data
Jan 03 14:36:41 thiccpad kernel: BIOS-e820: [mem 0x000000006fc4f000-0x000000006fc4ffff] usable
Jan 03 14:36:41 thiccpad kernel: BIOS-e820: [mem 0x000000006fc50000-0x000000007d7fffff] reserved
Jan 03 14:36:41 thiccpad kernel: BIOS-e820: [mem 0x0000000100000000-0x000000047e7fffff] usable
Jan 03 14:36:41 thiccpad kernel: NX (Execute Disable) protection: active
Jan 03 14:36:41 thiccpad kernel: e820: update [mem 0x48582018-0x48592057] usable ==> usable
Jan 03 14:36:41 thiccpad kernel: e820: update [mem 0x48582018-0x48592057] usable ==> usable
Jan 03 14:36:41 thiccpad kernel: extended physical RAM map:
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x0000000000100000-0x0000000048582017] usable
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x0000000048582018-0x0000000048592057] usable
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x0000000048592058-0x000000006a681fff] usable
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x000000006a682000-0x000000006e85ffff] reserved
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x000000006e860000-0x000000006fbe9fff] ACPI NVS
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x000000006fbea000-0x000000006fc4efff] ACPI data
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x000000006fc4f000-0x000000006fc4ffff] usable
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x000000006fc50000-0x000000007d7fffff] reserved
Jan 03 14:36:41 thiccpad kernel: reserve setup_data: [mem 0x0000000100000000-0x000000047e7fffff] usable
Jan 03 14:36:41 thiccpad kernel: efi: EFI v2.70 by Lenovo
Jan 03 14:36:41 thiccpad kernel: efi: TPMFinalLog=0x6fbe2000 SMBIOS=0x6cc83000 SMBIOS 3.0=0x6cc76000 ACPI=0x6fc4e000 ACPI 2.0=0x6fc4e014 MEMATTR=0x66aeb018 ESRT=0x6b101000 RNG=0x6cc22698 TPMEventLog=0x49779018
Jan 03 14:36:41 thiccpad kernel: efi: seeding entropy pool
Jan 03 14:36:41 thiccpad kernel: secureboot: Secure boot disabled
Jan 03 14:36:41 thiccpad kernel: SMBIOS 3.2.0 present.
Jan 03 14:36:41 thiccpad kernel: DMI: LENOVO 20SAS01X00/20SAS01X00, BIOS N2QET19W (1.13 ) 01/15/2020
Jan 03 14:36:41 thiccpad kernel: tsc: Detected 1600.000 MHz processor
Jan 03 14:36:41 thiccpad kernel: tsc: Detected 1599.960 MHz TSC
Jan 03 14:36:41 thiccpad kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jan 03 14:36:41 thiccpad kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jan 03 14:36:41 thiccpad kernel: last_pfn = 0x47e800 max_arch_pfn = 0x400000000
Jan 03 14:36:41 thiccpad kernel: MTRR default type: write-back
Jan 03 14:36:41 thiccpad kernel: MTRR fixed ranges enabled:
Jan 03 14:36:41 thiccpad kernel: 00000-9FFFF write-back
Jan 03 14:36:41 thiccpad kernel: A0000-BFFFF uncachable
Jan 03 14:36:41 thiccpad kernel: C0000-FFFFF write-protect
Jan 03 14:36:41 thiccpad kernel: MTRR variable ranges enabled:
Jan 03 14:36:41 thiccpad kernel: 0 base 0080000000 mask 7F80000000 uncachable
Jan 03 14:36:41 thiccpad kernel: 1 base 007C000000 mask 7FFC000000 uncachable
Jan 03 14:36:41 thiccpad kernel: 2 base 007A000000 mask 7FFE000000 uncachable
Jan 03 14:36:41 thiccpad kernel: 3 base 0079000000 mask 7FFF000000 uncachable
Jan 03 14:36:41 thiccpad kernel: 4 base 2000000000 mask 6000000000 uncachable
Jan 03 14:36:41 thiccpad kernel: 5 base 1000000000 mask 7000000000 uncachable
Jan 03 14:36:41 thiccpad kernel: 6 base 0800000000 mask 7800000000 uncachable
Jan 03 14:36:41 thiccpad kernel: 7 base 4000000000 mask 4000000000 uncachable
Jan 03 14:36:41 thiccpad kernel: 8 disabled
Jan 03 14:36:41 thiccpad kernel: 9 disabled
Jan 03 14:36:41 thiccpad kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
Jan 03 14:36:41 thiccpad kernel: last_pfn = 0x6fc50 max_arch_pfn = 0x400000000
Jan 03 14:36:41 thiccpad kernel: esrt: Reserving ESRT space from 0x000000006b101000 to 0x000000006b1010d8.
Jan 03 14:36:41 thiccpad kernel: Using GB pages for direct mapping
Jan 03 14:36:41 thiccpad kernel: secureboot: Secure boot disabled
Jan 03 14:36:41 thiccpad kernel: RAMDISK: [mem 0x2abe5000-0x2cedffff]
Jan 03 14:36:41 thiccpad kernel: ACPI: Early table checksum verification disabled
Jan 03 14:36:41 thiccpad kernel: ACPI: RSDP 0x000000006FC4E014 000024 (v02 LENOVO)
Jan 03 14:36:41 thiccpad kernel: ACPI: XSDT 0x000000006FC4C188 000114 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: FACP 0x000000006CB33000 000114 (v06 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: DSDT 0x000000006CB06000 028B96 (v02 LENOVO CFL 20170001 INTL 20160422)
Jan 03 14:36:41 thiccpad kernel: ACPI: FACS 0x000000006FA2C000 000040
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CB88000 001B4A (v02 LENOVO CpuSsdt 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CB87000 0005A1 (v02 LENOVO CtdpB 00001000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CB4E000 003E56 (v02 LENOVO DptfTabl 00001000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CB38000 00330A (v02 LENOVO SaSsdt 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CB37000 00060E (v02 LENOVO Tpm2Tabl 00001000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: TPM2 0x000000006CB36000 000034 (v04 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CB34000 000530 (v02 LENOVO PerfTune 00001000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: HPET 0x000000006CB32000 000038 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: APIC 0x000000006CB31000 000164 (v03 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: MCFG 0x000000006CB30000 00003C (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: ECDT 0x000000006CB2F000 000053 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CB04000 001E6E (v02 LENOVO WHL_Tbt_ 00001000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CB03000 000103 (v02 LENOVO PID0Ssdt 00000010 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CB01000 0014C0 (v02 LENOVO ProjSsdt 00000010 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: NHLT 0x000000006CAFF000 00184A (v00 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: BOOT 0x000000006CAFE000 000028 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: SLIC 0x000000006CAFC000 000176 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CAFA000 000EF6 (v02 LENOVO UsbCTabl 00001000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: LPIT 0x000000006CAF9000 000094 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: WSMT 0x000000006CAF8000 000028 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0x000000006CAF6000 001983 (v02 LENOVO TbtTypeC 00000000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: DBGP 0x000000006CAF5000 000034 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: DBG2 0x000000006CAF4000 000054 (v00 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: MSDM 0x000000006CAF3000 000055 (v03 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: BATB 0x000000006C907000 00004A (v02 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: DMAR 0x000000006CAFD000 0000A8 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: BGRT 0x000000006B100000 000038 (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: UEFI 0x000000006FA26000 00013E (v01 LENOVO TP-N2Q 00001130 PTEC 00000002)
Jan 03 14:36:41 thiccpad kernel: ACPI: FPDT 0x000000006B0FF000 000044 (v01 LENOVO TP-N2Q 00001130 PTEC 00001130)
Jan 03 14:36:41 thiccpad kernel: ACPI: Local APIC address 0xfee00000
Jan 03 14:36:41 thiccpad kernel: No NUMA configuration found
Jan 03 14:36:41 thiccpad kernel: Faking a node at [mem 0x0000000000000000-0x000000047e7fffff]
Jan 03 14:36:41 thiccpad kernel: NODE_DATA(0) allocated [mem 0x47e7d5000-0x47e7fffff]
Jan 03 14:36:41 thiccpad kernel: Zone ranges:
Jan 03 14:36:41 thiccpad kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
Jan 03 14:36:41 thiccpad kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
Jan 03 14:36:41 thiccpad kernel: Normal [mem 0x0000000100000000-0x000000047e7fffff]
Jan 03 14:36:41 thiccpad kernel: Device empty
Jan 03 14:36:41 thiccpad kernel: Movable zone start for each node
Jan 03 14:36:41 thiccpad kernel: Early memory node ranges
Jan 03 14:36:41 thiccpad kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
Jan 03 14:36:41 thiccpad kernel: node 0: [mem 0x0000000000100000-0x000000006a681fff]
Jan 03 14:36:41 thiccpad kernel: node 0: [mem 0x000000006fc4f000-0x000000006fc4ffff]
Jan 03 14:36:41 thiccpad kernel: node 0: [mem 0x0000000100000000-0x000000047e7fffff]
Jan 03 14:36:41 thiccpad kernel: Zeroed struct page in unavailable ranges: 29151 pages
Jan 03 14:36:41 thiccpad kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000047e7fffff]
Jan 03 14:36:41 thiccpad kernel: On node 0 totalpages: 4099617
Jan 03 14:36:41 thiccpad kernel: DMA zone: 64 pages used for memmap
Jan 03 14:36:41 thiccpad kernel: DMA zone: 21 pages reserved
Jan 03 14:36:41 thiccpad kernel: DMA zone: 3998 pages, LIFO batch:0
Jan 03 14:36:41 thiccpad kernel: DMA32 zone: 6747 pages used for memmap
Jan 03 14:36:41 thiccpad kernel: DMA32 zone: 431747 pages, LIFO batch:63
Jan 03 14:36:41 thiccpad kernel: Normal zone: 57248 pages used for memmap
Jan 03 14:36:41 thiccpad kernel: Normal zone: 3663872 pages, LIFO batch:63
Jan 03 14:36:41 thiccpad kernel: Reserving Intel graphics memory at [mem 0x79800000-0x7d7fffff]
Jan 03 14:36:41 thiccpad kernel: ACPI: PM-Timer IO Port: 0x1808
Jan 03 14:36:41 thiccpad kernel: ACPI: Local APIC address 0xfee00000
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
Jan 03 14:36:41 thiccpad kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Jan 03 14:36:41 thiccpad kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jan 03 14:36:41 thiccpad kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jan 03 14:36:41 thiccpad kernel: ACPI: IRQ0 used by override.
Jan 03 14:36:41 thiccpad kernel: ACPI: IRQ9 used by override.
Jan 03 14:36:41 thiccpad kernel: Using ACPI (MADT) for SMP configuration information
Jan 03 14:36:41 thiccpad kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jan 03 14:36:41 thiccpad kernel: e820: update [mem 0x65f5c000-0x6605bfff] usable ==> reserved
Jan 03 14:36:41 thiccpad kernel: TSC deadline timer available
Jan 03 14:36:41 thiccpad kernel: smpboot: Allowing 12 CPUs, 0 hotplug CPUs
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x48582000-0x48582fff]
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x48592000-0x48592fff]
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x65f5c000-0x6605bfff]
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x6a682000-0x6e85ffff]
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x6e860000-0x6fbe9fff]
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x6fbea000-0x6fc4efff]
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x6fc50000-0x7d7fffff]
Jan 03 14:36:41 thiccpad kernel: PM: hibernation: Registered nosave memory: [mem 0x7d800000-0xffffffff]
Jan 03 14:36:41 thiccpad kernel: [mem 0x7d800000-0xffffffff] available for PCI devices
Jan 03 14:36:41 thiccpad kernel: Booting paravirtualized kernel on bare hardware
Jan 03 14:36:41 thiccpad kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Jan 03 14:36:41 thiccpad kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
Jan 03 14:36:41 thiccpad kernel: percpu: Embedded 54 pages/cpu s184320 r8192 d28672 u262144
Jan 03 14:36:41 thiccpad kernel: pcpu-alloc: s184320 r8192 d28672 u262144 alloc=1*2097152
Jan 03 14:36:41 thiccpad kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- --
Jan 03 14:36:41 thiccpad kernel: Built 1 zonelists, mobility grouping on. Total pages: 4035537
Jan 03 14:36:41 thiccpad kernel: Policy zone: Normal
Jan 03 14:36:41 thiccpad kernel: Kernel command line: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.8.18-200.fc32.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet loglevel=3 nouveau.modeset=0 rd.plymouth=0 plymouth.enable=0
Jan 03 14:36:41 thiccpad kernel: Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: mem auto-init: stack:off, heap alloc:off, heap free:off
Jan 03 14:36:41 thiccpad kernel: Memory: 15874568K/16398468K available (14339K kernel code, 2499K rwdata, 8752K rodata, 2508K init, 4636K bss, 523900K reserved, 0K cma-reserved)
Jan 03 14:36:41 thiccpad kernel: random: get_random_u64 called from __kmem_cache_create+0x3e/0x610 with crng_init=0
Jan 03 14:36:41 thiccpad kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
Jan 03 14:36:41 thiccpad kernel: ftrace: allocating 43521 entries in 171 pages
Jan 03 14:36:41 thiccpad kernel: ftrace: allocated 171 pages with 5 groups
Jan 03 14:36:41 thiccpad kernel: rcu: Hierarchical RCU implementation.
Jan 03 14:36:41 thiccpad kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=12.
Jan 03 14:36:41 thiccpad kernel: Trampoline variant of Tasks RCU enabled.
Jan 03 14:36:41 thiccpad kernel: Rude variant of Tasks RCU enabled.
Jan 03 14:36:41 thiccpad kernel: Tracing variant of Tasks RCU enabled.
Jan 03 14:36:41 thiccpad kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Jan 03 14:36:41 thiccpad kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
Jan 03 14:36:41 thiccpad kernel: NR_IRQS: 524544, nr_irqs: 2152, preallocated irqs: 16
Jan 03 14:36:41 thiccpad kernel: random: crng done (trusting CPU's manufacturer)
Jan 03 14:36:41 thiccpad kernel: Console: colour dummy device 80x25
Jan 03 14:36:41 thiccpad kernel: printk: console [tty0] enabled
Jan 03 14:36:41 thiccpad kernel: ACPI: Core revision 20200528
Jan 03 14:36:41 thiccpad kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Jan 03 14:36:41 thiccpad kernel: APIC: Switch to symmetric I/O mode setup
Jan 03 14:36:41 thiccpad kernel: DMAR: Host address width 39
Jan 03 14:36:41 thiccpad kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Jan 03 14:36:41 thiccpad kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
Jan 03 14:36:41 thiccpad kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Jan 03 14:36:41 thiccpad kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
Jan 03 14:36:41 thiccpad kernel: DMAR: RMRR base: 0x0000006e81a000 end: 0x0000006e839fff
Jan 03 14:36:41 thiccpad kernel: DMAR: RMRR base: 0x00000079000000 end: 0x0000007d7fffff
Jan 03 14:36:41 thiccpad kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
Jan 03 14:36:41 thiccpad kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Jan 03 14:36:41 thiccpad kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Jan 03 14:36:41 thiccpad kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Jan 03 14:36:41 thiccpad kernel: x2apic enabled
Jan 03 14:36:41 thiccpad kernel: Switched APIC routing to cluster x2apic.
Jan 03 14:36:41 thiccpad kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jan 03 14:36:41 thiccpad kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x170fff30cc4, max_idle_ns: 440795237869 ns
Jan 03 14:36:41 thiccpad kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3199.92 BogoMIPS (lpj=1599960)
Jan 03 14:36:41 thiccpad kernel: pid_max: default: 32768 minimum: 301
Jan 03 14:36:41 thiccpad kernel: LSM: Security Framework initializing
Jan 03 14:36:41 thiccpad kernel: Yama: becoming mindful.
Jan 03 14:36:41 thiccpad kernel: SELinux: Initializing.
Jan 03 14:36:41 thiccpad kernel: Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Jan 03 14:36:41 thiccpad kernel: process: using mwait in idle threads
Jan 03 14:36:41 thiccpad kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Jan 03 14:36:41 thiccpad kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Jan 03 14:36:41 thiccpad kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jan 03 14:36:41 thiccpad kernel: Spectre V2 : Mitigation: Enhanced IBRS
Jan 03 14:36:41 thiccpad kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jan 03 14:36:41 thiccpad kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jan 03 14:36:41 thiccpad kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Jan 03 14:36:41 thiccpad kernel: Freeing SMP alternatives memory: 40K
Jan 03 14:36:41 thiccpad kernel: smpboot: CPU0: Intel(R) Core(TM) i7-10710U CPU @ 1.10GHz (family: 0x6, model: 0xa6, stepping: 0x0)
Jan 03 14:36:41 thiccpad kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Jan 03 14:36:41 thiccpad kernel: ... version: 4
Jan 03 14:36:41 thiccpad kernel: ... bit width: 48
Jan 03 14:36:41 thiccpad kernel: ... generic registers: 4
Jan 03 14:36:41 thiccpad kernel: ... value mask: 0000ffffffffffff
Jan 03 14:36:41 thiccpad kernel: ... max period: 00007fffffffffff
Jan 03 14:36:41 thiccpad kernel: ... fixed-purpose events: 3
Jan 03 14:36:41 thiccpad kernel: ... event mask: 000000070000000f
Jan 03 14:36:41 thiccpad kernel: rcu: Hierarchical SRCU implementation.
Jan 03 14:36:41 thiccpad kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Jan 03 14:36:41 thiccpad kernel: smp: Bringing up secondary CPUs ...
Jan 03 14:36:41 thiccpad kernel: x86: Booting SMP configuration:
Jan 03 14:36:41 thiccpad kernel: .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11
Jan 03 14:36:41 thiccpad kernel: smp: Brought up 1 node, 12 CPUs
Jan 03 14:36:41 thiccpad kernel: smpboot: Max logical packages: 1
Jan 03 14:36:41 thiccpad kernel: smpboot: Total of 12 processors activated (38399.04 BogoMIPS)
Jan 03 14:36:41 thiccpad kernel: devtmpfs: initialized
Jan 03 14:36:41 thiccpad kernel: x86/mm: Memory block size: 128MB
Jan 03 14:36:41 thiccpad kernel: PM: Registering ACPI NVS region [mem 0x6e860000-0x6fbe9fff] (20488192 bytes)
Jan 03 14:36:41 thiccpad kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Jan 03 14:36:41 thiccpad kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: xor: automatically using best checksumming function avx
Jan 03 14:36:41 thiccpad kernel: pinctrl core: initialized pinctrl subsystem
Jan 03 14:36:41 thiccpad kernel: PM: RTC time: 21:36:38, date: 2021-01-03
Jan 03 14:36:41 thiccpad kernel: thermal_sys: Registered thermal governor 'fair_share'
Jan 03 14:36:41 thiccpad kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jan 03 14:36:41 thiccpad kernel: thermal_sys: Registered thermal governor 'step_wise'
Jan 03 14:36:41 thiccpad kernel: thermal_sys: Registered thermal governor 'user_space'
Jan 03 14:36:41 thiccpad kernel: NET: Registered protocol family 16
Jan 03 14:36:41 thiccpad kernel: DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
Jan 03 14:36:41 thiccpad kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jan 03 14:36:41 thiccpad kernel: DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jan 03 14:36:41 thiccpad kernel: audit: initializing netlink subsys (disabled)
Jan 03 14:36:41 thiccpad kernel: audit: type=2000 audit(1609709798.035:1): state=initialized audit_enabled=0 res=1
Jan 03 14:36:41 thiccpad kernel: cpuidle: using governor menu
Jan 03 14:36:41 thiccpad kernel: Simple Boot Flag at 0x47 set to 0x1
Jan 03 14:36:41 thiccpad kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jan 03 14:36:41 thiccpad kernel: ACPI: bus type PCI registered
Jan 03 14:36:41 thiccpad kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jan 03 14:36:41 thiccpad kernel: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
Jan 03 14:36:41 thiccpad kernel: PCI: not using MMCONFIG
Jan 03 14:36:41 thiccpad kernel: PCI: Using configuration type 1 for base access
Jan 03 14:36:41 thiccpad kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Jan 03 14:36:41 thiccpad kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jan 03 14:36:41 thiccpad kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jan 03 14:36:41 thiccpad kernel: cryptd: max_cpu_qlen set to 1000
Jan 03 14:36:41 thiccpad kernel: alg: No test for 842 (842-generic)
Jan 03 14:36:41 thiccpad kernel: alg: No test for 842 (842-scomp)
Jan 03 14:36:41 thiccpad kernel: raid6: skip pq benchmark and using algorithm avx2x4
Jan 03 14:36:41 thiccpad kernel: raid6: using avx2x2 recovery algorithm
Jan 03 14:36:41 thiccpad kernel: ACPI: Added _OSI(Module Device)
Jan 03 14:36:41 thiccpad kernel: ACPI: Added _OSI(Processor Device)
Jan 03 14:36:41 thiccpad kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jan 03 14:36:41 thiccpad kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jan 03 14:36:41 thiccpad kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jan 03 14:36:41 thiccpad kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jan 03 14:36:41 thiccpad kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jan 03 14:36:41 thiccpad kernel: ACPI: 12 ACPI AML tables successfully acquired and loaded
Jan 03 14:36:41 thiccpad kernel: ACPI: EC: EC started
Jan 03 14:36:41 thiccpad kernel: ACPI: EC: interrupt blocked
Jan 03 14:36:41 thiccpad kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jan 03 14:36:41 thiccpad kernel: ACPI: EC: Boot ECDT EC used to handle transactions
Jan 03 14:36:41 thiccpad kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Jan 03 14:36:41 thiccpad kernel: ACPI: Dynamic OEM Table Load:
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0xFFFF9D346BB46600 0000F4 (v02 PmRef Cpu0Psd 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
Jan 03 14:36:41 thiccpad kernel: ACPI: Dynamic OEM Table Load:
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0xFFFF9D346B665800 000400 (v02 PmRef Cpu0Cst 00003001 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: Dynamic OEM Table Load:
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0xFFFF9D346BD5C800 000479 (v02 PmRef Cpu0Ist 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: Dynamic OEM Table Load:
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0xFFFF9D346BB42A00 00011B (v02 PmRef Cpu0Hwp 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: Dynamic OEM Table Load:
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0xFFFF9D346B66E000 000BE2 (v02 PmRef HwpLvt 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: Dynamic OEM Table Load:
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0xFFFF9D346BD58800 000778 (v02 PmRef ApIst 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: Dynamic OEM Table Load:
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0xFFFF9D346B662000 0003D7 (v02 PmRef ApHwp 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: Dynamic OEM Table Load:
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0xFFFF9D346B669000 000D74 (v02 PmRef ApPsd 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: Dynamic OEM Table Load:
Jan 03 14:36:41 thiccpad kernel: ACPI: SSDT 0xFFFF9D346B663000 0003CA (v02 PmRef ApCst 00003000 INTL 20160527)
Jan 03 14:36:41 thiccpad kernel: ACPI: Interpreter enabled
Jan 03 14:36:41 thiccpad kernel: ACPI: (supports S0 S3 S4 S5)
Jan 03 14:36:41 thiccpad kernel: ACPI: Using IOAPIC for interrupt routing
Jan 03 14:36:41 thiccpad kernel: PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
Jan 03 14:36:41 thiccpad kernel: PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in ACPI motherboard resources
Jan 03 14:36:41 thiccpad kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jan 03 14:36:41 thiccpad kernel: ACPI: Enabled 7 GPEs in block 00 to 7F
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [PUBS] (on)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [BTPR] (on)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [USBC] (on)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [PXP] (off)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [PXP] (on)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [V0PR] (on)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [V1PR] (on)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [V2PR] (on)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [WRST] (on)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [PIN] (off)
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Resource [PINP] (off)
Jan 03 14:36:41 thiccpad kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
Jan 03 14:36:41 thiccpad kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Jan 03 14:36:41 thiccpad kernel: acpi PNP0A08:00: _OSC: platform does not support [AER]
Jan 03 14:36:41 thiccpad kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
Jan 03 14:36:41 thiccpad kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Jan 03 14:36:41 thiccpad kernel: PCI host bridge to bus 0000:00
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: root bus resource [mem 0x7d800000-0xefffffff window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: root bus resource [bus 00-7e]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:00.0: [8086:9b51] type 00 class 0x060000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: [8086:9bca] type 00 class 0x030000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: reg 0x10: [mem 0xe9000000-0xe9ffffff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: reg 0x20: [io 0x2000-0x203f]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: BAR 2: assigned to efifb
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:04.0: reg 0x10: [mem 0xea230000-0xea237fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:08.0: reg 0x10: [mem 0xea244000-0xea244fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:12.0: [8086:02f9] type 00 class 0x118000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:12.0: reg 0x10: [mem 0xea245000-0xea245fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:13.0: [8086:02fc] type 00 class 0x070000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:13.0: reg 0x10: [mem 0xea240000-0xea241fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:13.0: PME# supported from D0 D3hot
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.0: [8086:02ed] type 00 class 0x0c0330
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.0: reg 0x10: [mem 0xea220000-0xea22ffff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.2: [8086:02ef] type 00 class 0x050000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.2: reg 0x10: [mem 0xea242000-0xea243fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.2: reg 0x18: [mem 0xea246000-0xea246fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.3: [8086:02f0] type 00 class 0x028000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.3: reg 0x10: [mem 0xea238000-0xea23bfff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:15.0: [8086:02e8] type 00 class 0x0c8000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:15.0: reg 0x10: [mem 0xea247000-0xea247fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:15.1: [8086:02e9] type 00 class 0x0c8000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:15.1: reg 0x10: [mem 0xea248000-0xea248fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:16.0: [8086:02e0] type 00 class 0x078000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:16.0: reg 0x10: [mem 0xea249000-0xea249fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:16.0: PME# supported from D3hot
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.0: [8086:02b0] type 01 class 0x060400
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: [8086:02b4] type 01 class 0x060400
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: PME# supported from D0 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: PTM enabled (root), 4ns granularity
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.0: [8086:0284] type 00 class 0x060100
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.3: [8086:02c8] type 00 class 0x040380
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xea23c000-0xea23ffff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.3: reg 0x20: [mem 0xea000000-0xea0fffff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.4: [8086:02a3] type 00 class 0x0c0500
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.4: reg 0x10: [mem 0xea24a000-0xea24a0ff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.5: [8086:02a4] type 00 class 0x0c8000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.6: [8086:0d4f] type 00 class 0x020000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.6: reg 0x10: [mem 0xea200000-0xea21ffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:03:00.0: [15b7:5006] type 00 class 0x010802
Jan 03 14:36:41 thiccpad kernel: pci 0000:03:00.0: reg 0x10: [mem 0xea100000-0xea103fff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:03:00.0: reg 0x20: [mem 0xea104000-0xea1040ff 64bit]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.0: PCI bridge to [bus 03]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.0: bridge window [mem 0xea100000-0xea1fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: [8086:15d3] type 01 class 0x060400
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: enabling Extended Tags
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: supports D1 D2
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: PCI bridge to [bus 05-52]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: bridge window [mem 0xd0000000-0xe81fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: bridge window [mem 0x80000000-0xbfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:00.0: [8086:15d3] type 01 class 0x060400
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:00.0: enabling Extended Tags
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:00.0: supports D1 D2
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: [8086:15d3] type 01 class 0x060400
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: enabling Extended Tags
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: supports D1 D2
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:02.0: [8086:15d3] type 01 class 0x060400
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:02.0: enabling Extended Tags
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:02.0: supports D1 D2
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:02.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: [8086:15d3] type 01 class 0x060400
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: enabling Extended Tags
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: supports D1 D2
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: PCI bridge to [bus 06-52]
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: bridge window [mem 0xd0000000-0xe81fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: bridge window [mem 0x80000000-0xbfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci 0000:07:00.0: [8086:15d2] type 00 class 0x088000
Jan 03 14:36:41 thiccpad kernel: pci 0000:07:00.0: reg 0x10: [mem 0xe8100000-0xe813ffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:07:00.0: reg 0x14: [mem 0xe8140000-0xe8140fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:07:00.0: enabling Extended Tags
Jan 03 14:36:41 thiccpad kernel: pci 0000:07:00.0: supports D1 D2
Jan 03 14:36:41 thiccpad kernel: pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:00.0: bridge window [mem 0xe8100000-0xe81fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: PCI bridge to [bus 08-2c]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: bridge window [mem 0xdc100000-0xe80fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: bridge window [mem 0xa0000000-0xbfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci 0000:2d:00.0: [8086:15d4] type 00 class 0x0c0330
Jan 03 14:36:41 thiccpad kernel: pci 0000:2d:00.0: reg 0x10: [mem 0xdc000000-0xdc00ffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:2d:00.0: enabling Extended Tags
Jan 03 14:36:41 thiccpad kernel: pci 0000:2d:00.0: supports D1 D2
Jan 03 14:36:41 thiccpad kernel: pci 0000:2d:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jan 03 14:36:41 thiccpad kernel: pci 0000:2d:00.0: 8.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x4 link at 0000:06:02.0 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:02.0: PCI bridge to [bus 2d]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:02.0: bridge window [mem 0xdc000000-0xdc0fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: PCI bridge to [bus 2e-52]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: bridge window [mem 0xd0000000-0xdbffffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: bridge window [mem 0x80000000-0x9fffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: ACPI: EC: interrupt unblocked
Jan 03 14:36:41 thiccpad kernel: ACPI: EC: event unblocked
Jan 03 14:36:41 thiccpad kernel: ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
Jan 03 14:36:41 thiccpad kernel: ACPI: EC: GPE=0x16
Jan 03 14:36:41 thiccpad kernel: ACPI: \_SB_.PCI0.LPCB.EC__: Boot ECDT EC initialization complete
Jan 03 14:36:41 thiccpad kernel: ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
Jan 03 14:36:41 thiccpad kernel: iommu: Default domain type: Translated
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=mem,locks=none
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: vgaarb: setting as boot device
Jan 03 14:36:41 thiccpad kernel: vgaarb: loaded
Jan 03 14:36:41 thiccpad kernel: SCSI subsystem initialized
Jan 03 14:36:41 thiccpad kernel: libata version 3.00 loaded.
Jan 03 14:36:41 thiccpad kernel: ACPI: bus type USB registered
Jan 03 14:36:41 thiccpad kernel: usbcore: registered new interface driver usbfs
Jan 03 14:36:41 thiccpad kernel: usbcore: registered new interface driver hub
Jan 03 14:36:41 thiccpad kernel: usbcore: registered new device driver usb
Jan 03 14:36:41 thiccpad kernel: pps_core: LinuxPPS API ver. 1 registered
Jan 03 14:36:41 thiccpad kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
Jan 03 14:36:41 thiccpad kernel: PTP clock support registered
Jan 03 14:36:41 thiccpad kernel: EDAC MC: Ver: 3.0.0
Jan 03 14:36:41 thiccpad kernel: Registered efivars operations
Jan 03 14:36:41 thiccpad kernel: NetLabel: Initializing
Jan 03 14:36:41 thiccpad kernel: NetLabel: domain hash size = 128
Jan 03 14:36:41 thiccpad kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
Jan 03 14:36:41 thiccpad kernel: NetLabel: unlabeled traffic allowed by default
Jan 03 14:36:41 thiccpad kernel: PCI: Using ACPI for IRQ routing
Jan 03 14:36:41 thiccpad kernel: PCI: pci_cache_line_size set to 64 bytes
Jan 03 14:36:41 thiccpad kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Jan 03 14:36:41 thiccpad kernel: e820: reserve RAM buffer [mem 0x48582018-0x4bffffff]
Jan 03 14:36:41 thiccpad kernel: e820: reserve RAM buffer [mem 0x65f5c000-0x67ffffff]
Jan 03 14:36:41 thiccpad kernel: e820: reserve RAM buffer [mem 0x6a682000-0x6bffffff]
Jan 03 14:36:41 thiccpad kernel: e820: reserve RAM buffer [mem 0x6fc50000-0x6fffffff]
Jan 03 14:36:41 thiccpad kernel: e820: reserve RAM buffer [mem 0x47e800000-0x47fffffff]
Jan 03 14:36:41 thiccpad kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Jan 03 14:36:41 thiccpad kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Jan 03 14:36:41 thiccpad kernel: clocksource: Switched to clocksource tsc-early
Jan 03 14:36:41 thiccpad kernel: VFS: Disk quotas dquot_6.6.0
Jan 03 14:36:41 thiccpad kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jan 03 14:36:41 thiccpad kernel: pnp: PnP ACPI init
Jan 03 14:36:41 thiccpad kernel: system 00:00: [mem 0x40000000-0x403fffff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 03 14:36:41 thiccpad kernel: system 00:01: [io 0x1800-0x18fe] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:01: [mem 0xfd000000-0xfd69ffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:01: [mem 0xfd6b0000-0xfd6cffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:01: [mem 0xfd6f0000-0xfdffffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:01: [mem 0xfe000000-0xfe01ffff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:01: [mem 0xfe200000-0xfe7fffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:01: [mem 0xff000000-0xffffffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 03 14:36:41 thiccpad kernel: system 00:02: [io 0xff00-0xfffe] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 03 14:36:41 thiccpad kernel: system 00:03: [io 0x0680-0x069f] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:03: [io 0x164e-0x164f] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 03 14:36:41 thiccpad kernel: system 00:04: [io 0x1854-0x1857] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:04: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Jan 03 14:36:41 thiccpad kernel: pnp 00:05: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
Jan 03 14:36:41 thiccpad kernel: pnp 00:06: Plug and Play ACPI device, IDs LEN0300 PNP0f13 (active)
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x1800-0x189f] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x0800-0x087f] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x0880-0x08ff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x0900-0x097f] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x0980-0x09ff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x0a00-0x0a7f] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x0a80-0x0aff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x0b00-0x0b7f] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x0b80-0x0bff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x15e0-0x15ef] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x1600-0x167f] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [io 0x1640-0x165f] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [mem 0xf0000000-0xf7ffffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [mem 0xfed10000-0xfed13fff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [mem 0xfeb00000-0xfebfffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 03 14:36:41 thiccpad kernel: system 00:08: [mem 0xfed10000-0xfed17fff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:08: [mem 0xfed18000-0xfed18fff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:08: [mem 0xfed19000-0xfed19fff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:08: [mem 0xf0000000-0xf7ffffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:08: [mem 0xfed90000-0xfed93fff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:08: [mem 0xfee00000-0xfeefffff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 03 14:36:41 thiccpad kernel: system 00:09: [mem 0xfe038000-0xfe038fff] has been reserved
Jan 03 14:36:41 thiccpad kernel: system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0x00000000-0x0009ffff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0x000c0000-0x000c3fff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0x000c8000-0x000cbfff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0x000d0000-0x000d3fff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0x000d8000-0x000dbfff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0x000e0000-0x000e3fff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0x000e8000-0x000ebfff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0x000f0000-0x000fffff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0x00100000-0x7d7fffff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0xfec00000-0xfed3ffff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: [mem 0xfed4c000-0xffffffff] could not be reserved
Jan 03 14:36:41 thiccpad kernel: system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
Jan 03 14:36:41 thiccpad kernel: pnp: PnP ACPI: found 11 devices
Jan 03 14:36:41 thiccpad kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jan 03 14:36:41 thiccpad kernel: NET: Registered protocol family 2
Jan 03 14:36:41 thiccpad kernel: tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: TCP: Hash tables configured (established 131072 bind 65536)
Jan 03 14:36:41 thiccpad kernel: UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
Jan 03 14:36:41 thiccpad kernel: NET: Registered protocol family 1
Jan 03 14:36:41 thiccpad kernel: NET: Registered protocol family 44
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: bridge window [io 0x1000-0x0fff] to [bus 08-2c] add_size 1000
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: bridge window [io 0x1000-0x0fff] to [bus 2e-52] add_size 1000
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: bridge window [io 0x1000-0x0fff] to [bus 06-52] add_size 2000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: bridge window [io 0x1000-0x0fff] to [bus 05-52] add_size 3000
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: BAR 13: assigned [io 0x3000-0x5fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.0: PCI bridge to [bus 03]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.0: bridge window [mem 0xea100000-0xea1fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: BAR 13: assigned [io 0x3000-0x4fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: BAR 13: assigned [io 0x3000-0x3fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: BAR 13: assigned [io 0x4000-0x4fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:00.0: bridge window [mem 0xe8100000-0xe81fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: PCI bridge to [bus 08-2c]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: bridge window [io 0x3000-0x3fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: bridge window [mem 0xdc100000-0xe80fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: bridge window [mem 0xa0000000-0xbfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:02.0: PCI bridge to [bus 2d]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:02.0: bridge window [mem 0xdc000000-0xdc0fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: PCI bridge to [bus 2e-52]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: bridge window [io 0x4000-0x4fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: bridge window [mem 0xd0000000-0xdbffffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: bridge window [mem 0x80000000-0x9fffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: PCI bridge to [bus 06-52]
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: bridge window [io 0x3000-0x4fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: bridge window [mem 0xd0000000-0xe81fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: bridge window [mem 0x80000000-0xbfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: PCI bridge to [bus 05-52]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: bridge window [io 0x3000-0x5fff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: bridge window [mem 0xd0000000-0xe81fffff]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: bridge window [mem 0x80000000-0xbfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: resource 7 [mem 0x7d800000-0xefffffff window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:00: resource 8 [mem 0xfc800000-0xfe7fffff window]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:03: resource 1 [mem 0xea100000-0xea1fffff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:05: resource 0 [io 0x3000-0x5fff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:05: resource 1 [mem 0xd0000000-0xe81fffff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:05: resource 2 [mem 0x80000000-0xbfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:06: resource 0 [io 0x3000-0x4fff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:06: resource 1 [mem 0xd0000000-0xe81fffff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:06: resource 2 [mem 0x80000000-0xbfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:07: resource 1 [mem 0xe8100000-0xe81fffff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:08: resource 0 [io 0x3000-0x3fff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:08: resource 1 [mem 0xdc100000-0xe80fffff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:08: resource 2 [mem 0xa0000000-0xbfffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:2d: resource 1 [mem 0xdc000000-0xdc0fffff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:2e: resource 0 [io 0x4000-0x4fff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:2e: resource 1 [mem 0xd0000000-0xdbffffff]
Jan 03 14:36:41 thiccpad kernel: pci_bus 0000:2e: resource 2 [mem 0x80000000-0x9fffffff 64bit pref]
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jan 03 14:36:41 thiccpad kernel: PCI: CLS 0 bytes, default 64
Jan 03 14:36:41 thiccpad kernel: Trying to unpack rootfs image as initramfs...
Jan 03 14:36:41 thiccpad kernel: Freeing initrd memory: 35820K
Jan 03 14:36:41 thiccpad kernel: DMAR: Intel-IOMMU force enabled due to platform opt in
Jan 03 14:36:41 thiccpad kernel: DMAR: No ATSR found
Jan 03 14:36:41 thiccpad kernel: DMAR: dmar0: Using Queued invalidation
Jan 03 14:36:41 thiccpad kernel: DMAR: dmar1: Using Queued invalidation
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:00.0: Adding to iommu group 0
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:02.0: Adding to iommu group 1
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:04.0: Adding to iommu group 2
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:08.0: Adding to iommu group 3
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:12.0: Adding to iommu group 4
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:13.0: Adding to iommu group 5
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.0: Adding to iommu group 6
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.2: Adding to iommu group 6
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:14.3: Adding to iommu group 7
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:15.0: Adding to iommu group 8
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:15.1: Adding to iommu group 8
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:16.0: Adding to iommu group 9
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.0: Adding to iommu group 10
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1d.4: Adding to iommu group 11
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.0: Adding to iommu group 12
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.3: Adding to iommu group 12
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.4: Adding to iommu group 12
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.5: Adding to iommu group 12
Jan 03 14:36:41 thiccpad kernel: pci 0000:00:1f.6: Adding to iommu group 12
Jan 03 14:36:41 thiccpad kernel: pci 0000:03:00.0: Adding to iommu group 13
Jan 03 14:36:41 thiccpad kernel: pci 0000:05:00.0: Adding to iommu group 14
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:00.0: Adding to iommu group 15
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:01.0: Adding to iommu group 16
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:02.0: Adding to iommu group 17
Jan 03 14:36:41 thiccpad kernel: pci 0000:06:04.0: Adding to iommu group 18
Jan 03 14:36:41 thiccpad kernel: pci 0000:07:00.0: Adding to iommu group 15
Jan 03 14:36:41 thiccpad kernel: pci 0000:2d:00.0: Adding to iommu group 17
Jan 03 14:36:41 thiccpad kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O
Jan 03 14:36:41 thiccpad kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jan 03 14:36:41 thiccpad kernel: software IO TLB: mapped [mem 0x619f9000-0x659f9000] (64MB)
Jan 03 14:36:41 thiccpad kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
Jan 03 14:36:41 thiccpad kernel: Initialise system trusted keyrings
Jan 03 14:36:41 thiccpad kernel: Key type blacklist registered
Jan 03 14:36:41 thiccpad kernel: workingset: timestamp_bits=36 max_order=22 bucket_order=0
Jan 03 14:36:41 thiccpad kernel: zbud: loaded
Jan 03 14:36:41 thiccpad kernel: integrity: Platform Keyring initialized
Jan 03 14:36:41 thiccpad kernel: NET: Registered protocol family 38
Jan 03 14:36:41 thiccpad kernel: Key type asymmetric registered
Jan 03 14:36:41 thiccpad kernel: Asymmetric key parser 'x509' registered
Jan 03 14:36:41 thiccpad kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
Jan 03 14:36:41 thiccpad kernel: io scheduler mq-deadline registered
Jan 03 14:36:41 thiccpad kernel: io scheduler kyber registered
Jan 03 14:36:41 thiccpad kernel: io scheduler bfq registered
Jan 03 14:36:41 thiccpad kernel: atomic64_test: passed for x86-64 platform with CX8 and with SSE
Jan 03 14:36:41 thiccpad kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 122
Jan 03 14:36:41 thiccpad kernel: pcieport 0000:00:1d.4: PME: Signaling with IRQ 123
Jan 03 14:36:41 thiccpad kernel: pcieport 0000:00:1d.4: pciehp: Slot #12 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Jan 03 14:36:41 thiccpad kernel: pcieport 0000:06:01.0: pciehp: Slot #1 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Jan 03 14:36:41 thiccpad kernel: pcieport 0000:06:04.0: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
Jan 03 14:36:41 thiccpad kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jan 03 14:36:41 thiccpad kernel: efifb: probing for efifb
Jan 03 14:36:41 thiccpad kernel: efifb: showing boot graphics
Jan 03 14:36:41 thiccpad kernel: efifb: framebuffer at 0xc0000000, using 14400k, total 14400k
Jan 03 14:36:41 thiccpad kernel: efifb: mode is 2560x1440x32, linelength=10240, pages=1
Jan 03 14:36:41 thiccpad kernel: efifb: scrolling: redraw
Jan 03 14:36:41 thiccpad kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jan 03 14:36:41 thiccpad kernel: fbcon: Deferring console take-over
Jan 03 14:36:41 thiccpad kernel: fb0: EFI VGA frame buffer device
Jan 03 14:36:41 thiccpad kernel: intel_idle: MWAIT substates: 0x11142120
Jan 03 14:36:41 thiccpad kernel: Monitor-Mwait will be used to enter C-1 state
Jan 03 14:36:41 thiccpad kernel: Monitor-Mwait will be used to enter C-2 state
Jan 03 14:36:41 thiccpad kernel: Monitor-Mwait will be used to enter C-3 state
Jan 03 14:36:41 thiccpad kernel: ACPI: \_SB_.PR00: Found 3 idle states
Jan 03 14:36:41 thiccpad kernel: intel_idle: v0.5.1 model 0xA6
Jan 03 14:36:41 thiccpad kernel: intel_idle: Local APIC timer is reliable in all C-states
Jan 03 14:36:41 thiccpad kernel: ACPI: AC Adapter [AC] (on-line)
Jan 03 14:36:41 thiccpad kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
Jan 03 14:36:41 thiccpad kernel: ACPI: Sleep Button [SLPB]
Jan 03 14:36:41 thiccpad kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
Jan 03 14:36:41 thiccpad kernel: ACPI: Lid Switch [LID]
Jan 03 14:36:41 thiccpad kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jan 03 14:36:41 thiccpad kernel: ACPI: Power Button [PWRF]
Jan 03 14:36:41 thiccpad kernel: thermal LNXTHERM:00: registered as thermal_zone0
Jan 03 14:36:41 thiccpad kernel: ACPI: Thermal Zone [THM0] (52 C)
Jan 03 14:36:41 thiccpad kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jan 03 14:36:41 thiccpad kernel: serial 0000:00:13.0: enabling device (0000 -> 0002)
Jan 03 14:36:41 thiccpad kernel: Non-volatile memory driver v1.3
Jan 03 14:36:41 thiccpad kernel: Linux agpgart interface v0.103
Jan 03 14:36:41 thiccpad kernel: tpm_tis STM7308:00: 2.0 TPM (device-id 0x0, rev-id 78)
Jan 03 14:36:41 thiccpad kernel: tpm tpm0: tpm_try_transmit: send(): error -5
Jan 03 14:36:41 thiccpad kernel: tpm tpm0: [Firmware Bug]: TPM interrupt not working, polling instead
Jan 03 14:36:41 thiccpad kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
Jan 03 14:36:41 thiccpad kernel: battery: ACPI: Battery Slot [BAT0] (battery present)
Jan 03 14:36:41 thiccpad kernel: libphy: Fixed MDIO Bus: probed
Jan 03 14:36:41 thiccpad kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jan 03 14:36:41 thiccpad kernel: ehci-pci: EHCI PCI platform driver
Jan 03 14:36:41 thiccpad kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jan 03 14:36:41 thiccpad kernel: ohci-pci: OHCI PCI platform driver
Jan 03 14:36:41 thiccpad kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Jan 03 14:36:41 thiccpad kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.08
Jan 03 14:36:41 thiccpad kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 03 14:36:41 thiccpad kernel: usb usb1: Product: xHCI Host Controller
Jan 03 14:36:41 thiccpad kernel: usb usb1: Manufacturer: Linux 5.8.18-200.fc32.x86_64 xhci-hcd
Jan 03 14:36:41 thiccpad kernel: usb usb1: SerialNumber: 0000:00:14.0
Jan 03 14:36:41 thiccpad kernel: hub 1-0:1.0: USB hub found
Jan 03 14:36:41 thiccpad kernel: hub 1-0:1.0: 12 ports detected
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
Jan 03 14:36:41 thiccpad kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
Jan 03 14:36:41 thiccpad kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 03 14:36:41 thiccpad kernel: usb usb2: Product: xHCI Host Controller
Jan 03 14:36:41 thiccpad kernel: usb usb2: Manufacturer: Linux 5.8.18-200.fc32.x86_64 xhci-hcd
Jan 03 14:36:41 thiccpad kernel: usb usb2: SerialNumber: 0000:00:14.0
Jan 03 14:36:41 thiccpad kernel: hub 2-0:1.0: USB hub found
Jan 03 14:36:41 thiccpad kernel: hub 2-0:1.0: 6 ports detected
Jan 03 14:36:41 thiccpad kernel: usb: port power management may be unreliable
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:2d:00.0: xHCI Host Controller
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 3
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:2d:00.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000200009810
Jan 03 14:36:41 thiccpad kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.08
Jan 03 14:36:41 thiccpad kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 03 14:36:41 thiccpad kernel: usb usb3: Product: xHCI Host Controller
Jan 03 14:36:41 thiccpad kernel: usb usb3: Manufacturer: Linux 5.8.18-200.fc32.x86_64 xhci-hcd
Jan 03 14:36:41 thiccpad kernel: usb usb3: SerialNumber: 0000:2d:00.0
Jan 03 14:36:41 thiccpad kernel: hub 3-0:1.0: USB hub found
Jan 03 14:36:41 thiccpad kernel: hub 3-0:1.0: 2 ports detected
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:2d:00.0: xHCI Host Controller
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:2d:00.0: new USB bus registered, assigned bus number 4
Jan 03 14:36:41 thiccpad kernel: xhci_hcd 0000:2d:00.0: Host supports USB 3.1 Enhanced SuperSpeed
Jan 03 14:36:41 thiccpad kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.08
Jan 03 14:36:41 thiccpad kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 03 14:36:41 thiccpad kernel: usb usb4: Product: xHCI Host Controller
Jan 03 14:36:41 thiccpad kernel: usb usb4: Manufacturer: Linux 5.8.18-200.fc32.x86_64 xhci-hcd
Jan 03 14:36:41 thiccpad kernel: usb usb4: SerialNumber: 0000:2d:00.0
Jan 03 14:36:41 thiccpad kernel: hub 4-0:1.0: USB hub found
Jan 03 14:36:41 thiccpad kernel: hub 4-0:1.0: 2 ports detected
Jan 03 14:36:41 thiccpad kernel: usbcore: registered new interface driver usbserial_generic
Jan 03 14:36:41 thiccpad kernel: usbserial: USB Serial support registered for generic
Jan 03 14:36:41 thiccpad kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Jan 03 14:36:41 thiccpad kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jan 03 14:36:41 thiccpad kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jan 03 14:36:41 thiccpad kernel: mousedev: PS/2 mouse device common for all mice
Jan 03 14:36:41 thiccpad kernel: rtc_cmos rtc_cmos: RTC can wake from S4
Jan 03 14:36:41 thiccpad kernel: rtc_cmos rtc_cmos: registered as rtc0
Jan 03 14:36:41 thiccpad kernel: rtc_cmos rtc_cmos: setting system clock to 2021-01-03T21:36:40 UTC (1609709800)
Jan 03 14:36:41 thiccpad kernel: rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
Jan 03 14:36:41 thiccpad kernel: device-mapper: uevent: version 1.0.3
Jan 03 14:36:41 thiccpad kernel: device-mapper: ioctl: 4.42.0-ioctl (2020-02-27) initialised: [email protected]
Jan 03 14:36:41 thiccpad kernel: intel_pstate: Intel P-state driver initializing
Jan 03 14:36:41 thiccpad kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Jan 03 14:36:41 thiccpad kernel: intel_pstate: HWP enabled
Jan 03 14:36:41 thiccpad kernel: hid: raw HID events driver (C) Jiri Kosina
Jan 03 14:36:41 thiccpad kernel: usbcore: registered new interface driver usbhid
Jan 03 14:36:41 thiccpad kernel: usbhid: USB HID core driver
Jan 03 14:36:41 thiccpad kernel: intel_pmc_core INT33A1:00: initialized
Jan 03 14:36:41 thiccpad kernel: drop_monitor: Initializing network drop monitor service
Jan 03 14:36:41 thiccpad kernel: Initializing XFRM netlink socket
Jan 03 14:36:41 thiccpad kernel: NET: Registered protocol family 10
Jan 03 14:36:41 thiccpad kernel: Segment Routing with IPv6
Jan 03 14:36:41 thiccpad kernel: RPL Segment Routing with IPv6
Jan 03 14:36:41 thiccpad kernel: mip6: Mobile IPv6
Jan 03 14:36:41 thiccpad kernel: NET: Registered protocol family 17
Jan 03 14:36:41 thiccpad kernel: microcode: sig=0xa0660, pf=0x80, revision=0xca
Jan 03 14:36:41 thiccpad kernel: microcode: Microcode Update Driver: v2.2.
Jan 03 14:36:41 thiccpad kernel: IPI shorthand broadcast: enabled
Jan 03 14:36:41 thiccpad kernel: AVX2 version of gcm_enc/dec engaged.
Jan 03 14:36:41 thiccpad kernel: AES CTR mode by8 optimization enabled
Jan 03 14:36:41 thiccpad kernel: sched_clock: Marking stable (1573408644, 5916286)->(1590752800, -11427870)
Jan 03 14:36:41 thiccpad kernel: registered taskstats version 1
Jan 03 14:36:41 thiccpad kernel: Loading compiled-in X.509 certificates
Jan 03 14:36:41 thiccpad kernel: Loaded X.509 cert 'Fedora kernel signing key: 79ddf5ee209ab2c826b25861babf3592db267737'
Jan 03 14:36:41 thiccpad kernel: zswap: loaded using pool lzo/zbud
Jan 03 14:36:41 thiccpad kernel: Key type ._fscrypt registered
Jan 03 14:36:41 thiccpad kernel: Key type .fscrypt registered
Jan 03 14:36:41 thiccpad kernel: Key type fscrypt-provisioning registered
Jan 03 14:36:41 thiccpad kernel: Btrfs loaded, crc32c=crc32c-generic
Jan 03 14:36:41 thiccpad kernel: Key type encrypted registered
Jan 03 14:36:41 thiccpad kernel: integrity: Loading X.509 certificate: UEFI:db
Jan 03 14:36:41 thiccpad kernel: integrity: Loaded X.509 cert 'Lenovo Ltd.: ThinkPad Product CA 2012: 838b1f54c1550463f45f98700640f11069265949'
Jan 03 14:36:41 thiccpad kernel: integrity: Loading X.509 certificate: UEFI:db
Jan 03 14:36:41 thiccpad kernel: integrity: Loaded X.509 cert 'Lenovo UEFI CA 2014: 4b91a68732eaefdd2c8ffffc6b027ec3449e9c8f'
Jan 03 14:36:41 thiccpad kernel: integrity: Loading X.509 certificate: UEFI:db
Jan 03 14:36:41 thiccpad kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
Jan 03 14:36:41 thiccpad kernel: integrity: Loading X.509 certificate: UEFI:db
Jan 03 14:36:41 thiccpad kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
Jan 03 14:36:41 thiccpad kernel: ima: Allocated hash algorithm: sha256
Jan 03 14:36:41 thiccpad kernel: ima: No architecture policies found
Jan 03 14:36:41 thiccpad kernel: PM: Magic number: 5:4:651
Jan 03 14:36:41 thiccpad kernel: acpi LNXCPU:04: hash matches
Jan 03 14:36:41 thiccpad kernel: RAS: Correctable Errors collector initialized.
Jan 03 14:36:41 thiccpad kernel: usb 1-4: new high-speed USB device number 2 using xhci_hcd
Jan 03 14:36:41 thiccpad kernel: usb 1-4: New USB device found, idVendor=0bda, idProduct=5411, bcdDevice= 1.04
Jan 03 14:36:41 thiccpad kernel: usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jan 03 14:36:41 thiccpad kernel: usb 1-4: Product: 4-Port USB 2.0 Hub
Jan 03 14:36:41 thiccpad kernel: usb 1-4: Manufacturer: Generic
Jan 03 14:36:41 thiccpad kernel: hub 1-4:1.0: USB hub found
Jan 03 14:36:41 thiccpad kernel: hub 1-4:1.0: 4 ports detected
Jan 03 14:36:41 thiccpad kernel: psmouse serio1: trackpoint: Elan TrackPoint firmware: 0x47, buttons: 3/3
Jan 03 14:36:41 thiccpad kernel: input: TPPS/2 Elan TrackPoint as /devices/platform/i8042/serio1/input/input5
Jan 03 14:36:41 thiccpad kernel: Freeing unused decrypted memory: 2040K
Jan 03 14:36:41 thiccpad kernel: Freeing unused kernel image (initmem) memory: 2508K
Jan 03 14:36:41 thiccpad kernel: Write protecting the kernel read-only data: 26624k
Jan 03 14:36:41 thiccpad kernel: Freeing unused kernel image (text/rodata gap) memory: 2044K
Jan 03 14:36:41 thiccpad kernel: Freeing unused kernel image (rodata/data gap) memory: 1488K
Jan 03 14:36:41 thiccpad kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jan 03 14:36:41 thiccpad kernel: rodata_test: all tests were successful
Jan 03 14:36:41 thiccpad kernel: Run /init as init process
Jan 03 14:36:41 thiccpad kernel: with arguments:
Jan 03 14:36:41 thiccpad kernel: /init
Jan 03 14:36:41 thiccpad kernel: with environment:
Jan 03 14:36:41 thiccpad kernel: HOME=/
Jan 03 14:36:41 thiccpad kernel: TERM=linux
Jan 03 14:36:41 thiccpad kernel: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.8.18-200.fc32.x86_64
Jan 03 14:36:41 thiccpad kernel: usb 1-6: new full-speed USB device number 3 using xhci_hcd
Jan 03 14:36:41 thiccpad systemd[1]: systemd v245.8-2.fc32 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified)
Jan 03 14:36:41 thiccpad systemd[1]: Detected architecture x86-64.
Jan 03 14:36:41 thiccpad systemd[1]: Running in initial RAM disk.
Jan 03 14:36:41 thiccpad systemd[1]: Set hostname to <thiccpad>.
Jan 03 14:36:41 thiccpad systemd[1]: Created slice system-systemd\x2dhibernate\x2dresume.slice.
Jan 03 14:36:41 thiccpad systemd[1]: Reached target Slices.
Jan 03 14:36:41 thiccpad systemd[1]: Reached target Swap.
Jan 03 14:36:41 thiccpad systemd[1]: Reached target Timers.
Jan 03 14:36:41 thiccpad systemd[1]: Listening on Journal Audit Socket.
Jan 03 14:36:41 thiccpad systemd[1]: Listening on Journal Socket (/dev/log).
Jan 03 14:36:41 thiccpad systemd[1]: Listening on Journal Socket.
Jan 03 14:36:41 thiccpad systemd[1]: Listening on udev Control Socket.
Jan 03 14:36:41 thiccpad systemd[1]: Listening on udev Kernel Socket.
Jan 03 14:36:41 thiccpad systemd[1]: Reached target Sockets.
Jan 03 14:36:41 thiccpad systemd[1]: Starting Create list of static device nodes for the current kernel...
Jan 03 14:36:41 thiccpad systemd[1]: Started Hardware RNG Entropy Gatherer Daemon.
Jan 03 14:36:41 thiccpad systemd[1]: Starting Journal Service...
Jan 03 14:36:41 thiccpad systemd[1]: Starting Load Kernel Modules...
Jan 03 14:36:41 thiccpad systemd[1]: Starting Setup Virtual Console...
Jan 03 14:36:41 thiccpad systemd[1]: Finished Create list of static device nodes for the current kernel.
Jan 03 14:36:41 thiccpad systemd[1]: Starting Create Static Device Nodes in /dev...
Jan 03 14:36:41 thiccpad systemd[1]: Finished Load Kernel Modules.
Jan 03 14:36:41 thiccpad systemd[1]: Starting Apply Kernel Variables...
Jan 03 14:36:41 thiccpad systemd[1]: Finished Create Static Device Nodes in /dev.
Jan 03 14:36:41 thiccpad systemd[1]: Finished Apply Kernel Variables.
Jan 03 14:36:41 thiccpad systemd[1]: Finished Setup Virtual Console.
Jan 03 14:36:41 thiccpad kernel: audit: type=1130 audit(1609709801.194:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad systemd[1]: Condition check resulted in dracut ask for additional cmdline parameters being skipped.
Jan 03 14:36:41 thiccpad systemd[1]: Starting dracut cmdline hook...
Jan 03 14:36:41 thiccpad kernel: usb 1-6: New USB device found, idVendor=056a, idProduct=51be, bcdDevice= 0.02
Jan 03 14:36:41 thiccpad kernel: usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jan 03 14:36:41 thiccpad kernel: usb 1-6: Product: Pen and multitouch sensor
Jan 03 14:36:41 thiccpad kernel: usb 1-6: Manufacturer: Wacom Co.,Ltd.
Jan 03 14:36:41 thiccpad systemd-journald[262]: Journal started
Jan 03 14:36:41 thiccpad systemd-journald[262]: Runtime Journal (/run/log/journal/8ae870b58e874b6cae75f359658bd67f) is 8.0M, max 781.8M, 773.8M free.
Jan 03 14:36:41 thiccpad audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad systemd-modules-load[263]: Module 'msr' is built in
Jan 03 14:36:41 thiccpad systemd[1]: Started Journal Service.
Jan 03 14:36:41 thiccpad kernel: audit: type=1130 audit(1609709801.199:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad systemd-modules-load[263]: Failed to find module 'platform-integrity'
Jan 03 14:36:41 thiccpad rngd[261]: Initializing available sources
Jan 03 14:36:41 thiccpad rngd[261]: [hwrng ]: Initialized
Jan 03 14:36:41 thiccpad rngd[261]: [rdrand]: Enabling RDSEED rng support
Jan 03 14:36:41 thiccpad rngd[261]: [rdrand]: Initialized
Jan 03 14:36:41 thiccpad rngd[261]: [jitter]: Initializing AES buffer
Jan 03 14:36:41 thiccpad rngd[261]: [jitter]: Unable to obtain AES key, disabling AES in JITTER source
Jan 03 14:36:41 thiccpad rngd[261]: [jitter]: Enabling JITTER rng support
Jan 03 14:36:41 thiccpad rngd[261]: [jitter]: Initialized
Jan 03 14:36:41 thiccpad rngd[261]: [pkcs11]: Unable to load pkcs11 engine: (null)
Jan 03 14:36:41 thiccpad rngd[261]: [pkcs11]: Initialization Failed
Jan 03 14:36:41 thiccpad systemd-sysctl[268]: Not setting net/ipv4/conf/all/rp_filter (explicit setting exists).
Jan 03 14:36:41 thiccpad systemd-sysctl[268]: Not setting net/ipv4/conf/default/rp_filter (explicit setting exists).
Jan 03 14:36:41 thiccpad systemd-sysctl[268]: Not setting net/ipv4/conf/all/accept_source_route (explicit setting exists).
Jan 03 14:36:41 thiccpad systemd-sysctl[268]: Not setting net/ipv4/conf/default/accept_source_route (explicit setting exists).
Jan 03 14:36:41 thiccpad systemd-sysctl[268]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Jan 03 14:36:41 thiccpad systemd-sysctl[268]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Jan 03 14:36:41 thiccpad kernel: input: Wacom Co.,Ltd. Pen and multitouch sensor Touchscreen as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/0003:056A:51BE.0001/input/input6
Jan 03 14:36:41 thiccpad kernel: input: Wacom Co.,Ltd. Pen and multitouch sensor as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/0003:056A:51BE.0001/input/input7
Jan 03 14:36:41 thiccpad kernel: hid-generic 0003:056A:51BE.0001: input,hiddev96,hidraw0: USB HID v1.11 Device [Wacom Co.,Ltd. Pen and multitouch sensor] on usb-0000:00:14.0-6/input0
Jan 03 14:36:41 thiccpad kernel: input: Wacom Co.,Ltd. Pen and multitouch sensor as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.1/0003:056A:51BE.0002/input/input8
Jan 03 14:36:41 thiccpad kernel: input: Wacom Co.,Ltd. Pen and multitouch sensor as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.1/0003:056A:51BE.0002/input/input9
Jan 03 14:36:41 thiccpad kernel: input: Wacom Co.,Ltd. Pen and multitouch sensor Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.1/0003:056A:51BE.0002/input/input10
Jan 03 14:36:41 thiccpad kernel: hid-generic 0003:056A:51BE.0002: input,hiddev97,hidraw1: USB HID v1.11 Mouse [Wacom Co.,Ltd. Pen and multitouch sensor] on usb-0000:00:14.0-6/input1
Jan 03 14:36:41 thiccpad dracut-cmdline[278]: dracut-32 (Thirty Two) dracut-050-61.git20200529.fc32
Jan 03 14:36:41 thiccpad dracut-cmdline[278]: Using kernel command line parameters: BOOT_IMAGE=(hd0,gpt2)/vmlinuz-5.8.18-200.fc32.x86_64 root=/dev/mapper/fedora-root ro resume=/dev/mapper/fedora-swap rd.lvm.lv=fedora/root rd.lvm.lv=fedora/swap quiet loglevel=3 nouveau.modeset=0 rd.plymouth=0 plymouth.enable=0
Jan 03 14:36:41 thiccpad systemd[1]: Finished dracut cmdline hook.
Jan 03 14:36:41 thiccpad audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad kernel: audit: type=1130 audit(1609709801.240:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad systemd[1]: Starting dracut pre-udev hook...
Jan 03 14:36:41 thiccpad systemd[1]: Finished dracut pre-udev hook.
Jan 03 14:36:41 thiccpad audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad audit: BPF prog-id=6 op=LOAD
Jan 03 14:36:41 thiccpad audit: BPF prog-id=7 op=LOAD
Jan 03 14:36:41 thiccpad systemd[1]: Starting udev Kernel Device Manager...
Jan 03 14:36:41 thiccpad kernel: audit: type=1130 audit(1609709801.256:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad kernel: audit: type=1334 audit(1609709801.256:6): prog-id=6 op=LOAD
Jan 03 14:36:41 thiccpad kernel: audit: type=1334 audit(1609709801.256:7): prog-id=7 op=LOAD
Jan 03 14:36:41 thiccpad kernel: usb 1-4.2: new full-speed USB device number 4 using xhci_hcd
Jan 03 14:36:41 thiccpad systemd[1]: Started udev Kernel Device Manager.
Jan 03 14:36:41 thiccpad audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad systemd[1]: Condition check resulted in dracut pre-trigger hook being skipped.
Jan 03 14:36:41 thiccpad systemd[1]: Starting udev Coldplug all Devices...
Jan 03 14:36:41 thiccpad kernel: audit: type=1130 audit(1609709801.277:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad systemd[1]: Mounting Kernel Configuration File System...
Jan 03 14:36:41 thiccpad systemd[1]: Mounted Kernel Configuration File System.
Jan 03 14:36:41 thiccpad systemd[1]: Finished udev Coldplug all Devices.
Jan 03 14:36:41 thiccpad systemd[1]: Starting dracut initqueue hook...
Jan 03 14:36:41 thiccpad systemd[1]: Condition check resulted in Show Plymouth Boot Screen being skipped.
Jan 03 14:36:41 thiccpad systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jan 03 14:36:41 thiccpad systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped.
Jan 03 14:36:41 thiccpad systemd[1]: Reached target Paths.
Jan 03 14:36:41 thiccpad audit[1]: SERVICE_START pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad kernel: audit: type=1130 audit(1609709801.336:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udev-trigger comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
Jan 03 14:36:41 thiccpad kernel: input: Wacom Pen and multitouch sensor Finger as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/0003:056A:51BE.0001/input/input12
Jan 03 14:36:41 thiccpad kernel: wacom 0003:056A:51BE.0001: hidraw0: USB HID v1.11 Device [Wacom Co.,Ltd. Pen and multitouch sensor] on usb-0000:00:14.0-6/input0
Jan 03 14:36:41 thiccpad kernel: acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Jan 03 14:36:41 thiccpad kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Jan 03 14:36:41 thiccpad kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Jan 03 14:36:41 thiccpad kernel: acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
Jan 03 14:36:41 thiccpad kernel: usb 1-4.2: New USB device found, idVendor=4653, idProduct=0001, bcdDevice= 0.01
Jan 03 14:36:41 thiccpad kernel: usb 1-4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jan 03 14:36:41 thiccpad kernel: usb 1-4.2: Product: Corne Keyboard Rev.1 (Legacy Split)
Jan 03 14:36:41 thiccpad kernel: usb 1-4.2: Manufacturer: foostan
Jan 03 14:36:41 thiccpad kernel: input: foostan Corne Keyboard Rev.1 (Legacy Split) as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2:1.0/0003:4653:0001.0003/input/input14
Jan 03 14:36:41 thiccpad kernel: i2c_hid i2c-SYNA8004:00: supply vdd not found, using dummy regulator
Jan 03 14:36:41 thiccpad kernel: i2c_hid i2c-SYNA8004:00: supply vddl not found, using dummy regulator
Jan 03 14:36:41 thiccpad kernel: nvme nvme0: pci function 0000:03:00.0
Jan 03 14:36:41 thiccpad kernel: e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
Jan 03 14:36:41 thiccpad kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Jan 03 14:36:41 thiccpad kernel: e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Jan 03 14:36:41 thiccpad systemd-udevd[430]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 03 14:36:41 thiccpad kernel: nvme nvme0: 12/0/0 default/read/poll queues
Jan 03 14:36:41 thiccpad kernel: nvme0n1: p1 p2 p3
Jan 03 14:36:41 thiccpad kernel: hid-generic 0003:4653:0001.0003: input,hidraw2: USB HID v1.11 Keyboard [foostan Corne Keyboard Rev.1 (Legacy Split)] on usb-0000:00:14.0-4.2/input0
Jan 03 14:36:41 thiccpad kernel: input: foostan Corne Keyboard Rev.1 (Legacy Split) as /devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2:1.1/0003:4653:0001.0004/input/input15
Jan 03 14:36:41 thiccpad kernel: hid-generic 0003:4653:0001.0004: input,hidraw3: USB HID v1.11 Mouse [foostan Corne Keyboard Rev.1 (Legacy Split)] on usb-0000:00:14.0-4.2/input1
Jan 03 14:36:41 thiccpad kernel: input: Wacom Pen and multitouch sensor Pen as /devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.1/0003:056A:51BE.0002/input/input16
Jan 03 14:36:41 thiccpad kernel: wacom 0003:056A:51BE.0002: hidraw1: USB HID v1.11 Mouse [Wacom Co.,Ltd. Pen and multitouch sensor] on usb-0000:00:14.0-6/input1
Jan 03 14:36:41 thiccpad kernel: usb 1-8: new high-speed USB device number 5 using xhci_hcd
Jan 03 14:36:41 thiccpad kernel: tsc: Refined TSC clocksource calibration: 1608.014 MHz
Jan 03 14:36:41 thiccpad kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x172db7796fa, max_idle_ns: 440795211534 ns
Jan 03 14:36:41 thiccpad kernel: clocksource: Switched to clocksource tsc
Jan 03 14:36:41 thiccpad kernel: input: SYNA8004:00 06CB:CD8B Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-SYNA8004:00/0018:06CB:CD8B.0005/input/input19
Jan 03 14:36:41 thiccpad kernel: input: SYNA8004:00 06CB:CD8B Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-SYNA8004:00/0018:06CB:CD8B.0005/input/input20
Jan 03 14:36:41 thiccpad kernel: hid-generic 0018:06CB:CD8B.0005: input,hidraw4: I2C HID v1.00 Mouse [SYNA8004:00 06CB:CD8B] on i2c-SYNA8004:00
Jan 03 14:36:41 thiccpad kernel: i915 0000:00:02.0: enabling device (0006 -> 0007)
Jan 03 14:36:41 thiccpad kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access
Jan 03 14:36:41 thiccpad kernel: checking generic (c0000000 e10000) vs hw (e9000000 1000000)
Jan 03 14:36:41 thiccpad kernel: checking generic (c0000000 e10000) vs hw (c0000000 10000000)
Jan 03 14:36:41 thiccpad kernel: fb0: switching to inteldrmfb from EFI VGA
Jan 03 14:36:41 thiccpad kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Jan 03 14:36:41 thiccpad kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jan 03 14:36:41 thiccpad kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=mem
Jan 03 14:36:41 thiccpad kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
Jan 03 14:36:41 thiccpad kernel: [drm] Initialized i915 1.6.0 20200515 for 0000:00:02.0 on minor 0
Jan 03 14:36:41 thiccpad kernel: e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
Jan 03 14:36:41 thiccpad kernel: ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
Jan 03 14:36:41 thiccpad kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input22
Jan 03 14:36:41 thiccpad kernel: input: SYNA8004:00 06CB:CD8B Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-SYNA8004:00/0018:06CB:CD8B.0005/input/input23
Jan 03 14:36:41 thiccpad kernel: input: SYNA8004:00 06CB:CD8B Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-SYNA8004:00/0018:06CB:CD8B.0005/input/input24
Jan 03 14:36:41 thiccpad kernel: hid-multitouch 0018:06CB:CD8B.0005: input,hidraw4: I2C HID v1.00 Mouse [SYNA8004:00 06CB:CD8B] on i2c-SYNA8004:00
Jan 03 14:36:41 thiccpad kernel: usb 1-8: New USB device found, idVendor=04f2, idProduct=b67d, bcdDevice= 4.06
Jan 03 14:36:41 thiccpad kernel: usb 1-8: New USB device strings: Mfr=2, Product=1, SerialNumber=0
Jan 03 14:36:41 thiccpad kernel: usb 1-8: Product: Integrated Camera
Jan 03 14:36:41 thiccpad kernel: usb 1-8: Manufacturer: Sonix Technology Co., Ltd.
Jan 03 14:36:41 thiccpad systemd-udevd[372]: Using default interface naming scheme 'v245'.
Jan 03 14:36:41 thiccpad kernel: e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) f8:75:a4:28:1e:05
Jan 03 14:36:41 thiccpad kernel: e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
Jan 03 14:36:41 thiccpad kernel: e1000e 0000:00:1f.6 eth0: MAC: 13, PHY: 12, PBA No: FFFFFF-0FF
Jan 03 14:36:41 thiccpad kernel: e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
Jan 03 14:36:41 thiccpad systemd-udevd[372]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Jan 03 14:36:41 thiccpad systemd-udevd[375]: Using default interface naming scheme 'v245'.
Jan 03 14:36:41 thiccpad kernel: ------------[ cut here ]------------
Jan 03 14:36:41 thiccpad kernel: WARNING: CPU: 4 PID: 269 at kernel/kmod.c:137 __request_module+0x22d/0x3af
Jan 03 14:36:41 thiccpad kernel: Modules linked in: i915 hid_multitouch i2c_algo_bit drm_kms_helper crct10dif_pclmul crc32_pclmul crc32c_intel cec intel_ish_ipc(+) drm e1000e ghash_clmulni_intel nvme serio_raw intel_ishtp nvme_core wmi i2c_hid pinctrl_cannonlake video pinctrl_intel wacom
Jan 03 14:36:41 thiccpad kernel: CPU: 4 PID: 269 Comm: kworker/u24:2 Not tainted 5.8.18-200.fc32.x86_64 #1
Jan 03 14:36:41 thiccpad kernel: Hardware name: LENOVO 20SAS01X00/20SAS01X00, BIOS N2QET19W (1.13 ) 01/15/2020
Jan 03 14:36:41 thiccpad kernel: Workqueue: events_unbound async_run_entry_fn
Jan 03 14:36:41 thiccpad kernel: RIP: 0010:__request_module+0x22d/0x3af
Jan 03 14:36:41 thiccpad kernel: Code: 44 89 ea 48 8d b5 68 ff ff ff e8 ee 93 cf 00 49 8b 04 24 48 85 c0 75 dc e9 b5 fe ff ff e8 6b ea ff ff 84 c0 0f 84 20 fe ff ff <0f> 0b e9 19 fe ff ff 48 c7 c6 d0 2a 04 84 48 c7 c7 e0 76 a5 84 e8
Jan 03 14:36:41 thiccpad kernel: RSP: 0018:ffffc1ecc050f9b8 EFLAGS: 00010202
Jan 03 14:36:41 thiccpad kernel: RAX: ffff9d346bfabc01 RBX: 0000000000000001 RCX: 0000000000000000
Jan 03 14:36:41 thiccpad kernel: RDX: ffffffffc02adad3 RSI: ffffffff8444488e RDI: ffff9d346b0c8000
Jan 03 14:36:41 thiccpad kernel: RBP: ffffc1ecc050fa90 R08: ffff9d346495498b R09: 0000000000000000
Jan 03 14:36:41 thiccpad kernel: R10: ffffc1ecc050faa0 R11: ffff9d346495498b R12: ffffffff8444488e
Jan 03 14:36:41 thiccpad kernel: R13: ffffc1ecc050faa0 R14: ffff9d34649f1800 R15: ffff9d346496a660