-
Notifications
You must be signed in to change notification settings - Fork 0
/
dmesg.txt
2942 lines (2941 loc) · 257 KB
/
dmesg.txt
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
[ 0.000000] Linux version 6.7.5-zen1-1-zen (linux-zen@archlinux) (gcc (GCC) 13.2.1 20230801, GNU ld (GNU Binutils) 2.42.0) #1 ZEN SMP PREEMPT_DYNAMIC Sat, 17 Feb 2024 14:02:21 +0000
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux-zen root=UUID=56e156ab-866c-479c-a0bd-1f0abb499a0e rw loglevel=3 nvidia_drm.modeset=1 psi=1
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009efff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000038311fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000038312000-0x00000000409eafff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000409eb000-0x0000000040b17fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x0000000040b18000-0x0000000040c86fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000000040c87000-0x00000000417fefff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000417ff000-0x00000000417fffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000041800000-0x0000000047ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000048800000-0x0000000048bfffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000048e00000-0x000000004f7fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe700000-0x00000000fe70ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000004b07fffff] usable
[ 0.000000] The simpledrm driver will not be probed
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x2c6f4018-0x2c718a57] usable ==> usable
[ 0.000000] e820: update [mem 0x2c6f4018-0x2c718a57] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009dfff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009e000-0x000000000009efff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x000000000009ffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000002c6f4017] usable
[ 0.000000] reserve setup_data: [mem 0x000000002c6f4018-0x000000002c718a57] usable
[ 0.000000] reserve setup_data: [mem 0x000000002c718a58-0x0000000038311fff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000038312000-0x00000000409eafff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000409eb000-0x0000000040b17fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x0000000040b18000-0x0000000040c86fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x0000000040c87000-0x00000000417fefff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000417ff000-0x00000000417fffff] usable
[ 0.000000] reserve setup_data: [mem 0x0000000041800000-0x0000000047ffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000048800000-0x0000000048bfffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000048e00000-0x000000004f7fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe700000-0x00000000fe70ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x00000004b07fffff] usable
[ 0.000000] efi: EFI v2.8 by American Megatrends
[ 0.000000] efi: ACPI=0x40b17000 ACPI 2.0=0x40b17014 TPMFinalLog=0x40bb2000 SMBIOS=0x4139a000 SMBIOS 3.0=0x41399000 MEMATTR=0x2f7da418 ESRT=0x2f7dae98 INITRD=0x2f7db918 RNG=0x40a26018 TPMEventLog=0x2f2f3018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem78: MMIO range=[0xc0000000-0xcfffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xc0000000-0xcfffffff] reserved
[ 0.000000] efi: Not removing mem79: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem80: MMIO range=[0xfe700000-0xfe70ffff] (64KB) from e820 map
[ 0.000000] efi: Not removing mem81: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem82: MMIO range=[0xfed00000-0xfed00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem84: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem85: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] SMBIOS 3.5.0 present.
[ 0.000000] DMI: ASUSTeK COMPUTER INC. ASUS TUF Gaming F15 FX507VV_FX507VV/FX507VV, BIOS FX507VV.325 12/20/2023
[ 0.000000] tsc: Detected 2900.000 MHz processor
[ 0.000000] tsc: Detected 2918.400 MHz TSC
[ 0.000631] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000632] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000637] last_pfn = 0x4b0800 max_arch_pfn = 0x400000000
[ 0.000640] MTRR map: 5 entries (3 fixed + 2 variable; max 23), built from 10 variable MTRRs
[ 0.000641] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001042] last_pfn = 0x41800 max_arch_pfn = 0x400000000
[ 0.009229] esrt: Reserving ESRT space from 0x000000002f7dae98 to 0x000000002f7daf98.
[ 0.009233] e820: update [mem 0x2f7da000-0x2f7dafff] usable ==> reserved
[ 0.009243] Using GB pages for direct mapping
[ 0.009243] Incomplete global flushes, disabling PCID
[ 0.009400] Secure boot disabled
[ 0.009400] RAMDISK: [mem 0x2c719000-0x2d79cfff]
[ 0.009404] ACPI: Early table checksum verification disabled
[ 0.009408] ACPI: RSDP 0x0000000040B17014 000024 (v02 _ASUS_)
[ 0.009411] ACPI: XSDT 0x0000000040B16728 000144 (v01 _ASUS_ Notebook 01072009 AMI 01000013)
[ 0.009415] ACPI: FACP 0x0000000040B12000 000114 (v06 _ASUS_ Notebook 01072009 AMI 01000013)
[ 0.009417] ACPI: DSDT 0x0000000040A77000 09A4D4 (v02 _ASUS_ Notebook 01072009 INTL 20200717)
[ 0.009419] ACPI: FACS 0x0000000040C85000 000040
[ 0.009420] ACPI: SSDT 0x0000000040B13000 002EF0 (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[ 0.009422] ACPI: FIDT 0x0000000040A76000 00009C (v01 _ASUS_ Notebook 01072009 AMI 00010013)
[ 0.009423] ACPI: MSDM 0x0000000040A75000 000055 (v03 _ASUS_ Notebook 01072009 ASUS 00000001)
[ 0.009424] ACPI: SSDT 0x0000000040A74000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
[ 0.009426] ACPI: SSDT 0x0000000040A6E000 005D34 (v02 CpuRef CpuSsdt 00003000 INTL 20200717)
[ 0.009427] ACPI: SSDT 0x0000000040A6B000 002949 (v02 SaSsdt SaSsdt 00003000 INTL 20200717)
[ 0.009428] ACPI: SSDT 0x0000000040A67000 0033E9 (v02 INTEL IgfxSsdt 00003000 INTL 20200717)
[ 0.009430] ACPI: SSDT 0x0000000040A59000 00D46B (v02 INTEL TcssSsdt 00001000 INTL 20200717)
[ 0.009431] ACPI: HPET 0x0000000040A58000 000038 (v01 _ASUS_ Notebook 01072009 AMI 01000013)
[ 0.009432] ACPI: APIC 0x0000000040A57000 0001DC (v05 _ASUS_ Notebook 01072009 AMI 01000013)
[ 0.009434] ACPI: MCFG 0x0000000040A56000 00003C (v01 _ASUS_ Notebook 01072009 AMI 01000013)
[ 0.009435] ACPI: SSDT 0x0000000040A4D000 008733 (v02 _ASUS_ AdlP_Rvp 00001000 INTL 20200717)
[ 0.009436] ACPI: SSDT 0x0000000040A4B000 001F1A (v02 _ASUS_ Ther_Rvp 00001000 INTL 20200717)
[ 0.009437] ACPI: NHLT 0x0000000040A4A000 0002F1 (v00 _ASUS_ Notebook 01072009 AMI 01000013)
[ 0.009439] ACPI: LPIT 0x0000000040A49000 0000CC (v01 _ASUS_ Notebook 01072009 AMI 01000013)
[ 0.009440] ACPI: SSDT 0x0000000040A45000 002A83 (v02 _ASUS_ PtidDevc 00001000 INTL 20200717)
[ 0.009441] ACPI: SSDT 0x0000000040A42000 002357 (v02 _ASUS_ TbtTypeC 00000000 INTL 20200717)
[ 0.009443] ACPI: DBGP 0x0000000040A41000 000034 (v01 _ASUS_ Notebook 01072009 AMI 01000013)
[ 0.009444] ACPI: DBG2 0x0000000040A40000 000054 (v00 _ASUS_ Notebook 01072009 AMI 01000013)
[ 0.009445] ACPI: SSDT 0x0000000040A3E000 00111C (v02 _ASUS_ UsbCTabl 00001000 INTL 20200717)
[ 0.009446] ACPI: DMAR 0x0000000040A3D000 000088 (v02 INTEL EDK2 00000002 01000013)
[ 0.009448] ACPI: FPDT 0x0000000040A3C000 000044 (v01 _ASUS_ A M I 01072009 AMI 01000013)
[ 0.009449] ACPI: SSDT 0x0000000040A3B000 000BDB (v02 INTEL xh_adlLP 00000000 INTL 20200717)
[ 0.009451] ACPI: SSDT 0x0000000040A37000 003AEA (v02 SocGpe SocGpe 00003000 INTL 20200717)
[ 0.009452] ACPI: SSDT 0x0000000040A33000 0039DA (v02 SocCmn SocCmn 00003000 INTL 20200717)
[ 0.009453] ACPI: SSDT 0x0000000040A32000 000457 (v02 HgRef HgRpSsdt 00001000 INTL 20200717)
[ 0.009455] ACPI: SSDT 0x0000000040A31000 000144 (v02 Intel ADebTabl 00001000 INTL 20200717)
[ 0.009456] ACPI: BGRT 0x0000000040A30000 000038 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
[ 0.009457] ACPI: UEFI 0x0000000040B93000 00063A (v01 INTEL RstVmdE 00000000 INTL 00000000)
[ 0.009458] ACPI: UEFI 0x0000000040B92000 00005C (v01 INTEL RstVmdV 00000000 INTL 00000000)
[ 0.009460] ACPI: TPM2 0x0000000040A2F000 00004C (v04 _ASUS_ Notebook 00000001 AMI 00000000)
[ 0.009461] ACPI: SSDT 0x0000000040A2E000 000710 (v01 NvDDS NvDDSN20 00001000 INTL 20200717)
[ 0.009462] ACPI: SSDT 0x0000000040A28000 005434 (v01 OptRf2 Opt2Tabl 00001000 INTL 20200717)
[ 0.009464] ACPI: PHAT 0x0000000040A27000 00062D (v01 _ASUS_ Notebook 00000005 MSFT 0100000D)
[ 0.009465] ACPI: WSMT 0x0000000040A48000 000028 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
[ 0.009466] ACPI: Reserving FACP table memory at [mem 0x40b12000-0x40b12113]
[ 0.009467] ACPI: Reserving DSDT table memory at [mem 0x40a77000-0x40b114d3]
[ 0.009467] ACPI: Reserving FACS table memory at [mem 0x40c85000-0x40c8503f]
[ 0.009467] ACPI: Reserving SSDT table memory at [mem 0x40b13000-0x40b15eef]
[ 0.009468] ACPI: Reserving FIDT table memory at [mem 0x40a76000-0x40a7609b]
[ 0.009468] ACPI: Reserving MSDM table memory at [mem 0x40a75000-0x40a75054]
[ 0.009468] ACPI: Reserving SSDT table memory at [mem 0x40a74000-0x40a7438b]
[ 0.009469] ACPI: Reserving SSDT table memory at [mem 0x40a6e000-0x40a73d33]
[ 0.009469] ACPI: Reserving SSDT table memory at [mem 0x40a6b000-0x40a6d948]
[ 0.009469] ACPI: Reserving SSDT table memory at [mem 0x40a67000-0x40a6a3e8]
[ 0.009470] ACPI: Reserving SSDT table memory at [mem 0x40a59000-0x40a6646a]
[ 0.009470] ACPI: Reserving HPET table memory at [mem 0x40a58000-0x40a58037]
[ 0.009470] ACPI: Reserving APIC table memory at [mem 0x40a57000-0x40a571db]
[ 0.009471] ACPI: Reserving MCFG table memory at [mem 0x40a56000-0x40a5603b]
[ 0.009471] ACPI: Reserving SSDT table memory at [mem 0x40a4d000-0x40a55732]
[ 0.009471] ACPI: Reserving SSDT table memory at [mem 0x40a4b000-0x40a4cf19]
[ 0.009472] ACPI: Reserving NHLT table memory at [mem 0x40a4a000-0x40a4a2f0]
[ 0.009472] ACPI: Reserving LPIT table memory at [mem 0x40a49000-0x40a490cb]
[ 0.009472] ACPI: Reserving SSDT table memory at [mem 0x40a45000-0x40a47a82]
[ 0.009473] ACPI: Reserving SSDT table memory at [mem 0x40a42000-0x40a44356]
[ 0.009473] ACPI: Reserving DBGP table memory at [mem 0x40a41000-0x40a41033]
[ 0.009473] ACPI: Reserving DBG2 table memory at [mem 0x40a40000-0x40a40053]
[ 0.009474] ACPI: Reserving SSDT table memory at [mem 0x40a3e000-0x40a3f11b]
[ 0.009474] ACPI: Reserving DMAR table memory at [mem 0x40a3d000-0x40a3d087]
[ 0.009474] ACPI: Reserving FPDT table memory at [mem 0x40a3c000-0x40a3c043]
[ 0.009475] ACPI: Reserving SSDT table memory at [mem 0x40a3b000-0x40a3bbda]
[ 0.009475] ACPI: Reserving SSDT table memory at [mem 0x40a37000-0x40a3aae9]
[ 0.009475] ACPI: Reserving SSDT table memory at [mem 0x40a33000-0x40a369d9]
[ 0.009476] ACPI: Reserving SSDT table memory at [mem 0x40a32000-0x40a32456]
[ 0.009476] ACPI: Reserving SSDT table memory at [mem 0x40a31000-0x40a31143]
[ 0.009476] ACPI: Reserving BGRT table memory at [mem 0x40a30000-0x40a30037]
[ 0.009477] ACPI: Reserving UEFI table memory at [mem 0x40b93000-0x40b93639]
[ 0.009477] ACPI: Reserving UEFI table memory at [mem 0x40b92000-0x40b9205b]
[ 0.009477] ACPI: Reserving TPM2 table memory at [mem 0x40a2f000-0x40a2f04b]
[ 0.009478] ACPI: Reserving SSDT table memory at [mem 0x40a2e000-0x40a2e70f]
[ 0.009478] ACPI: Reserving SSDT table memory at [mem 0x40a28000-0x40a2d433]
[ 0.009478] ACPI: Reserving PHAT table memory at [mem 0x40a27000-0x40a2762c]
[ 0.009479] ACPI: Reserving WSMT table memory at [mem 0x40a48000-0x40a48027]
[ 0.009637] No NUMA configuration found
[ 0.009637] Faking a node at [mem 0x0000000000000000-0x00000004b07fffff]
[ 0.009639] NODE_DATA(0) allocated [mem 0x4b07fb000-0x4b07fffff]
[ 0.009653] Zone ranges:
[ 0.009653] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.009654] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.009655] Normal [mem 0x0000000100000000-0x00000004b07fffff]
[ 0.009655] Device empty
[ 0.009656] Movable zone start for each node
[ 0.009656] Early memory node ranges
[ 0.009656] node 0: [mem 0x0000000000001000-0x000000000009dfff]
[ 0.009657] node 0: [mem 0x000000000009f000-0x000000000009ffff]
[ 0.009658] node 0: [mem 0x0000000000100000-0x0000000038311fff]
[ 0.009658] node 0: [mem 0x00000000417ff000-0x00000000417fffff]
[ 0.009659] node 0: [mem 0x0000000100000000-0x00000004b07fffff]
[ 0.009660] Initmem setup node 0 [mem 0x0000000000001000-0x00000004b07fffff]
[ 0.009662] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.009663] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.009675] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.010544] On node 0, zone DMA32: 38125 pages in unavailable ranges
[ 0.027235] On node 0, zone Normal: 26624 pages in unavailable ranges
[ 0.027389] On node 0, zone Normal: 30720 pages in unavailable ranges
[ 0.027430] Reserving Intel graphics memory at [mem 0x4b800000-0x4f7fffff]
[ 0.027734] ACPI: PM-Timer IO Port: 0x1808
[ 0.027739] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.027740] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.027740] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.027741] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.027741] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.027741] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.027742] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.027742] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.027742] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.027743] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.027743] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.027743] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.027743] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.027744] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.027744] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.027744] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.027745] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.027745] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.027745] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.027746] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.027746] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.027746] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.027747] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.027747] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.027782] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.027783] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.027784] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.027787] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.027787] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.027791] e820: update [mem 0x3039e000-0x303eafff] usable ==> reserved
[ 0.027798] TSC deadline timer available
[ 0.027799] smpboot: Allowing 20 CPUs, 0 hotplug CPUs
[ 0.027807] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.027808] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[ 0.027809] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.027809] PM: hibernation: Registered nosave memory: [mem 0x2c6f4000-0x2c6f4fff]
[ 0.027810] PM: hibernation: Registered nosave memory: [mem 0x2c718000-0x2c718fff]
[ 0.027811] PM: hibernation: Registered nosave memory: [mem 0x2f7da000-0x2f7dafff]
[ 0.027811] PM: hibernation: Registered nosave memory: [mem 0x3039e000-0x303eafff]
[ 0.027812] PM: hibernation: Registered nosave memory: [mem 0x38312000-0x409eafff]
[ 0.027812] PM: hibernation: Registered nosave memory: [mem 0x409eb000-0x40b17fff]
[ 0.027813] PM: hibernation: Registered nosave memory: [mem 0x40b18000-0x40c86fff]
[ 0.027813] PM: hibernation: Registered nosave memory: [mem 0x40c87000-0x417fefff]
[ 0.027814] PM: hibernation: Registered nosave memory: [mem 0x41800000-0x47ffffff]
[ 0.027814] PM: hibernation: Registered nosave memory: [mem 0x48000000-0x487fffff]
[ 0.027814] PM: hibernation: Registered nosave memory: [mem 0x48800000-0x48bfffff]
[ 0.027814] PM: hibernation: Registered nosave memory: [mem 0x48c00000-0x48dfffff]
[ 0.027815] PM: hibernation: Registered nosave memory: [mem 0x48e00000-0x4f7fffff]
[ 0.027815] PM: hibernation: Registered nosave memory: [mem 0x4f800000-0xfdffffff]
[ 0.027815] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.027816] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfe6fffff]
[ 0.027816] PM: hibernation: Registered nosave memory: [mem 0xfe700000-0xfe70ffff]
[ 0.027816] PM: hibernation: Registered nosave memory: [mem 0xfe710000-0xfebfffff]
[ 0.027816] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.027817] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.027817] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[ 0.027817] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed1ffff]
[ 0.027818] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[ 0.027818] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfedfffff]
[ 0.027818] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.027818] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.027819] [mem 0x4f800000-0xfdffffff] available for PCI devices
[ 0.027820] Booting paravirtualized kernel on bare hardware
[ 0.027822] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.031604] setup_percpu: NR_CPUS:320 nr_cpumask_bits:20 nr_cpu_ids:20 nr_node_ids:1
[ 0.032207] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u262144
[ 0.032210] pcpu-alloc: s225280 r8192 d28672 u262144 alloc=1*2097152
[ 0.032211] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.032215] pcpu-alloc: [0] 16 17 18 19 -- -- -- --
[ 0.032223] Kernel command line: BOOT_IMAGE=/vmlinuz-linux-zen root=UUID=56e156ab-866c-479c-a0bd-1f0abb499a0e rw loglevel=3 nvidia_drm.modeset=1 psi=1
[ 0.032257] Unknown kernel command line parameters "BOOT_IMAGE=/vmlinuz-linux-zen", will be passed to user space.
[ 0.032264] printk: log_buf_len individual max cpu contribution: 4096 bytes
[ 0.032265] printk: log_buf_len total cpu_extra contributions: 77824 bytes
[ 0.032265] printk: log_buf_len min size: 131072 bytes
[ 0.032360] printk: log_buf_len: 262144 bytes
[ 0.032361] printk: early log buf free: 111400(84%)
[ 0.033469] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.034040] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.034166] Fallback order for Node 0: 0
[ 0.034168] Built 1 zonelists, mobility grouping on. Total pages: 4034534
[ 0.034169] Policy zone: Normal
[ 0.034322] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.034328] software IO TLB: area num 32.
[ 0.061970] Memory: 15822220K/16394948K available (20480K kernel code, 2161K rwdata, 13068K rodata, 3632K init, 3376K bss, 572468K reserved, 0K cma-reserved)
[ 0.062101] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=20, Nodes=1
[ 0.062116] ftrace: allocating 46998 entries in 184 pages
[ 0.066309] ftrace: allocated 184 pages with 4 groups
[ 0.066352] Dynamic Preempt: full
[ 0.066389] rcu: Preemptible hierarchical RCU implementation.
[ 0.066390] rcu: RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=20.
[ 0.066390] rcu: RCU priority boosting: priority 1 delay 500 ms.
[ 0.066391] Trampoline variant of Tasks RCU enabled.
[ 0.066391] Rude variant of Tasks RCU enabled.
[ 0.066391] Tracing variant of Tasks RCU enabled.
[ 0.066391] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.066392] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=20
[ 0.067590] NR_IRQS: 20736, nr_irqs: 2216, preallocated irqs: 16
[ 0.067874] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.068102] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.068128] Console: colour dummy device 80x25
[ 0.068130] printk: legacy console [tty0] enabled
[ 0.068157] ACPI: Core revision 20230628
[ 0.068414] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.068414] APIC: Switch to symmetric I/O mode setup
[ 0.068415] DMAR: Host address width 39
[ 0.068416] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.068420] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[ 0.068421] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.068425] DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[ 0.068426] DMAR: RMRR base: 0x0000004b000000 end: 0x0000004f7fffff
[ 0.068428] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.068428] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.068429] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.069968] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.069969] x2apic enabled
[ 0.070016] APIC: Switched APIC routing to: cluster x2apic
[ 0.074529] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2a11290c0c8, max_idle_ns: 440795344938 ns
[ 0.074534] Calibrating delay loop (skipped), value calculated using timer frequency.. 5836.80 BogoMIPS (lpj=2918400)
[ 0.074579] CPU0: Thermal monitoring enabled (TM1)
[ 0.074580] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.074688] process: using mwait in idle threads
[ 0.074689] CET detected: Indirect Branch Tracking enabled
[ 0.074691] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.074691] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.074693] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.074694] Spectre V2 : Mitigation: Enhanced / Automatic IBRS
[ 0.074695] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.074695] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT
[ 0.074696] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.074697] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.074705] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.074705] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.074706] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.074706] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.074707] x86/fpu: Supporting XSAVE feature 0x800: 'Control-flow User registers'
[ 0.074707] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.074708] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.074708] x86/fpu: xstate_offset[11]: 840, xstate_sizes[11]: 16
[ 0.074709] x86/fpu: Enabled xstate features 0xa07, context size is 856 bytes, using 'compacted' format.
[ 0.075532] Freeing SMP alternatives memory: 48K
[ 0.075532] pid_max: default: 32768 minimum: 301
[ 0.075532] LSM: initializing lsm=capability,landlock,lockdown,yama,bpf,integrity
[ 0.075532] landlock: Up and running.
[ 0.075532] Yama: becoming mindful.
[ 0.075532] LSM support for eBPF active
[ 0.075532] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.075532] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.075532] smpboot: CPU0: 13th Gen Intel(R) Core(TM) i7-13700H (family: 0x6, model: 0xba, stepping: 0x2)
[ 0.075532] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.075532] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.075532] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1.
[ 0.075532] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.075532] core: cpu_core PMU driver:
[ 0.075532] ... version: 5
[ 0.075532] ... bit width: 48
[ 0.075532] ... generic registers: 8
[ 0.075532] ... value mask: 0000ffffffffffff
[ 0.075532] ... max period: 00007fffffffffff
[ 0.075532] ... fixed-purpose events: 4
[ 0.075532] ... event mask: 0001000f000000ff
[ 0.075532] signal: max sigframe size: 3632
[ 0.075532] Estimated ratio of average max frequency by base frequency (times 1024): 1694
[ 0.075532] rcu: Hierarchical SRCU implementation.
[ 0.075532] rcu: Max phase no-delay instances is 400.
[ 0.076055] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.076132] smp: Bringing up secondary CPUs ...
[ 0.076183] smpboot: x86: Booting SMP configuration:
[ 0.076183] .... node #0, CPUs: #2 #4 #6 #8 #10 #12 #13 #14 #15 #16 #17 #18 #19
[ 0.007485] core: cpu_atom PMU driver: PEBS-via-PT
[ 0.007485] ... version: 5
[ 0.007485] ... bit width: 48
[ 0.007485] ... generic registers: 6
[ 0.007485] ... value mask: 0000ffffffffffff
[ 0.007485] ... max period: 00007fffffffffff
[ 0.007485] ... fixed-purpose events: 3
[ 0.007485] ... event mask: 000000070000003f
[ 0.085587] #1 #3 #5 #7 #9 #11
[ 0.088564] smp: Brought up 1 node, 20 CPUs
[ 0.088568] smpboot: Max logical packages: 1
[ 0.088569] smpboot: Total of 20 processors activated (116736.00 BogoMIPS)
[ 0.089967] devtmpfs: initialized
[ 0.089967] x86/mm: Memory block size: 128MB
[ 0.090568] ACPI: PM: Registering ACPI NVS region [mem 0x40b18000-0x40c86fff] (1503232 bytes)
[ 0.090579] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.090610] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.090650] pinctrl core: initialized pinctrl subsystem
[ 0.090848] PM: RTC time: 13:54:36, date: 2024-02-19
[ 0.091157] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.091329] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.091446] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.091643] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.091650] audit: initializing netlink subsys (disabled)
[ 0.091652] audit: type=2000 audit(1708350876.017:1): state=initialized audit_enabled=0 res=1
[ 0.091652] thermal_sys: Registered thermal governor 'fair_share'
[ 0.091652] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.091652] thermal_sys: Registered thermal governor 'step_wise'
[ 0.091652] thermal_sys: Registered thermal governor 'user_space'
[ 0.091652] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.091652] cpuidle: using governor ladder
[ 0.091652] cpuidle: using governor menu
[ 0.091652] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.091652] PCI: MMCONFIG for domain 0000 [bus 00-e0] at [mem 0xc0000000-0xce0fffff] (base 0xc0000000)
[ 0.091652] PCI: not using MMCONFIG
[ 0.091652] PCI: Using configuration type 1 for base access
[ 0.091830] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.092580] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.092580] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.092580] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.092580] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.092580] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.092617] ACPI: Added _OSI(Module Device)
[ 0.092618] ACPI: Added _OSI(Processor Device)
[ 0.092619] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.092620] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.200693] ACPI: 19 ACPI AML tables successfully acquired and loaded
[ 0.201534] ACPI Error: AE_NOT_FOUND, While resolving a named reference package element - \_SB_.PC00.LPCB.SEN2 (20230628/dspkginit-438)
[ 0.218204] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.218206] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.219688] ACPI: Dynamic OEM Table Load:
[ 0.219696] ACPI: SSDT 0xFFFF96A6C1574000 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20200717)
[ 0.220664] ACPI: Dynamic OEM Table Load:
[ 0.220670] ACPI: SSDT 0xFFFF96A6C2A57000 000668 (v02 PmRef Cpu0Ist 00003000 INTL 20200717)
[ 0.221649] ACPI: Dynamic OEM Table Load:
[ 0.221654] ACPI: SSDT 0xFFFF96A6C29D0000 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717)
[ 0.222530] ACPI: Dynamic OEM Table Load:
[ 0.222542] ACPI: SSDT 0xFFFF96A6C2A50000 0004B5 (v02 PmRef Cpu0Hwp 00003000 INTL 20200717)
[ 0.223797] ACPI: Dynamic OEM Table Load:
[ 0.223806] ACPI: SSDT 0xFFFF96A6C1562000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717)
[ 0.225363] ACPI: Dynamic OEM Table Load:
[ 0.225369] ACPI: SSDT 0xFFFF96A6C1564000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717)
[ 0.226727] ACPI: Dynamic OEM Table Load:
[ 0.226735] ACPI: SSDT 0xFFFF96A6C2A5C000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717)
[ 0.228142] ACPI: Dynamic OEM Table Load:
[ 0.228149] ACPI: SSDT 0xFFFF96A6C157D000 000FBB (v02 PmRef ApCst 00003000 INTL 20200717)
[ 0.236727] ACPI: _OSC evaluated successfully for all CPUs
[ 0.237977] ACPI: Interpreter enabled
[ 0.238032] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.238033] ACPI: Using IOAPIC for interrupt routing
[ 0.239168] PCI: MMCONFIG for domain 0000 [bus 00-e0] at [mem 0xc0000000-0xce0fffff] (base 0xc0000000)
[ 0.240904] PCI: MMCONFIG at [mem 0xc0000000-0xce0fffff] reserved as ACPI motherboard resource
[ 0.240914] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.240915] PCI: Ignoring E820 reservations for host bridge windows
[ 0.242340] ACPI: Enabled 12 GPEs in block 00 to 7F
[ 0.243167] ACPI: \_SB_.PC00.PEG1.PXP_: New power resource
[ 0.244165] ACPI: \_SB_.PC00.PEG2.PXP_: New power resource
[ 0.245121] ACPI: \_SB_.PC00.PEG0.PXP_: New power resource
[ 0.246809] ACPI: \_SB_.PC00.RP09.PXP_: New power resource
[ 0.253764] ACPI: \_SB_.PC00.RP06.PXP_: New power resource
[ 0.255225] ACPI: \_SB_.PC00.RP08.PXP_: New power resource
[ 0.261462] ACPI: \_SB_.PC00.XHCI.RHUB.HS10.BTRT: New power resource
[ 0.262158] ACPI: \_SB_.PC00.PAUD: New power resource
[ 0.263089] ACPI: \_SB_.PC00.I2C0.PXTC: New power resource
[ 0.268392] ACPI: \_SB_.PC00.CNVW.WRST: New power resource
[ 0.272150] ACPI: \_SB_.PC00.TBT0: New power resource
[ 0.272491] ACPI: \_SB_.PC00.TBT1: New power resource
[ 0.272826] ACPI: \_SB_.PC00.D3C_: New power resource
[ 0.434363] ACPI: \_TZ_.FN00: New power resource
[ 0.434413] ACPI: \_TZ_.FN01: New power resource
[ 0.434461] ACPI: \_TZ_.FN02: New power resource
[ 0.434513] ACPI: \_TZ_.FN03: New power resource
[ 0.434560] ACPI: \_TZ_.FN04: New power resource
[ 0.435007] ACPI: \PIN_: New power resource
[ 0.435296] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[ 0.435301] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.436510] acpi PNP0A08:00: _OSC: platform does not support [AER]
[ 0.438872] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
[ 0.443384] PCI host bridge to bus 0000:00
[ 0.443385] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.443387] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.443388] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.443389] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[ 0.443390] pci_bus 0000:00: root bus resource [mem 0x4f800000-0xbfffffff window]
[ 0.443391] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.443392] pci_bus 0000:00: root bus resource [bus 00-e0]
[ 0.443493] pci 0000:00:00.0: [8086:a706] type 00 class 0x060000
[ 0.443614] pci 0000:00:01.0: [8086:a70d] type 01 class 0x060400
[ 0.443673] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.443697] pci 0000:00:01.0: PTM enabled (root), 4ns granularity
[ 0.444260] pci 0000:00:02.0: [8086:a7a0] type 00 class 0x030000
[ 0.444267] pci 0000:00:02.0: reg 0x10: [mem 0x622e000000-0x622effffff 64bit]
[ 0.444272] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[ 0.444275] pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
[ 0.444288] pci 0000:00:02.0: BAR 2: assigned to efifb
[ 0.444289] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[ 0.444291] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.444313] pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
[ 0.444315] pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
[ 0.444319] pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
[ 0.444320] pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
[ 0.444452] pci 0000:00:04.0: [8086:a71d] type 00 class 0x118000
[ 0.444463] pci 0000:00:04.0: reg 0x10: [mem 0x622f240000-0x622f25ffff 64bit]
[ 0.444725] pci 0000:00:06.0: [8086:09ab] type 00 class 0x088000
[ 0.445290] pci 0000:00:07.0: [8086:a76e] type 01 class 0x060400
[ 0.445388] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[ 0.445412] pci 0000:00:07.0: PTM enabled (root), 4ns granularity
[ 0.445416] pci 0000:00:07.0: DPC: RP PIO log size 0 is invalid
[ 0.447720] pci 0000:00:08.0: [8086:a74f] type 00 class 0x088000
[ 0.447728] pci 0000:00:08.0: reg 0x10: [mem 0x622f292000-0x622f292fff 64bit]
[ 0.447827] pci 0000:00:0d.0: [8086:a71e] type 00 class 0x0c0330
[ 0.447836] pci 0000:00:0d.0: reg 0x10: [mem 0x622f270000-0x622f27ffff 64bit]
[ 0.447875] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[ 0.449988] pci 0000:00:0d.2: [8086:a73e] type 00 class 0x0c0340
[ 0.449997] pci 0000:00:0d.2: reg 0x10: [mem 0x622f200000-0x622f23ffff 64bit]
[ 0.450005] pci 0000:00:0d.2: reg 0x18: [mem 0x622f291000-0x622f291fff 64bit]
[ 0.450035] pci 0000:00:0d.2: supports D1 D2
[ 0.450036] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.450187] pci 0000:00:0e.0: [8086:a77f] type 00 class 0x010400
[ 0.450200] pci 0000:00:0e.0: reg 0x10: [mem 0x622c000000-0x622dffffff 64bit]
[ 0.450205] pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
[ 0.450218] pci 0000:00:0e.0: reg 0x20: [mem 0x622f100000-0x622f1fffff 64bit]
[ 0.450444] pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330
[ 0.450464] pci 0000:00:14.0: reg 0x10: [mem 0x622f260000-0x622f26ffff 64bit]
[ 0.450549] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.452703] pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000
[ 0.452723] pci 0000:00:14.2: reg 0x10: [mem 0x622f288000-0x622f28bfff 64bit]
[ 0.452736] pci 0000:00:14.2: reg 0x18: [mem 0x622f290000-0x622f290fff 64bit]
[ 0.452940] pci 0000:00:14.3: [8086:51f1] type 00 class 0x028000
[ 0.452961] pci 0000:00:14.3: reg 0x10: [mem 0x622f284000-0x622f287fff 64bit]
[ 0.453107] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[ 0.453428] pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000
[ 0.453500] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[ 0.453956] pci 0000:00:15.1: [8086:51e9] type 00 class 0x0c8000
[ 0.453985] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[ 0.454461] pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000
[ 0.454484] pci 0000:00:16.0: reg 0x10: [mem 0x622f28d000-0x622f28dfff 64bit]
[ 0.454568] pci 0000:00:16.0: PME# supported from D3hot
[ 0.455119] pci 0000:00:1c.0: [8086:51be] type 01 class 0x060400
[ 0.455217] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.455250] pci 0000:00:1c.0: PTM enabled (root), 4ns granularity
[ 0.455892] pci 0000:00:1f.0: [8086:519d] type 00 class 0x060100
[ 0.456240] pci 0000:00:1f.3: [8086:51ca] type 00 class 0x040380
[ 0.456288] pci 0000:00:1f.3: reg 0x10: [mem 0x622f280000-0x622f283fff 64bit]
[ 0.456358] pci 0000:00:1f.3: reg 0x20: [mem 0x622f000000-0x622f0fffff 64bit]
[ 0.456468] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.456562] pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500
[ 0.456586] pci 0000:00:1f.4: reg 0x10: [mem 0x622f28c000-0x622f28c0ff 64bit]
[ 0.456614] pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
[ 0.456855] pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000
[ 0.456873] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[ 0.457029] acpiphp: Slot [1] registered
[ 0.457045] pci 0000:01:00.0: [10de:28e0] type 00 class 0x030000
[ 0.457053] pci 0000:01:00.0: reg 0x10: [mem 0x5f000000-0x5fffffff]
[ 0.457062] pci 0000:01:00.0: reg 0x14: [mem 0x6000000000-0x61ffffffff 64bit pref]
[ 0.457069] pci 0000:01:00.0: reg 0x1c: [mem 0x6200000000-0x6201ffffff 64bit pref]
[ 0.457073] pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
[ 0.457077] pci 0000:01:00.0: reg 0x30: [mem 0x60000000-0x6007ffff pref]
[ 0.457124] pci 0000:01:00.0: PME# supported from D0 D3hot
[ 0.457433] pci 0000:01:00.1: [10de:22be] type 00 class 0x040300
[ 0.457442] pci 0000:01:00.1: reg 0x10: [mem 0x60080000-0x60083fff]
[ 0.457568] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.457570] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 0.457574] pci 0000:00:01.0: bridge window [mem 0x5f000000-0x600fffff]
[ 0.457577] pci 0000:00:01.0: bridge window [mem 0x6000000000-0x6201ffffff 64bit pref]
[ 0.457604] pci 0000:00:07.0: PCI bridge to [bus 02-36]
[ 0.457607] pci 0000:00:07.0: bridge window [mem 0x52000000-0x5e1fffff]
[ 0.457610] pci 0000:00:07.0: bridge window [mem 0x6210000000-0x622bffffff 64bit pref]
[ 0.457670] pci 0000:37:00.0: [10ec:8168] type 00 class 0x020000
[ 0.457693] pci 0000:37:00.0: reg 0x10: [io 0x3000-0x30ff]
[ 0.457724] pci 0000:37:00.0: reg 0x18: [mem 0x60204000-0x60204fff 64bit]
[ 0.457743] pci 0000:37:00.0: reg 0x20: [mem 0x60200000-0x60203fff 64bit]
[ 0.457868] pci 0000:37:00.0: supports D1 D2
[ 0.457869] pci 0000:37:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.458104] pci 0000:00:1c.0: PCI bridge to [bus 37]
[ 0.458107] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
[ 0.458109] pci 0000:00:1c.0: bridge window [mem 0x60200000-0x602fffff]
[ 0.465061] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.465167] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.465272] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.465374] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.465477] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.465583] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.465686] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.465788] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.843552] Low-power S0 idle used by default for system suspend
[ 0.855589] iommu: Default domain type: Translated
[ 0.855589] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.855659] SCSI subsystem initialized
[ 0.855668] libata version 3.00 loaded.
[ 0.855668] ACPI: bus type USB registered
[ 0.855668] usbcore: registered new interface driver usbfs
[ 0.855668] usbcore: registered new interface driver hub
[ 0.855668] usbcore: registered new device driver usb
[ 0.855668] pps_core: LinuxPPS API ver. 1 registered
[ 0.855668] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[ 0.855668] PTP clock support registered
[ 0.855668] EDAC MC: Ver: 3.0.0
[ 0.856534] efivars: Registered efivars operations
[ 0.856741] NetLabel: Initializing
[ 0.856742] NetLabel: domain hash size = 128
[ 0.856742] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.856757] NetLabel: unlabeled traffic allowed by default
[ 0.856760] mctp: management component transport protocol core
[ 0.856761] NET: Registered PF_MCTP protocol family
[ 0.856764] PCI: Using ACPI for IRQ routing
[ 0.873108] PCI: pci_cache_line_size set to 64 bytes
[ 0.873255] pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
[ 0.873357] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.873358] e820: reserve RAM buffer [mem 0x2c6f4018-0x2fffffff]
[ 0.873359] e820: reserve RAM buffer [mem 0x2f7da000-0x2fffffff]
[ 0.873360] e820: reserve RAM buffer [mem 0x3039e000-0x33ffffff]
[ 0.873360] e820: reserve RAM buffer [mem 0x38312000-0x3bffffff]
[ 0.873361] e820: reserve RAM buffer [mem 0x41800000-0x43ffffff]
[ 0.873361] e820: reserve RAM buffer [mem 0x4b0800000-0x4b3ffffff]
[ 0.873557] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.873557] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.873557] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.873557] pci 0000:01:00.0: vgaarb: bridge control possible
[ 0.873557] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[ 0.873557] vgaarb: loaded
[ 0.873606] clocksource: Switched to clocksource tsc-early
[ 0.873879] VFS: Disk quotas dquot_6.6.0
[ 0.873889] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.873939] pnp: PnP ACPI init
[ 0.874208] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.874210] system 00:00: [io 0x164e-0x164f] has been reserved
[ 0.874336] system 00:01: [io 0x1854-0x1857] has been reserved
[ 0.876276] pnp 00:02: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[ 0.876297] system 00:02: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 0.876298] system 00:02: [mem 0xfeda0000-0xfeda0fff] has been reserved
[ 0.876299] system 00:02: [mem 0xfeda1000-0xfeda1fff] has been reserved
[ 0.876301] system 00:02: [mem 0xfed20000-0xfed7ffff] could not be reserved
[ 0.876302] system 00:02: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.876303] system 00:02: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 0.876304] system 00:02: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.879571] system 00:04: [io 0x2000-0x20fe] has been reserved
[ 0.880477] pnp: PnP ACPI: found 6 devices
[ 0.885787] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.885875] NET: Registered PF_INET protocol family
[ 0.886292] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.888556] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.888595] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.888712] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.889056] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.889137] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.889262] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.889323] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.889370] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.889423] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.889429] NET: Registered PF_XDP protocol family
[ 0.889434] pci 0000:00:07.0: bridge window [io 0x1000-0x0fff] to [bus 02-36] add_size 1000
[ 0.889442] pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
[ 0.889446] pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
[ 0.889448] pci 0000:00:07.0: BAR 13: assigned [io 0x6000-0x6fff]
[ 0.889449] pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
[ 0.889565] pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
[ 0.889625] pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f800000-0x4f800fff]
[ 0.889631] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.889632] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 0.889635] pci 0000:00:01.0: bridge window [mem 0x5f000000-0x600fffff]
[ 0.889636] pci 0000:00:01.0: bridge window [mem 0x6000000000-0x6201ffffff 64bit pref]
[ 0.889639] pci 0000:00:07.0: PCI bridge to [bus 02-36]
[ 0.889641] pci 0000:00:07.0: bridge window [io 0x6000-0x6fff]
[ 0.889643] pci 0000:00:07.0: bridge window [mem 0x52000000-0x5e1fffff]
[ 0.889645] pci 0000:00:07.0: bridge window [mem 0x6210000000-0x622bffffff 64bit pref]
[ 0.889649] pci 0000:00:1c.0: PCI bridge to [bus 37]
[ 0.889652] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
[ 0.889655] pci 0000:00:1c.0: bridge window [mem 0x60200000-0x602fffff]
[ 0.889662] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.889663] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.889664] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.889665] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000fffff window]
[ 0.889666] pci_bus 0000:00: resource 8 [mem 0x4f800000-0xbfffffff window]
[ 0.889667] pci_bus 0000:00: resource 9 [mem 0x4000000000-0x7fffffffff window]
[ 0.889668] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
[ 0.889669] pci_bus 0000:01: resource 1 [mem 0x5f000000-0x600fffff]
[ 0.889669] pci_bus 0000:01: resource 2 [mem 0x6000000000-0x6201ffffff 64bit pref]
[ 0.889670] pci_bus 0000:02: resource 0 [io 0x6000-0x6fff]
[ 0.889671] pci_bus 0000:02: resource 1 [mem 0x52000000-0x5e1fffff]
[ 0.889672] pci_bus 0000:02: resource 2 [mem 0x6210000000-0x622bffffff 64bit pref]
[ 0.889673] pci_bus 0000:37: resource 0 [io 0x3000-0x3fff]
[ 0.889674] pci_bus 0000:37: resource 1 [mem 0x60200000-0x602fffff]
[ 0.890240] pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
[ 0.890257] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[ 0.890291] PCI: CLS 64 bytes, default 64
[ 0.890297] DMAR: Intel-IOMMU force enabled due to platform opt in
[ 0.890303] DMAR: No ATSR found
[ 0.890303] DMAR: No SATC found
[ 0.890304] DMAR: IOMMU feature fl1gp_support inconsistent
[ 0.890305] DMAR: IOMMU feature pgsel_inv inconsistent
[ 0.890306] DMAR: IOMMU feature nwfs inconsistent
[ 0.890306] DMAR: IOMMU feature dit inconsistent
[ 0.890307] DMAR: IOMMU feature sc_support inconsistent
[ 0.890307] DMAR: IOMMU feature dev_iotlb_support inconsistent
[ 0.890308] DMAR: dmar0: Using Queued invalidation
[ 0.890310] DMAR: dmar1: Using Queued invalidation
[ 0.890358] Trying to unpack rootfs image as initramfs...
[ 0.890471] pci 0000:00:02.0: Adding to iommu group 0
[ 0.890502] pci 0000:00:00.0: Adding to iommu group 1
[ 0.890512] pci 0000:00:01.0: Adding to iommu group 2
[ 0.890518] pci 0000:00:04.0: Adding to iommu group 3
[ 0.890526] pci 0000:00:06.0: Adding to iommu group 4
[ 0.890533] pci 0000:00:07.0: Adding to iommu group 5
[ 0.890541] pci 0000:00:08.0: Adding to iommu group 6
[ 0.890552] pci 0000:00:0d.0: Adding to iommu group 7
[ 0.890557] pci 0000:00:0d.2: Adding to iommu group 7
[ 0.890563] pci 0000:00:0e.0: Adding to iommu group 8
[ 0.890574] pci 0000:00:14.0: Adding to iommu group 9
[ 0.890581] pci 0000:00:14.2: Adding to iommu group 9
[ 0.890587] pci 0000:00:14.3: Adding to iommu group 10
[ 0.890596] pci 0000:00:15.0: Adding to iommu group 11
[ 0.890603] pci 0000:00:15.1: Adding to iommu group 11
[ 0.890611] pci 0000:00:16.0: Adding to iommu group 12
[ 0.890622] pci 0000:00:1c.0: Adding to iommu group 13
[ 0.890636] pci 0000:00:1f.0: Adding to iommu group 14
[ 0.890642] pci 0000:00:1f.3: Adding to iommu group 14
[ 0.890652] pci 0000:00:1f.4: Adding to iommu group 14
[ 0.890658] pci 0000:00:1f.5: Adding to iommu group 14
[ 0.890677] pci 0000:01:00.0: Adding to iommu group 15
[ 0.890691] pci 0000:01:00.1: Adding to iommu group 15
[ 0.890701] pci 0000:37:00.0: Adding to iommu group 16
[ 0.890796] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.890797] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.890797] software IO TLB: mapped [mem 0x00000000286f4000-0x000000002c6f4000] (64MB)
[ 0.890964] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2a11290c0c8, max_idle_ns: 440795344938 ns
[ 0.891013] clocksource: Switched to clocksource tsc
[ 0.891025] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.896055] Initialise system trusted keyrings
[ 0.896063] Key type blacklist registered
[ 0.896099] workingset: timestamp_bits=41 max_order=22 bucket_order=0
[ 0.896103] zbud: loaded
[ 0.896225] integrity: Platform Keyring initialized
[ 0.896227] integrity: Machine keyring initialized
[ 0.903927] Key type asymmetric registered
[ 0.903928] Asymmetric key parser 'x509' registered
[ 0.903941] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[ 0.904012] io scheduler mq-deadline registered
[ 0.904013] io scheduler kyber registered
[ 0.904019] io scheduler bfq registered
[ 0.906065] pcieport 0000:00:01.0: PME: Signaling with IRQ 122
[ 0.906240] pcieport 0000:00:07.0: PME: Signaling with IRQ 123
[ 0.906253] pcieport 0000:00:07.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 0.906585] pcieport 0000:00:1c.0: PME: Signaling with IRQ 124
[ 0.906660] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.906873] Monitor-Mwait will be used to enter C-1 state
[ 0.906892] Monitor-Mwait will be used to enter C-2 state
[ 0.906905] Monitor-Mwait will be used to enter C-3 state
[ 0.906921] ACPI: \_SB_.PR00: Found 3 idle states
[ 0.907787] ACPI: AC: AC Adapter [ADP0] (on-line)
[ 0.907815] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/PNP0C0D:01/input/input0
[ 0.907822] ACPI: button: Lid Switch [LID0]
[ 0.907843] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.907849] ACPI: button: Sleep Button [SLPB]
[ 0.907860] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[ 0.907866] ACPI: button: Power Button [PWRB]
[ 0.910338] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.910339] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.910464] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.911390] ACPI: battery: Slot [BAT0] (battery present)
[ 0.912148] hpet_acpi_add: no address or irqs in _CRS
[ 0.912207] Non-volatile memory driver v1.3
[ 0.912208] Linux agpgart interface v0.103
[ 0.917130] Freeing initrd memory: 16912K
[ 0.920889] ACPI: bus type drm_connector registered
[ 0.922272] usbcore: registered new interface driver usbserial_generic
[ 0.922275] usbserial: USB Serial support registered for generic
[ 0.922322] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.923140] rtc_cmos rtc_cmos: registered as rtc0
[ 0.923322] rtc_cmos rtc_cmos: setting system clock to 2024-02-19T13:54:37 UTC (1708350877)
[ 0.923347] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.924298] intel_pstate: Intel P-state driver initializing
[ 0.925735] intel_pstate: HWP enabled
[ 0.926037] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.926281] efifb: probing for efifb
[ 0.926285] efifb: framebuffer at 0x4000000000, using 14400k, total 14400k
[ 0.926286] efifb: mode is 2560x1440x32, linelength=10240, pages=1
[ 0.926287] efifb: scrolling: redraw
[ 0.926287] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.926323] fbcon: Deferring console take-over
[ 0.926324] fb0: EFI VGA frame buffer device
[ 0.926342] hid: raw HID events driver (C) Jiri Kosina
[ 0.926407] intel_pmc_core INT33A1:00: initialized
[ 0.926465] drop_monitor: Initializing network drop monitor service
[ 0.935587] Initializing XFRM netlink socket
[ 0.935616] NET: Registered PF_INET6 protocol family
[ 0.943632] Segment Routing with IPv6
[ 0.943636] RPL Segment Routing with IPv6
[ 0.943658] In-situ OAM (IOAM) with IPv6
[ 0.943714] NET: Registered PF_PACKET protocol family
[ 0.945878] microcode: Current revision: 0x0000411c
[ 0.945880] microcode: Updated early from: 0x0000410e
[ 0.946891] IPI shorthand broadcast: enabled
[ 0.949523] sched_clock: Marking stable (943001360, 6485314)->(979423810, -29937136)
[ 0.949934] registered taskstats version 1
[ 0.952558] Loading compiled-in X.509 certificates
[ 0.957128] Loaded X.509 cert 'Build time autogenerated kernel key: 9babd07e745c0c29544cd224a71abbe521eb457e'
[ 0.961900] zswap: loaded using pool zstd/zsmalloc
[ 0.963777] Key type .fscrypt registered
[ 0.963780] Key type fscrypt-provisioning registered
[ 0.964102] integrity: Loading X.509 certificate: UEFI:db
[ 0.964472] integrity: Loaded X.509 cert ': 4238256238813fab4f31de855fe58652'
[ 0.964473] integrity: Loading X.509 certificate: UEFI:db
[ 0.964502] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.964503] integrity: Loading X.509 certificate: UEFI:db
[ 0.964519] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.965549] PM: Magic number: 12:671:938
[ 0.969266] RAS: Correctable Errors collector initialized.
[ 0.969337] clk: Disabling unused clocks
[ 0.977261] Freeing unused decrypted memory: 2028K
[ 0.977786] Freeing unused kernel image (initmem) memory: 3632K
[ 0.983629] Write protecting the kernel read-only data: 34816k
[ 0.984399] Freeing unused kernel image (rodata/data gap) memory: 1268K
[ 0.992721] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.992725] rodata_test: all tests were successful
[ 0.992728] Run /init as init process
[ 0.992729] with arguments:
[ 0.992729] /init
[ 0.992730] with environment:
[ 0.992730] HOME=/
[ 0.992730] TERM=linux
[ 0.992731] BOOT_IMAGE=/vmlinuz-linux-zen
[ 1.020524] fbcon: Taking over console
[ 1.020648] Console: switching to colour frame buffer device 160x45
[ 1.097185] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[ 1.097188] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[ 1.098025] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.098299] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[ 1.098305] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[ 1.098698] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[ 1.098700] pci_bus 10000:e0: root bus resource [bus e0-ff]
[ 1.098702] pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
[ 1.098703] pci_bus 10000:e0: root bus resource [mem 0x622f102000-0x622f1fffff 64bit]
[ 1.098721] pci 10000:e0:06.0: [8086:a74d] type 01 class 0x060400
[ 1.098772] pci 10000:e0:06.0: PME# supported from D0 D3hot D3cold
[ 1.098794] pci 10000:e0:06.0: PTM enabled (root), 4ns granularity
[ 1.098874] pci 10000:e0:06.0: Adding to iommu group 8
[ 1.098893] pci 10000:e0:06.2: [8086:a73d] type 01 class 0x060400
[ 1.098943] pci 10000:e0:06.2: PME# supported from D0 D3hot D3cold
[ 1.098965] pci 10000:e0:06.2: PTM enabled (root), 4ns granularity
[ 1.099016] pci 10000:e0:06.2: Adding to iommu group 8
[ 1.099025] pci 10000:e0:06.0: Primary bus is hard wired to 0
[ 1.099049] pci 10000:e1:00.0: [15b7:5017] type 00 class 0x010802
[ 1.099064] pci 10000:e1:00.0: reg 0x10: [mem 0x50000000-0x50003fff 64bit]
[ 1.099235] pci 10000:e1:00.0: Adding to iommu group 8
[ 1.099274] pci 10000:e0:06.0: PCI bridge to [bus e1]
[ 1.099277] pci 10000:e0:06.0: bridge window [io 0x0000-0x0fff]
[ 1.099280] pci 10000:e0:06.0: bridge window [mem 0x50000000-0x500fffff]
[ 1.099285] pci 10000:e0:06.2: Primary bus is hard wired to 0
[ 1.099319] pci 10000:e2:00.0: [1e4b:1202] type 00 class 0x010802
[ 1.099335] pci 10000:e2:00.0: reg 0x10: [mem 0x50100000-0x50103fff 64bit]
[ 1.099362] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 1.099428] pci 10000:e2:00.0: PME# supported from D0 D3hot D3cold
[ 1.099565] pci 10000:e2:00.0: Adding to iommu group 8
[ 1.099579] pci 10000:e0:06.2: PCI bridge to [bus e2]
[ 1.099581] pci 10000:e0:06.2: bridge window [io 0x0000-0x0fff]
[ 1.099584] pci 10000:e0:06.2: bridge window [mem 0x50100000-0x501fffff]
[ 1.099588] pci 10000:e0:06.0: Primary bus is hard wired to 0
[ 1.099592] pci 10000:e0:06.2: Primary bus is hard wired to 0
[ 1.099620] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[ 1.099623] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[ 1.099626] xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 1.099740] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.07
[ 1.099748] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.099751] usb usb1: Product: xHCI Host Controller
[ 1.099753] usb usb1: Manufacturer: Linux 6.7.5-zen1-1-zen xhci-hcd
[ 1.099755] usb usb1: SerialNumber: 0000:00:0d.0
[ 1.099976] hub 1-0:1.0: USB hub found
[ 1.100002] hub 1-0:1.0: 1 port detected
[ 1.100577] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.07
[ 1.100582] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.100584] usb usb2: Product: xHCI Host Controller
[ 1.100586] usb usb2: Manufacturer: Linux 6.7.5-zen1-1-zen xhci-hcd
[ 1.100587] usb usb2: SerialNumber: 0000:00:0d.0
[ 1.100700] hub 2-0:1.0: USB hub found
[ 1.100709] hub 2-0:1.0: 2 ports detected
[ 1.101459] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.101465] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 1.102590] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
[ 1.102824] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.102826] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 1.102828] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 1.102860] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.07
[ 1.102862] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.102863] usb usb3: Product: xHCI Host Controller
[ 1.102864] usb usb3: Manufacturer: Linux 6.7.5-zen1-1-zen xhci-hcd
[ 1.102865] usb usb3: SerialNumber: 0000:00:14.0
[ 1.103005] hub 3-0:1.0: USB hub found
[ 1.103022] hub 3-0:1.0: 12 ports detected
[ 1.104144] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.07
[ 1.104145] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.104146] usb usb4: Product: xHCI Host Controller
[ 1.104147] usb usb4: Manufacturer: Linux 6.7.5-zen1-1-zen xhci-hcd
[ 1.104147] usb usb4: SerialNumber: 0000:00:14.0
[ 1.104227] hub 4-0:1.0: USB hub found
[ 1.104236] hub 4-0:1.0: 4 ports detected
[ 1.109737] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 1.282773] pci 10000:e0:06.0: BAR 14: assigned [mem 0x50000000-0x500fffff]
[ 1.282802] pci 10000:e0:06.2: BAR 14: assigned [mem 0x50100000-0x501fffff]
[ 1.282808] pci 10000:e0:06.0: BAR 13: no space for [io size 0x1000]
[ 1.282815] pci 10000:e0:06.0: BAR 13: failed to assign [io size 0x1000]
[ 1.282820] pci 10000:e0:06.2: BAR 13: no space for [io size 0x1000]
[ 1.282824] pci 10000:e0:06.2: BAR 13: failed to assign [io size 0x1000]
[ 1.282835] pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
[ 1.282853] pci 10000:e0:06.0: PCI bridge to [bus e1]
[ 1.282863] pci 10000:e0:06.0: bridge window [mem 0x50000000-0x500fffff]
[ 1.282879] pci 10000:e2:00.0: BAR 0: assigned [mem 0x50100000-0x50103fff 64bit]
[ 1.282895] pci 10000:e0:06.2: PCI bridge to [bus e2]
[ 1.282903] pci 10000:e0:06.2: bridge window [mem 0x50100000-0x501fffff]
[ 1.283051] pcieport 10000:e0:06.0: can't derive routing for PCI INT D
[ 1.283057] pcieport 10000:e0:06.0: PCI INT D: no GSI
[ 1.283313] pcieport 10000:e0:06.0: PME: Signaling with IRQ 146
[ 1.283602] pcieport 10000:e0:06.2: can't derive routing for PCI INT B
[ 1.283607] pcieport 10000:e0:06.2: PCI INT B: no GSI
[ 1.283730] pcieport 10000:e0:06.2: PME: Signaling with IRQ 147
[ 1.283933] vmd 0000:00:0e.0: Bound to PCI domain 10000
[ 1.311506] nvme nvme1: pci function 10000:e2:00.0
[ 1.311510] nvme nvme0: pci function 10000:e1:00.0
[ 1.311535] pcieport 10000:e0:06.0: can't derive routing for PCI INT A
[ 1.311535] pcieport 10000:e0:06.2: can't derive routing for PCI INT A
[ 1.311539] nvme 10000:e1:00.0: PCI INT A: no GSI
[ 1.311541] nvme 10000:e2:00.0: PCI INT A: not connected
[ 1.315692] nvme nvme1: missing or invalid SUBNQN field.
[ 1.323533] nvme nvme1: allocated 32 MiB host memory buffer.
[ 1.326407] nvme nvme1: 8/0/0 default/read/poll queues
[ 1.328226] nvme nvme1: Ignoring bogus Namespace Identifiers
[ 1.330964] nvme1n1: p1 p2 p3 p4 p5
[ 1.341518] usb 3-1: new low-speed USB device number 2 using xhci_hcd
[ 1.345945] nvme nvme0: allocated 32 MiB host memory buffer.
[ 1.349141] nvme nvme0: 18/0/0 default/read/poll queues
[ 1.356821] nvme0n1: p1 p2 p3 p4 p5 p6
[ 1.470338] usb 3-1: New USB device found, idVendor=30fa, idProduct=0400, bcdDevice= 1.00
[ 1.470342] usb 3-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.470344] usb 3-1: Product: USB OPTICAL MOUSE
[ 1.475477] input: USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0/0003:30FA:0400.0001/input/input4
[ 1.475534] hid-generic 0003:30FA:0400.0001: input,hidraw0: USB HID v1.11 Mouse [USB OPTICAL MOUSE ] on usb-0000:00:14.0-1/input0
[ 1.475548] usbcore: registered new interface driver usbhid
[ 1.475549] usbhid: USB HID core driver
[ 1.493941] EXT4-fs (nvme1n1p4): mounted filesystem 56e156ab-866c-479c-a0bd-1f0abb499a0e r/w with ordered data mode. Quota mode: none.
[ 1.584523] usb 3-2: new full-speed USB device number 3 using xhci_hcd
[ 1.591682] systemd[1]: systemd 255.3-1-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
[ 1.591693] systemd[1]: Detected architecture x86-64.
[ 1.592715] systemd[1]: Hostname set to <Arch>.
[ 1.715279] usb 3-2: New USB device found, idVendor=258a, idProduct=002a, bcdDevice=90.29
[ 1.715298] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.715305] usb 3-2: Product: Gaming KB
[ 1.715310] usb 3-2: Manufacturer: SINO WEALTH
[ 1.721052] input: SINO WEALTH Gaming KB as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.0/0003:258A:002A.0002/input/input5
[ 1.773910] hid-generic 0003:258A:002A.0002: input,hidraw1: USB HID v1.11 Keyboard [SINO WEALTH Gaming KB ] on usb-0000:00:14.0-2/input0
[ 1.779318] input: SINO WEALTH Gaming KB System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.1/0003:258A:002A.0003/input/input6
[ 1.831201] input: SINO WEALTH Gaming KB Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.1/0003:258A:002A.0003/input/input7
[ 1.831696] input: SINO WEALTH Gaming KB Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-2/3-2:1.1/0003:258A:002A.0003/input/input8
[ 1.832795] hid-generic 0003:258A:002A.0003: input,hiddev96,hidraw2: USB HID v1.11 Keyboard [SINO WEALTH Gaming KB ] on usb-0000:00:14.0-2/input1
[ 1.894880] systemd[1]: bpf-lsm: LSM BPF program attached
[ 1.947516] usb 3-7: new high-speed USB device number 4 using xhci_hcd
[ 2.024801] systemd[1]: Queued start job for default target Graphical Interface.
[ 2.047205] systemd[1]: Created slice Slice /system/dirmngr.
[ 2.047759] systemd[1]: Created slice Slice /system/getty.
[ 2.048180] systemd[1]: Created slice Slice /system/gpg-agent.
[ 2.048653] systemd[1]: Created slice Slice /system/gpg-agent-browser.
[ 2.049075] systemd[1]: Created slice Slice /system/gpg-agent-extra.
[ 2.049472] systemd[1]: Created slice Slice /system/gpg-agent-ssh.
[ 2.049864] systemd[1]: Created slice Slice /system/keyboxd.
[ 2.050251] systemd[1]: Created slice Slice /system/modprobe.
[ 2.050694] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 2.051007] systemd[1]: Created slice User and Session Slice.
[ 2.051112] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[ 2.051213] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 2.051425] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 2.051526] systemd[1]: Expecting device /dev/disk/by-uuid/6bc2650c-6c27-4243-b624-f19dc895411c...
[ 2.051600] systemd[1]: Expecting device /dev/disk/by-uuid/FCC0-2CBF...
[ 2.051657] systemd[1]: Reached target Local Encrypted Volumes.
[ 2.051712] systemd[1]: Reached target Login Prompts.
[ 2.051763] systemd[1]: Reached target Local Integrity Protected Volumes.
[ 2.051834] systemd[1]: Reached target Path Units.
[ 2.051884] systemd[1]: Reached target Remote File Systems.
[ 2.051937] systemd[1]: Reached target Slice Units.
[ 2.051995] systemd[1]: Reached target Local Verity Protected Volumes.
[ 2.052097] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 2.052637] systemd[1]: Listening on LVM2 poll daemon socket.
[ 2.053767] systemd[1]: Listening on Process Core Dump Socket.
[ 2.053911] systemd[1]: Listening on Journal Socket (/dev/log).
[ 2.054028] systemd[1]: Listening on Journal Socket.
[ 2.054102] systemd[1]: TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.054291] systemd[1]: Listening on udev Control Socket.
[ 2.054394] systemd[1]: Listening on udev Kernel Socket.
[ 2.055591] systemd[1]: Mounting Huge Pages File System...
[ 2.056161] systemd[1]: Mounting POSIX Message Queue File System...
[ 2.056838] systemd[1]: Mounting Kernel Debug File System...
[ 2.058478] systemd[1]: Mounting Kernel Trace File System...
[ 2.060138] systemd[1]: Starting Create List of Static Device Nodes...
[ 2.061419] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 2.062758] systemd[1]: Starting Load Kernel Module configfs...
[ 2.064130] systemd[1]: Starting Load Kernel Module dm_mod...
[ 2.065831] systemd[1]: Starting Load Kernel Module drm...
[ 2.067058] systemd[1]: Starting Load Kernel Module fuse...
[ 2.068181] systemd[1]: Starting Load Kernel Module loop...
[ 2.068964] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[ 2.070073] systemd[1]: Starting Journal Service...
[ 2.072351] systemd[1]: Starting Load Kernel Modules...
[ 2.073116] systemd[1]: TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.073636] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 2.074444] systemd[1]: TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 2.075091] systemd[1]: Starting Coldplug All udev Devices...
[ 2.075390] device-mapper: uevent: version 1.0.3
[ 2.075469] loop: module loaded
[ 2.075537] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: [email protected]
[ 2.076866] systemd[1]: Mounted Huge Pages File System.
[ 2.077804] systemd[1]: Mounted POSIX Message Queue File System.
[ 2.078646] systemd[1]: Mounted Kernel Debug File System.
[ 2.079256] fuse: init (API version 7.39)
[ 2.079471] systemd[1]: Mounted Kernel Trace File System.
[ 2.083168] systemd-journald[328]: Collecting audit messages is disabled.
[ 2.085471] i2c_dev: i2c /dev entries driver
[ 2.094656] EXT4-fs (nvme1n1p4): re-mounted 56e156ab-866c-479c-a0bd-1f0abb499a0e r/w. Quota mode: none.
[ 2.094905] usb 3-7: New USB device found, idVendor=2b7e, idProduct=b685, bcdDevice= 0.01
[ 2.094910] usb 3-7: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 2.094912] usb 3-7: Product: USB2.0 HD UVC WebCam
[ 2.094914] usb 3-7: Manufacturer: Sonix Technology Co., Ltd.
[ 2.096655] systemd[1]: Finished Create List of Static Device Nodes.
[ 2.097928] systemd[1]: [email protected]: Deactivated successfully.
[ 2.121648] systemd[1]: Finished Load Kernel Module configfs.
[ 2.122614] systemd[1]: Started Journal Service.
[ 2.210621] usb 3-10: new full-speed USB device number 5 using xhci_hcd
[ 2.239824] Adding 11863036k swap on /swapfile. Priority:-2 extents:91 across:12713984k SS