Paste #270097

   
pasted on 12.07.2023 08:33
  • Edit to this paste
  • Print
  • Raw
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
  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
[    0.000000] Linux version 6.1.31-calculate (root@localhost) (gcc (Gentoo 12.2.1_p20230428-r1 p2) 12.2.1 20230428, GNU ld (Gentoo 2.39 p6) 2.39.0) #1 SMP PREEMPT_DYNAMIC Thu Jun  1 09:56:35 UTC 2023
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.1.31-calculate root=UUID=572bb814-7215-4fea-9046-e22471163a3f ro video=3840x1080 rd.retry=40 calculate=video:nvidia splash quiet
[    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: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[    0.000000] signal: max sigframe size: 1776
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009e01fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009e02000-0x0000000009ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000000a20b000-0x000000000affffff] usable
[    0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000000b020000-0x00000000db86bfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000db86c000-0x00000000db9fcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000db9fd000-0x00000000dbb80fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000dbb81000-0x00000000dbf9dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000dbf9e000-0x00000000dcb15fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dcb16000-0x00000000dcba6fff] type 20
[    0.000000] BIOS-e820: [mem 0x00000000dcba7000-0x00000000deffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000041f37ffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi: ACPI 2.0=0xdbf1a000 ACPI=0xdbf1a000 SMBIOS=0xdc9ff000 SMBIOS 3.0=0xdc9fe000 MEMATTR=0xda015018 ESRT=0xda27c898 
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. B450M DS3H V2/B450M DS3H V2, BIOS F1 08/17/2020
[    0.000000] tsc: Fast TSC calibration failed
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] last_pfn = 0x41f380 max_arch_pfn = 0x400000000
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000000] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000000] last_pfn = 0xdf000 max_arch_pfn = 0x400000000
[    0.000000] esrt: Reserving ESRT space from 0x00000000da27c898 to 0x00000000da27c8d0.
[    0.000000] e820: update [mem 0xda27c000-0xda27cfff] usable ==> reserved
[    0.000000] Using GB pages for direct mapping
[    0.000000] Secure boot disabled
[    0.000000] RAMDISK: [mem 0x368bf000-0x37456fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000DBF1A000 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DBF1A0A8 0000CC (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DBF20D80 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000DBF1A208 006B72 (v02 ALASKA A M I    01072009 INTL 20160930)
[    0.000000] ACPI: FACS 0x00000000DBF86E00 000040
[    0.000000] ACPI: APIC 0x00000000DBF20E98 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FPDT 0x00000000DBF20FF8 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FIDT 0x00000000DBF21040 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DBF210E0 0000FC (v02 ALASKA A M I    01072009 AMI  01072009)
[    0.000000] ACPI: SSDT 0x00000000DBF211E0 008C98 (v02 ALASKA A M I    00000002 MSFT 04000000)
[    0.000000] ACPI: SSDT 0x00000000DBF29E78 00384D (v01 ALASKA A M I    00000001 INTL 20160930)
[    0.000000] ACPI: MCFG 0x00000000DBF2D6C8 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.000000] ACPI: SSDT 0x00000000DBF2D708 006829 (v01 ALASKA A M I    00000001 INTL 20160930)
[    0.000000] ACPI: HPET 0x00000000DBF33F38 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.000000] ACPI: SSDT 0x00000000DBF33F70 000024 (v01 ALASKA A M I    00001000 INTL 20160930)
[    0.000000] ACPI: UEFI 0x00000000DBF33F98 000042 (v01 ALASKA A M I    00000002      01000013)
[    0.000000] ACPI: BGRT 0x00000000DBF33FE0 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: IVRS 0x00000000DBF34018 0000D0 (v02 ALASKA A M I    00000001 AMD  00000000)
[    0.000000] ACPI: SSDT 0x00000000DBF340E8 002314 (v01 ALASKA A M I    00000001 AMD  00000001)
[    0.000000] ACPI: CRAT 0x00000000DBF36400 000F50 (v01 ALASKA A M I    00000001 AMD  00000001)
[    0.000000] ACPI: CDIT 0x00000000DBF37350 000029 (v01 ALASKA A M I    00000001 AMD  00000001)
[    0.000000] ACPI: SSDT 0x00000000DBF37380 001EC3 (v01 ALASKA A M I    00000001 INTL 20160930)
[    0.000000] ACPI: SSDT 0x00000000DBF39248 0000BF (v01 ALASKA A M I    00001000 INTL 20160930)
[    0.000000] ACPI: WSMT 0x00000000DBF39308 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000DBF39330 0013F0 (v01 ALASKA A M I    00000001 INTL 20160930)
[    0.000000] ACPI: Reserving FACP table memory at [mem 0xdbf20d80-0xdbf20e93]
[    0.000000] ACPI: Reserving DSDT table memory at [mem 0xdbf1a208-0xdbf20d79]
[    0.000000] ACPI: Reserving FACS table memory at [mem 0xdbf86e00-0xdbf86e3f]
[    0.000000] ACPI: Reserving APIC table memory at [mem 0xdbf20e98-0xdbf20ff5]
[    0.000000] ACPI: Reserving FPDT table memory at [mem 0xdbf20ff8-0xdbf2103b]
[    0.000000] ACPI: Reserving FIDT table memory at [mem 0xdbf21040-0xdbf210db]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0xdbf210e0-0xdbf211db]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0xdbf211e0-0xdbf29e77]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0xdbf29e78-0xdbf2d6c4]
[    0.000000] ACPI: Reserving MCFG table memory at [mem 0xdbf2d6c8-0xdbf2d703]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0xdbf2d708-0xdbf33f30]
[    0.000000] ACPI: Reserving HPET table memory at [mem 0xdbf33f38-0xdbf33f6f]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0xdbf33f70-0xdbf33f93]
[    0.000000] ACPI: Reserving UEFI table memory at [mem 0xdbf33f98-0xdbf33fd9]
[    0.000000] ACPI: Reserving BGRT table memory at [mem 0xdbf33fe0-0xdbf34017]
[    0.000000] ACPI: Reserving IVRS table memory at [mem 0xdbf34018-0xdbf340e7]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0xdbf340e8-0xdbf363fb]
[    0.000000] ACPI: Reserving CRAT table memory at [mem 0xdbf36400-0xdbf3734f]
[    0.000000] ACPI: Reserving CDIT table memory at [mem 0xdbf37350-0xdbf37378]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0xdbf37380-0xdbf39242]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0xdbf39248-0xdbf39306]
[    0.000000] ACPI: Reserving WSMT table memory at [mem 0xdbf39308-0xdbf3932f]
[    0.000000] ACPI: Reserving SSDT table memory at [mem 0xdbf39330-0xdbf3a71f]
[    0.000000] system APIC only can use physical flat
[    0.000000] Setting APIC routing to physical flat.
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000041f37ffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x41f355000-0x41f37ffff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000041f37ffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x0000000009e01fff]
[    0.000000]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.000000]   node   0: [mem 0x000000000a20b000-0x000000000affffff]
[    0.000000]   node   0: [mem 0x000000000b020000-0x00000000db86bfff]
[    0.000000]   node   0: [mem 0x00000000db9fd000-0x00000000dbb80fff]
[    0.000000]   node   0: [mem 0x00000000dcba7000-0x00000000deffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000041f37ffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000041f37ffff]
[    0.000000] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.000000] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 510 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 32 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 401 pages in unavailable ranges
[    0.000000] On node 0, zone DMA32: 4134 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 4096 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 3200 pages in unavailable ranges
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] system APIC only can use physical flat
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 17, version 33, address 0xfec00000, GSI 0-23
[    0.000000] IOAPIC[1]: apic_id 18, version 33, address 0xfec01000, GSI 24-55
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.000000] e820: update [mem 0xd7f02000-0xd7f46fff] usable ==> reserved
[    0.000000] smpboot: Allowing 32 CPUs, 16 hotplug CPUs
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x09e02000-0x09ffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xd7f02000-0xd7f46fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xda27c000-0xda27cfff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xdb86c000-0xdb9fcfff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xdbb81000-0xdbf9dfff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xdbf9e000-0xdcb15fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xdcb16000-0xdcba6fff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xdf000000-0xdfffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfcffffff]
[    0.000000] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
[    0.000000] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:1
[    0.000000] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
[    0.000000] pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.000000] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 
[    0.000000] Fallback order for Node 0: 0 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 4116321
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.1.31-calculate root=UUID=572bb814-7215-4fea-9046-e22471163a3f ro video=3840x1080 rd.retry=40 calculate=video:nvidia splash quiet
[    0.000000] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.1.31-calculate calculate=video:nvidia", will be passed to user space.
[    0.000000] random: crng init done
[    0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[    0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[    0.000000] software IO TLB: area num 32.
[    0.000000] Memory: 16194528K/16727292K available (16393K kernel code, 2889K rwdata, 5456K rodata, 2756K init, 17612K bss, 532504K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.000000] ftrace: allocating 50892 entries in 199 pages
[    0.000000] ftrace: allocated 199 pages with 5 groups
[    0.000000] Dynamic Preempt: voluntary
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=32.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.000000] NR_IRQS: 33024, nr_irqs: 1224, preallocated irqs: 16
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[    0.000000] Console: colour dummy device 80x25
[    0.000000] printk: console [tty0] enabled
[    0.000000] ACPI: Core revision 20220331
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.000000] APIC: Switch to symmetric I/O mode setup
[    0.000000] AMD-Vi: Using global IVHD EFR:0xf77ef22294ada, EFR2:0x0
[    0.003333] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.029999] tsc: Unable to calibrate against PIT
[    0.029999] tsc: using HPET reference calibration
[    0.029999] tsc: Detected 2993.985 MHz processor
[    0.000002] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2b28131661e, max_idle_ns: 440795283344 ns
[    0.000006] Calibrating delay loop (skipped), value calculated using timer frequency.. 5990.46 BogoMIPS (lpj=9979950)
[    0.000009] pid_max: default: 32768 minimum: 301
[    0.003370] LSM: Security Framework initializing
[    0.003374] Yama: becoming mindful.
[    0.003422] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.003450] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.003703] LVT offset 1 assigned for vector 0xf9
[    0.003767] LVT offset 2 assigned for vector 0xf4
[    0.003783] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.003785] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.003788] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.003790] Spectre V2 : Mitigation: Retpolines
[    0.003791] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.003792] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.003792] Spectre V2 : Enabling Speculation Barrier for firmware calls
[    0.003793] RETBleed: Mitigation: untrained return thunk
[    0.003795] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.003796] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[    0.011869] Freeing SMP alternatives memory: 48K
[    0.120712] smpboot: CPU0: AMD Ryzen 7 1700 Eight-Core Processor (family: 0x17, model: 0x1, stepping: 0x1)
[    0.120828] cblist_init_generic: Setting adjustable number of callback queues.
[    0.120831] cblist_init_generic: Setting shift to 5 and lim to 1.
[    0.120843] cblist_init_generic: Setting shift to 5 and lim to 1.
[    0.120856] cblist_init_generic: Setting shift to 5 and lim to 1.
[    0.120866] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.120870] ... version:                0
[    0.120871] ... bit width:              48
[    0.120871] ... generic registers:      6
[    0.120872] ... value mask:             0000ffffffffffff
[    0.120873] ... max period:             00007fffffffffff
[    0.120873] ... fixed-purpose events:   0
[    0.120874] ... event mask:             000000000000003f
[    0.120949] rcu: Hierarchical SRCU implementation.
[    0.120949] rcu: 	Max phase no-delay instances is 1000.
[    0.121399] smp: Bringing up secondary CPUs ...
[    0.121463] x86: Booting SMP configuration:
[    0.121464] .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7  #8  #9 #10 #11 #12 #13 #14 #15
[    0.153370] smp: Brought up 1 node, 16 CPUs
[    0.153372] smpboot: Max logical packages: 2
[    0.153374] smpboot: Total of 16 processors activated (95845.50 BogoMIPS)
[    0.157141] devtmpfs: initialized
[    0.157141] x86/mm: Memory block size: 128MB
[    0.157751] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
[    0.157751] ACPI: PM: Registering ACPI NVS region [mem 0xdbb81000-0xdbf9dfff] (4313088 bytes)
[    0.157751] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    0.157751] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.157751] pinctrl core: initialized pinctrl subsystem
[    0.157751] PM: RTC time: 08:40:11, date: 2023-07-12
[    0.157751] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.157751] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[    0.157751] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.157751] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.157751] audit: initializing netlink subsys (disabled)
[    0.157751] audit: type=2000 audit(1689151211.186:1): state=initialized audit_enabled=0 res=1
[    0.157751] thermal_sys: Registered thermal governor 'fair_share'
[    0.157751] thermal_sys: Registered thermal governor 'bang_bang'
[    0.157751] thermal_sys: Registered thermal governor 'step_wise'
[    0.157751] thermal_sys: Registered thermal governor 'user_space'
[    0.157751] cpuidle: using governor menu
[    0.157751] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.157751] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.157751] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.157751] PCI: Using configuration type 1 for base access
[    0.158787] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.180072] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.180072] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[    0.180072] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.180072] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[    0.181630] cryptd: max_cpu_qlen set to 1000
[    0.181630] raid6: skipped pq benchmark and selected avx2x4
[    0.181630] raid6: using avx2x2 recovery algorithm
[    0.181630] ACPI: Added _OSI(Module Device)
[    0.181630] ACPI: Added _OSI(Processor Device)
[    0.181630] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.181630] ACPI: Added _OSI(Processor Aggregator Device)
[    0.189835] ACPI: 10 ACPI AML tables successfully acquired and loaded
[    0.191053] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.196969] ACPI: Interpreter enabled
[    0.196969] ACPI: PM: (supports S0 S3 S4 S5)
[    0.196969] ACPI: Using IOAPIC for interrupt routing
[    0.197155] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.197156] PCI: Using E820 reservations for host bridge windows
[    0.197418] ACPI: Enabled 2 GPEs in block 00 to 1F
[    0.204779] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.204785] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.204849] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR DPC]
[    0.204963] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.204972] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.205289] PCI host bridge to bus 0000:00
[    0.205291] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.205293] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.205294] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.205296] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.205297] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000dffff window]
[    0.205299] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
[    0.205301] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.205302] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.205315] pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
[    0.205390] pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
[    0.205473] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.205528] pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
[    0.205565] pci 0000:00:01.3: enabling Extended Tags
[    0.205797] pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
[    0.205998] pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
[    0.206059] pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
[    0.206107] pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
[    0.206218] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    0.206391] pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
[    0.206457] pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
[    0.206502] pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
[    0.206535] pci 0000:00:07.1: enabling Extended Tags
[    0.206607] pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
[    0.206788] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.206842] pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
[    0.206873] pci 0000:00:08.1: enabling Extended Tags
[    0.206944] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.207144] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.207350] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.207566] pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
[    0.207600] pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
[    0.207633] pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
[    0.207666] pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
[    0.207698] pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
[    0.207731] pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
[    0.207763] pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
[    0.207796] pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
[    0.207913] pci 0000:01:00.0: [1022:43d5] type 00 class 0x0c0330
[    0.207929] pci 0000:01:00.0: reg 0x10: [mem 0xf76a0000-0xf76a7fff 64bit]
[    0.207964] pci 0000:01:00.0: enabling Extended Tags
[    0.208010] pci 0000:01:00.0: PME# supported from D3hot D3cold
[    0.208152] pci 0000:01:00.1: [1022:43c8] type 00 class 0x010601
[    0.208193] pci 0000:01:00.1: reg 0x24: [mem 0xf7680000-0xf769ffff]
[    0.208201] pci 0000:01:00.1: reg 0x30: [mem 0xf7600000-0xf767ffff pref]
[    0.208207] pci 0000:01:00.1: enabling Extended Tags
[    0.208242] pci 0000:01:00.1: PME# supported from D3hot D3cold
[    0.208316] pci 0000:01:00.2: [1022:43c6] type 01 class 0x060400
[    0.208354] pci 0000:01:00.2: enabling Extended Tags
[    0.208394] pci 0000:01:00.2: PME# supported from D3hot D3cold
[    0.208491] pci 0000:00:01.3: PCI bridge to [bus 01-05]
[    0.208495] pci 0000:00:01.3:   bridge window [io  0xf000-0xffff]
[    0.208497] pci 0000:00:01.3:   bridge window [mem 0xf7500000-0xf76fffff]
[    0.208574] pci 0000:02:00.0: [1022:43c7] type 01 class 0x060400
[    0.208616] pci 0000:02:00.0: enabling Extended Tags
[    0.208669] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.208772] pci 0000:02:01.0: [1022:43c7] type 01 class 0x060400
[    0.208814] pci 0000:02:01.0: enabling Extended Tags
[    0.208864] pci 0000:02:01.0: PME# supported from D3hot D3cold
[    0.208970] pci 0000:02:04.0: [1022:43c7] type 01 class 0x060400
[    0.209012] pci 0000:02:04.0: enabling Extended Tags
[    0.209063] pci 0000:02:04.0: PME# supported from D3hot D3cold
[    0.209175] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[    0.209180] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    0.209183] pci 0000:01:00.2:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.209222] pci 0000:02:00.0: PCI bridge to [bus 03]
[    0.209290] pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
[    0.209317] pci 0000:04:00.0: reg 0x10: [io  0xf000-0xf0ff]
[    0.209352] pci 0000:04:00.0: reg 0x18: [mem 0xf7504000-0xf7504fff 64bit]
[    0.209374] pci 0000:04:00.0: reg 0x20: [mem 0xf7500000-0xf7503fff 64bit]
[    0.209514] pci 0000:04:00.0: supports D1 D2
[    0.209515] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.209753] pci 0000:02:01.0: PCI bridge to [bus 04]
[    0.209758] pci 0000:02:01.0:   bridge window [io  0xf000-0xffff]
[    0.209761] pci 0000:02:01.0:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.209801] pci 0000:02:04.0: PCI bridge to [bus 05]
[    0.209891] pci 0000:06:00.0: [10de:1c81] type 00 class 0x030000
[    0.209905] pci 0000:06:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
[    0.209917] pci 0000:06:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.209929] pci 0000:06:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
[    0.209937] pci 0000:06:00.0: reg 0x24: [io  0xe000-0xe07f]
[    0.209944] pci 0000:06:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
[    0.209964] pci 0000:06:00.0: BAR 3: assigned to efifb
[    0.209969] pci 0000:06:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.210073] pci 0000:06:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:03.1 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[    0.210143] pci 0000:06:00.1: [10de:0fb9] type 00 class 0x040300
[    0.210156] pci 0000:06:00.1: reg 0x10: [mem 0xf7080000-0xf7083fff]
[    0.210308] pci 0000:00:03.1: PCI bridge to [bus 06]
[    0.210311] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.210314] pci 0000:00:03.1:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.210317] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
[    0.210389] pci 0000:07:00.0: [1022:145a] type 00 class 0x130000
[    0.210412] pci 0000:07:00.0: enabling Extended Tags
[    0.210494] pci 0000:07:00.2: [1022:1456] type 00 class 0x108000
[    0.210505] pci 0000:07:00.2: reg 0x18: [mem 0xf7300000-0xf73fffff]
[    0.210513] pci 0000:07:00.2: reg 0x24: [mem 0xf7400000-0xf7401fff]
[    0.210519] pci 0000:07:00.2: enabling Extended Tags
[    0.210613] pci 0000:07:00.3: [1022:145c] type 00 class 0x0c0330
[    0.210622] pci 0000:07:00.3: reg 0x10: [mem 0xf7200000-0xf72fffff 64bit]
[    0.210642] pci 0000:07:00.3: enabling Extended Tags
[    0.210669] pci 0000:07:00.3: PME# supported from D0 D3hot D3cold
[    0.210750] pci 0000:00:07.1: PCI bridge to [bus 07]
[    0.210754] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf74fffff]
[    0.210826] pci 0000:08:00.0: [1022:1455] type 00 class 0x130000
[    0.210851] pci 0000:08:00.0: enabling Extended Tags
[    0.210938] pci 0000:08:00.2: [1022:7901] type 00 class 0x010601
[    0.210963] pci 0000:08:00.2: reg 0x24: [mem 0xf7708000-0xf7708fff]
[    0.210970] pci 0000:08:00.2: enabling Extended Tags
[    0.211000] pci 0000:08:00.2: PME# supported from D3hot D3cold
[    0.211071] pci 0000:08:00.3: [1022:1457] type 00 class 0x040300
[    0.211078] pci 0000:08:00.3: reg 0x10: [mem 0xf7700000-0xf7707fff]
[    0.211097] pci 0000:08:00.3: enabling Extended Tags
[    0.211125] pci 0000:08:00.3: PME# supported from D0 D3hot D3cold
[    0.211203] pci 0000:00:08.1: PCI bridge to [bus 08]
[    0.211208] pci 0000:00:08.1:   bridge window [mem 0xf7700000-0xf77fffff]
[    0.211533] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.211575] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.211611] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.211656] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.211696] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.211728] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.211760] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.211793] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.213357] iommu: Default domain type: Translated 
[    0.213357] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.213466] SCSI subsystem initialized
[    0.213476] libata version 3.00 loaded.
[    0.213476] ACPI: bus type USB registered
[    0.213476] usbcore: registered new interface driver usbfs
[    0.213476] usbcore: registered new interface driver hub
[    0.213476] usbcore: registered new device driver usb
[    0.213476] pps_core: LinuxPPS API ver. 1 registered
[    0.213476] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.213476] PTP clock support registered
[    0.213476] EDAC MC: Ver: 3.0.0
[    0.213476] Registered efivars operations
[    0.213533] NetLabel: Initializing
[    0.213534] NetLabel:  domain hash size = 128
[    0.213535] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.213548] NetLabel:  unlabeled traffic allowed by default
[    0.213552] mctp: management component transport protocol core
[    0.213553] NET: Registered PF_MCTP protocol family
[    0.213556] PCI: Using ACPI for IRQ routing
[    0.217349] PCI: pci_cache_line_size set to 64 bytes
[    0.217401] Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    0.217402] e820: reserve RAM buffer [mem 0x09e02000-0x0bffffff]
[    0.217404] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.217406] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.217407] e820: reserve RAM buffer [mem 0xd7f02000-0xd7ffffff]
[    0.217408] e820: reserve RAM buffer [mem 0xda27c000-0xdbffffff]
[    0.217409] e820: reserve RAM buffer [mem 0xdb86c000-0xdbffffff]
[    0.217410] e820: reserve RAM buffer [mem 0xdbb81000-0xdbffffff]
[    0.217411] e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
[    0.217412] e820: reserve RAM buffer [mem 0x41f380000-0x41fffffff]
[    0.217423] pci 0000:06:00.0: vgaarb: setting as boot VGA device
[    0.217423] pci 0000:06:00.0: vgaarb: bridge control possible
[    0.217423] pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.217423] vgaarb: loaded
[    0.217423] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.217423] hpet0: 3 comparators, 32-bit 14.318180 MHz counter
[    0.221069] clocksource: Switched to clocksource tsc-early
[    0.221186] VFS: Disk quotas dquot_6.6.0
[    0.221199] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.221257] pnp: PnP ACPI init
[    0.221329] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.221506] system 00:02: [io  0x0a00-0x0a2f] has been reserved
[    0.221509] system 00:02: [io  0x0a30-0x0a3f] has been reserved
[    0.221510] system 00:02: [io  0x0a40-0x0a4f] has been reserved
[    0.221724] pnp 00:03: [dma 0 disabled]
[    0.221918] system 00:04: [io  0x04d0-0x04d1] has been reserved
[    0.221920] system 00:04: [io  0x040b] has been reserved
[    0.221922] system 00:04: [io  0x04d6] has been reserved
[    0.221923] system 00:04: [io  0x0c00-0x0c01] has been reserved
[    0.221925] system 00:04: [io  0x0c14] has been reserved
[    0.221926] system 00:04: [io  0x0c50-0x0c51] has been reserved
[    0.221927] system 00:04: [io  0x0c52] has been reserved
[    0.221929] system 00:04: [io  0x0c6c] has been reserved
[    0.221930] system 00:04: [io  0x0c6f] has been reserved
[    0.221931] system 00:04: [io  0x0cd0-0x0cd1] has been reserved
[    0.221933] system 00:04: [io  0x0cd2-0x0cd3] has been reserved
[    0.221935] system 00:04: [io  0x0cd4-0x0cd5] has been reserved
[    0.221936] system 00:04: [io  0x0cd6-0x0cd7] has been reserved
[    0.221937] system 00:04: [io  0x0cd8-0x0cdf] has been reserved
[    0.221938] system 00:04: [io  0x0800-0x089f] has been reserved
[    0.221940] system 00:04: [io  0x0b00-0x0b0f] has been reserved
[    0.221941] system 00:04: [io  0x0b20-0x0b3f] has been reserved
[    0.221942] system 00:04: [io  0x0900-0x090f] has been reserved
[    0.221943] system 00:04: [io  0x0910-0x091f] has been reserved
[    0.221945] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.221947] system 00:04: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.221949] system 00:04: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.221951] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.221952] system 00:04: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.221954] system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.221956] system 00:04: [mem 0xff000000-0xffffffff] has been reserved
[    0.222258] pnp: PnP ACPI: found 5 devices
[    0.226763] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.226818] NET: Registered PF_INET protocol family
[    0.227014] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.229926] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[    0.229941] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.229949] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.230087] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    0.230282] TCP: Hash tables configured (established 131072 bind 65536)
[    0.230405] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[    0.230436] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.230471] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[    0.230554] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.230561] NET: Registered PF_XDP protocol family
[    0.230577] pci 0000:02:00.0: PCI bridge to [bus 03]
[    0.230588] pci 0000:02:01.0: PCI bridge to [bus 04]
[    0.230591] pci 0000:02:01.0:   bridge window [io  0xf000-0xffff]
[    0.230595] pci 0000:02:01.0:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.230602] pci 0000:02:04.0: PCI bridge to [bus 05]
[    0.230611] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[    0.230613] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    0.230617] pci 0000:01:00.2:   bridge window [mem 0xf7500000-0xf75fffff]
[    0.230623] pci 0000:00:01.3: PCI bridge to [bus 01-05]
[    0.230624] pci 0000:00:01.3:   bridge window [io  0xf000-0xffff]
[    0.230627] pci 0000:00:01.3:   bridge window [mem 0xf7500000-0xf76fffff]
[    0.230632] pci 0000:00:03.1: PCI bridge to [bus 06]
[    0.230634] pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
[    0.230636] pci 0000:00:03.1:   bridge window [mem 0xf6000000-0xf70fffff]
[    0.230638] pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
[    0.230642] pci 0000:00:07.1: PCI bridge to [bus 07]
[    0.230645] pci 0000:00:07.1:   bridge window [mem 0xf7200000-0xf74fffff]
[    0.230649] pci 0000:00:08.1: PCI bridge to [bus 08]
[    0.230652] pci 0000:00:08.1:   bridge window [mem 0xf7700000-0xf77fffff]
[    0.230657] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.230659] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.230660] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.230661] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.230662] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000dffff window]
[    0.230664] pci_bus 0000:00: resource 9 [mem 0xe0000000-0xfec2ffff window]
[    0.230665] pci_bus 0000:00: resource 10 [mem 0xfee00000-0xffffffff window]
[    0.230667] pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
[    0.230668] pci_bus 0000:01: resource 1 [mem 0xf7500000-0xf76fffff]
[    0.230669] pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
[    0.230671] pci_bus 0000:02: resource 1 [mem 0xf7500000-0xf75fffff]
[    0.230672] pci_bus 0000:04: resource 0 [io  0xf000-0xffff]
[    0.230673] pci_bus 0000:04: resource 1 [mem 0xf7500000-0xf75fffff]
[    0.230675] pci_bus 0000:06: resource 0 [io  0xe000-0xefff]
[    0.230676] pci_bus 0000:06: resource 1 [mem 0xf6000000-0xf70fffff]
[    0.230677] pci_bus 0000:06: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
[    0.230679] pci_bus 0000:07: resource 1 [mem 0xf7200000-0xf74fffff]
[    0.230680] pci_bus 0000:08: resource 1 [mem 0xf7700000-0xf77fffff]
[    0.230874] pci 0000:06:00.1: extending delay after power-on from D3hot to 20 msec
[    0.230899] pci 0000:06:00.1: D0 power state depends on 0000:06:00.0
[    0.231001] PCI: CLS 64 bytes, default 64
[    0.231012] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[    0.231042] Trying to unpack rootfs image as initramfs...
[    0.231043] pci 0000:00:01.0: Adding to iommu group 0
[    0.231053] pci 0000:00:01.3: Adding to iommu group 1
[    0.231067] pci 0000:00:02.0: Adding to iommu group 2
[    0.231080] pci 0000:00:03.0: Adding to iommu group 3
[    0.231089] pci 0000:00:03.1: Adding to iommu group 4
[    0.231100] pci 0000:00:04.0: Adding to iommu group 5
[    0.231113] pci 0000:00:07.0: Adding to iommu group 6
[    0.231121] pci 0000:00:07.1: Adding to iommu group 7
[    0.231134] pci 0000:00:08.0: Adding to iommu group 8
[    0.231143] pci 0000:00:08.1: Adding to iommu group 9
[    0.231160] pci 0000:00:14.0: Adding to iommu group 10
[    0.231168] pci 0000:00:14.3: Adding to iommu group 10
[    0.231200] pci 0000:00:18.0: Adding to iommu group 11
[    0.231208] pci 0000:00:18.1: Adding to iommu group 11
[    0.231216] pci 0000:00:18.2: Adding to iommu group 11
[    0.231224] pci 0000:00:18.3: Adding to iommu group 11
[    0.231233] pci 0000:00:18.4: Adding to iommu group 11
[    0.231241] pci 0000:00:18.5: Adding to iommu group 11
[    0.231249] pci 0000:00:18.6: Adding to iommu group 11
[    0.231257] pci 0000:00:18.7: Adding to iommu group 11
[    0.231275] pci 0000:01:00.0: Adding to iommu group 12
[    0.231286] pci 0000:01:00.1: Adding to iommu group 12
[    0.231295] pci 0000:01:00.2: Adding to iommu group 12
[    0.231300] pci 0000:02:00.0: Adding to iommu group 12
[    0.231304] pci 0000:02:01.0: Adding to iommu group 12
[    0.231308] pci 0000:02:04.0: Adding to iommu group 12
[    0.231312] pci 0000:04:00.0: Adding to iommu group 12
[    0.231326] pci 0000:06:00.0: Adding to iommu group 13
[    0.231337] pci 0000:06:00.1: Adding to iommu group 13
[    0.231348] pci 0000:07:00.0: Adding to iommu group 14
[    0.231358] pci 0000:07:00.2: Adding to iommu group 15
[    0.231369] pci 0000:07:00.3: Adding to iommu group 16
[    0.231378] pci 0000:08:00.0: Adding to iommu group 17
[    0.231389] pci 0000:08:00.2: Adding to iommu group 18
[    0.231553] pci 0000:08:00.3: Adding to iommu group 19
[    0.235090] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[    0.235094] AMD-Vi: Extended features (0xf77ef22294ada, 0x0): PPR NX GT IA GA PC GA_vAPIC
[    0.235100] AMD-Vi: Interrupt remapping enabled
[    0.235108] AMD-Vi: Virtual APIC enabled
[    0.235233] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.235235] software IO TLB: mapped [mem 0x00000000d3718000-0x00000000d7718000] (64MB)
[    0.235322] amd_uncore: 4  amd_df counters detected
[    0.235329] amd_uncore: 6  amd_l3 counters detected
[    0.235834] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[    0.237668] Initialise system trusted keyrings
[    0.237680] Key type blacklist registered
[    0.237717] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[    0.238995] zbud: loaded
[    0.249050] NET: Registered PF_ALG protocol family
[    0.249053] xor: automatically using best checksumming function   avx       
[    0.249054] Key type asymmetric registered
[    0.249055] Asymmetric key parser 'x509' registered
[    0.283417] Freeing initrd memory: 11872K
[    0.285095] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[    0.285117] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.285167] io scheduler mq-deadline registered
[    0.285170] io scheduler kyber registered
[    0.285204] io scheduler bfq registered
[    0.285586] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[    0.287518] pcieport 0000:00:01.3: PME: Signaling with IRQ 26
[    0.287596] pcieport 0000:00:01.3: AER: enabled with IRQ 26
[    0.287801] pcieport 0000:00:03.1: PME: Signaling with IRQ 27
[    0.287870] pcieport 0000:00:03.1: AER: enabled with IRQ 27
[    0.288075] pcieport 0000:00:07.1: PME: Signaling with IRQ 28
[    0.288135] pcieport 0000:00:07.1: AER: enabled with IRQ 28
[    0.288393] pcieport 0000:00:08.1: PME: Signaling with IRQ 30
[    0.288453] pcieport 0000:00:08.1: AER: enabled with IRQ 30
[    0.289065] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.289195] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.289215] ACPI: button: Power Button [PWRB]
[    0.289250] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.289355] ACPI: button: Power Button [PWRF]
[    0.289393] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.289400] ACPI: \_PR_.C000: Found 2 idle states
[    0.289516] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.289522] ACPI: \_PR_.C002: Found 2 idle states
[    0.289587] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.289591] ACPI: \_PR_.C004: Found 2 idle states
[    0.289687] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.289693] ACPI: \_PR_.C006: Found 2 idle states
[    0.289775] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.289783] ACPI: \_PR_.C008: Found 2 idle states
[    0.289870] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.289878] ACPI: \_PR_.C00A: Found 2 idle states
[    0.289966] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.289975] ACPI: \_PR_.C00C: Found 2 idle states
[    0.290078] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.290084] ACPI: \_PR_.C00E: Found 2 idle states
[    0.290159] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.290165] ACPI: \_PR_.C001: Found 2 idle states
[    0.290250] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.290255] ACPI: \_PR_.C003: Found 2 idle states
[    0.290344] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.290351] ACPI: \_PR_.C005: Found 2 idle states
[    0.290451] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.290456] ACPI: \_PR_.C007: Found 2 idle states
[    0.290558] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.290566] ACPI: \_PR_.C009: Found 2 idle states
[    0.290671] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.290679] ACPI: \_PR_.C00B: Found 2 idle states
[    0.290786] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.290793] ACPI: \_PR_.C00D: Found 2 idle states
[    0.290899] [Firmware Bug]: ACPI MWAIT C-state 0x0 not supported by HW (0x0)
[    0.290906] ACPI: \_PR_.C00F: Found 2 idle states
[    1.247074] tsc: Refined TSC clocksource calibration: 2994.373 MHz
[    1.247090] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2b2981a153b, max_idle_ns: 440795305653 ns
[    1.247314] clocksource: Switched to clocksource tsc
[    2.367401] ACPI: \_TZ_.TZ10: Invalid passive threshold
[    2.367568] thermal LNXTHERM:00: registered as thermal_zone0
[    2.367570] ACPI: thermal: Thermal Zone [TZ10] (17 C)
[    2.368008] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.368084] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    2.369933] Non-volatile memory driver v1.3
[    2.369939] Linux agpgart interface v0.103
[    2.370250] ACPI: bus type drm_connector registered
[    2.371226] loop: module loaded
[    2.371365] ahci 0000:01:00.1: version 3.0
[    2.371466] ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
[    2.371499] ahci 0000:01:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
[    2.371501] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    2.371915] scsi host0: ahci
[    2.372011] scsi host1: ahci
[    2.372092] scsi host2: ahci
[    2.372170] scsi host3: ahci
[    2.372250] scsi host4: ahci
[    2.372327] scsi host5: ahci
[    2.372398] scsi host6: ahci
[    2.372468] scsi host7: ahci
[    2.372492] ata1: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680100 irq 37
[    2.372495] ata2: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680180 irq 37
[    2.372496] ata3: DUMMY
[    2.372497] ata4: DUMMY
[    2.372498] ata5: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680300 irq 37
[    2.372500] ata6: SATA max UDMA/133 abar m131072@0xf7680000 port 0xf7680380 irq 37
[    2.372501] ata7: DUMMY
[    2.372501] ata8: DUMMY
[    2.372605] ahci 0000:08:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    2.372607] ahci 0000:08:00.2: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    2.372735] scsi host8: ahci
[    2.372763] ata9: SATA max UDMA/133 abar m4096@0xf7708000 port 0xf7708100 irq 39
[    2.373014] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.373041] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[    2.428364] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[    2.428514] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.428552] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[    2.428556] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    2.428615] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[    2.428617] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.428619] usb usb1: Product: xHCI Host Controller
[    2.428620] usb usb1: Manufacturer: Linux 6.1.31-calculate xhci-hcd
[    2.428621] usb usb1: SerialNumber: 0000:01:00.0
[    2.428722] hub 1-0:1.0: USB hub found
[    2.428734] hub 1-0:1.0: 10 ports detected
[    2.428972] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.428987] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[    2.428989] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.428990] usb usb2: Product: xHCI Host Controller
[    2.428991] usb usb2: Manufacturer: Linux 6.1.31-calculate xhci-hcd
[    2.428992] usb usb2: SerialNumber: 0000:01:00.0
[    2.429052] hub 2-0:1.0: USB hub found
[    2.429060] hub 2-0:1.0: 4 ports detected
[    2.429128] usb: port power management may be unreliable
[    2.429218] xhci_hcd 0000:07:00.3: xHCI Host Controller
[    2.429242] xhci_hcd 0000:07:00.3: new USB bus registered, assigned bus number 3
[    2.429336] xhci_hcd 0000:07:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000040000410
[    2.429439] xhci_hcd 0000:07:00.3: xHCI Host Controller
[    2.429460] xhci_hcd 0000:07:00.3: new USB bus registered, assigned bus number 4
[    2.429463] xhci_hcd 0000:07:00.3: Host supports USB 3.0 SuperSpeed
[    2.429490] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[    2.429493] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.429494] usb usb3: Product: xHCI Host Controller
[    2.429495] usb usb3: Manufacturer: Linux 6.1.31-calculate xhci-hcd
[    2.429496] usb usb3: SerialNumber: 0000:07:00.3
[    2.429562] hub 3-0:1.0: USB hub found
[    2.429569] hub 3-0:1.0: 4 ports detected
[    2.429702] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.429719] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.01
[    2.429721] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.429723] usb usb4: Product: xHCI Host Controller
[    2.429724] usb usb4: Manufacturer: Linux 6.1.31-calculate xhci-hcd
[    2.429725] usb usb4: SerialNumber: 0000:07:00.3
[    2.429782] hub 4-0:1.0: USB hub found
[    2.429788] hub 4-0:1.0: 4 ports detected
[    2.429930] usbcore: registered new interface driver usbserial_generic
[    2.429935] usbserial: USB Serial support registered for generic
[    2.429965] i8042: PNP: No PS/2 controller found.
[    2.429988] mousedev: PS/2 mouse device common for all mice
[    2.430072] rtc_cmos 00:01: RTC can wake from S4
[    2.430454] rtc_cmos 00:01: registered as rtc0
[    2.430518] rtc_cmos 00:01: setting system clock to 2023-07-12T08:40:13 UTC (1689151213)
[    2.430549] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    2.430565] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    2.430581] device-mapper: uevent: version 1.0.3
[    2.430628] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    2.430819] efifb: probing for efifb
[    2.430830] efifb: showing boot graphics
[    2.431918] efifb: framebuffer at 0xf1000000, using 3072k, total 3072k
[    2.431919] efifb: mode is 1024x768x32, linelength=4096, pages=1
[    2.431921] efifb: scrolling: redraw
[    2.431921] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    2.431970] fbcon: Deferring console take-over
[    2.431971] fb0: EFI VGA frame buffer device
[    2.431990] hid: raw HID events driver (C) Jiri Kosina
[    2.432013] usbcore: registered new interface driver usbhid
[    2.432014] usbhid: USB HID core driver
[    2.432114] drop_monitor: Initializing network drop monitor service
[    2.432183] Initializing XFRM netlink socket
[    2.432265] NET: Registered PF_INET6 protocol family
[    2.434536] Segment Routing with IPv6
[    2.434538] RPL Segment Routing with IPv6
[    2.434545] In-situ OAM (IOAM) with IPv6
[    2.434563] mip6: Mobile IPv6
[    2.434566] NET: Registered PF_PACKET protocol family
[    2.435540] microcode: CPU0: patch_level=0x08001138
[    2.435546] microcode: CPU1: patch_level=0x08001138
[    2.435552] microcode: CPU2: patch_level=0x08001138
[    2.435557] microcode: CPU3: patch_level=0x08001138
[    2.435565] microcode: CPU4: patch_level=0x08001138
[    2.435573] microcode: CPU5: patch_level=0x08001138
[    2.435579] microcode: CPU6: patch_level=0x08001138
[    2.435585] microcode: CPU7: patch_level=0x08001138
[    2.435591] microcode: CPU8: patch_level=0x08001138
[    2.435595] microcode: CPU9: patch_level=0x08001138
[    2.435598] microcode: CPU10: patch_level=0x08001138
[    2.435602] microcode: CPU11: patch_level=0x08001138
[    2.435607] microcode: CPU12: patch_level=0x08001138
[    2.435612] microcode: CPU13: patch_level=0x08001138
[    2.435618] microcode: CPU14: patch_level=0x08001138
[    2.435623] microcode: CPU15: patch_level=0x08001138
[    2.435626] microcode: Microcode Update Driver: v2.2.
[    2.435630] IPI shorthand broadcast: enabled
[    2.435639] AVX2 version of gcm_enc/dec engaged.
[    2.435700] AES CTR mode by8 optimization enabled
[    2.435995] sched_clock: Marking stable (2465968615, -29994668)->(2448521561, -12547614)
[    2.436072] registered taskstats version 1
[    2.436331] Loading compiled-in X.509 certificates
[    2.439194] zswap: loaded using pool zstd/zbud
[    2.439530] Key type .fscrypt registered
[    2.439531] Key type fscrypt-provisioning registered
[    2.439875] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[    2.439893] Key type big_key registered
[    2.441737] Key type encrypted registered
[    2.441745] ima: No TPM chip found, activating TPM-bypass!
[    2.441747] ima: Allocated hash algorithm: sha256
[    2.441757] ima: No architecture policies found
[    2.441764] evm: Initialising EVM extended attributes:
[    2.441765] evm: security.selinux
[    2.441765] evm: security.SMACK64 (disabled)
[    2.441766] evm: security.SMACK64EXEC (disabled)
[    2.441767] evm: security.SMACK64TRANSMUTE (disabled)
[    2.441768] evm: security.SMACK64MMAP (disabled)
[    2.441768] evm: security.apparmor
[    2.441769] evm: security.ima
[    2.441770] evm: security.capability
[    2.441770] evm: HMAC attrs: 0x1
[    2.443891] PM:   Magic number: 15:885:674
[    2.443908] workqueue scsi_tmf_4: hash matches
[    2.444036] RAS: Correctable Errors collector initialized.
[    2.677068] usb 1-5: new low-speed USB device number 2 using xhci_hcd
[    2.677083] usb 3-2: new high-speed USB device number 2 using xhci_hcd
[    2.688680] ata9: SATA link down (SStatus 0 SControl 300)
[    2.836970] usb 3-2: New USB device found, idVendor=045e, idProduct=076d, bcdDevice= 1.03
[    2.836976] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.836978] usb 3-2: Product: Microsoft® LifeCam HD-5000
[    2.836979] usb 3-2: Manufacturer: Microsoft
[    2.846844] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    2.846959] ata1.00: ATA-11: UNIC2 S100-480, 7E101, max UDMA/133
[    2.846981] ata1.00: 937703088 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    2.847148] ata1.00: configured for UDMA/133
[    2.847307] scsi 0:0:0:0: Direct-Access     ATA      UNIC2 S100-480   1    PQ: 0 ANSI: 5
[    2.847494] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.847604] sd 0:0:0:0: [sda] 937703088 512-byte logical blocks: (480 GB/447 GiB)
[    2.847617] sd 0:0:0:0: [sda] Write Protect is off
[    2.847620] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.847636] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.847664] sd 0:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[    2.879600]  sda: sda1 sda2 sda3 sda4 sda5
[    2.880044] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.929586] usb 1-5: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[    2.929592] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.929594] usb 1-5: Product: USB Optical Mouse
[    2.929595] usb 1-5: Manufacturer: Logitech
[    2.945866] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:01.3/0000:01:00.0/usb1/1-5/1-5:1.0/0003:046D:C077.0001/input/input2
[    2.946122] hid-generic 0003:046D:C077.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:01:00.0-5/input0
[    3.067076] usb 1-6: new low-speed USB device number 3 using xhci_hcd
[    3.157202] ata2: SATA link down (SStatus 0 SControl 300)
[    3.320430] usb 1-6: New USB device found, idVendor=045e, idProduct=0752, bcdDevice= 3.00
[    3.320436] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.320438] usb 1-6: Product: Wired Keyboard 400
[    3.320440] usb 1-6: Manufacturer: Microsoft
[    3.340914] input: Microsoft Wired Keyboard 400 as /devices/pci0000:00/0000:00:01.3/0000:01:00.0/usb1/1-6/1-6:1.0/0003:045E:0752.0002/input/input3
[    3.397008] hid-generic 0003:045E:0752.0002: input,hidraw1: USB HID v1.11 Keyboard [Microsoft Wired Keyboard 400] on usb-0000:01:00.0-6/input0
[    3.466917] ata5: SATA link down (SStatus 0 SControl 330)
[    3.777293] ata6: SATA link down (SStatus 0 SControl 330)
[    3.778619] Freeing unused decrypted memory: 2036K
[    3.778965] Freeing unused kernel image (initmem) memory: 2756K
[    3.778971] Write protecting the kernel read-only data: 24576k
[    3.779329] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    3.779422] Freeing unused kernel image (rodata/data gap) memory: 688K
[    3.823846] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    3.823852] Run /init as init process
[    3.823853]   with arguments:
[    3.823854]     /init
[    3.823855]     splash
[    3.823856]   with environment:
[    3.823856]     HOME=/
[    3.823857]     TERM=linux
[    3.823858]     BOOT_IMAGE=/boot/vmlinuz-6.1.31-calculate
[    3.823858]     calculate=video:nvidia
[    3.862643] dracut: Calculate-23
[    3.921549] dracut: TuxOnIce premodule started
[    3.921607] dracut: Kernel has no tuxonice support, aborting
[    3.928882] fbcon: Taking over console
[    3.928944] Console: switching to colour frame buffer device 128x48
[    4.020632] dracut: Starting plymouth daemon
[    4.132399] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    4.132478] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    4.132589] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    4.134034] ccp 0000:07:00.2: enabling device (0000 -> 0002)
[    4.134410] ccp 0000:07:00.2: ccp enabled
[    4.134428] ccp 0000:07:00.2: psp enabled
[    4.218499] dracut: TuxOnIce lvmfix started
[    4.233640] dracut: TuxOnIce udev should be now fully settled
[    4.262860] EXT4-fs (sda5): mounted filesystem with ordered data mode. Quota mode: none.
[    4.325235] dracut: Mounted root filesystem /dev/sda5
[    4.332922] EXT4-fs (sda5): re-mounted. Quota mode: none.
[    4.347576] EXT4-fs (sda5): re-mounted. Quota mode: none.
[    4.389162] dracut: Switching root
[    5.504608] acpi_cpufreq: overriding BIOS provided _PSD data
[    5.523790] ACPI Warning: SystemIO range 0x0000000000000B00-0x0000000000000B08 conflicts with OpRegion 0x0000000000000B00-0x0000000000000B0F (\GSA1.SMBI) (20220331/utaddress-204)
[    5.523801] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[    5.536952] input: PC Speaker as /devices/platform/pcspkr/input/input4
[    5.538835] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    5.538841] RAPL PMU: hw unit of domain package 2^-16 Joules
[    5.610317] r8169 0000:04:00.0 eth0: RTL8168h/8111h, 18:c0:4d:53:a2:6d, XID 541, IRQ 46
[    5.610326] r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    5.685538] r8169 0000:04:00.0 enp4s0: renamed from eth0
[    5.709281] SVM: TSC scaling supported
[    5.709284] kvm: Nested Virtualization enabled
[    5.709285] SVM: kvm: Nested Paging enabled
[    5.709287] SEV supported: 16 ASIDs
[    5.709309] SVM: Virtual VMLOAD VMSAVE supported
[    5.709309] SVM: Virtual GIF supported
[    5.709310] SVM: LBR virtualization supported
[    5.720462] MCE: In-kernel MCE decoding enabled.
[    5.725216] snd_hda_intel 0000:06:00.1: Disabling MSI
[    5.725226] snd_hda_intel 0000:06:00.1: Handle vga_switcheroo audio client
[    5.725329] snd_hda_intel 0000:08:00.3: enabling device (0000 -> 0002)
[    5.740679] intel_rapl_common: Found RAPL domain package
[    5.740684] intel_rapl_common: Found RAPL domain core
[    5.754769] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input5
[    5.754815] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input6
[    5.754855] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input7
[    5.754903] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:06:00.1/sound/card0/input8
[    5.808704] mc: Linux media interface: v0.10
[    5.813353] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    5.813360] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    5.813362] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    5.813364] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    5.813365] snd_hda_codec_realtek hdaudioC1D0:    dig-out=0x11/0x0
[    5.813366] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    5.813368] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    5.813369] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    5.813370] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    5.822708] videodev: Linux video capture interface: v2.00
[    5.825798] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/sound/card1/input9
[    5.825848] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/sound/card1/input10
[    5.825905] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/sound/card1/input11
[    5.825955] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/sound/card1/input12
[    5.825997] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:08:00.3/sound/card1/input13
[    5.902475] nvidia: loading out-of-tree module taints kernel.
[    5.902488] nvidia: module license 'NVIDIA' taints kernel.
[    5.902489] Disabling lock debugging due to kernel taint
[    5.986153] nvidia-nvlink: Nvlink Core is being initialized, major device number 237

