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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015 | [ 0.000000] microcode: microcode updated early to revision 0x42c, date = 2023-04-18
[ 0.000000] Linux version 6.1.39-calculate (root@localhost) (gcc (Gentoo 12.3.1_p20230526 p2) 12.3.1 20230526, GNU ld (Gentoo 2.40 p5) 2.40.0) #1 SMP PREEMPT_DYNAMIC Wed Jul 19 21:20:18 UTC 2023
[ 0.000000] Command line: BOOT_IMAGE=/@/boot/vmlinuz-6.1.39-calculate root=UUID=4fe7dea8-6d59-45c9-b800-641a9521cca6 ro rootflags=subvol=@ video=1920x1080 resume=PARTUUID=46c2a128-3b89-154d-8966-119d93ac722c rd.retry=40 calculate=video:modesetting splash quiet mitigations=off
[ 0.000000] x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: xstate_offset[9]: 832, xstate_sizes[9]: 8
[ 0.000000] x86/fpu: Enabled xstate features 0x207, context size is 840 bytes, using 'compacted' format.
[ 0.000000] signal: max sigframe size: 3632
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000005cd14fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000005cd15000-0x000000005cf37fff] type 20
[ 0.000000] BIOS-e820: [mem 0x000000005cf38000-0x0000000060d10fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000060d11000-0x0000000061571fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x0000000061572000-0x00000000617fefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000617ff000-0x00000000617fffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000061800000-0x0000000065ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000066400000-0x00000000665fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000066e00000-0x00000000707fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c0000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f9800000-0x00000000f9ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000088f7fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] efi: EFI v2.70 by Dell
[ 0.000000] efi: ACPI=0x617fe000 ACPI 2.0=0x617fe014 SMBIOS=0x5d5a6000 ESRT=0x5d53eb18 MEMATTR=0x57439018
[ 0.000000] SMBIOS 3.4 present.
[ 0.000000] DMI: Dell Inc. Latitude 5530/0C6CYC, BIOS 1.15.0 07/11/2023
[ 0.000000] tsc: Detected 2700.000 MHz processor
[ 0.000000] tsc: Detected 2688.000 MHz TSC
[ 0.000005] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000007] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000011] last_pfn = 0x88f800 max_arch_pfn = 0x400000000
[ 0.000144] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000801] e820: update [mem 0x6c000000-0xffffffff] usable ==> reserved
[ 0.000805] last_pfn = 0x61800 max_arch_pfn = 0x400000000
[ 0.005334] esrt: Reserving ESRT space from 0x000000005d53eb18 to 0x000000005d53eb78.
[ 0.005344] Using GB pages for direct mapping
[ 0.005344] Incomplete global flushes, disabling PCID
[ 0.005476] Secure boot disabled
[ 0.005476] RAMDISK: [mem 0x36213000-0x37100fff]
[ 0.005480] ACPI: Early table checksum verification disabled
[ 0.005483] ACPI: RSDP 0x00000000617FE014 000024 (v02 DELL )
[ 0.005485] ACPI: XSDT 0x0000000061754188 000104 (v01 DELL Dell Inc 00000002 01000013)
[ 0.005490] ACPI: FACP 0x00000000617EE000 000114 (v06 DELL Dell Inc 00000002 01000013)
[ 0.005493] ACPI: DSDT 0x0000000061777000 07312D (v02 DELL Dell Inc 00000002 01000013)
[ 0.005495] ACPI: FACS 0x00000000614FB000 000040
[ 0.005496] ACPI: SSDT 0x00000000617FC000 00038C (v02 PmaxDv Pmax_Dev 00000001 INTL 20200717)
[ 0.005498] ACPI: SSDT 0x00000000617F6000 005C55 (v02 CpuRef CpuSsdt 00003000 INTL 20200717)
[ 0.005500] ACPI: SSDT 0x00000000617EF000 006E23 (v02 DptfTb DptfTabl 00001000 INTL 20200717)
[ 0.005502] ACPI: HPET 0x00000000617ED000 000038 (v01 DELL Dell Inc 00000002 01000013)
[ 0.005504] ACPI: APIC 0x00000000617EC000 0001DC (v05 DELL Dell Inc 00000002 01000013)
[ 0.005505] ACPI: MCFG 0x00000000617EB000 00003C (v01 DELL Dell Inc 00000002 01000013)
[ 0.005507] ACPI: SSDT 0x0000000061775000 001446 (v02 DELL DellRtd3 00001000 INTL 20200717)
[ 0.005509] ACPI: SSDT 0x0000000061772000 002EE9 (v02 SaSsdt SaSsdt 00003000 INTL 20200717)
[ 0.005510] ACPI: SSDT 0x0000000061770000 00132D (v02 INTEL IgfxSsdt 00003000 INTL 20200717)
[ 0.005512] ACPI: SSDT 0x0000000061762000 00D39F (v02 INTEL TcssSsdt 00001000 INTL 20200717)
[ 0.005514] ACPI: NHLT 0x0000000061761000 0002F1 (v00 DELL Dell Inc 00000002 01000013)
[ 0.005515] ACPI: SSDT 0x000000006175F000 00107C (v02 DELL UsbCTabl 00001000 INTL 20200717)
[ 0.005517] ACPI: LPIT 0x000000006175E000 0000CC (v01 DELL Dell Inc 00000002 01000013)
[ 0.005519] ACPI: SSDT 0x000000006175D000 000B44 (v02 DELL PtidDevc 00001000 INTL 20200717)
[ 0.005520] ACPI: SSDT 0x000000006175A000 002357 (v02 DELL TbtTypeC 00000000 INTL 20200717)
[ 0.005522] ACPI: DBGP 0x0000000061759000 000034 (v01 DELL Dell Inc 00000002 01000013)
[ 0.005524] ACPI: DBG2 0x0000000061758000 000054 (v00 DELL Dell Inc 00000002 01000013)
[ 0.005526] ACPI: BOOT 0x0000000061757000 000028 (v01 DELL CBX3 00000002 01000013)
[ 0.005527] ACPI: MSDM 0x0000000061756000 000055 (v03 DELL CBX3 06222004 AMI 00010013)
[ 0.005529] ACPI: DMAR 0x0000000061755000 000088 (v02 INTEL Dell Inc 00000002 01000013)
[ 0.005531] ACPI: SSDT 0x00000000617FD000 000ECD (v02 DELL xh_Dell_ 00000000 INTL 20200717)
[ 0.005533] ACPI: SSDT 0x0000000061750000 003AEA (v02 SocGpe SocGpe 00003000 INTL 20200717)
[ 0.005534] ACPI: SSDT 0x000000006174C000 0039DA (v02 SocCmn SocCmn 00003000 INTL 20200717)
[ 0.005536] ACPI: SSDT 0x000000006174B000 000144 (v02 Intel ADebTabl 00001000 INTL 20200717)
[ 0.005538] ACPI: PHAT 0x000000006174A000 000506 (v01 DELL Dell Inc 00000005 MSFT 0100000D)
[ 0.005539] ACPI: BGRT 0x0000000061749000 000038 (v01 DELL Dell Inc 00000002 01000013)
[ 0.005541] ACPI: FPDT 0x0000000061748000 000034 (v01 DELL Dell Inc 00000002 01000013)
[ 0.005542] ACPI: Reserving FACP table memory at [mem 0x617ee000-0x617ee113]
[ 0.005543] ACPI: Reserving DSDT table memory at [mem 0x61777000-0x617ea12c]
[ 0.005544] ACPI: Reserving FACS table memory at [mem 0x614fb000-0x614fb03f]
[ 0.005544] ACPI: Reserving SSDT table memory at [mem 0x617fc000-0x617fc38b]
[ 0.005545] ACPI: Reserving SSDT table memory at [mem 0x617f6000-0x617fbc54]
[ 0.005545] ACPI: Reserving SSDT table memory at [mem 0x617ef000-0x617f5e22]
[ 0.005546] ACPI: Reserving HPET table memory at [mem 0x617ed000-0x617ed037]
[ 0.005546] ACPI: Reserving APIC table memory at [mem 0x617ec000-0x617ec1db]
[ 0.005546] ACPI: Reserving MCFG table memory at [mem 0x617eb000-0x617eb03b]
[ 0.005547] ACPI: Reserving SSDT table memory at [mem 0x61775000-0x61776445]
[ 0.005547] ACPI: Reserving SSDT table memory at [mem 0x61772000-0x61774ee8]
[ 0.005548] ACPI: Reserving SSDT table memory at [mem 0x61770000-0x6177132c]
[ 0.005548] ACPI: Reserving SSDT table memory at [mem 0x61762000-0x6176f39e]
[ 0.005549] ACPI: Reserving NHLT table memory at [mem 0x61761000-0x617612f0]
[ 0.005549] ACPI: Reserving SSDT table memory at [mem 0x6175f000-0x6176007b]
[ 0.005550] ACPI: Reserving LPIT table memory at [mem 0x6175e000-0x6175e0cb]
[ 0.005550] ACPI: Reserving SSDT table memory at [mem 0x6175d000-0x6175db43]
[ 0.005551] ACPI: Reserving SSDT table memory at [mem 0x6175a000-0x6175c356]
[ 0.005551] ACPI: Reserving DBGP table memory at [mem 0x61759000-0x61759033]
[ 0.005551] ACPI: Reserving DBG2 table memory at [mem 0x61758000-0x61758053]
[ 0.005552] ACPI: Reserving BOOT table memory at [mem 0x61757000-0x61757027]
[ 0.005552] ACPI: Reserving MSDM table memory at [mem 0x61756000-0x61756054]
[ 0.005553] ACPI: Reserving DMAR table memory at [mem 0x61755000-0x61755087]
[ 0.005553] ACPI: Reserving SSDT table memory at [mem 0x617fd000-0x617fdecc]
[ 0.005554] ACPI: Reserving SSDT table memory at [mem 0x61750000-0x61753ae9]
[ 0.005554] ACPI: Reserving SSDT table memory at [mem 0x6174c000-0x6174f9d9]
[ 0.005555] ACPI: Reserving SSDT table memory at [mem 0x6174b000-0x6174b143]
[ 0.005555] ACPI: Reserving PHAT table memory at [mem 0x6174a000-0x6174a505]
[ 0.005556] ACPI: Reserving BGRT table memory at [mem 0x61749000-0x61749037]
[ 0.005556] ACPI: Reserving FPDT table memory at [mem 0x61748000-0x61748033]
[ 0.005936] No NUMA configuration found
[ 0.005936] Faking a node at [mem 0x0000000000000000-0x000000088f7fffff]
[ 0.005940] NODE_DATA(0) allocated [mem 0x88f7d5000-0x88f7fffff]
[ 0.005985] Zone ranges:
[ 0.005986] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.005987] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.005988] Normal [mem 0x0000000100000000-0x000000088f7fffff]
[ 0.005988] Device empty
[ 0.005989] Movable zone start for each node
[ 0.005990] Early memory node ranges
[ 0.005990] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.005991] node 0: [mem 0x0000000000100000-0x000000005cd14fff]
[ 0.005991] node 0: [mem 0x00000000617ff000-0x00000000617fffff]
[ 0.005992] node 0: [mem 0x0000000100000000-0x000000088f7fffff]
[ 0.005993] Initmem setup node 0 [mem 0x0000000000001000-0x000000088f7fffff]
[ 0.005996] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.006011] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.008019] On node 0, zone DMA32: 19178 pages in unavailable ranges
[ 0.041621] On node 0, zone Normal: 26624 pages in unavailable ranges
[ 0.041634] On node 0, zone Normal: 2048 pages in unavailable ranges
[ 0.041665] Reserving Intel graphics memory at [mem 0x6c800000-0x707fffff]
[ 0.043552] ACPI: PM-Timer IO Port: 0x1808
[ 0.043556] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.043557] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.043558] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.043558] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.043558] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.043559] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.043559] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.043559] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.043560] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.043560] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.043560] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.043561] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.043561] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.043561] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.043562] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.043562] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.043562] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[ 0.043563] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[ 0.043563] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[ 0.043563] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[ 0.043564] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[ 0.043564] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[ 0.043564] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[ 0.043565] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.043646] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.043648] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.043649] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.043651] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.043652] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.043657] e820: update [mem 0x5734d000-0x57368fff] usable ==> reserved
[ 0.043663] TSC deadline timer available
[ 0.043664] smpboot: Allowing 12 CPUs, 0 hotplug CPUs
[ 0.043672] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.043673] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.043674] PM: hibernation: Registered nosave memory: [mem 0x5734d000-0x57368fff]
[ 0.043675] PM: hibernation: Registered nosave memory: [mem 0x5cd15000-0x5cf37fff]
[ 0.043675] PM: hibernation: Registered nosave memory: [mem 0x5cf38000-0x60d10fff]
[ 0.043676] PM: hibernation: Registered nosave memory: [mem 0x60d11000-0x61571fff]
[ 0.043676] PM: hibernation: Registered nosave memory: [mem 0x61572000-0x617fefff]
[ 0.043677] PM: hibernation: Registered nosave memory: [mem 0x61800000-0x65ffffff]
[ 0.043677] PM: hibernation: Registered nosave memory: [mem 0x66000000-0x663fffff]
[ 0.043677] PM: hibernation: Registered nosave memory: [mem 0x66400000-0x665fffff]
[ 0.043678] PM: hibernation: Registered nosave memory: [mem 0x66600000-0x66dfffff]
[ 0.043678] PM: hibernation: Registered nosave memory: [mem 0x66e00000-0x707fffff]
[ 0.043678] PM: hibernation: Registered nosave memory: [mem 0x70800000-0xbfffffff]
[ 0.043679] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xcfffffff]
[ 0.043679] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xf97fffff]
[ 0.043679] PM: hibernation: Registered nosave memory: [mem 0xf9800000-0xf9ffffff]
[ 0.043680] PM: hibernation: Registered nosave memory: [mem 0xfa000000-0xfed1ffff]
[ 0.043680] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff]
[ 0.043680] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfeffffff]
[ 0.043680] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.043681] [mem 0x70800000-0xbfffffff] available for PCI devices
[ 0.043682] Booting paravirtualized kernel on bare hardware
[ 0.043683] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.046863] setup_percpu: NR_CPUS:512 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
[ 0.047236] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
[ 0.047240] pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
[ 0.047242] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- --
[ 0.047256] Fallback order for Node 0: 0
[ 0.047258] Built 1 zonelists, mobility grouping on. Total pages: 8177921
[ 0.047259] Policy zone: Normal
[ 0.047260] Kernel command line: BOOT_IMAGE=/@/boot/vmlinuz-6.1.39-calculate root=UUID=4fe7dea8-6d59-45c9-b800-641a9521cca6 ro rootflags=subvol=@ video=1920x1080 resume=PARTUUID=46c2a128-3b89-154d-8966-119d93ac722c rd.retry=40 calculate=video:modesetting splash quiet mitigations=off
[ 0.047316] Unknown kernel command line parameters "splash BOOT_IMAGE=/@/boot/vmlinuz-6.1.39-calculate calculate=video:modesetting", will be passed to user space.
[ 0.047330] random: crng init done
[ 0.049458] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.050576] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.050767] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[ 0.050776] software IO TLB: area num 16.
[ 0.100130] Memory: 32426684K/33231568K available (16393K kernel code, 2890K rwdata, 5460K rodata, 2752K init, 17612K bss, 804624K reserved, 0K cma-reserved)
[ 0.100189] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[ 0.100196] ftrace: allocating 50920 entries in 199 pages
[ 0.104659] ftrace: allocated 199 pages with 5 groups
[ 0.105166] Dynamic Preempt: voluntary
[ 0.105185] rcu: Preemptible hierarchical RCU implementation.
[ 0.105186] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=12.
[ 0.105187] Trampoline variant of Tasks RCU enabled.
[ 0.105187] Rude variant of Tasks RCU enabled.
[ 0.105187] Tracing variant of Tasks RCU enabled.
[ 0.105188] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.105188] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[ 0.107601] NR_IRQS: 33024, nr_irqs: 2152, preallocated irqs: 16
[ 0.107928] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.108359] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.108378] Console: colour dummy device 80x25
[ 0.108388] printk: console [tty0] enabled
[ 0.108398] ACPI: Core revision 20220331
[ 0.108605] hpet: HPET dysfunctional in PC10. Force disabled.
[ 0.108606] APIC: Switch to symmetric I/O mode setup
[ 0.108607] DMAR: Host address width 39
[ 0.108608] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.108611] DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 29a00f0505e
[ 0.108612] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.108616] DMAR: dmar1: reg_base_addr fed91000 ver 5:0 cap d2008c40660462 ecap f050da
[ 0.108617] DMAR: RMRR base: 0x0000006c000000 end: 0x000000707fffff
[ 0.108619] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.108620] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.108621] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.112570] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.112572] x2apic enabled
[ 0.112626] Switched APIC routing to cluster x2apic.
[ 0.124113] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26bef67878b, max_idle_ns: 440795293631 ns
[ 0.124118] Calibrating delay loop (skipped), value calculated using timer frequency.. 5378.00 BogoMIPS (lpj=8960000)
[ 0.124120] pid_max: default: 32768 minimum: 301
[ 0.125858] LSM: Security Framework initializing
[ 0.125861] Yama: becoming mindful.
[ 0.125907] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.125944] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.126100] x86/tme: not enabled by BIOS
[ 0.126106] CPU0: Thermal monitoring enabled (TM1)
[ 0.126107] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[ 0.126198] process: using mwait in idle threads
[ 0.126199] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[ 0.126200] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[ 0.126202] Spectre V2 : User space: Vulnerable
[ 0.126203] Speculative Store Bypass: Vulnerable
[ 0.127450] Freeing SMP alternatives memory: 48K
[ 0.127450] smpboot: CPU0: 12th Gen Intel(R) Core(TM) i7-1265U (family: 0x6, model: 0x9a, stepping: 0x4)
[ 0.127450] cblist_init_generic: Setting adjustable number of callback queues.
[ 0.127450] cblist_init_generic: Setting shift to 4 and lim to 1.
[ 0.127450] cblist_init_generic: Setting shift to 4 and lim to 1.
[ 0.127450] cblist_init_generic: Setting shift to 4 and lim to 1.
[ 0.127450] Performance Events: XSAVE Architectural LBR, PEBS fmt4+-baseline, AnyThread deprecated, Alderlake Hybrid events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.127450] core: cpu_core PMU driver:
[ 0.127450] ... version: 5
[ 0.127450] ... bit width: 48
[ 0.127450] ... generic registers: 8
[ 0.127450] ... value mask: 0000ffffffffffff
[ 0.127450] ... max period: 00007fffffffffff
[ 0.127450] ... fixed-purpose events: 4
[ 0.127450] ... event mask: 0001000f000000ff
[ 0.127450] Estimated ratio of average max frequency by base frequency (times 1024): 1592
[ 0.127450] rcu: Hierarchical SRCU implementation.
[ 0.127450] rcu: Max phase no-delay instances is 1000.
[ 0.127450] smp: Bringing up secondary CPUs ...
[ 0.127450] x86: Booting SMP configuration:
[ 0.127450] .... node #0, CPUs: #1 #2 #3 #4
[ 0.019148] core: cpu_atom PMU driver: PEBS-via-PT
[ 0.019148] ... version: 5
[ 0.019148] ... bit width: 48
[ 0.019148] ... generic registers: 6
[ 0.019148] ... value mask: 0000ffffffffffff
[ 0.019148] ... max period: 00007fffffffffff
[ 0.019148] ... fixed-purpose events: 3
[ 0.019148] ... event mask: 000000070000003f
[ 0.133751] #5 #6 #7 #8 #9 #10 #11
[ 0.141984] smp: Brought up 1 node, 12 CPUs
[ 0.141984] smpboot: Max logical packages: 1
[ 0.141984] smpboot: Total of 12 processors activated (64537.00 BogoMIPS)
[ 0.144801] devtmpfs: initialized
[ 0.144801] x86/mm: Memory block size: 128MB
[ 0.144976] ACPI: PM: Registering ACPI NVS region [mem 0x60d11000-0x61571fff] (8785920 bytes)
[ 0.144976] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.144976] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.144976] pinctrl core: initialized pinctrl subsystem
[ 0.144976] PM: RTC time: 06:57:46, date: 2023-09-25
[ 0.144976] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.144976] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.144976] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.144977] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.144980] audit: initializing netlink subsys (disabled)
[ 0.144983] audit: type=2000 audit(1695625066.019:1): state=initialized audit_enabled=0 res=1
[ 0.144983] thermal_sys: Registered thermal governor 'fair_share'
[ 0.144983] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.144983] thermal_sys: Registered thermal governor 'step_wise'
[ 0.144983] thermal_sys: Registered thermal governor 'user_space'
[ 0.144983] cpuidle: using governor menu
[ 0.144983] Simple Boot Flag at 0x47 set to 0x80
[ 0.144983] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.144983] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.144983] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
[ 0.144983] PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in E820
[ 0.144983] pmd_set_huge: Cannot satisfy [mem 0xc0000000-0xc0200000] with a huge-page mapping due to MTRR override.
[ 0.144983] PCI: Using configuration type 1 for base access
[ 0.144983] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.147469] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.157499] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.157500] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.157501] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.157502] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.158194] cryptd: max_cpu_qlen set to 1000
[ 0.158194] raid6: skipped pq benchmark and selected avx2x4
[ 0.158194] raid6: using avx2x2 recovery algorithm
[ 0.158194] ACPI: Added _OSI(Module Device)
[ 0.158194] ACPI: Added _OSI(Processor Device)
[ 0.158194] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.158194] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.226329] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.VMD0.PEG0], AE_NOT_FOUND (20220331/dswload2-162)
[ 0.226334] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20220331/psobject-220)
[ 0.226335] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0010)
[ 0.226339] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.VMD0.RP05], AE_NOT_FOUND (20220331/dswload2-162)
[ 0.226341] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20220331/psobject-220)
[ 0.226342] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0010)
[ 0.234803] ACPI: 15 ACPI AML tables successfully acquired and loaded
[ 0.251844] ACPI: Dynamic OEM Table Load:
[ 0.251844] ACPI: SSDT 0xFFFF8F7A81C4F600 0001AB (v02 PmRef Cpu0Psd 00003000 INTL 20200717)
[ 0.252314] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[ 0.254268] ACPI: USB4 _OSC: OS supports USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.254270] ACPI: USB4 _OSC: OS controls USB3+ DisplayPort+ PCIe+ XDomain+
[ 0.255206] ACPI: Dynamic OEM Table Load:
[ 0.255211] ACPI: SSDT 0xFFFF8F7A81BDD800 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20200717)
[ 0.255862] ACPI: Dynamic OEM Table Load:
[ 0.255867] ACPI: SSDT 0xFFFF8F7A81D96800 000626 (v02 PmRef Cpu0Ist 00003000 INTL 20200717)
[ 0.256593] ACPI: Dynamic OEM Table Load:
[ 0.256598] ACPI: SSDT 0xFFFF8F7A81D92800 0004BA (v02 PmRef Cpu0Hwp 00003000 INTL 20200717)
[ 0.257445] ACPI: Dynamic OEM Table Load:
[ 0.257452] ACPI: SSDT 0xFFFF8F7A81D84000 001BAF (v02 PmRef ApIst 00003000 INTL 20200717)
[ 0.258450] ACPI: Dynamic OEM Table Load:
[ 0.258455] ACPI: SSDT 0xFFFF8F7A81D80000 001038 (v02 PmRef ApHwp 00003000 INTL 20200717)
[ 0.259327] ACPI: Dynamic OEM Table Load:
[ 0.259332] ACPI: SSDT 0xFFFF8F7A81D98000 001349 (v02 PmRef ApPsd 00003000 INTL 20200717)
[ 0.260253] ACPI: Dynamic OEM Table Load:
[ 0.260259] ACPI: SSDT 0xFFFF8F7A81D88000 000FBB (v02 PmRef ApCst 00003000 INTL 20200717)
[ 0.264161] ACPI: EC: EC started
[ 0.264162] ACPI: EC: interrupt blocked
[ 0.266766] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.266768] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC used to handle transactions
[ 0.266769] ACPI: Interpreter enabled
[ 0.266817] ACPI: PM: (supports S0 S4 S5)
[ 0.266818] ACPI: Using IOAPIC for interrupt routing
[ 0.266853] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.266854] PCI: Ignoring E820 reservations for host bridge windows
[ 0.267758] ACPI: Enabled 8 GPEs in block 00 to 7F
[ 0.271827] ACPI: PM: Power Resource [BTRT]
[ 0.275475] ACPI: PM: Power Resource [WRST]
[ 0.275998] ACPI: PM: Power Resource [PXP]
[ 0.276456] ACPI: PM: Power Resource [MRST]
[ 0.276467] ACPI: PM: Power Resource [DRST]
[ 0.286672] ACPI: PM: Power Resource [TBT0]
[ 0.286720] ACPI: PM: Power Resource [TBT1]
[ 0.286764] ACPI: PM: Power Resource [D3C]
[ 0.518342] ACPI: PM: Power Resource [PIN]
[ 0.518555] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-fe])
[ 0.518560] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.520006] acpi PNP0A08:00: _OSC: platform does not support [AER]
[ 0.522829] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR DPC]
[ 0.522831] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.526381] PCI host bridge to bus 0000:00
[ 0.526382] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.526384] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.526385] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.526386] pci_bus 0000:00: root bus resource [mem 0x70800000-0xbfffffff window]
[ 0.526387] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[ 0.526388] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.526531] pci 0000:00:00.0: [8086:4601] type 00 class 0x060000
[ 0.526695] pci 0000:00:02.0: [8086:46a8] type 00 class 0x030000
[ 0.526702] pci 0000:00:02.0: reg 0x10: [mem 0x6052000000-0x6052ffffff 64bit]
[ 0.526707] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[ 0.526710] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
[ 0.526723] pci 0000:00:02.0: BAR 2: assigned to efifb
[ 0.526724] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[ 0.526727] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.526750] pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
[ 0.526751] pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
[ 0.526755] pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
[ 0.526756] pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
[ 0.526852] pci 0000:00:04.0: [8086:461d] type 00 class 0x118000
[ 0.526864] pci 0000:00:04.0: reg 0x10: [mem 0x6053140000-0x605315ffff 64bit]
[ 0.527133] pci 0000:00:06.0: [8086:464d] type 01 class 0x060400
[ 0.527249] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[ 0.527301] pci 0000:00:06.0: PTM enabled (root), 4ns granularity
[ 0.527832] pci 0000:00:07.0: [8086:466e] type 01 class 0x060400
[ 0.527868] pci 0000:00:07.0: Overriding RP PIO Log Size to 4
[ 0.527926] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[ 0.527951] pci 0000:00:07.0: PTM enabled (root), 4ns granularity
[ 0.528573] pci 0000:00:07.1: [8086:463f] type 01 class 0x060400
[ 0.528607] pci 0000:00:07.1: Overriding RP PIO Log Size to 4
[ 0.528665] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[ 0.528690] pci 0000:00:07.1: PTM enabled (root), 4ns granularity
[ 0.529386] pci 0000:00:08.0: [8086:464f] type 00 class 0x088000
[ 0.529393] pci 0000:00:08.0: reg 0x10: [mem 0x60531a2000-0x60531a2fff 64bit]
[ 0.529525] pci 0000:00:0d.0: [8086:461e] type 00 class 0x0c0330
[ 0.529533] pci 0000:00:0d.0: reg 0x10: [mem 0x6053180000-0x605318ffff 64bit]
[ 0.529573] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[ 0.529922] pci 0000:00:0d.2: [8086:463e] type 00 class 0x0c0340
[ 0.529931] pci 0000:00:0d.2: reg 0x10: [mem 0x6053100000-0x605313ffff 64bit]
[ 0.529937] pci 0000:00:0d.2: reg 0x18: [mem 0x60531a1000-0x60531a1fff 64bit]
[ 0.529965] pci 0000:00:0d.2: supports D1 D2
[ 0.529966] pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.530194] pci 0000:00:12.0: [8086:51fc] type 00 class 0x070000
[ 0.530217] pci 0000:00:12.0: reg 0x10: [mem 0x6053170000-0x605317ffff 64bit]
[ 0.530290] pci 0000:00:12.0: PME# supported from D0 D3hot
[ 0.530590] pci 0000:00:14.0: [8086:51ed] type 00 class 0x0c0330
[ 0.530611] pci 0000:00:14.0: reg 0x10: [mem 0x6053160000-0x605316ffff 64bit]
[ 0.530696] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.531072] pci 0000:00:14.2: [8086:51ef] type 00 class 0x050000
[ 0.531094] pci 0000:00:14.2: reg 0x10: [mem 0x6053198000-0x605319bfff 64bit]
[ 0.531111] pci 0000:00:14.2: reg 0x18: [mem 0x60531a0000-0x60531a0fff 64bit]
[ 0.531315] pci 0000:00:14.3: [8086:51f0] type 00 class 0x028000
[ 0.531376] pci 0000:00:14.3: reg 0x10: [mem 0x6053194000-0x6053197fff 64bit]
[ 0.531519] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[ 0.532287] pci 0000:00:15.0: [8086:51e8] type 00 class 0x0c8000
[ 0.533017] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[ 0.536660] pci 0000:00:15.1: [8086:51e9] type 00 class 0x0c8000
[ 0.537390] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[ 0.540561] pci 0000:00:16.0: [8086:51e0] type 00 class 0x078000
[ 0.540584] pci 0000:00:16.0: reg 0x10: [mem 0x605319d000-0x605319dfff 64bit]
[ 0.540671] pci 0000:00:16.0: PME# supported from D3hot
[ 0.541068] pci 0000:00:1d.0: [8086:51b1] type 01 class 0x060400
[ 0.541174] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.541210] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[ 0.541764] pci 0000:00:1f.0: [8086:5182] type 00 class 0x060100
[ 0.542092] pci 0000:00:1f.3: [8086:51c8] type 00 class 0x040380
[ 0.542149] pci 0000:00:1f.3: reg 0x10: [mem 0x6053190000-0x6053193fff 64bit]
[ 0.542223] pci 0000:00:1f.3: reg 0x20: [mem 0x6053000000-0x60530fffff 64bit]
[ 0.542366] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.542651] pci 0000:00:1f.4: [8086:51a3] type 00 class 0x0c0500
[ 0.542676] pci 0000:00:1f.4: reg 0x10: [mem 0x605319c000-0x605319c0ff 64bit]
[ 0.542701] pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
[ 0.542902] pci 0000:00:1f.5: [8086:51a4] type 00 class 0x0c8000
[ 0.542920] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[ 0.543077] pci 0000:00:1f.6: [8086:1a1e] type 00 class 0x020000
[ 0.543126] pci 0000:00:1f.6: reg 0x10: [mem 0x9e000000-0x9e01ffff]
[ 0.543376] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[ 0.544139] pci 0000:01:00.0: [144d:a809] type 00 class 0x010802
[ 0.544154] pci 0000:01:00.0: reg 0x10: [mem 0x9df00000-0x9df03fff 64bit]
[ 0.544358] pci 0000:00:06.0: PCI bridge to [bus 01]
[ 0.544362] pci 0000:00:06.0: bridge window [mem 0x9df00000-0x9dffffff]
[ 0.544388] pci 0000:00:07.0: PCI bridge to [bus 02-39]
[ 0.544391] pci 0000:00:07.0: bridge window [mem 0x88000000-0x9ddfffff]
[ 0.544395] pci 0000:00:07.0: bridge window [mem 0x6000000000-0x6021ffffff 64bit pref]
[ 0.544418] pci 0000:00:07.1: PCI bridge to [bus 3a-71]
[ 0.544422] pci 0000:00:07.1: bridge window [mem 0x72000000-0x87dfffff]
[ 0.544425] pci 0000:00:07.1: bridge window [mem 0x6030000000-0x6051ffffff 64bit pref]
[ 0.544757] pci 0000:72:00.0: [17a0:9755] type 00 class 0x080501
[ 0.544780] pci 0000:72:00.0: reg 0x10: [mem 0x9de00000-0x9de00fff]
[ 0.544943] pci 0000:72:00.0: supports D1 D2
[ 0.544944] pci 0000:72:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.545409] pci 0000:00:1d.0: PCI bridge to [bus 72]
[ 0.545414] pci 0000:00:1d.0: bridge window [mem 0x9de00000-0x9defffff]
[ 0.935980] Low-power S0 idle used by default for system suspend
[ 0.946011] ACPI: EC: interrupt unblocked
[ 0.946013] ACPI: EC: event unblocked
[ 0.947450] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.947450] ACPI: EC: GPE=0x6e
[ 0.947450] ACPI: \_SB_.PC00.LPCB.ECDV: Boot DSDT EC initialization complete
[ 0.947450] ACPI: \_SB_.PC00.LPCB.ECDV: EC: Used to handle transactions and events
[ 0.947459] iommu: Default domain type: Translated
[ 0.947459] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.947511] SCSI subsystem initialized
[ 0.947610] libata version 3.00 loaded.
[ 0.947610] ACPI: bus type USB registered
[ 0.947610] usbcore: registered new interface driver usbfs
[ 0.947610] usbcore: registered new interface driver hub
[ 0.947610] usbcore: registered new device driver usb
[ 0.947610] pps_core: LinuxPPS API ver. 1 registered
[ 0.947610] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.947610] PTP clock support registered
[ 0.947613] EDAC MC: Ver: 3.0.0
[ 0.948532] Registered efivars operations
[ 0.948532] NetLabel: Initializing
[ 0.948532] NetLabel: domain hash size = 128
[ 0.948532] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.948532] NetLabel: unlabeled traffic allowed by default
[ 0.948532] mctp: management component transport protocol core
[ 0.948532] NET: Registered PF_MCTP protocol family
[ 0.948532] PCI: Using ACPI for IRQ routing
[ 1.011572] PCI: pci_cache_line_size set to 64 bytes
[ 1.012490] pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
[ 1.013425] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 1.013426] e820: reserve RAM buffer [mem 0x5734d000-0x57ffffff]
[ 1.013427] e820: reserve RAM buffer [mem 0x5cd15000-0x5fffffff]
[ 1.013428] e820: reserve RAM buffer [mem 0x61800000-0x63ffffff]
[ 1.013428] e820: reserve RAM buffer [mem 0x88f800000-0x88fffffff]
[ 1.014166] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 1.014166] pci 0000:00:02.0: vgaarb: bridge control possible
[ 1.014166] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 1.014166] vgaarb: loaded
[ 1.014402] clocksource: Switched to clocksource tsc-early
[ 1.018494] VFS: Disk quotas dquot_6.6.0
[ 1.018500] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.018544] pnp: PnP ACPI init
[ 1.018715] system 00:00: [io 0x0680-0x069f] has been reserved
[ 1.018717] system 00:00: [io 0x164e-0x164f] has been reserved
[ 1.018798] system 00:02: [io 0x1854-0x1857] has been reserved
[ 1.019652] pnp 00:05: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[ 1.019668] system 00:05: [mem 0xfedc0000-0xfedc7fff] has been reserved
[ 1.019670] system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved
[ 1.019671] system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved
[ 1.019672] system 00:05: [mem 0xfed20000-0xfed7ffff] has been reserved
[ 1.019673] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 1.019674] system 00:05: [mem 0xfed45000-0xfed8ffff] could not be reserved
[ 1.019675] system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved
[ 1.020460] system 00:06: [io 0x2000-0x20fe] has been reserved
[ 1.023802] pnp: PnP ACPI: found 8 devices
[ 1.028896] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 1.028933] NET: Registered PF_INET protocol family
[ 1.029140] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 1.031325] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 1.031346] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 1.031350] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 1.031551] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 1.031683] TCP: Hash tables configured (established 262144 bind 65536)
[ 1.031800] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 1.031835] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 1.031887] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 1.031967] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 1.031971] NET: Registered PF_XDP protocol family
[ 1.031976] pci 0000:00:07.0: bridge window [io 0x1000-0x0fff] to [bus 02-39] add_size 1000
[ 1.031979] pci 0000:00:07.1: bridge window [io 0x1000-0x0fff] to [bus 3a-71] add_size 1000
[ 1.031987] pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
[ 1.031990] pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
[ 1.031993] pci 0000:00:07.0: BAR 13: assigned [io 0x4000-0x4fff]
[ 1.031995] pci 0000:00:07.1: BAR 13: assigned [io 0x5000-0x5fff]
[ 1.031996] pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
[ 1.032342] pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
[ 1.032695] pci 0000:00:1f.5: BAR 0: assigned [mem 0x70800000-0x70800fff]
[ 1.032710] pci 0000:00:06.0: PCI bridge to [bus 01]
[ 1.032735] pci 0000:00:06.0: bridge window [mem 0x9df00000-0x9dffffff]
[ 1.032768] pci 0000:00:07.0: PCI bridge to [bus 02-39]
[ 1.032770] pci 0000:00:07.0: bridge window [io 0x4000-0x4fff]
[ 1.032772] pci 0000:00:07.0: bridge window [mem 0x88000000-0x9ddfffff]
[ 1.032774] pci 0000:00:07.0: bridge window [mem 0x6000000000-0x6021ffffff 64bit pref]
[ 1.032777] pci 0000:00:07.1: PCI bridge to [bus 3a-71]
[ 1.032778] pci 0000:00:07.1: bridge window [io 0x5000-0x5fff]
[ 1.032781] pci 0000:00:07.1: bridge window [mem 0x72000000-0x87dfffff]
[ 1.032782] pci 0000:00:07.1: bridge window [mem 0x6030000000-0x6051ffffff 64bit pref]
[ 1.032786] pci 0000:00:1d.0: PCI bridge to [bus 72]
[ 1.032798] pci 0000:00:1d.0: bridge window [mem 0x9de00000-0x9defffff]
[ 1.032807] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 1.032809] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 1.032810] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 1.032811] pci_bus 0000:00: resource 7 [mem 0x70800000-0xbfffffff window]
[ 1.032812] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[ 1.032813] pci_bus 0000:01: resource 1 [mem 0x9df00000-0x9dffffff]
[ 1.032814] pci_bus 0000:02: resource 0 [io 0x4000-0x4fff]
[ 1.032815] pci_bus 0000:02: resource 1 [mem 0x88000000-0x9ddfffff]
[ 1.032816] pci_bus 0000:02: resource 2 [mem 0x6000000000-0x6021ffffff 64bit pref]
[ 1.032817] pci_bus 0000:3a: resource 0 [io 0x5000-0x5fff]
[ 1.032817] pci_bus 0000:3a: resource 1 [mem 0x72000000-0x87dfffff]
[ 1.032818] pci_bus 0000:3a: resource 2 [mem 0x6030000000-0x6051ffffff 64bit pref]
[ 1.032819] pci_bus 0000:72: resource 1 [mem 0x9de00000-0x9defffff]
[ 1.034142] PCI: CLS 0 bytes, default 64
[ 1.034149] DMAR: Intel-IOMMU force enabled due to platform opt in
[ 1.034153] DMAR: No ATSR found
[ 1.034154] DMAR: No SATC found
[ 1.034155] DMAR: IOMMU feature fl1gp_support inconsistent
[ 1.034156] DMAR: IOMMU feature pgsel_inv inconsistent
[ 1.034156] DMAR: IOMMU feature nwfs inconsistent
[ 1.034157] DMAR: IOMMU feature dit inconsistent
[ 1.034157] DMAR: IOMMU feature sc_support inconsistent
[ 1.034158] DMAR: IOMMU feature dev_iotlb_support inconsistent
[ 1.034158] DMAR: dmar0: Using Queued invalidation
[ 1.034160] DMAR: dmar1: Using Queued invalidation
[ 1.034203] Trying to unpack rootfs image as initramfs...
[ 1.034325] pci 0000:00:02.0: Adding to iommu group 0
[ 1.034350] pci 0000:00:00.0: Adding to iommu group 1
[ 1.034356] pci 0000:00:04.0: Adding to iommu group 2
[ 1.034385] pci 0000:00:06.0: Adding to iommu group 3
[ 1.034391] pci 0000:00:07.0: Adding to iommu group 4
[ 1.034396] pci 0000:00:07.1: Adding to iommu group 5
[ 1.034402] pci 0000:00:08.0: Adding to iommu group 6
[ 1.034409] pci 0000:00:0d.0: Adding to iommu group 7
[ 1.034414] pci 0000:00:0d.2: Adding to iommu group 7
[ 1.034420] pci 0000:00:12.0: Adding to iommu group 8
[ 1.034428] pci 0000:00:14.0: Adding to iommu group 9
[ 1.034433] pci 0000:00:14.2: Adding to iommu group 9
[ 1.034438] pci 0000:00:14.3: Adding to iommu group 10
[ 1.034447] pci 0000:00:15.0: Adding to iommu group 11
[ 1.034452] pci 0000:00:15.1: Adding to iommu group 11
[ 1.034458] pci 0000:00:16.0: Adding to iommu group 12
[ 1.034472] pci 0000:00:1d.0: Adding to iommu group 13
[ 1.034485] pci 0000:00:1f.0: Adding to iommu group 14
[ 1.034490] pci 0000:00:1f.3: Adding to iommu group 14
[ 1.034495] pci 0000:00:1f.4: Adding to iommu group 14
[ 1.034500] pci 0000:00:1f.5: Adding to iommu group 14
[ 1.034505] pci 0000:00:1f.6: Adding to iommu group 14
[ 1.034535] pci 0000:01:00.0: Adding to iommu group 15
[ 1.034549] pci 0000:72:00.0: Adding to iommu group 16
[ 1.034627] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 1.034628] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.034628] software IO TLB: mapped [mem 0x000000004e695000-0x0000000052695000] (64MB)
[ 1.034680] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26bef67878b, max_idle_ns: 440795293631 ns
[ 1.034760] clocksource: Switched to clocksource tsc
[ 1.046681] Initialise system trusted keyrings
[ 1.046689] Key type blacklist registered
[ 1.046709] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 1.047613] zbud: loaded
[ 1.051731] NET: Registered PF_ALG protocol family
[ 1.051733] xor: automatically using best checksumming function avx
[ 1.051734] Key type asymmetric registered
[ 1.051735] Asymmetric key parser 'x509' registered
[ 1.063670] Freeing initrd memory: 15288K
[ 1.064887] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[ 1.064896] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[ 1.064916] io scheduler mq-deadline registered
[ 1.064916] io scheduler kyber registered
[ 1.064932] io scheduler bfq registered
[ 1.065098] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 1.065437] pcieport 0000:00:06.0: PME: Signaling with IRQ 122
[ 1.065625] pcieport 0000:00:07.0: PME: Signaling with IRQ 123
[ 1.065635] pcieport 0000:00:07.0: pciehp: Slot #3 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 1.065941] pcieport 0000:00:07.1: PME: Signaling with IRQ 124
[ 1.065954] pcieport 0000:00:07.1: pciehp: Slot #4 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
[ 1.066191] pcieport 0000:00:1d.0: PME: Signaling with IRQ 125
[ 1.066289] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 1.067324] ACPI: AC: AC Adapter [AC] (on-line)
[ 1.067359] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[ 1.067380] ACPI: button: Lid Switch [LID0]
[ 1.067395] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 1.067410] ACPI: button: Power Button [PBTN]
[ 1.067424] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[ 1.067432] ACPI: button: Sleep Button [SBTN]
[ 1.069377] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.070185] serial 0000:00:12.0: enabling device (0000 -> 0002)
[ 1.070686] hpet_acpi_add: no address or irqs in _CRS
[ 1.070720] Non-volatile memory driver v1.3
[ 1.070723] Linux agpgart interface v0.103
[ 1.071052] ACPI: bus type drm_connector registered
[ 1.071861] loop: module loaded
[ 1.082530] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[ 1.094205] ACPI: battery: Slot [BAT0] (battery present)
[ 1.112762] intel-lpss 0000:00:15.1: enabling device (0000 -> 0002)
[ 1.121550] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[ 1.121562] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[ 1.122606] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[ 1.122719] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[ 1.122728] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[ 1.122730] xhci_hcd 0000:00:0d.0: Host supports USB 3.2 Enhanced SuperSpeed
[ 1.122746] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[ 1.122747] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.122748] usb usb1: Product: xHCI Host Controller
[ 1.122749] usb usb1: Manufacturer: Linux 6.1.39-calculate xhci-hcd
[ 1.122749] usb usb1: SerialNumber: 0000:00:0d.0
[ 1.122782] hub 1-0:1.0: USB hub found
[ 1.122787] hub 1-0:1.0: 1 port detected
[ 1.122882] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[ 1.122883] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.122884] usb usb2: Product: xHCI Host Controller
[ 1.122884] usb usb2: Manufacturer: Linux 6.1.39-calculate xhci-hcd
[ 1.122885] usb usb2: SerialNumber: 0000:00:0d.0
[ 1.122919] hub 2-0:1.0: USB hub found
[ 1.122924] hub 2-0:1.0: 2 ports detected
[ 1.123179] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.123191] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 1.124304] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000100200009810
[ 1.124522] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.124531] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 1.124531] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 1.124557] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[ 1.124558] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.124558] usb usb3: Product: xHCI Host Controller
[ 1.124559] usb usb3: Manufacturer: Linux 6.1.39-calculate xhci-hcd
[ 1.124559] usb usb3: SerialNumber: 0000:00:14.0
[ 1.124599] hub 3-0:1.0: USB hub found
[ 1.124625] hub 3-0:1.0: 12 ports detected
[ 1.125429] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[ 1.125430] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.125431] usb usb4: Product: xHCI Host Controller
[ 1.125431] usb usb4: Manufacturer: Linux 6.1.39-calculate xhci-hcd
[ 1.125432] usb usb4: SerialNumber: 0000:00:14.0
[ 1.125456] hub 4-0:1.0: USB hub found
[ 1.125475] hub 4-0:1.0: 4 ports detected
[ 1.125592] usb: port power management may be unreliable
[ 1.125768] usbcore: registered new interface driver usbserial_generic
[ 1.125770] usbserial: USB Serial support registered for generic
[ 1.125789] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 1.126231] i8042: Warning: Keylock active
[ 1.129164] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.129167] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.129226] mousedev: PS/2 mouse device common for all mice
[ 1.129316] rtc_cmos 00:01: RTC can wake from S4
[ 1.131214] rtc_cmos 00:01: registered as rtc0
[ 1.131652] rtc_cmos 00:01: setting system clock to 2023-09-25T06:57:47 UTC (1695625067)
[ 1.131677] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 1.132185] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 1.132285] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 1.132301] device-mapper: uevent: version 1.0.3
[ 1.132358] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[ 1.132430] intel_pstate: Intel P-state driver initializing
[ 1.135051] intel_pstate: HWP enabled
[ 1.135189] efifb: probing for efifb
[ 1.135199] efifb: Ignoring BGRT: unexpected or invalid BMP data
[ 1.135200] efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
[ 1.135201] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[ 1.135202] efifb: scrolling: redraw
[ 1.135202] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 1.135236] fbcon: Deferring console take-over
[ 1.135236] fb0: EFI VGA frame buffer device
[ 1.135255] hid: raw HID events driver (C) Jiri Kosina
[ 1.135274] usbcore: registered new interface driver usbhid
[ 1.135274] usbhid: USB HID core driver
[ 1.135348] intel_pmc_core INT33A1:00: initialized
[ 1.135453] drop_monitor: Initializing network drop monitor service
[ 1.135502] Initializing XFRM netlink socket
[ 1.135555] NET: Registered PF_INET6 protocol family
[ 1.137309] Segment Routing with IPv6
[ 1.137310] RPL Segment Routing with IPv6
[ 1.137315] In-situ OAM (IOAM) with IPv6
[ 1.137327] mip6: Mobile IPv6
[ 1.137329] NET: Registered PF_PACKET protocol family
[ 1.138061] microcode: sig=0x906a4, pf=0x80, revision=0x42c
[ 1.138371] microcode: Microcode Update Driver: v2.2.
[ 1.138374] IPI shorthand broadcast: enabled
[ 1.138378] AVX2 version of gcm_enc/dec engaged.
[ 1.139022] AES CTR mode by8 optimization enabled
[ 1.139292] sched_clock: Marking stable (1123467376, 15814898)->(1155736755, -16454481)
[ 1.139342] registered taskstats version 1
[ 1.139604] Loading compiled-in X.509 certificates
[ 1.141060] zswap: loaded using pool zstd/zbud
[ 1.141246] Key type .fscrypt registered
[ 1.141247] Key type fscrypt-provisioning registered
[ 1.141408] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[ 1.141442] Key type big_key registered
[ 1.142952] Key type encrypted registered
[ 1.142957] ima: No TPM chip found, activating TPM-bypass!
[ 1.142958] ima: Allocated hash algorithm: sha256
[ 1.142963] ima: No architecture policies found
[ 1.142968] evm: Initialising EVM extended attributes:
[ 1.142968] evm: security.selinux
[ 1.142969] evm: security.SMACK64 (disabled)
[ 1.142969] evm: security.SMACK64EXEC (disabled)
[ 1.142969] evm: security.SMACK64TRANSMUTE (disabled)
[ 1.142970] evm: security.SMACK64MMAP (disabled)
[ 1.142970] evm: security.apparmor
[ 1.142970] evm: security.ima
[ 1.142971] evm: security.capability
[ 1.142971] evm: HMAC attrs: 0x1
[ 1.144146] PM: Magic number: 7:973:974
[ 1.144232] RAS: Correctable Errors collector initialized.
[ 1.372664] usb 3-3: new high-speed USB device number 2 using xhci_hcd
[ 1.518752] usb 3-3: New USB device found, idVendor=2109, idProduct=2813, bcdDevice=90.11
[ 1.518775] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.518781] usb 3-3: Product: USB2.0 Hub
[ 1.518786] usb 3-3: Manufacturer: VIA Labs, Inc.
[ 1.521569] hub 3-3:1.0: USB hub found
[ 1.522040] hub 3-3:1.0: 4 ports detected
[ 1.677673] usb 4-4: new SuperSpeed USB device number 2 using xhci_hcd
[ 1.780505] usb 4-4: New USB device found, idVendor=2109, idProduct=0813, bcdDevice=90.11
[ 1.780522] usb 4-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.780528] usb 4-4: Product: USB3.0 Hub
[ 1.780532] usb 4-4: Manufacturer: VIA Labs, Inc.
[ 1.784166] hub 4-4:1.0: USB hub found
[ 1.784506] hub 4-4:1.0: 4 ports detected
[ 1.898025] input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input5
[ 1.899186] usb 3-6: new high-speed USB device number 3 using xhci_hcd
[ 1.905048] Freeing unused decrypted memory: 2036K
[ 1.905409] Freeing unused kernel image (initmem) memory: 2752K
[ 1.905412] Write protecting the kernel read-only data: 24576k
[ 1.905944] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 1.906138] Freeing unused kernel image (rodata/data gap) memory: 684K
[ 1.911223] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.911226] Run /init as init process
[ 1.911227] with arguments:
[ 1.911228] /init
[ 1.911229] splash
[ 1.911229] with environment:
[ 1.911229] HOME=/
[ 1.911230] TERM=linux
[ 1.911230] BOOT_IMAGE=/@/boot/vmlinuz-6.1.39-calculate
[ 1.911230] calculate=video:modesetting
[ 1.932858] dracut: Calculate-23
[ 1.966851] dracut: TuxOnIce premodule started
[ 1.966881] dracut: Kernel has no tuxonice support, aborting
[ 1.970424] fbcon: Taking over console
[ 1.970462] Console: switching to colour frame buffer device 240x67
[ 2.003295] wmi_bus wmi_bus-PNP0C14:02: WQBC data block query control method not found
[ 2.052408] usb 3-6: New USB device found, idVendor=0c45, idProduct=6a14, bcdDevice=12.91
[ 2.052430] usb 3-6: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 2.052431] usb 3-6: Product: Integrated_Webcam_HD
[ 2.052432] usb 3-6: Manufacturer: C7FLH18S1954406F4CB0
[ 2.118783] i915 0000:00:02.0: [drm] VT-d active for gfx access
[ 2.118830] Console: switching to colour dummy device 80x25
[ 2.118845] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 2.118880] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[ 2.119263] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 2.120917] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/adlp_dmc_ver2_16.bin (v2.16)
[ 2.226328] usb 3-3.3: new low-speed USB device number 4 using xhci_hcd
[ 2.228694] i915 0000:00:02.0: [drm] GuC firmware i915/adlp_guc_70.bin version 70.5.1
[ 2.228696] i915 0000:00:02.0: [drm] HuC firmware i915/tgl_huc.bin version 7.9.3
[ 2.245851] i915 0000:00:02.0: [drm] HuC authenticated
[ 2.246167] i915 0000:00:02.0: [drm] GuC submission enabled
[ 2.246168] i915 0000:00:02.0: [drm] GuC SLPC enabled
[ 2.246554] i915 0000:00:02.0: [drm] GuC RC: enabled
[ 2.247860] i915 0000:00:02.0: [drm] Protected Xe Path (PXP) protected content support initialized
[ 2.269769] input: VEN_0488:00 0488:1042 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-VEN_0488:00/0018:0488:1042.0001/input/input6
[ 2.269863] input: VEN_0488:00 0488:1042 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-VEN_0488:00/0018:0488:1042.0001/input/input7
[ 2.269934] hid-generic 0018:0488:1042.0001: input,hidraw0: I2C HID v1.00 Mouse [VEN_0488:00 0488:1042] on i2c-VEN_0488:00
[ 2.380191] usb 3-3.3: New USB device found, idVendor=2a7a, idProduct=9597, bcdDevice= 0.01
[ 2.380206] usb 3-3.3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 2.380207] usb 3-3.3: Product: CASUE USB KB
[ 2.390583] input: VEN_0488:00 0488:1042 Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-VEN_0488:00/0018:0488:1042.0001/input/input9
[ 2.390626] input: CASUE USB KB as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.3/3-3.3:1.0/0003:2A7A:9597.0002/input/input12
[ 2.390647] input: VEN_0488:00 0488:1042 Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-VEN_0488:00/0018:0488:1042.0001/input/input10
[ 2.446361] hid-generic 0003:2A7A:9597.0002: input,hidraw0: USB HID v1.10 Keyboard [CASUE USB KB] on usb-0000:00:14.0-3.3/input0
[ 2.446667] hid-multitouch 0018:0488:1042.0001: input,hidraw1: I2C HID v1.00 Mouse [VEN_0488:00 0488:1042] on i2c-VEN_0488:00
[ 2.453060] input: CASUE USB KB Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.3/3-3.3:1.1/0003:2A7A:9597.0003/input/input13
[ 2.495858] usb 3-8: new high-speed USB device number 5 using xhci_hcd
[ 2.509387] input: CASUE USB KB System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.3/3-3.3:1.1/0003:2A7A:9597.0003/input/input14
[ 2.509417] hid-generic 0003:2A7A:9597.0003: input,hidraw2: USB HID v1.10 Device [CASUE USB KB] on usb-0000:00:14.0-3.3/input1
[ 2.638440] usb 3-8: New USB device found, idVendor=0a5c, idProduct=5842, bcdDevice= 1.02
[ 2.638443] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.638444] usb 3-8: Product: 58200
[ 2.638445] usb 3-8: Manufacturer: Broadcom Corp
[ 2.638445] usb 3-8: SerialNumber: 0123456789ABCD
[ 2.765925] usb 3-3.4: new low-speed USB device number 6 using xhci_hcd
[ 2.918230] usb 3-3.4: New USB device found, idVendor=30fa, idProduct=1040, bcdDevice= 1.00
[ 2.918233] usb 3-3.4: New USB device strings: Mfr=2, Product=1, SerialNumber=0
[ 2.918234] usb 3-3.4: Product: USB GAMING MOUSE
[ 2.918235] usb 3-3.4: Manufacturer: INSTANT
[ 2.927116] input: INSTANT USB GAMING MOUSE as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4:1.0/0003:30FA:1040.0004/input/input15
[ 2.927158] hid-generic 0003:30FA:1040.0004: input,hidraw3: USB HID v1.10 Mouse [INSTANT USB GAMING MOUSE ] on usb-0000:00:14.0-3.4/input0
[ 2.930965] input: INSTANT USB GAMING MOUSE Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.4/3-3.4:1.1/0003:30FA:1040.0005/input/input16
[ 2.986002] hid-generic 0003:30FA:1040.0005: input,hiddev96,hidraw4: USB HID v1.10 Keyboard [INSTANT USB GAMING MOUSE ] on usb-0000:00:14.0-3.4/input1
[ 3.035941] usb 3-10: new full-speed USB device number 7 using xhci_hcd
[ 3.178094] usb 3-10: New USB device found, idVendor=8087, idProduct=0033, bcdDevice= 0.00
[ 3.178096] usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.514944] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[ 3.520009] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 3.525088] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input18
[ 3.556791] fbcon: i915drmfb (fb0) is primary device
[ 4.836842] Console: switching to colour frame buffer device 240x67
[ 4.854770] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 4.885561] dracut: Starting plymouth daemon
[ 5.103211] nvme 0000:01:00.0: platform quirk: setting simple suspend
[ 5.103250] nvme nvme0: pci function 0000:01:00.0
[ 5.105366] sdhci: Secure Digital Host Controller Interface driver
[ 5.105368] sdhci: Copyright(c) Pierre Ossman
[ 5.117850] nvme nvme0: Shutdown timeout set to 8 seconds
[ 5.136994] nvme nvme0: allocated 64 MiB host memory buffer.
[ 5.185864] nvme nvme0: 12/0/0 default/read/poll queues
[ 5.193858] nvme0n1: p1 p2 p3
[ 5.196690] sdhci-pci 0000:72:00.0: SDHCI controller found [17a0:9755] (rev 1)
[ 5.201698] mmc0: SDHCI controller on PCI [0000:72:00.0] using ADMA 64-bit
[ 5.202388] BTRFS: device label CLD-23 devid 1 transid 34070 /dev/nvme0n1p2 scanned by (udev-worker) (480)
[ 5.516096] PM: Image not found (code -22)
[ 5.518913] dracut: TuxOnIce lvmfix started
[ 5.751223] dracut: TuxOnIce udev should be now fully settled
[ 5.754778] ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=3
[ 5.765239] hid-generic 001F:8087:0AC2.0006: hidraw5: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on
[ 5.771501] hid-generic 001F:8087:0AC2.0007: hidraw6: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on
[ 5.773246] hid-generic 001F:8087:0AC2.0008: hidraw7: SENSOR HUB HID v2.00 Device [hid-ishtp 8087:0AC2] on
[ 5.828939] BTRFS info (device nvme0n1p2): using crc32c (crc32c-intel) checksum algorithm
[ 5.828946] BTRFS info (device nvme0n1p2): using free space tree
[ 5.831241] BTRFS info (device nvme0n1p2): enabling ssd optimizations
[ 5.860407] dracut: Mounted root filesystem /dev/nvme0n1p2
[ 5.946880] dracut: Switching root
[ 6.475537] Consider using thermal netlink events interface
[ 6.476589] input: Intel HID events as /devices/platform/INTC1070:00/input/input19
[ 6.478292] intel-hid INTC1070:00: platform supports 5 button array
[ 6.478911] input: Intel HID 5 button array as /devices/platform/INTC1070:00/input/input20
[ 6.484872] resource sanity check: requesting [mem 0xfedc0000-0xfedcffff], which spans more than pnp 00:05 [mem 0xfedc0000-0xfedc7fff]
[ 6.484876] caller igen6_probe+0x183/0x7a0 [igen6_edac] mapping multiple BARs
[ 6.486675] EDAC MC0: Giving out device to module igen6_edac controller Intel_client_SoC MC#0: DEV 0000:00:00.0 (INTERRUPT)
[ 6.489811] EDAC MC1: Giving out device to module igen6_edac controller Intel_client_SoC MC#1: DEV 0000:00:00.0 (INTERRUPT)
[ 6.489829] EDAC igen6 MC1: HANDLING IBECC MEMORY ERROR
[ 6.489831] EDAC igen6 MC1: ADDR 0x7fffffffe0
[ 6.489832] EDAC igen6 MC0: HANDLING IBECC MEMORY ERROR
[ 6.489832] EDAC igen6 MC0: ADDR 0x7fffffffe0
[ 6.491684] EDAC igen6: v2.5
[ 6.496625] i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003)
[ 6.496848] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 6.496935] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 6.497062] proc_thermal_pci 0000:00:04.0: enabling device (0000 -> 0002)
[ 6.499841] ACPI: bus type thunderbolt registered
[ 6.500000] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 6.502571] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 6.504458] intel_rapl_common: Found RAPL domain package
[ 6.516516] idma64 idma64.1: Found Intel integrated DMA 64-bit
[ 6.521229] i2c i2c-14: 2/2 memory slots populated (from DMI)
[ 6.521761] i2c i2c-14: Successfully instantiated SPD at 0x50
[ 6.607535] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 6.609423] e1000e: Intel(R) PRO/1000 Network Driver
[ 6.609426] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 6.609810] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 6.610473] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 6.622522] mc: Linux media interface: v0.10
[ 6.622542] Bluetooth: Core ver 2.22
[ 6.622555] NET: Registered PF_BLUETOOTH protocol family
[ 6.622556] Bluetooth: HCI device and connection manager initialized
[ 6.622559] Bluetooth: HCI socket layer initialized
[ 6.622561] Bluetooth: L2CAP socket layer initialized
[ 6.622562] Bluetooth: SCO socket layer initialized
[ 6.624365] Intel(R) Wireless WiFi driver for Linux
[ 6.624468] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[ 6.630181] vboxdrv: loading out-of-tree module taints kernel.
[ 6.635042] videodev: Linux video capture interface: v2.00
[ 6.636119] vboxdrv: Found 12 processor cores/threads
[ 6.637397] input: PC Speaker as /devices/platform/pcspkr/input/input21
[ 6.640549] iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
[ 6.640564] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 0.0.2.36
[ 6.640818] iwlwifi 0000:00:14.3: loaded firmware version 72.a764baac.0 so-a0-gf-a0-72.ucode op_mode iwlmvm
[ 6.643009] usbcore: registered new interface driver btusb
[ 6.644702] Bluetooth: hci0: Device revision is 0
[ 6.644705] Bluetooth: hci0: Secure boot is enabled
[ 6.644706] Bluetooth: hci0: OTP lock is enabled
[ 6.644706] Bluetooth: hci0: API lock is enabled
[ 6.644707] Bluetooth: hci0: Debug lock is disabled
[ 6.644708] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[ 6.644709] Bluetooth: hci0: Bootloader timestamp 2019.40 buildtype 1 build 38
[ 6.644948] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
[ 6.647495] Bluetooth: hci0: Found device firmware: intel/ibt-0040-0041.sfi
[ 6.647515] Bluetooth: hci0: Boot Address: 0x100800
[ 6.647516] Bluetooth: hci0: Firmware Version: 252-24.23
[ 6.654689] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380
[ 6.654892] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 6.656849] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops __SCT__tp_func_intel_frontbuffer_flush [i915])
[ 6.663360] vboxdrv: TSC mode is Invariant, tentative frequency 2687999423 Hz
[ 6.663363] vboxdrv: Successfully loaded version 7.0.10 r158379 (interface 0x00330004)
[ 6.862772] iTCO_vendor_support: vendor-support=0
[ 6.865013] dell_smm_hwmon: unable to get SMM Dell signature
[ 6.865233] intel_rapl_msr: PL4 support detected.
[ 6.865250] intel_rapl_common: Found RAPL domain package
[ 6.865252] intel_rapl_common: Found RAPL domain core
[ 6.865253] intel_rapl_common: Found RAPL domain uncore
[ 6.865255] intel_rapl_common: Found RAPL domain psys
[ 6.865257] mei_pxp 0000:00:16.0-fbf6fcf1-96cf-4e2e-a6a6-1bab8cbe36b1: bound 0000:00:02.0 (ops __SCT__tp_func_intel_frontbuffer_flush [i915])
[ 6.865473] ee1004 14-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 6.865988] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops __SCT__tp_func_intel_frontbuffer_flush [i915])
[ 6.866851] usb 3-6: Found UVC 1.00 device Integrated_Webcam_HD (0c45:6a14)
[ 6.873968] input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb3/3-6/3-6:1.0/input/input22
[ 6.874003] usbcore: registered new interface driver uvcvideo
[ 7.004084] VBoxNetFlt: Successfully started.
[ 7.004498] iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[ 7.004789] iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 7.005692] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[ 7.005694] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 7.005695] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 7.005696] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 7.005696] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 7.006092] input: Dell Privacy Driver as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/6932965F-1671-4CEB-B988-D3AB0A901919/input/input23
[ 7.006977] input: Dell WMI hotkeys as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input24
[ 7.009299] VBoxNetAdp: Successfully started.
[ 7.015526] iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6E AX211 160MHz, REV=0x370
[ 7.015658] thermal thermal_zone9: failed to read out thermal zone (-61)
[ 7.043228] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3204: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 7.043233] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 7.043235] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 7.043236] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 7.043236] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 7.043237] snd_hda_codec_realtek hdaudioC0D0: Headset Mic=0x19
[ 7.043238] snd_hda_codec_realtek hdaudioC0D0: Headphone Mic=0x1a
[ 7.043239] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 7.066042] dell_laptop: Using i8042 filter function for receiving events
[ 7.090178] intel_tcc_cooling: Programmable TCC Offset detected
[ 7.106755] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[ 7.188153] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input25
[ 7.188176] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input26
[ 7.188197] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
[ 7.188230] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
[ 7.188245] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
[ 7.188757] iwlwifi 0000:00:14.3: loaded PNVM version 181407b3
[ 7.204293] iwlwifi 0000:00:14.3: Detected RF GF, rfid=0x2010d000
[ 7.275500] iwlwifi 0000:00:14.3: base HW address: 28:6b:35:70:8d:98
[ 7.291966] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) c4:cb:e1:0b:f2:57
[ 7.291969] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[ 7.292191] e1000e 0000:00:1f.6 eth0: MAC: 15, PHY: 12, PBA No: FFFFFF-0FF
[ 7.292917] iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0
[ 7.319443] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
[ 7.677835] BTRFS info (device nvme0n1p2: state M): use zstd compression, level 3
[ 7.782030] Adding 33791996k swap on /dev/nvme0n1p1. Priority:-2 extents:1 across:33791996k SSFS
[ 7.812154] zram: Added device: zram0
[ 7.854405] zram0: detected capacity change from 0 to 130168112
[ 7.866819] Adding 65084052k swap on /dev/zram0. Priority:100 extents:1 across:65084052k SSFS
[ 7.934709] FAT-fs (nvme0n1p3): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 8.335004] fuse: init (API version 7.37)
[ 8.338698] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 8.338705] Bluetooth: BNEP filters: protocol multicast
[ 8.338712] Bluetooth: BNEP socket layer initialized
[ 8.572415] Bluetooth: hci0: Waiting for firmware download to complete
[ 8.572552] Bluetooth: hci0: Firmware loaded in 1879936 usecs
[ 8.572760] Bluetooth: hci0: Waiting for device to boot
[ 8.588482] Bluetooth: hci0: Device booted in 15494 usecs
[ 8.588541] Bluetooth: hci0: Malformed MSFT vendor event: 0x02
[ 8.597738] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-0040-0041.ddc
[ 8.600658] Bluetooth: hci0: Applying Intel DDC parameters completed
[ 8.603619] Bluetooth: hci0: Firmware timestamp 2023.24 buildtype 1 build 67068
[ 8.671905] Bluetooth: MGMT ver 1.22
[ 9.205680] NET: Registered PF_QIPCRTR protocol family
[ 11.359803] e1000e 0000:00:1f.6 enp0s31f6: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[ 11.360038] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s31f6: link becomes ready
[ 11.384896] 8021q: 802.1Q VLAN Support v1.8
[ 16.546280] Bluetooth: RFCOMM TTY layer initialized
[ 16.546288] Bluetooth: RFCOMM socket layer initialized
[ 16.546290] Bluetooth: RFCOMM ver 1.11
[ 16.569435] process 'optimus/Software/Telegram/Telegram' started with executable stack
[ 20.017638] Bluetooth: hci0: Opcode 0x 401 failed: -16
[ 21.184228] input: EDIFIER WH950NB (AVRCP) as /devices/virtual/input/input30
[ 136.839273] SGI XFS with ACLs, security attributes, scrub, quota, no debug enabled
[ 136.843353] JFS: nTxBlock = 8192, nTxLock = 65536
[ 464.090897] wireguard: WireGuard 1.0.0 loaded. See www.wireguard.com for information.
[ 464.090902] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
[ 3693.379865] i915 0000:00:02.0: [drm] User-defined mode not supported: "1920x1080": 60 148500 1920 2008 2052 2200 1080 1084 1089 1125 0x68 0x5
|