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
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158 | [ 0.000000] Linux version 6.11.0-21-generic (buildd@lcy02-amd64-097) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #21~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 24 16:52:15 UTC 2 (Ubuntu 6.11.0-21.21~24.04.1-generic 6.11.11)
[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-6.11.0-21-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro quiet splash vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000df451bff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000df451c00-0x00000000dfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed1bfff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed20000-0x00000000fed8ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feda0000-0x00000000feda5fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffe60000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011fffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] SMBIOS 2.4 present.
[ 0.000000] DMI: Dell Inc. Precision M4400 /0NY980, BIOS A29 06/04/2013
[ 0.000000] DMI: Memory slots populated: 2/2
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2526.943 MHz processor
[ 0.001557] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.001562] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.001571] last_pfn = 0x120000 max_arch_pfn = 0x400000000
[ 0.001582] total RAM covered: 32256M
[ 0.001873] Found optimal setting for mtrr clean up
[ 0.001875] gran_size: 64K chunk_size: 1G num_reg: 5 lose cover RAM: 0G
[ 0.001881] MTRR map: 8 entries (5 fixed + 3 variable; max 19), built from 7 variable MTRRs
[ 0.001885] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.003570] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[ 0.003584] last_pfn = 0xdf451 max_arch_pfn = 0x400000000
[ 0.017451] RAMDISK: [mem 0x2f50d000-0x33a7dfff]
[ 0.018197] ACPI: Early table checksum verification disabled
[ 0.018203] ACPI: RSDP 0x00000000000FB9B0 000024 (v02 DELL )
[ 0.018210] ACPI: XSDT 0x00000000DF454600 000074 (v01 DELL M09 27DD0604 ASL 00000061)
[ 0.018219] ACPI: FACP 0x00000000DF45449C 0000F4 (v04 DELL M09 27DD0604 ASL 00000061)
[ 0.018226] ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Gpe0Block: 128/64 (20240322/tbfadt-560)
[ 0.018233] ACPI: DSDT 0x00000000DF454C00 005E58 (v02 INT430 SYSFexxx 00001001 INTL 20050624)
[ 0.018239] ACPI: FACS 0x00000000DF463400 000040
[ 0.018244] ACPI: FACS 0x00000000DF463400 000040
[ 0.018248] ACPI: HPET 0x00000000DF454700 000038 (v01 DELL M09 00000001 ASL 00000061)
[ 0.018254] ACPI: DMAR 0x00000000DF462C00 0000B0 (v01 DELL M09 27DD0604 ASL 00000061)
[ 0.018259] ACPI: APIC 0x00000000DF454800 000078 (v01 DELL M09 27DD0604 ASL 00000047)
[ 0.018265] ACPI: ASF! 0x00000000DF454400 00006A (v32 DELL M09 27DD0604 ASL 00000061)
[ 0.018270] ACPI: MCFG 0x00000000DF4547C0 00003C (v16 DELL M09 27DD0604 ASL 00000061)
[ 0.018276] ACPI: TCPA 0x00000000DF454B00 000032 (v01 00000000 ASL 00000000)
[ 0.018281] ACPI: SLIC 0x00000000DF45489C 000176 (v01 DELL M09 27DD0604 ASL 00000061)
[ 0.018287] ACPI: BOOT 0x00000000DF4543C0 000028 (v01 DELL M09 27DD0604 ASL 00000061)
[ 0.018293] ACPI: SSDT 0x00000000DF452B31 00066C (v01 PmRef CpuPm 00003000 INTL 20050624)
[ 0.018297] ACPI: Reserving FACP table memory at [mem 0xdf45449c-0xdf45458f]
[ 0.018300] ACPI: Reserving DSDT table memory at [mem 0xdf454c00-0xdf45aa57]
[ 0.018301] ACPI: Reserving FACS table memory at [mem 0xdf463400-0xdf46343f]
[ 0.018303] ACPI: Reserving FACS table memory at [mem 0xdf463400-0xdf46343f]
[ 0.018304] ACPI: Reserving HPET table memory at [mem 0xdf454700-0xdf454737]
[ 0.018306] ACPI: Reserving DMAR table memory at [mem 0xdf462c00-0xdf462caf]
[ 0.018308] ACPI: Reserving APIC table memory at [mem 0xdf454800-0xdf454877]
[ 0.018309] ACPI: Reserving ASF! table memory at [mem 0xdf454400-0xdf454469]
[ 0.018311] ACPI: Reserving MCFG table memory at [mem 0xdf4547c0-0xdf4547fb]
[ 0.018312] ACPI: Reserving TCPA table memory at [mem 0xdf454b00-0xdf454b31]
[ 0.018314] ACPI: Reserving SLIC table memory at [mem 0xdf45489c-0xdf454a11]
[ 0.018315] ACPI: Reserving BOOT table memory at [mem 0xdf4543c0-0xdf4543e7]
[ 0.018317] ACPI: Reserving SSDT table memory at [mem 0xdf452b31-0xdf45319c]
[ 0.018499] No NUMA configuration found
[ 0.018501] Faking a node at [mem 0x0000000000000000-0x000000011fffffff]
[ 0.018515] NODE_DATA(0) allocated [mem 0x11ffd5000-0x11fffffff]
[ 0.018870] Zone ranges:
[ 0.018872] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.018875] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.018877] Normal [mem 0x0000000100000000-0x000000011fffffff]
[ 0.018880] Device empty
[ 0.018881] Movable zone start for each node
[ 0.018884] Early memory node ranges
[ 0.018885] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.018888] node 0: [mem 0x0000000000100000-0x00000000df450fff]
[ 0.018890] node 0: [mem 0x0000000100000000-0x000000011fffffff]
[ 0.018892] Initmem setup node 0 [mem 0x0000000000001000-0x000000011fffffff]
[ 0.018901] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.018960] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.049496] On node 0, zone Normal: 2991 pages in unavailable ranges
[ 0.049872] ACPI: PM-Timer IO Port: 0x1008
[ 0.049895] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[ 0.049899] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.049916] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.049921] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.049924] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.049931] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.049934] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.049949] CPU topo: Max. logical packages: 2
[ 0.049951] CPU topo: Max. logical dies: 2
[ 0.049952] CPU topo: Max. dies per package: 1
[ 0.049959] CPU topo: Max. threads per core: 1
[ 0.049960] CPU topo: Num. cores per package: 2
[ 0.049961] CPU topo: Num. threads per package: 2
[ 0.049962] CPU topo: Allowing 2 present CPUs plus 2 hotplug CPUs
[ 0.049984] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.049986] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.049988] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.049990] PM: hibernation: Registered nosave memory: [mem 0xdf451000-0xdf451fff]
[ 0.049992] PM: hibernation: Registered nosave memory: [mem 0xdf452000-0xdfffffff]
[ 0.049993] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[ 0.049995] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[ 0.049996] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[ 0.049997] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec0ffff]
[ 0.049999] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfed17fff]
[ 0.050000] PM: hibernation: Registered nosave memory: [mem 0xfed18000-0xfed1bfff]
[ 0.050001] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.050003] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed8ffff]
[ 0.050004] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfed9ffff]
[ 0.050006] PM: hibernation: Registered nosave memory: [mem 0xfeda0000-0xfeda5fff]
[ 0.050007] PM: hibernation: Registered nosave memory: [mem 0xfeda6000-0xfedfffff]
[ 0.050008] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee0ffff]
[ 0.050010] PM: hibernation: Registered nosave memory: [mem 0xfee10000-0xffe5ffff]
[ 0.050011] PM: hibernation: Registered nosave memory: [mem 0xffe60000-0xffffffff]
[ 0.050014] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[ 0.050016] Booting paravirtualized kernel on bare hardware
[ 0.050021] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.050035] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.051280] percpu: Embedded 88 pages/cpu s237568 r8192 d114688 u524288
[ 0.051289] pcpu-alloc: s237568 r8192 d114688 u524288 alloc=1*2097152
[ 0.051294] pcpu-alloc: [0] 0 1 2 3
[ 0.051323] Kernel command line: BOOT_IMAGE=/vmlinuz-6.11.0-21-generic root=/dev/mapper/ubuntu--vg-ubuntu--lv ro quiet splash vt.handoff=7
[ 0.051460] Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-6.11.0-21-generic", will be passed to user space.
[ 0.053387] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.054292] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.054416] Fallback order for Node 0: 0
[ 0.054426] Built 1 zonelists, mobility grouping on. Total pages: 1045487
[ 0.054428] Policy zone: Normal
[ 0.054446] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.054467] software IO TLB: area num 4.
[ 0.204504] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.204711] Kernel/User page tables isolation: enabled
[ 0.204858] ftrace: allocating 59224 entries in 232 pages
[ 0.219675] ftrace: allocated 232 pages with 4 groups
[ 0.221112] Dynamic Preempt: voluntary
[ 0.221391] rcu: Preemptible hierarchical RCU implementation.
[ 0.221393] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[ 0.221395] Trampoline variant of Tasks RCU enabled.
[ 0.221396] Rude variant of Tasks RCU enabled.
[ 0.221397] Tracing variant of Tasks RCU enabled.
[ 0.221399] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.221400] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.221420] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[ 0.221424] RCU Tasks Rude: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[ 0.221426] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4.
[ 0.228792] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[ 0.229070] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.229230] Console: colour dummy device 80x25
[ 0.229234] printk: legacy console [tty0] enabled
[ 0.229540] ACPI: Core revision 20240322
[ 0.229590] ACPI BIOS Warning (bug): Incorrect checksum in table [TCPA] - 0x8E, should be 0x5C (20240322/utcksum-58)
[ 0.229919] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.229944] APIC: Switch to symmetric I/O mode setup
[ 0.229948] DMAR: Host address width 36
[ 0.229950] DMAR: DRHD base: 0x000000fed10000 flags: 0x0
[ 0.229979] DMAR: dmar0: reg_base_addr fed10000 ver 1:0 cap c9008020e30260 ecap 1000
[ 0.229983] DMAR: DRHD base: 0x000000fed13000 flags: 0x1
[ 0.229989] DMAR: dmar1: reg_base_addr fed13000 ver 1:0 cap c9008020630260 ecap 1000
[ 0.229992] DMAR: RMRR base: 0x000000dfbe7000 end: 0x000000dfbfffff
[ 0.230458] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.234938] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x246ca5e9623, max_idle_ns: 440795286804 ns
[ 0.234949] Calibrating delay loop (skipped), value calculated using timer frequency.. 5053.88 BogoMIPS (lpj=2526943)
[ 0.234978] CPU0: Thermal monitoring enabled (TM2)
[ 0.235020] Last level iTLB entries: 4KB 128, 2MB 4, 4MB 4
[ 0.235023] Last level dTLB entries: 4KB 256, 2MB 0, 4MB 32, 1GB 0
[ 0.235028] process: using mwait in idle threads
[ 0.235031] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.235035] Spectre V2 : Mitigation: Retpolines
[ 0.235037] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.235038] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.235040] Speculative Store Bypass: Vulnerable
[ 0.235043] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[ 0.235045] MMIO Stale Data: Unknown: No mitigations
[ 0.235049] x86/fpu: x87 FPU will use FXSAVE
[ 0.269612] Freeing SMP alternatives memory: 48K
[ 0.269627] pid_max: default: 32768 minimum: 301
[ 0.270639] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,ima,evm
[ 0.270959] landlock: Up and running.
[ 0.270961] Yama: becoming mindful.
[ 0.271092] AppArmor: AppArmor initialized
[ 0.271471] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.271490] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.375755] smpboot: CPU0: Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz (family: 0x6, model: 0x17, stepping: 0x6)
[ 0.375943] Performance Events: PEBS fmt0+, Core2 events, 4-deep LBR, Intel PMU driver.
[ 0.375943] ... version: 2
[ 0.375943] ... bit width: 40
[ 0.375943] ... generic registers: 2
[ 0.375943] ... value mask: 000000ffffffffff
[ 0.375943] ... max period: 000000007fffffff
[ 0.375943] ... fixed-purpose events: 3
[ 0.375943] ... event mask: 0000000700000003
[ 0.375943] signal: max sigframe size: 1440
[ 0.375943] rcu: Hierarchical SRCU implementation.
[ 0.375943] rcu: Max phase no-delay instances is 400.
[ 0.375943] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[ 0.376574] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.376705] smp: Bringing up secondary CPUs ...
[ 0.376982] smpboot: x86: Booting SMP configuration:
[ 0.376985] .... node #0, CPUs: #1
[ 0.378072] smp: Brought up 1 node, 2 CPUs
[ 0.378072] smpboot: Total of 2 processors activated (10107.77 BogoMIPS)
[ 0.379136] Memory: 3911196K/4181948K available (22528K kernel code, 4520K rwdata, 14904K rodata, 5096K init, 4528K bss, 264652K reserved, 0K cma-reserved)
[ 0.380068] devtmpfs: initialized
[ 0.380068] x86/mm: Memory block size: 128MB
[ 0.381351] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.381351] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.382417] pinctrl core: initialized pinctrl subsystem
[ 0.382594] PM: RTC time: 11:29:22, date: 2025-04-06
[ 0.383809] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.384152] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 0.384264] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.384376] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.384398] audit: initializing netlink subsys (disabled)
[ 0.384421] audit: type=2000 audit(1743938961.154:1): state=initialized audit_enabled=0 res=1
[ 0.384421] thermal_sys: Registered thermal governor 'fair_share'
[ 0.384421] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.384421] thermal_sys: Registered thermal governor 'step_wise'
[ 0.384421] thermal_sys: Registered thermal governor 'user_space'
[ 0.384421] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.384421] EISA bus registered
[ 0.384421] cpuidle: using governor ladder
[ 0.384421] cpuidle: using governor menu
[ 0.384421] Simple Boot Flag at 0x79 set to 0x80
[ 0.384421] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.385335] PCI: ECAM [mem 0xf8000000-0xfbffffff] (base 0xf8000000) for domain 0000 [bus 00-3f]
[ 0.385343] PCI: ECAM [mem 0xf8000000-0xfbffffff] reserved as E820 entry
[ 0.385357] PCI: Using configuration type 1 for base access
[ 0.385496] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.404129] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.404132] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.407341] ACPI: Added _OSI(Module Device)
[ 0.407344] ACPI: Added _OSI(Processor Device)
[ 0.407346] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.407347] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.412778] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.414609] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.435337] ACPI: Dynamic OEM Table Load:
[ 0.435348] ACPI: SSDT 0xFFFF990C00D64800 000281 (v01 PmRef BspIst 00003000 INTL 20050624)
[ 0.436233] ACPI: Dynamic OEM Table Load:
[ 0.436241] ACPI: SSDT 0xFFFF990C00F32800 0005C6 (v01 PmRef BspCst 00003001 INTL 20050624)
[ 0.437081] ACPI: Dynamic OEM Table Load:
[ 0.437089] ACPI: SSDT 0xFFFF990C00EB7000 0001D7 (v01 PmRef ApIst 00003000 INTL 20050624)
[ 0.437578] ACPI: Dynamic OEM Table Load:
[ 0.437586] ACPI: SSDT 0xFFFF990C00CCFE40 00008D (v01 PmRef ApCst 00003000 INTL 20050624)
[ 0.438198] ACPI: EC: EC started
[ 0.438200] ACPI: EC: interrupt blocked
[ 0.439107] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.439112] ACPI: \_SB_.PCI0.ISAB.ECDV: Boot DSDT EC used to handle transactions
[ 0.439114] ACPI: Interpreter enabled
[ 0.439142] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.439145] ACPI: Using IOAPIC for interrupt routing
[ 0.439647] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.439650] PCI: Using E820 reservations for host bridge windows
[ 0.439909] ACPI: Enabled 11 GPEs in block 00 to 3F
[ 0.683081] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.683092] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.683114] acpi PNP0A03:00: [Firmware Info]: ECAM [mem 0xf8000000-0xfbffffff] for domain 0000 [bus 00-3f] only partially covers this bridge
[ 0.699874] PCI host bridge to bus 0000:00
[ 0.699880] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.699884] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.699887] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.699889] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[ 0.699892] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xf7ffffff window]
[ 0.699894] pci_bus 0000:00: root bus resource [mem 0xfc000000-0xfebfffff window]
[ 0.699896] pci_bus 0000:00: root bus resource [mem 0xfec10000-0xfecfffff window]
[ 0.699899] pci_bus 0000:00: root bus resource [mem 0xfed1c000-0xfed1ffff window]
[ 0.699901] pci_bus 0000:00: root bus resource [mem 0xfed90000-0xfed9ffff window]
[ 0.699903] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[ 0.699906] pci_bus 0000:00: root bus resource [mem 0xfeda7000-0xfedfffff window]
[ 0.699908] pci_bus 0000:00: root bus resource [mem 0xfee10000-0xff9fffff window]
[ 0.699910] pci_bus 0000:00: root bus resource [mem 0xffc00000-0xffdfffff window]
[ 0.699913] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.699948] pci 0000:00:00.0: [8086:2a40] type 00 class 0x060000 conventional PCI endpoint
[ 0.699980] pci 0000:00:00.0: DMAR: Disabling IOMMU for graphics on this chipset
[ 0.699983] pci 0000:00:00.0: DMAR: Forcing write-buffer flush capability
[ 0.700068] pci 0000:00:01.0: [8086:2a41] type 01 class 0x060400 PCIe Root Port
[ 0.700084] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.700088] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
[ 0.700091] pci 0000:00:01.0: bridge window [mem 0xf2000000-0xf6efffff]
[ 0.700098] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.700131] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.700313] pci 0000:00:19.0: [8086:10f5] type 00 class 0x020000 conventional PCI endpoint
[ 0.700366] pci 0000:00:19.0: BAR 0 [mem 0xf6fe0000-0xf6ffffff]
[ 0.700370] pci 0000:00:19.0: BAR 1 [mem 0xf6fdb000-0xf6fdbfff]
[ 0.700374] pci 0000:00:19.0: BAR 2 [io 0xefe0-0xefff]
[ 0.700429] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 0.700520] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300 conventional PCI endpoint
[ 0.700578] pci 0000:00:1a.0: BAR 4 [io 0x6f60-0x6f7f]
[ 0.700733] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300 conventional PCI endpoint
[ 0.700792] pci 0000:00:1a.1: BAR 4 [io 0x6f80-0x6f9f]
[ 0.700946] pci 0000:00:1a.2: [8086:2939] type 00 class 0x0c0300 conventional PCI endpoint
[ 0.701005] pci 0000:00:1a.2: BAR 4 [io 0x6fa0-0x6fbf]
[ 0.701167] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320 conventional PCI endpoint
[ 0.701220] pci 0000:00:1a.7: BAR 0 [mem 0xfed1c400-0xfed1c7ff]
[ 0.701279] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[ 0.701424] pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300 PCIe Root Complex Integrated Endpoint
[ 0.701479] pci 0000:00:1b.0: BAR 0 [mem 0xf6fdc000-0xf6fdffff 64bit]
[ 0.701554] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.701721] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400 PCIe Root Port
[ 0.701757] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[ 0.701856] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.702031] pci 0000:00:1c.1: [8086:2942] type 01 class 0x060400 PCIe Root Port
[ 0.702068] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[ 0.702077] pci 0000:00:1c.1: bridge window [mem 0xf1f00000-0xf1ffffff]
[ 0.702168] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.702330] pci 0000:00:1c.2: [8086:2944] type 01 class 0x060400 PCIe Root Port
[ 0.702366] pci 0000:00:1c.2: PCI bridge to [bus 0d]
[ 0.702464] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.702634] pci 0000:00:1c.3: [8086:2946] type 01 class 0x060400 PCIe Root Port
[ 0.702671] pci 0000:00:1c.3: PCI bridge to [bus 0e-0f]
[ 0.702677] pci 0000:00:1c.3: bridge window [io 0xc000-0xcfff]
[ 0.702682] pci 0000:00:1c.3: bridge window [mem 0xf1c00000-0xf1efffff]
[ 0.702697] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf01fffff 64bit pref]
[ 0.702776] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.702946] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300 conventional PCI endpoint
[ 0.703005] pci 0000:00:1d.0: BAR 4 [io 0x6f00-0x6f1f]
[ 0.703161] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300 conventional PCI endpoint
[ 0.703220] pci 0000:00:1d.1: BAR 4 [io 0x6f20-0x6f3f]
[ 0.703371] pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300 conventional PCI endpoint
[ 0.703429] pci 0000:00:1d.2: BAR 4 [io 0x6f40-0x6f5f]
[ 0.703590] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320 conventional PCI endpoint
[ 0.703644] pci 0000:00:1d.7: BAR 0 [mem 0xfed1c000-0xfed1c3ff]
[ 0.703702] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.703856] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401 conventional PCI bridge
[ 0.703891] pci 0000:00:1e.0: PCI bridge to [bus 03-04] (subtractive decode)
[ 0.703900] pci 0000:00:1e.0: bridge window [mem 0xf1b00000-0xf1bfffff]
[ 0.704077] pci 0000:00:1f.0: [8086:2917] type 00 class 0x060100 conventional PCI endpoint
[ 0.704355] pci 0000:00:1f.2: [8086:2929] type 00 class 0x010601 conventional PCI endpoint
[ 0.704409] pci 0000:00:1f.2: BAR 0 [io 0x6e70-0x6e77]
[ 0.704413] pci 0000:00:1f.2: BAR 1 [io 0x6e78-0x6e7b]
[ 0.704416] pci 0000:00:1f.2: BAR 2 [io 0x6e80-0x6e87]
[ 0.704420] pci 0000:00:1f.2: BAR 3 [io 0x6e88-0x6e8b]
[ 0.704424] pci 0000:00:1f.2: BAR 4 [io 0x6ea0-0x6ebf]
[ 0.704427] pci 0000:00:1f.2: BAR 5 [mem 0xfed1c800-0xfed1cfff]
[ 0.704483] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.704604] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.704659] pci 0000:00:1f.3: BAR 0 [mem 0xf6fdaf00-0xf6fdafff 64bit]
[ 0.704666] pci 0000:00:1f.3: BAR 4 [io 0x1100-0x111f]
[ 0.704847] pci 0000:01:00.0: [10de:065c] type 00 class 0x030000 PCIe Endpoint
[ 0.704903] pci 0000:01:00.0: BAR 0 [mem 0xf5000000-0xf5ffffff]
[ 0.704914] pci 0000:01:00.0: BAR 1 [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.704926] pci 0000:01:00.0: BAR 3 [mem 0xf2000000-0xf3ffffff 64bit]
[ 0.704936] pci 0000:01:00.0: BAR 5 [io 0xdf00-0xdf7f]
[ 0.704946] pci 0000:01:00.0: ROM [mem 0x00000000-0x0007ffff pref]
[ 0.704975] pci 0000:01:00.0: enabling Extended Tags
[ 0.705028] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.705185] pci 0000:01:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:01.0 (capable of 64.000 Gb/s with 5.0 GT/s PCIe x16 link)
[ 0.705390] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.705469] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[ 0.705636] pci 0000:0c:00.0: [8086:4232] type 00 class 0x028000 PCIe Endpoint
[ 0.705764] pci 0000:0c:00.0: BAR 0 [mem 0xf1ffe000-0xf1ffffff 64bit]
[ 0.705985] pci 0000:0c:00.0: PME# supported from D0 D3hot D3cold
[ 0.706364] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[ 0.706451] pci 0000:00:1c.2: PCI bridge to [bus 0d]
[ 0.706563] acpiphp: Slot [1] registered
[ 0.706571] pci 0000:00:1c.3: PCI bridge to [bus 0e-0f]
[ 0.706608] pci_bus 0000:03: extended config space not accessible
[ 0.706666] pci 0000:03:01.0: [1180:0476] type 02 class 0x060700 CardBus bridge
[ 0.706690] pci 0000:03:01.0: BAR 1 [mem 0x00000000-0x00000fff]
[ 0.706730] pci 0000:03:01.0: supports D1 D2
[ 0.706733] pci 0000:03:01.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.706851] pci 0000:03:01.1: [1180:0832] type 00 class 0x0c0010 conventional PCI endpoint
[ 0.706907] pci 0000:03:01.1: BAR 0 [mem 0xf1bff800-0xf1bfffff]
[ 0.706960] pci 0000:03:01.1: supports D1 D2
[ 0.706963] pci 0000:03:01.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.707050] pci 0000:03:01.2: [1180:0822] type 00 class 0x080501 conventional PCI endpoint
[ 0.707104] pci 0000:03:01.2: BAR 0 [mem 0xf1bff700-0xf1bff7ff]
[ 0.707154] pci 0000:03:01.2: supports D1 D2
[ 0.707157] pci 0000:03:01.2: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.707281] pci 0000:00:1e.0: PCI bridge to [bus 03-04] (subtractive decode)
[ 0.707295] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 0.707298] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 0.707300] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 0.707303] pci 0000:00:1e.0: bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
[ 0.707305] pci 0000:00:1e.0: bridge window [mem 0xe0000000-0xf7ffffff window] (subtractive decode)
[ 0.707308] pci 0000:00:1e.0: bridge window [mem 0xfc000000-0xfebfffff window] (subtractive decode)
[ 0.707310] pci 0000:00:1e.0: bridge window [mem 0xfec10000-0xfecfffff window] (subtractive decode)
[ 0.707313] pci 0000:00:1e.0: bridge window [mem 0xfed1c000-0xfed1ffff window] (subtractive decode)
[ 0.707315] pci 0000:00:1e.0: bridge window [mem 0xfed90000-0xfed9ffff window] (subtractive decode)
[ 0.707317] pci 0000:00:1e.0: bridge window [mem 0xfed40000-0xfed44fff window] (subtractive decode)
[ 0.707320] pci 0000:00:1e.0: bridge window [mem 0xfeda7000-0xfedfffff window] (subtractive decode)
[ 0.707322] pci 0000:00:1e.0: bridge window [mem 0xfee10000-0xff9fffff window] (subtractive decode)
[ 0.707325] pci 0000:00:1e.0: bridge window [mem 0xffc00000-0xffdfffff window] (subtractive decode)
[ 0.707357] pci_bus 0000:04: extended config space not accessible
[ 0.707384] pci_bus 0000:04: busn_res: [bus 04] end can not be updated to 07
[ 0.707392] pci 0000:00:1e.0: bridge has subordinate 04 but max busn 07
[ 0.723221] ACPI: PCI: Interrupt link LNKA configured for IRQ 3
[ 0.723348] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[ 0.723473] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[ 0.723984] ACPI: PCI: Interrupt link LNKD configured for IRQ 10
[ 0.724110] ACPI: PCI: Interrupt link LNKE configured for IRQ 10
[ 0.724236] ACPI: PCI: Interrupt link LNKF configured for IRQ 3
[ 0.724361] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[ 0.724471] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.724474] ACPI: PCI: Interrupt link LNKH disabled
[ 0.727538] ACPI: EC: interrupt unblocked
[ 0.727540] ACPI: EC: event unblocked
[ 0.727546] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
[ 0.727549] ACPI: EC: GPE=0x11
[ 0.727551] ACPI: \_SB_.PCI0.ISAB.ECDV: Boot DSDT EC initialization complete
[ 0.727554] ACPI: \_SB_.PCI0.ISAB.ECDV: EC: Used to handle transactions and events
[ 0.727728] iommu: Default domain type: Translated
[ 0.727728] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.728141] SCSI subsystem initialized
[ 0.728153] libata version 3.00 loaded.
[ 0.728153] ACPI: bus type USB registered
[ 0.728153] usbcore: registered new interface driver usbfs
[ 0.728153] usbcore: registered new interface driver hub
[ 0.728153] usbcore: registered new device driver usb
[ 0.728153] pps_core: LinuxPPS API ver. 1 registered
[ 0.728153] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.728153] PTP clock support registered
[ 0.728153] EDAC MC: Ver: 3.0.0
[ 0.729332] NetLabel: Initializing
[ 0.729334] NetLabel: domain hash size = 128
[ 0.729336] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.729378] NetLabel: unlabeled traffic allowed by default
[ 0.729408] mctp: management component transport protocol core
[ 0.729408] NET: Registered PF_MCTP protocol family
[ 0.729408] PCI: Using ACPI for IRQ routing
[ 0.732213] PCI: pci_cache_line_size set to 64 bytes
[ 0.732352] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.732355] e820: reserve RAM buffer [mem 0xdf451c00-0xdfffffff]
[ 0.732378] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[ 0.732378] pci 0000:01:00.0: vgaarb: bridge control possible
[ 0.732378] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.732378] vgaarb: loaded
[ 0.732378] hpet: 4 channels of 0 reserved for per-cpu timers
[ 0.732378] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[ 0.732378] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[ 0.734995] clocksource: Switched to clocksource tsc-early
[ 0.736698] VFS: Disk quotas dquot_6.6.0
[ 0.736741] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.737007] AppArmor: AppArmor Filesystem Enabled
[ 0.737031] pnp: PnP ACPI init
[ 0.737294] system 00:03: [io 0x0c80-0x0caf] has been reserved
[ 0.737299] system 00:03: [io 0x0cc0-0x0cff] could not be reserved
[ 0.737410] system 00:04: [mem 0xfed00000-0xfed003ff] has been reserved
[ 0.756176] system 00:06: [io 0x0900-0x092f] has been reserved
[ 0.756184] system 00:06: [io 0x0931-0x0933] has been reserved
[ 0.756187] system 00:06: [io 0x0935-0x097f] has been reserved
[ 0.756190] system 00:06: [io 0x04d0-0x04d1] has been reserved
[ 0.756193] system 00:06: [io 0x1000-0x1005] has been reserved
[ 0.756196] system 00:06: [io 0x1008-0x100f] has been reserved
[ 0.756275] system 00:07: [io 0xf400-0xf4fe] has been reserved
[ 0.756278] system 00:07: [io 0x1006-0x1007] has been reserved
[ 0.756281] system 00:07: [io 0x100a-0x1059] could not be reserved
[ 0.756284] system 00:07: [io 0x1080-0x10bf] has been reserved
[ 0.756287] system 00:07: [io 0x1100-0x111f] has been reserved
[ 0.756290] system 00:07: [io 0x1010-0x102f] has been reserved
[ 0.756292] system 00:07: [io 0x0809] has been reserved
[ 0.778093] pnp 00:08: disabling [mem 0x000c0000-0x000cffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0x000c0000-0x000dffff]
[ 0.778137] system 00:08: [mem 0x00000000-0x0009efff] could not be reserved
[ 0.778141] system 00:08: [mem 0x0009f000-0x0009ffff] could not be reserved
[ 0.778144] system 00:08: [mem 0x000e0000-0x000fffff] could not be reserved
[ 0.778147] system 00:08: [mem 0x00100000-0xdf451bff] could not be reserved
[ 0.778150] system 00:08: [mem 0xdf451c00-0xdfefffff] has been reserved
[ 0.778153] system 00:08: [mem 0xdff00000-0xdfffffff] has been reserved
[ 0.778156] system 00:08: [mem 0xffe00000-0xffffffff] could not be reserved
[ 0.778158] system 00:08: [mem 0xffa00000-0xffbfffff] has been reserved
[ 0.778161] system 00:08: [mem 0xfec00000-0xfec0ffff] could not be reserved
[ 0.778164] system 00:08: [mem 0xfee00000-0xfee0ffff] has been reserved
[ 0.778167] system 00:08: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.778170] system 00:08: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.778173] system 00:08: [mem 0xfeda0000-0xfeda3fff] has been reserved
[ 0.778175] system 00:08: [mem 0xfeda4000-0xfeda4fff] has been reserved
[ 0.778181] system 00:08: [mem 0xfeda5000-0xfeda5fff] has been reserved
[ 0.778184] system 00:08: [mem 0xfeda6000-0xfeda6fff] has been reserved
[ 0.778187] system 00:08: [mem 0xfed1c800-0xfed1cfff] has been reserved
[ 0.778190] system 00:08: [mem 0xfed18000-0xfed1bfff] has been reserved
[ 0.778193] system 00:08: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.780736] pnp: PnP ACPI: found 9 devices
[ 0.788079] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.788313] NET: Registered PF_INET protocol family
[ 0.788483] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.811264] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 0.811350] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.811428] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.811629] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 0.811795] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.811980] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[ 0.812046] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.812074] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.812195] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.812208] NET: Registered PF_XDP protocol family
[ 0.812226] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 0b] add_size 1000
[ 0.812232] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0b] add_size 200000 add_align 100000
[ 0.812237] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 0b] add_size 200000 add_align 100000
[ 0.812241] pci 0000:00:1c.1: bridge window [io 0x1000-0x0fff] to [bus 0c] add_size 1000
[ 0.812244] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0c] add_size 200000 add_align 100000
[ 0.812248] pci 0000:00:1c.2: bridge window [io 0x1000-0x0fff] to [bus 0d] add_size 1000
[ 0.812251] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 0d] add_size 200000 add_align 100000
[ 0.812254] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff] to [bus 0d] add_size 200000 add_align 100000
[ 0.812267] pci 0000:00:1e.0: bridge window [io 0x1000-0x0fff] to [bus 03-04] add_size 1000
[ 0.812286] pci 0000:00:1c.0: bridge window [mem 0xf0200000-0xf03fffff]: assigned
[ 0.812293] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf05fffff 64bit pref]: assigned
[ 0.812298] pci 0000:00:1c.1: bridge window [mem 0xf0600000-0xf07fffff 64bit pref]: assigned
[ 0.812301] pci 0000:00:1c.2: bridge window [mem 0xf0800000-0xf09fffff]: assigned
[ 0.812307] pci 0000:00:1c.2: bridge window [mem 0xf0a00000-0xf0bfffff 64bit pref]: assigned
[ 0.812311] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]: assigned
[ 0.812315] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]: assigned
[ 0.812318] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff]: assigned
[ 0.812321] pci 0000:00:1e.0: bridge window [io 0x5000-0x5fff]: assigned
[ 0.812327] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.812330] pci 0000:00:01.0: bridge window [io 0xd000-0xdfff]
[ 0.812334] pci 0000:00:01.0: bridge window [mem 0xf2000000-0xf6efffff]
[ 0.812337] pci 0000:00:01.0: bridge window [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.812342] pci 0000:00:1c.0: PCI bridge to [bus 0b]
[ 0.812346] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
[ 0.812352] pci 0000:00:1c.0: bridge window [mem 0xf0200000-0xf03fffff]
[ 0.812357] pci 0000:00:1c.0: bridge window [mem 0xf0400000-0xf05fffff 64bit pref]
[ 0.812365] pci 0000:00:1c.1: PCI bridge to [bus 0c]
[ 0.812368] pci 0000:00:1c.1: bridge window [io 0x3000-0x3fff]
[ 0.812375] pci 0000:00:1c.1: bridge window [mem 0xf1f00000-0xf1ffffff]
[ 0.812380] pci 0000:00:1c.1: bridge window [mem 0xf0600000-0xf07fffff 64bit pref]
[ 0.812387] pci 0000:00:1c.2: PCI bridge to [bus 0d]
[ 0.812391] pci 0000:00:1c.2: bridge window [io 0x4000-0x4fff]
[ 0.812397] pci 0000:00:1c.2: bridge window [mem 0xf0800000-0xf09fffff]
[ 0.812402] pci 0000:00:1c.2: bridge window [mem 0xf0a00000-0xf0bfffff 64bit pref]
[ 0.812410] pci 0000:00:1c.3: PCI bridge to [bus 0e-0f]
[ 0.812414] pci 0000:00:1c.3: bridge window [io 0xc000-0xcfff]
[ 0.812420] pci 0000:00:1c.3: bridge window [mem 0xf1c00000-0xf1efffff]
[ 0.812425] pci 0000:00:1c.3: bridge window [mem 0xf0000000-0xf01fffff 64bit pref]
[ 0.812437] pci 0000:03:01.0: BAR 1 [mem 0xfc000000-0xfc000fff]: assigned
[ 0.812447] pci 0000:03:01.0: CardBus bridge window 1 [mem size 0x04000000 pref]: can't assign; no space
[ 0.812451] pci 0000:03:01.0: CardBus bridge window 1 [mem size 0x04000000 pref]: failed to assign
[ 0.812457] pci 0000:03:01.0: unknown [mem size 0x04000000]: can't assign; no space
[ 0.812460] pci 0000:03:01.0: unknown [mem size 0x04000000]: failed to assign
[ 0.812462] pci 0000:03:01.0: CardBus bridge window 1 [io 0x5000-0x50ff]: assigned
[ 0.812465] pci 0000:03:01.0: CardBus bridge window 0 [io 0x5400-0x54ff]: assigned
[ 0.812470] pci 0000:03:01.0: BAR 1 [mem 0xfc000000-0xfc000fff]: assigned
[ 0.812480] pci 0000:03:01.0: unknown [mem size 0x04000000]: can't assign; no space
[ 0.812482] pci 0000:03:01.0: unknown [mem size 0x04000000]: failed to assign
[ 0.812489] pci 0000:03:01.0: CardBus bridge window 1 [mem size 0x04000000 pref]: can't assign; no space
[ 0.812492] pci 0000:03:01.0: CardBus bridge window 1 [mem size 0x04000000 pref]: failed to assign
[ 0.812494] pci 0000:03:01.0: CardBus bridge to [bus 04]
[ 0.812497] pci 0000:03:01.0: bridge window [io 0x5000-0x50ff]
[ 0.812502] pci 0000:03:01.0: bridge window [io 0x5400-0x54ff]
[ 0.812507] pci 0000:00:1e.0: PCI bridge to [bus 03-04]
[ 0.812511] pci 0000:00:1e.0: bridge window [io 0x5000-0x5fff]
[ 0.812517] pci 0000:00:1e.0: bridge window [mem 0xf1b00000-0xf1bfffff]
[ 0.812528] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.812531] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.812533] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.812536] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
[ 0.812538] pci_bus 0000:00: resource 8 [mem 0xe0000000-0xf7ffffff window]
[ 0.812541] pci_bus 0000:00: resource 9 [mem 0xfc000000-0xfebfffff window]
[ 0.812543] pci_bus 0000:00: resource 10 [mem 0xfec10000-0xfecfffff window]
[ 0.812546] pci_bus 0000:00: resource 11 [mem 0xfed1c000-0xfed1ffff window]
[ 0.812548] pci_bus 0000:00: resource 12 [mem 0xfed90000-0xfed9ffff window]
[ 0.812550] pci_bus 0000:00: resource 13 [mem 0xfed40000-0xfed44fff window]
[ 0.812553] pci_bus 0000:00: resource 14 [mem 0xfeda7000-0xfedfffff window]
[ 0.812555] pci_bus 0000:00: resource 15 [mem 0xfee10000-0xff9fffff window]
[ 0.812558] pci_bus 0000:00: resource 16 [mem 0xffc00000-0xffdfffff window]
[ 0.812560] pci_bus 0000:01: resource 0 [io 0xd000-0xdfff]
[ 0.812563] pci_bus 0000:01: resource 1 [mem 0xf2000000-0xf6efffff]
[ 0.812565] pci_bus 0000:01: resource 2 [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.812568] pci_bus 0000:0b: resource 0 [io 0x2000-0x2fff]
[ 0.812570] pci_bus 0000:0b: resource 1 [mem 0xf0200000-0xf03fffff]
[ 0.812572] pci_bus 0000:0b: resource 2 [mem 0xf0400000-0xf05fffff 64bit pref]
[ 0.812575] pci_bus 0000:0c: resource 0 [io 0x3000-0x3fff]
[ 0.812577] pci_bus 0000:0c: resource 1 [mem 0xf1f00000-0xf1ffffff]
[ 0.812580] pci_bus 0000:0c: resource 2 [mem 0xf0600000-0xf07fffff 64bit pref]
[ 0.812583] pci_bus 0000:0d: resource 0 [io 0x4000-0x4fff]
[ 0.812585] pci_bus 0000:0d: resource 1 [mem 0xf0800000-0xf09fffff]
[ 0.812587] pci_bus 0000:0d: resource 2 [mem 0xf0a00000-0xf0bfffff 64bit pref]
[ 0.812590] pci_bus 0000:0e: resource 0 [io 0xc000-0xcfff]
[ 0.812592] pci_bus 0000:0e: resource 1 [mem 0xf1c00000-0xf1efffff]
[ 0.812594] pci_bus 0000:0e: resource 2 [mem 0xf0000000-0xf01fffff 64bit pref]
[ 0.812597] pci_bus 0000:03: resource 0 [io 0x5000-0x5fff]
[ 0.812599] pci_bus 0000:03: resource 1 [mem 0xf1b00000-0xf1bfffff]
[ 0.812601] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7 window]
[ 0.812604] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff window]
[ 0.812606] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.812608] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff window]
[ 0.812611] pci_bus 0000:03: resource 8 [mem 0xe0000000-0xf7ffffff window]
[ 0.812613] pci_bus 0000:03: resource 9 [mem 0xfc000000-0xfebfffff window]
[ 0.812615] pci_bus 0000:03: resource 10 [mem 0xfec10000-0xfecfffff window]
[ 0.812618] pci_bus 0000:03: resource 11 [mem 0xfed1c000-0xfed1ffff window]
[ 0.812620] pci_bus 0000:03: resource 12 [mem 0xfed90000-0xfed9ffff window]
[ 0.812622] pci_bus 0000:03: resource 13 [mem 0xfed40000-0xfed44fff window]
[ 0.812625] pci_bus 0000:03: resource 14 [mem 0xfeda7000-0xfedfffff window]
[ 0.812627] pci_bus 0000:03: resource 15 [mem 0xfee10000-0xff9fffff window]
[ 0.812630] pci_bus 0000:03: resource 16 [mem 0xffc00000-0xffdfffff window]
[ 0.812632] pci_bus 0000:04: resource 0 [io 0x5000-0x50ff]
[ 0.812635] pci_bus 0000:04: resource 1 [io 0x5400-0x54ff]
[ 0.815480] PCI: CLS 64 bytes, default 64
[ 0.815519] DMAR: No ATSR found
[ 0.815521] DMAR: No SATC found
[ 0.815525] DMAR: dmar0: Using Register based invalidation
[ 0.815534] DMAR: dmar1: Using Register based invalidation
[ 0.815596] Trying to unpack rootfs image as initramfs...
[ 0.839116] pci 0000:00:1b.0: Adding to iommu group 0
[ 0.839297] pci 0000:00:00.0: Adding to iommu group 1
[ 0.839319] pci 0000:00:01.0: Adding to iommu group 2
[ 0.839345] pci 0000:00:19.0: Adding to iommu group 3
[ 0.839401] pci 0000:00:1a.0: Adding to iommu group 4
[ 0.839420] pci 0000:00:1a.1: Adding to iommu group 4
[ 0.839439] pci 0000:00:1a.2: Adding to iommu group 4
[ 0.839457] pci 0000:00:1a.7: Adding to iommu group 4
[ 0.839511] pci 0000:00:1c.0: Adding to iommu group 5
[ 0.839537] pci 0000:00:1c.1: Adding to iommu group 5
[ 0.839563] pci 0000:00:1c.2: Adding to iommu group 5
[ 0.839583] pci 0000:00:1c.3: Adding to iommu group 5
[ 0.839636] pci 0000:00:1d.0: Adding to iommu group 6
[ 0.839657] pci 0000:00:1d.1: Adding to iommu group 6
[ 0.839678] pci 0000:00:1d.2: Adding to iommu group 6
[ 0.839703] pci 0000:00:1d.7: Adding to iommu group 6
[ 0.839724] pci 0000:00:1e.0: Adding to iommu group 7
[ 0.839767] pci 0000:00:1f.0: Adding to iommu group 8
[ 0.839790] pci 0000:00:1f.2: Adding to iommu group 8
[ 0.839812] pci 0000:00:1f.3: Adding to iommu group 8
[ 0.839821] pci 0000:01:00.0: Adding to iommu group 2
[ 0.839834] pci 0000:0c:00.0: Adding to iommu group 5
[ 0.839843] pci 0000:03:01.0: Adding to iommu group 7
[ 0.839850] pci 0000:03:01.1: Adding to iommu group 7
[ 0.839858] pci 0000:03:01.2: Adding to iommu group 7
[ 0.841498] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.841506] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.841508] software IO TLB: mapped [mem 0x00000000db451000-0x00000000df451000] (64MB)
[ 0.842529] Initialise system trusted keyrings
[ 0.842550] Key type blacklist registered
[ 0.842627] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[ 0.842649] zbud: loaded
[ 0.844855] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.845815] fuse: init (API version 7.40)
[ 0.846153] integrity: Platform Keyring initialized
[ 0.846168] integrity: Machine keyring initialized
[ 0.865692] Key type asymmetric registered
[ 0.865704] Asymmetric key parser 'x509' registered
[ 0.865823] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.866002] io scheduler mq-deadline registered
[ 0.867640] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.867844] Monitor-Mwait will be used to enter C-1 state
[ 0.867860] Monitor-Mwait will be used to enter C-2 state
[ 0.867871] Monitor-Mwait will be used to enter C-3 state
[ 0.867879] ACPI: \_PR_.CPU0: Found 3 idle states
[ 0.868301] ACPI: AC: AC Adapter [AC] (on-line)
[ 0.868401] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
[ 0.868466] ACPI: button: Lid Switch [LID]
[ 0.868523] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.868576] ACPI: button: Power Button [PBTN]
[ 0.868631] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[ 0.868660] ACPI: button: Sleep Button [SBTN]
[ 0.879106] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.879112] ACPI: thermal: Thermal Zone [THM] (57 C)
[ 0.879617] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.885527] Linux agpgart interface v0.103
[ 0.888968] tpm_tis 00:05: 1.2 TPM (device-id 0x2001, rev-id 48)
[ 0.903924] tpm tpm0: Operation Timed out
[ 0.907925] tpm tpm0: Operation Timed out
[ 0.907932] tpm tpm0: Adjusting TPM timeout parameters.
[ 0.949634] ACPI: battery: Slot [BAT0] (battery present)
[ 0.949740] ACPI: battery: Slot [BAT1] (battery absent)
[ 1.090013] Freeing initrd memory: 71108K
[ 1.153699] clocksource: timekeeping watchdog on CPU1: Marking clocksource 'tsc-early' as unstable because the skew is too large:
[ 1.153704] clocksource: 'hpet' wd_nsec: 497377424 wd_now: e2062e wd_last: 755bab mask: ffffffff
[ 1.153709] clocksource: 'tsc-early' cs_nsec: 412166373 cs_now: 71206e0e3 cs_last: 6d3f287c2 mask: ffffffffffffffff
[ 1.153713] clocksource: Clocksource 'tsc-early' skewed -85211051 ns (-85 ms) over watchdog 'hpet' interval of 497377424 ns (497 ms)
[ 1.153718] clocksource: 'tsc-early' is current clocksource.
[ 1.153721] tsc: Marking TSC unstable due to clocksource watchdog
[ 1.153931] clocksource: Switched to clocksource hpet
[ 2.907872] tpm tpm0: tpm_try_transmit: send(): error -62
[ 2.907883] tpm tpm0: TPM self test failed
[ 2.907896] tpm_tis 00:05: probe with driver tpm_tis failed with error -62
[ 2.911081] loop: module loaded
[ 2.911509] ACPI: bus type drm_connector registered
[ 2.911836] tun: Universal TUN/TAP device driver, 1.6
[ 2.911926] PPP generic driver version 2.4.2
[ 2.912506] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[ 2.912516] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 2.912527] uhci_hcd 0000:00:1a.0: detected 2 ports
[ 2.912565] uhci_hcd 0000:00:1a.0: irq 20, io port 0x00006f60
[ 2.912732] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.11
[ 2.912736] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.912739] usb usb1: Product: UHCI Host Controller
[ 2.912741] usb usb1: Manufacturer: Linux 6.11.0-21-generic uhci_hcd
[ 2.912743] usb usb1: SerialNumber: 0000:00:1a.0
[ 2.912958] hub 1-0:1.0: USB hub found
[ 2.912972] hub 1-0:1.0: 2 ports detected
[ 2.913195] ehci-pci 0000:00:1d.7: EHCI Host Controller
[ 2.913203] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
[ 2.913218] ehci-pci 0000:00:1d.7: debug port 1
[ 2.917176] ehci-pci 0000:00:1d.7: irq 20, io mem 0xfed1c000
[ 2.924067] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[ 2.924167] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[ 2.924173] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.924182] usb usb2: Product: EHCI Host Controller
[ 2.924184] usb usb2: Manufacturer: Linux 6.11.0-21-generic ehci_hcd
[ 2.924186] usb usb2: SerialNumber: 0000:00:1d.7
[ 2.924384] hub 2-0:1.0: USB hub found
[ 2.924403] hub 2-0:1.0: 6 ports detected
[ 2.946111] ehci-pci 0000:00:1a.7: EHCI Host Controller
[ 2.946119] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 3
[ 2.946132] ehci-pci 0000:00:1a.7: debug port 1
[ 2.950083] ehci-pci 0000:00:1a.7: irq 22, io mem 0xfed1c400
[ 2.957898] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[ 2.958013] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.11
[ 2.958017] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.958020] usb usb3: Product: EHCI Host Controller
[ 2.958022] usb usb3: Manufacturer: Linux 6.11.0-21-generic ehci_hcd
[ 2.958024] usb usb3: SerialNumber: 0000:00:1a.7
[ 2.958190] hub 3-0:1.0: USB hub found
[ 2.958201] hub 3-0:1.0: 6 ports detected
[ 2.979987] hub 1-0:1.0: USB hub found
[ 2.980004] hub 1-0:1.0: 2 ports detected
[ 2.980177] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[ 2.980185] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[ 2.980194] uhci_hcd 0000:00:1a.1: detected 2 ports
[ 2.980221] uhci_hcd 0000:00:1a.1: irq 21, io port 0x00006f80
[ 2.980315] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.11
[ 2.980319] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.980322] usb usb4: Product: UHCI Host Controller
[ 2.980324] usb usb4: Manufacturer: Linux 6.11.0-21-generic uhci_hcd
[ 2.980326] usb usb4: SerialNumber: 0000:00:1a.1
[ 2.980499] hub 4-0:1.0: USB hub found
[ 2.980510] hub 4-0:1.0: 2 ports detected
[ 2.980887] uhci_hcd 0000:00:1a.2: UHCI Host Controller
[ 2.980895] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
[ 2.980903] uhci_hcd 0000:00:1a.2: detected 2 ports
[ 2.980924] uhci_hcd 0000:00:1a.2: irq 22, io port 0x00006fa0
[ 2.981001] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.11
[ 2.981005] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.981007] usb usb5: Product: UHCI Host Controller
[ 2.981009] usb usb5: Manufacturer: Linux 6.11.0-21-generic uhci_hcd
[ 2.981012] usb usb5: SerialNumber: 0000:00:1a.2
[ 2.981175] hub 5-0:1.0: USB hub found
[ 2.981186] hub 5-0:1.0: 2 ports detected
[ 2.981575] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[ 2.981582] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
[ 2.981590] uhci_hcd 0000:00:1d.0: detected 2 ports
[ 2.981611] uhci_hcd 0000:00:1d.0: irq 20, io port 0x00006f00
[ 2.981688] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.11
[ 2.981692] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.981695] usb usb6: Product: UHCI Host Controller
[ 2.981697] usb usb6: Manufacturer: Linux 6.11.0-21-generic uhci_hcd
[ 2.981699] usb usb6: SerialNumber: 0000:00:1d.0
[ 2.981864] hub 6-0:1.0: USB hub found
[ 2.981875] hub 6-0:1.0: 2 ports detected
[ 2.982224] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[ 2.982237] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
[ 2.982245] uhci_hcd 0000:00:1d.1: detected 2 ports
[ 2.982266] uhci_hcd 0000:00:1d.1: irq 21, io port 0x00006f20
[ 2.982373] usb usb7: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.11
[ 2.982378] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.982381] usb usb7: Product: UHCI Host Controller
[ 2.982383] usb usb7: Manufacturer: Linux 6.11.0-21-generic uhci_hcd
[ 2.982385] usb usb7: SerialNumber: 0000:00:1d.1
[ 2.982550] hub 7-0:1.0: USB hub found
[ 2.982561] hub 7-0:1.0: 2 ports detected
[ 2.982937] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[ 2.982950] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
[ 2.982960] uhci_hcd 0000:00:1d.2: detected 2 ports
[ 2.982984] uhci_hcd 0000:00:1d.2: irq 22, io port 0x00006f40
[ 2.983066] usb usb8: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.11
[ 2.983070] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.983072] usb usb8: Product: UHCI Host Controller
[ 2.983074] usb usb8: Manufacturer: Linux 6.11.0-21-generic uhci_hcd
[ 2.983077] usb usb8: SerialNumber: 0000:00:1d.2
[ 2.983232] hub 8-0:1.0: USB hub found
[ 2.983243] hub 8-0:1.0: 2 ports detected
[ 2.983555] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 2.984146] i8042: Warning: Keylock active
[ 2.987798] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 2.987806] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 2.988017] mousedev: PS/2 mouse device common for all mice
[ 2.988243] rtc_cmos 00:02: RTC can wake from S4
[ 2.988579] rtc_cmos 00:02: registered as rtc0
[ 2.988620] rtc_cmos 00:02: setting system clock to 2025-04-06T11:29:24 UTC (1743938964)
[ 2.988668] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 2.988681] i2c_dev: i2c /dev entries driver
[ 2.988772] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 2.988816] device-mapper: uevent: version 1.0.3
[ 2.988931] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@lists.linux.dev
[ 2.988969] platform eisa.0: Probing EISA bus 0
[ 2.988973] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 2.988975] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 2.988978] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 2.988980] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 2.988982] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 2.988984] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 2.988986] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 2.988988] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 2.988990] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 2.988992] platform eisa.0: EISA: Detected 0 cards
[ 2.988996] intel_pstate: CPU model not supported
[ 2.989038] ledtrig-cpu: registered to indicate activity on CPUs
[ 2.989323] [drm] Initialized simpledrm 1.0.0 for simple-framebuffer.0 on minor 0
[ 2.991482] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 2.995488] fbcon: Deferring console take-over
[ 2.995498] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 2.995700] drop_monitor: Initializing network drop monitor service
[ 2.996414] NET: Registered PF_INET6 protocol family
[ 3.007408] Segment Routing with IPv6
[ 3.007440] In-situ OAM (IOAM) with IPv6
[ 3.007482] NET: Registered PF_PACKET protocol family
[ 3.007561] Key type dns_resolver registered
[ 3.007919] microcode: Current revision: 0x00000610
[ 3.008022] IPI shorthand broadcast: enabled
[ 3.011609] registered taskstats version 1
[ 3.011929] Loading compiled-in X.509 certificates
[ 3.013150] Loaded X.509 cert 'Build time autogenerated kernel key: a1af063487eb50d2054335a286023ee134aee0cb'
[ 3.014245] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 3.015328] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 3.015332] blacklist: Loading compiled-in revocation X.509 certificates
[ 3.015363] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 3.015394] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[ 3.015430] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[ 3.015471] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[ 3.015502] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[ 3.015533] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[ 3.015562] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[ 3.015608] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[ 3.023545] Demotion targets for Node 0: null
[ 3.023730] Key type .fscrypt registered
[ 3.023733] Key type fscrypt-provisioning registered
[ 3.046582] Key type encrypted registered
[ 3.046590] AppArmor: AppArmor sha256 policy hashing enabled
[ 3.046606] ima: No TPM chip found, activating TPM-bypass!
[ 3.046615] Loading compiled-in module X.509 certificates
[ 3.047753] Loaded X.509 cert 'Build time autogenerated kernel key: a1af063487eb50d2054335a286023ee134aee0cb'
[ 3.047757] ima: Allocated hash algorithm: sha256
[ 3.047774] ima: No architecture policies found
[ 3.047796] evm: Initialising EVM extended attributes:
[ 3.047798] evm: security.selinux
[ 3.047799] evm: security.SMACK64
[ 3.047801] evm: security.SMACK64EXEC
[ 3.047802] evm: security.SMACK64TRANSMUTE
[ 3.047804] evm: security.SMACK64MMAP
[ 3.047805] evm: security.apparmor
[ 3.047806] evm: security.ima
[ 3.047807] evm: security.capability
[ 3.047808] evm: HMAC attrs: 0x1
[ 3.048341] PM: Magic number: 5:529:478
[ 3.048353] rtc rtc0: hash matches
[ 3.056224] RAS: Correctable Errors collector initialized.
[ 3.075549] Unstable clock detected, switching default tracing clock to "global"
If you want to keep using the local clock, then add:
"trace_clock=local"
on the kernel command line
[ 3.075679] clk: Disabling unused clocks
[ 3.075683] PM: genpd: Disabling unused power domains
[ 3.080345] Freeing unused decrypted memory: 2028K
[ 3.081937] Freeing unused kernel image (initmem) memory: 5096K
[ 3.082112] Write protecting the kernel read-only data: 38912k
[ 3.083160] Freeing unused kernel image (rodata/data gap) memory: 1480K
[ 3.141187] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 3.141199] x86/mm: Checking user space page tables
[ 3.197565] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 3.197612] Run /init as init process
[ 3.197615] with arguments:
[ 3.197618] /init
[ 3.197619] splash
[ 3.197621] with environment:
[ 3.197622] HOME=/
[ 3.197623] TERM=linux
[ 3.197625] BOOT_IMAGE=/vmlinuz-6.11.0-21-generic
[ 3.425468] wmi_bus wmi_bus-PNP0C14:00: [Firmware Bug]: WQBC data block query control method not found
[ 3.440869] usb 5-1: new full-speed USB device number 2 using uhci_hcd
[ 3.456153] ahci 0000:00:1f.2: version 3.0
[ 3.475306] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 3.475356] ahci 0000:00:1f.2: AHCI vers 0001.0200, 32 command slots, 3 Gbps, SATA mode
[ 3.475360] ahci 0000:00:1f.2: 4/4 ports implemented (port mask 0x33)
[ 3.475363] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems sxs
[ 3.475529] ACPI: video: Video Device [VID] (multi-head: yes rom: no post: no)
[ 3.490479] sdhci: Secure Digital Host Controller Interface driver
[ 3.490486] sdhci: Copyright(c) Pierre Ossman
[ 3.519574] scsi host0: ahci
[ 3.520991] scsi host1: ahci
[ 3.522870] scsi host2: ahci
[ 3.524204] scsi host3: ahci
[ 3.534137] scsi host4: ahci
[ 3.535997] scsi host5: ahci
[ 3.536083] ata1: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1c900 irq 26 lpm-pol 3
[ 3.536088] ata2: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1c980 irq 26 lpm-pol 0
[ 3.536090] ata3: DUMMY
[ 3.536092] ata4: DUMMY
[ 3.536094] ata5: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1cb00 irq 26 lpm-pol 0
[ 3.536097] ata6: SATA max UDMA/133 abar m2048@0xfed1c800 port 0xfed1cb80 irq 26 lpm-pol 0
[ 3.544598] sdhci-pci 0000:03:01.2: SDHCI controller found [1180:0822] (rev 21)
[ 3.550092] e1000e: Intel(R) PRO/1000 Network Driver
[ 3.550098] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 3.581631] mmc0 bounce up to 128 segments into one, max segment size 65536 bytes
[ 3.581790] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 3.585895] mmc0: SDHCI controller on PCI [0000:03:01.2] using DMA
[ 3.624885] usb 5-1: New USB device found, idVendor=0a5c, idProduct=5800, bcdDevice= 1.01
[ 3.624892] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 3.624895] usb 5-1: Product: 5880
[ 3.624897] usb 5-1: Manufacturer: Broadcom Corp
[ 3.624899] usb 5-1: SerialNumber: 0123456789ABCD
[ 3.636927] firewire_ohci 0000:03:01.1: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
[ 3.671926] usb 5-1: config 0 descriptor??
[ 3.721002] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/device:35/LNXVIDEO:00/input/input6
[ 3.743265] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 00:21:70:a6:cd:bb
[ 3.743271] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[ 3.743295] e1000e 0000:00:19.0 eth0: MAC: 7, PHY: 8, PBA No: 5002FF-0FF
[ 4.006986] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 4.018439] ata1.00: ATA-9: INTEL SSDSC2CT240A4, 335u, max UDMA/133
[ 4.018913] ata1.00: 468862128 sectors, multi 8: LBA48 NCQ (depth 32), AA
[ 4.028795] ata1.00: configured for UDMA/133
[ 4.029738] scsi 0:0:0:0: Direct-Access ATA INTEL SSDSC2CT24 335u PQ: 0 ANSI: 5
[ 4.032127] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 4.032252] sd 0:0:0:0: [sda] 468862128 512-byte logical blocks: (240 GB/224 GiB)
[ 4.032295] sd 0:0:0:0: [sda] Write Protect is off
[ 4.032305] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 4.032370] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 4.032641] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[ 4.052952] sda: sda1 sda2 sda3
[ 4.053333] sd 0:0:0:0: [sda] Attached SCSI disk
[ 4.143490] firewire_core 0000:03:01.1: created device fw0: GUID 354fc0003db00090, S400
[ 4.495206] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 4.499253] ata2.00: ATAPI: PLDS DVD+/-RW DU-8A2S, 4D13, max UDMA/100
[ 4.505625] ata2.00: configured for UDMA/100
[ 4.511316] scsi 1:0:0:0: CD-ROM PLDS DVD+-RW DU-8A2S 4D13 PQ: 0 ANSI: 5
[ 4.550650] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/6x writer dvd-ram cd/rw xa/form2 cdda pop-up
[ 4.550672] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 4.572048] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 4.572873] sr 1:0:0:0: Attached scsi generic sg1 type 5
[ 4.594910] input: AlpsPS/2 ALPS DualPoint Stick as /devices/platform/i8042/serio1/input/input7
[ 4.613900] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input5
[ 4.884412] ata5: SATA link down (SStatus 0 SControl 300)
[ 5.190312] ata6: SATA link down (SStatus 0 SControl 300)
[ 5.202533] e1000e 0000:00:19.0 enp0s25: renamed from eth0
[ 5.416881] random: crng init done
[ 6.060606] EXT4-fs (dm-0): mounted filesystem 9863fb50-99a0-48ee-8ded-a9fb58e178fd ro with ordered data mode. Quota mode: none.
[ 6.266096] systemd[1]: Inserted module 'autofs4'
[ 6.291691] systemd[1]: systemd 255.4-1ubuntu8.6 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)
[ 6.291716] systemd[1]: Detected architecture x86-64.
[ 6.294375] systemd[1]: Hostname set to <M4400>.
[ 6.483841] systemd[1]: /etc/systemd/system/teamviewerd.service:9: PIDFile= references a path below legacy directory /var/run/, updating /var/run/teamviewerd.pid → /run/teamviewerd.pid; please update the unit file accordingly.
[ 6.622554] systemd[1]: Queued start job for default target graphical.target.
[ 6.637601] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 6.638256] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 6.638649] systemd[1]: Created slice user.slice - User and Session Slice.
[ 6.638762] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 6.639086] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 6.639130] systemd[1]: Expecting device dev-disk-by\x2duuid-a91eb9ca\x2d9569\x2d4dc9\x2dabb0\x2d6ec1b3fc7dd3.device - /dev/disk/by-uuid/a91eb9ca-9569-4dc9-abb0-6ec1b3fc7dd3...
[ 6.639178] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 6.639232] systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
[ 6.639270] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 6.639305] systemd[1]: Reached target slices.target - Slice Units.
[ 6.639344] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 6.639402] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 6.639558] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[ 6.639730] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[ 6.639934] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 6.640094] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 6.640208] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 6.640376] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 6.640572] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 6.640611] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 6.641169] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 6.641348] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 6.642828] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 6.645009] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 6.652116] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 6.659057] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 6.668115] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 6.668331] systemd[1]: Finished blk-availability.service - Availability of block devices.
[ 6.677162] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 6.681099] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 6.686109] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 6.706989] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 6.711300] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 6.716066] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 6.721931] systemd-journald[278]: Collecting audit messages is disabled.
[ 6.728193] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 6.738729] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 6.761145] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 6.764411] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 6.783246] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 6.783290] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 6.796885] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 6.796999] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 6.824101] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 6.834662] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 6.834898] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 6.835091] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 6.835277] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 6.835699] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 6.847530] systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[ 6.848093] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 6.848372] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 6.852066] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 6.852373] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 6.852892] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 6.853153] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 6.853606] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 6.861949] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 6.862569] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 6.862943] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 6.863018] lp: driver loaded but no devices found
[ 6.863490] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 6.863770] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 6.872347] ppdev: user-space parallel port driver
[ 6.876010] EXT4-fs (dm-0): re-mounted 9863fb50-99a0-48ee-8ded-a9fb58e178fd r/w. Quota mode: none.
[ 6.884975] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 6.888163] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 6.888246] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 6.923938] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 6.940907] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 6.942073] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 6.942306] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 6.959962] systemd[1]: Activating swap swap.img.swap - /swap.img...
[ 6.960738] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 6.960818] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 6.976104] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 6.992021] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 6.992071] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 6.992424] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 6.994904] Adding 3992572k swap on /swap.img. Priority:-2 extents:32 across:4456448k SS
[ 7.001004] systemd[1]: Activated swap swap.img.swap - /swap.img.
[ 7.001264] systemd[1]: Reached target swap.target - Swaps.
[ 7.011500] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
[ 7.017049] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 7.017569] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 7.023109] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 7.043379] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[ 7.044021] systemd[1]: Started systemd-journald.service - Journal Service.
[ 7.109318] loop0: detected capacity change from 0 to 8
[ 7.144642] loop1: detected capacity change from 0 to 151328
[ 7.151478] loop2: detected capacity change from 0 to 151312
[ 7.156687] loop3: detected capacity change from 0 to 528456
[ 7.182413] loop4: detected capacity change from 0 to 22800
[ 7.196380] loop5: detected capacity change from 0 to 1056784
[ 7.206645] loop6: detected capacity change from 0 to 187776
[ 7.235013] loop7: detected capacity change from 0 to 22176
[ 7.237266] loop8: detected capacity change from 0 to 22056
[ 7.239613] loop9: detected capacity change from 0 to 91008
[ 7.260246] loop10: detected capacity change from 0 to 1136
[ 7.261833] loop11: detected capacity change from 0 to 430920
[ 7.283372] loop13: detected capacity change from 0 to 431192
[ 7.283784] loop12: detected capacity change from 0 to 91024
[ 7.302837] systemd-journald[278]: Received client request to flush runtime journal.
[ 7.339287] systemd-journald[278]: /var/log/journal/6a864d2f96164e24a2070418159411b9/system.journal: Journal file uses a different sequence number ID, rotating.
[ 7.339310] systemd-journald[278]: Rotating system journal.
[ 8.505571] yenta_cardbus 0000:03:01.0: CardBus bridge found [1028:0250]
[ 8.505605] yenta_cardbus 0000:03:01.0: CardBus bridge to [bus 04]
[ 8.505608] yenta_cardbus 0000:03:01.0: bridge window [io 0x5000-0x50ff]
[ 8.505614] yenta_cardbus 0000:03:01.0: bridge window [io 0x5400-0x54ff]
[ 8.505619] yenta_cardbus 0000:03:01.0: bridge window [mem 0xf0c00000-0xf0ffffff]
[ 8.505624] yenta_cardbus 0000:03:01.0: bridge window [mem 0xf1000000-0xf13fffff]
[ 8.603376] EXT4-fs (sda2): mounted filesystem a91eb9ca-9569-4dc9-abb0-6ec1b3fc7dd3 r/w with ordered data mode. Quota mode: none.
[ 8.606075] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 8.626739] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 8.629587] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 8.630096] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 8.639805] yenta_cardbus 0000:03:01.0: ISA IRQ mask 0x0cb8, PCI irq 19
[ 8.639818] yenta_cardbus 0000:03:01.0: Socket status: 30000006
[ 8.639825] yenta_cardbus 0000:03:01.0: pcmcia: parent PCI bridge window: [io 0x5000-0x5fff]
[ 8.639829] yenta_cardbus 0000:03:01.0: pcmcia: parent PCI bridge window: [mem 0xf1b00000-0xf1bfffff]
[ 8.639833] pcmcia_socket pcmcia_socket0: cs: memory probe 0xf1b00000-0xf1bfffff:
[ 8.639843] excluding 0xf1bf0000-0xf1bfffff
[ 8.782980] audit: type=1400 audit(1743938970.293:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=501 comm="apparmor_parser"
[ 8.783644] audit: type=1400 audit(1743938970.293:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=502 comm="apparmor_parser"
[ 8.786803] audit: type=1400 audit(1743938970.296:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=503 comm="apparmor_parser"
[ 8.787832] audit: type=1400 audit(1743938970.297:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=504 comm="apparmor_parser"
[ 8.795244] audit: type=1400 audit(1743938970.305:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=507 comm="apparmor_parser"
[ 8.796630] audit: type=1400 audit(1743938970.306:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=506 comm="apparmor_parser"
[ 8.804738] audit: type=1400 audit(1743938970.314:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=510 comm="apparmor_parser"
[ 8.809489] audit: type=1400 audit(1743938970.319:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=511 comm="apparmor_parser"
[ 8.810881] audit: type=1400 audit(1743938970.320:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=509 comm="apparmor_parser"
[ 8.819614] audit: type=1400 audit(1743938970.329:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=513 comm="apparmor_parser"
[ 9.213397] gpio_ich gpio_ich.2.auto: GPIO from 512 to 572
[ 9.527990] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
[ 9.566938] dell-smbios A80593CE-A997-11DA-B012-B622A1EF5492: WMI SMBIOS userspace interface not supported(0), try upgrading to a newer BIOS
[ 9.617044] input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input8
[ 9.758219] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff:
[ 9.758237] excluding 0xc0000-0xcffff 0xe0000-0xfffff
[ 9.758268] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff:
[ 9.758284] excluding 0xa0000000-0xa0ffffff
[ 9.758305] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff:
[ 9.758319] excluding 0x60000000-0x60ffffff
[ 9.879969] dell_laptop: Using i8042 filter function for receiving events
[ 9.918083] Intel(R) Wireless WiFi driver for Linux
[ 9.919672] iwlwifi 0000:0c:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 9.927614] iwlwifi 0000:0c:00.0: Detected crf-id 0xa5a5a5a1, cnv-id 0xa5a5a5a1 wfpm id 0xa5a5a5a1
[ 9.927649] iwlwifi 0000:0c:00.0: PCI dev 4232/1321, rev=0x54, rfid=0xd55555d5
[ 9.927655] iwlwifi 0000:0c:00.0: Detected Intel(R) WiFi Link 5100 AGN
[ 9.936246] intel_powerclamp: No package C-state available
[ 9.947414] iwlwifi 0000:0c:00.0: loaded firmware version 8.83.5.1 build 33692 5000-5.ucode op_mode iwldvm
[ 10.094060] leds dell::kbd_backlight: Setting an LED's brightness failed (-5)
[ 10.639645] iwlwifi 0000:0c:00.0: CONFIG_IWLWIFI_DEBUG disabled
[ 10.639653] iwlwifi 0000:0c:00.0: CONFIG_IWLWIFI_DEBUGFS enabled
[ 10.639655] iwlwifi 0000:0c:00.0: CONFIG_IWLWIFI_DEVICE_TRACING enabled
[ 10.639657] iwlwifi 0000:0c:00.0: Detected Intel(R) WiFi Link 5100 AGN, REV=0x54
[ 10.648917] nouveau 0000:01:00.0: vgaarb: deactivate vga console
[ 10.649091] nouveau 0000:01:00.0: NVIDIA G96 (096e00a1)
[ 10.715057] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[ 10.730551] iwlwifi 0000:0c:00.0 wlp12s0: renamed from wlan0
[ 10.735422] nouveau 0000:01:00.0: bios: version 62.94.8f.00.01
[ 10.779233] nouveau 0000:01:00.0: fb: 512 MiB GDDR3
[ 10.895171] snd_hda_codec_idt hdaudioC0D0: autoconfig for 92HD71B7X: line_outs=1 (0xf/0x0/0x0/0x0/0x0) type:line
[ 10.895180] snd_hda_codec_idt hdaudioC0D0: speaker_outs=1 (0xd/0x0/0x0/0x0/0x0)
[ 10.895183] snd_hda_codec_idt hdaudioC0D0: hp_outs=1 (0xa/0x0/0x0/0x0/0x0)
[ 10.895186] snd_hda_codec_idt hdaudioC0D0: mono: mono_out=0x0
[ 10.895188] snd_hda_codec_idt hdaudioC0D0: inputs:
[ 10.895191] snd_hda_codec_idt hdaudioC0D0: Internal Mic=0x18
[ 10.895193] snd_hda_codec_idt hdaudioC0D0: Dock Mic=0xe
[ 10.895196] snd_hda_codec_idt hdaudioC0D0: Mic=0xb
[ 10.899457] nouveau 0000:01:00.0: DRM: VRAM: 512 MiB
[ 10.899464] nouveau 0000:01:00.0: DRM: GART: 1048576 MiB
[ 10.899468] nouveau 0000:01:00.0: DRM: TMDS table version 2.0
[ 10.903142] nouveau 0000:01:00.0: DRM: MM: using CRYPT for buffer copies
[ 10.914975] input: HDA Intel Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[ 10.970113] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[ 10.970231] input: HDA Intel Dock Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 10.970315] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 10.977608] nouveau 0000:01:00.0: DRM: Skipping nv_backlight registration
[ 11.019836] acpi device:37: registered as cooling_device3
[ 11.023538] [drm] Initialized nouveau 1.4.0 for 0000:01:00.0 on minor 1
[ 11.354891] fbcon: nouveaudrmfb (fb0) is primary device
[ 11.354899] fbcon: Deferring console take-over
[ 11.354905] nouveau 0000:01:00.0: [drm] fb0: nouveaudrmfb frame buffer device
[ 11.592108] dell_wmi: Unknown key with type 0x0011 and code 0xffd0 pressed
[ 11.592118] dell_wmi: Unknown key with type 0x0011 and code 0xffd0 pressed
[ 12.318104] loop14: detected capacity change from 0 to 8
[ 12.687676] NET: Registered PF_QIPCRTR protocol family
[ 12.918955] dell_wmi: Unknown key with type 0x0011 and code 0xffd1 pressed
[ 14.517072] iwlwifi 0000:0c:00.0: Radio type=0x1-0x2-0x0
[ 14.635966] iwlwifi 0000:0c:00.0: Radio type=0x1-0x2-0x0
[ 14.782542] kauditd_printk_skb: 151 callbacks suppressed
[ 14.782548] audit: type=1400 audit(1743938976.292:163): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=1163 comm="cupsd" capability=12 capname="net_admin"
[ 17.924240] wlp12s0: authenticate with 52:e6:36:92:d4:58 (local address=00:21:5d:03:72:7c)
[ 17.924251] wlp12s0: send auth to 52:e6:36:92:d4:58 (try 1/3)
[ 17.999527] wlp12s0: authenticated
[ 18.000025] wlp12s0: associate with 52:e6:36:92:d4:58 (try 1/3)
[ 18.002617] wlp12s0: RX AssocResp from 52:e6:36:92:d4:58 (capab=0x1511 status=0 aid=1)
[ 18.005535] wlp12s0: associated
[ 18.099883] wlp12s0: Limiting TX power to 23 (23 - 0) dBm as advertised by 52:e6:36:92:d4:58
[ 22.496351] fbcon: Taking over console
[ 22.496789] Console: switching to colour frame buffer device 240x75
[ 25.320699] audit: type=1400 audit(1743938986.830:164): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=1331 comm="snap-confine" capability=12 capname="net_admin"
[ 25.320710] audit: type=1400 audit(1743938986.830:165): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=1331 comm="snap-confine" capability=38 capname="perfmon"
[ 25.329464] audit: type=1400 audit(1743938986.839:166): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=1331 comm="snap-confine" capability=4 capname="fsetid"
[ 25.669010] audit: type=1400 audit(1743938987.179:167): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.snapd-desktop-integration" name="/proc/1431/maps" pid=1431 comm="5" requested_mask="r" denied_mask="r" fsuid=108 ouid=0
[ 29.940601] systemd-journald[278]: /var/log/journal/6a864d2f96164e24a2070418159411b9/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[ 30.258664] audit: type=1400 audit(1743938991.768:168): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=1493 comm="snap-confine" capability=12 capname="net_admin"
[ 30.258699] audit: type=1400 audit(1743938991.768:169): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=1493 comm="snap-confine" capability=38 capname="perfmon"
[ 30.266900] audit: type=1400 audit(1743938991.777:170): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.snapd-desktop-integration" name="/proc/1568/maps" pid=1568 comm="5" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 33.568841] audit: type=1400 audit(1743938995.078:171): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.snapd-desktop-integration" name="/proc/1915/maps" pid=1915 comm="5" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 34.363875] audit: type=1326 audit(1743938995.873:172): auid=1000 uid=1000 gid=1000 ses=2 subj=snap.snapd-desktop-integration.snapd-desktop-integration pid=1953 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/253/usr/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=203 compat=0 ip=0x74a6de53b531 code=0x50000
[ 34.363886] audit: type=1326 audit(1743938995.873:173): auid=1000 uid=1000 gid=1000 ses=2 subj=snap.snapd-desktop-integration.snapd-desktop-integration pid=1953 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/253/usr/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=141 compat=0 ip=0x74a6de5ba78b code=0x50000
[ 34.423041] audit: type=1326 audit(1743938995.933:174): auid=1000 uid=1000 gid=1000 ses=2 subj=snap.snapd-desktop-integration.snapd-desktop-integration pid=1953 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/253/usr/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=203 compat=0 ip=0x74a6de53b531 code=0x50000
[ 34.423071] audit: type=1326 audit(1743938995.933:175): auid=1000 uid=1000 gid=1000 ses=2 subj=snap.snapd-desktop-integration.snapd-desktop-integration pid=1953 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/253/usr/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=141 compat=0 ip=0x74a6de5ba78b code=0x50000
[ 35.062081] nouveau 0000:01:00.0: Direct firmware load for nouveau/nv84_xuc00f failed with error -2
[ 35.062094] nouveau 0000:01:00.0: vp: unable to load firmware nouveau/nv84_xuc00f
[ 35.062097] nouveau 0000:01:00.0: vp: init failed, -2
[ 35.062153] nouveau 0000:01:00.0: Direct firmware load for nouveau/nv84_xuc103 failed with error -2
[ 35.062157] nouveau 0000:01:00.0: bsp: unable to load firmware nouveau/nv84_xuc103
[ 35.062159] nouveau 0000:01:00.0: bsp: init failed, -2
[ 36.819931] CE: hpet increased min_delta_ns to 20115 nsec
|