[    5.986652] nvidia 0000:06:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
[    6.043221] usbcore: registered new interface driver snd-usb-audio
[    6.044123] usb 3-2: Found UVC 1.00 device Microsoft® LifeCam HD-5000 (045e:076d)
[    6.055941] input: Microsoft® LifeCam HD-5000: Mi as /devices/pci0000:00/0000:00:07.1/0000:07:00.3/usb3/3-2/3-2:1.0/input/input14
[    6.055993] usbcore: registered new interface driver uvcvideo
[    6.103345] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  470.199.02  Thu May 11 11:46:56 UTC 2023
[    6.110761] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  470.199.02  Thu May 11 11:46:10 UTC 2023
[    6.113351] [drm] [nvidia-drm] [GPU ID 0x00000600] Loading driver
[    6.355683] resource sanity check: requesting [mem 0x000c0000-0x000fffff], which spans more than PCI Bus 0000:00 [mem 0x000a0000-0x000dffff window]
[    6.355689] caller _nv000720rm+0x1ad/0x200 [nvidia] mapping multiple BARs
[    6.618562] EXT4-fs (sda5): re-mounted. Quota mode: none.
[    6.627511] EXT4-fs (sda5): re-mounted. Quota mode: none.
[    6.717719] zram: Added device: zram0
[    6.750294] zram0: detected capacity change from 0 to 65268928
[    6.760093] Adding 32634460k swap on /dev/zram0.  Priority:100 extents:1 across:32634460k SSFS
[    7.015745] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[    7.063099] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[    7.063242] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:06:00.0 on minor 0
[    8.027564] fuse: init (API version 7.37)
[    8.106299] Bluetooth: Core ver 2.22
[    8.106326] NET: Registered PF_BLUETOOTH protocol family
[    8.106327] Bluetooth: HCI device and connection manager initialized
[    8.106330] Bluetooth: HCI socket layer initialized
[    8.106332] Bluetooth: L2CAP socket layer initialized
[    8.106335] Bluetooth: SCO socket layer initialized
[    8.152228] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    8.152234] Bluetooth: BNEP filters: protocol multicast
[    8.152240] Bluetooth: BNEP socket layer initialized
[    8.336701] Generic FE-GE Realtek PHY r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
[    8.518251] r8169 0000:04:00.0 enp4s0: Link is Down
[    8.708557] NET: Registered PF_QIPCRTR protocol family
[   11.003646] r8169 0000:04:00.0 enp4s0: Link is Up - 100Mbps/Full - flow control rx/tx
[   11.003670] IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready
[ 1028.998511] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 1029.015540] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 1046.383320] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 1046.401401] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 1048.675703] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 1048.694322] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 1053.959479] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 1053.978301] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 3672.563630] panel-1-whisker[7625]: segfault at 56156f32584b ip 00007f2f3dc3d8ed sp 00007ffd30f03418 error 4 in libgobject-2.0.so.0.7600.3[7f2f3dc13000+33000] likely on CPU 5 (core 5, socket 0)
[ 3672.563646] Code: 02 48 8d 05 b5 5e 02 00 48 8b 34 e8 eb bc 66 66 2e 0f 1f 84 00 00 00 00 00 0f 1f 40 00 48 85 ff 74 4b 48 8b 07 48 85 c0 74 43 <48> 8b 00 48 3d fc 03 00 00 76 18 48 83 e0 fc 0f b6 50 14 48 39 74
[ 4746.764008] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 4746.781923] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 4887.996936] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 4888.016585] nvidia 0000:06:00.0: [drm] User-defined mode not supported: "3840x1080": 60 345560 3840 4080 4496 5152 1080 1081 1084 1118 0x20 0x6
[ 4969.250939] SGI XFS with ACLs, security attributes, scrub, quota, no debug enabled
[ 4969.264179] JFS: nTxBlock = 8192, nTxLock = 65536
Add Comment
Author