Paste #269474

   
pasted on 04.05.2023 10:51
  • 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
[    0.000000] Linux version 5.15.82-calculate (root@localhost) (gcc (Gentoo 11.3.1_p20221209 p3) 11.3.1 20221209, GNU ld (Gentoo 2.38 p4) 2.38) #1 SMP PREEMPT Fri Dec 30 11:30:38 UTC 2022
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate root=UUID=b8df54a4-4ae4-4ab0-b5b3-0460cab61db5 ro video=1366x768 rd.retry=40 calculate=video:amdgpu 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-0x000000000009d3ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009d400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009bfefff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009bff000-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-0x000000003b436fff] usable
[    0.000000] BIOS-e820: [mem 0x000000003b437000-0x000000003cb1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x000000003cb20000-0x000000003cb4efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000003cb4f000-0x000000003d1f7fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000003d1f8000-0x000000003dffefff] reserved
[    0.000000] BIOS-e820: [mem 0x000000003dfff000-0x000000003effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000003f000000-0x00000000bfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd100000-0x00000000fd1fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023f33ffff] usable
[    0.000000] BIOS-e820: [mem 0x000000023f340000-0x000000023fffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 3.3.0 present.
[    0.000000] DMI: To Be Filled By O.E.M. A320M-DVS R4.0/A320M-DVS R4.0, BIOS P7.40 10/20/2022
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3499.833 MHz processor
[    0.000330] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000332] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000341] last_pfn = 0x23f340 max_arch_pfn = 0x400000000
[    0.000722] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000910] e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
[    0.000916] last_pfn = 0x3f000 max_arch_pfn = 0x400000000
[    0.004602] Using GB pages for direct mapping
[    0.005322] RAMDISK: [mem 0x35005000-0x367f9fff]
[    0.005327] ACPI: Early table checksum verification disabled
[    0.005330] ACPI: RSDP 0x00000000000F05B0 000024 (v02 ALASKA)
[    0.005333] ACPI: XSDT 0x000000003D1E0728 0000B4 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.005338] ACPI: FACP 0x000000003CB43000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.005342] ACPI: DSDT 0x000000003CB3C000 006163 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.005345] ACPI: FACS 0x000000003D1DB000 000040
[    0.005347] ACPI: SSDT 0x000000003CB49000 005419 (v02 AMD    MYRTLE   00000002 MSFT 04000000)
[    0.005350] ACPI: SSDT 0x000000003CB45000 003B40 (v01 AMD    AMD AOD  00000001 INTL 20120913)
[    0.005352] ACPI: SSDT 0x000000003CB44000 000060 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
[    0.005354] ACPI: FIDT 0x000000003CB3B000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.005357] ACPI: MCFG 0x000000003CB3A000 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.005359] ACPI: AAFT 0x000000003CB39000 0000CF (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
[    0.005361] ACPI: HPET 0x000000003CB38000 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.005363] ACPI: TPM2 0x000000003CB36000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
[    0.005365] ACPI: SSDT 0x000000003CB35000 000718 (v02 AMD    AmdTable 00000001 AMD  00000001)
[    0.005368] ACPI: CRAT 0x000000003CB34000 000810 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.005370] ACPI: CDIT 0x000000003CB33000 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
[    0.005372] ACPI: SSDT 0x000000003CB2F000 003798 (v01 AMD    MYRTLE   00000001 INTL 20120913)
[    0.005374] ACPI: SSDT 0x000000003CB2E000 0000BF (v01 AMD    AmdTable 00001000 INTL 20120913)
[    0.005376] ACPI: WSMT 0x000000003CB2D000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.005379] ACPI: APIC 0x000000003CB2C000 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.005381] ACPI: SSDT 0x000000003CB2A000 0010AF (v01 AMD    MYRTLE   00000001 INTL 20120913)
[    0.005383] ACPI: FPDT 0x000000003CB29000 000044 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.005385] ACPI: Reserving FACP table memory at [mem 0x3cb43000-0x3cb43113]
[    0.005386] ACPI: Reserving DSDT table memory at [mem 0x3cb3c000-0x3cb42162]
[    0.005387] ACPI: Reserving FACS table memory at [mem 0x3d1db000-0x3d1db03f]
[    0.005388] ACPI: Reserving SSDT table memory at [mem 0x3cb49000-0x3cb4e418]
[    0.005389] ACPI: Reserving SSDT table memory at [mem 0x3cb45000-0x3cb48b3f]
[    0.005390] ACPI: Reserving SSDT table memory at [mem 0x3cb44000-0x3cb4405f]
[    0.005391] ACPI: Reserving FIDT table memory at [mem 0x3cb3b000-0x3cb3b09b]
[    0.005391] ACPI: Reserving MCFG table memory at [mem 0x3cb3a000-0x3cb3a03b]
[    0.005392] ACPI: Reserving AAFT table memory at [mem 0x3cb39000-0x3cb390ce]
[    0.005393] ACPI: Reserving HPET table memory at [mem 0x3cb38000-0x3cb38037]
[    0.005394] ACPI: Reserving TPM2 table memory at [mem 0x3cb36000-0x3cb3604b]
[    0.005394] ACPI: Reserving SSDT table memory at [mem 0x3cb35000-0x3cb35717]
[    0.005395] ACPI: Reserving CRAT table memory at [mem 0x3cb34000-0x3cb3480f]
[    0.005396] ACPI: Reserving CDIT table memory at [mem 0x3cb33000-0x3cb33028]
[    0.005397] ACPI: Reserving SSDT table memory at [mem 0x3cb2f000-0x3cb32797]
[    0.005397] ACPI: Reserving SSDT table memory at [mem 0x3cb2e000-0x3cb2e0be]
[    0.005398] ACPI: Reserving WSMT table memory at [mem 0x3cb2d000-0x3cb2d027]
[    0.005399] ACPI: Reserving APIC table memory at [mem 0x3cb2c000-0x3cb2c15d]
[    0.005400] ACPI: Reserving SSDT table memory at [mem 0x3cb2a000-0x3cb2b0ae]
[    0.005401] ACPI: Reserving FPDT table memory at [mem 0x3cb29000-0x3cb29043]
[    0.005425] No NUMA configuration found
[    0.005426] Faking a node at [mem 0x0000000000000000-0x000000023f33ffff]
[    0.005429] NODE_DATA(0) allocated [mem 0x23f33b000-0x23f33ffff]
[    0.005445] Zone ranges:
[    0.005446]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.005447]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.005449]   Normal   [mem 0x0000000100000000-0x000000023f33ffff]
[    0.005450]   Device   empty
[    0.005451] Movable zone start for each node
[    0.005451] Early memory node ranges
[    0.005452]   node   0: [mem 0x0000000000001000-0x000000000009cfff]
[    0.005453]   node   0: [mem 0x0000000000100000-0x0000000009bfefff]
[    0.005454]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.005455]   node   0: [mem 0x000000000a20b000-0x000000000affffff]
[    0.005455]   node   0: [mem 0x000000000b020000-0x000000003b436fff]
[    0.005456]   node   0: [mem 0x000000003dfff000-0x000000003effffff]
[    0.005457]   node   0: [mem 0x0000000100000000-0x000000023f33ffff]
[    0.005458] Initmem setup node 0 [mem 0x0000000000001000-0x000000023f33ffff]
[    0.005462] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.005484] On node 0, zone DMA: 99 pages in unavailable ranges
[    0.005682] On node 0, zone DMA32: 1025 pages in unavailable ranges
[    0.005701] On node 0, zone DMA32: 11 pages in unavailable ranges
[    0.007719] On node 0, zone DMA32: 32 pages in unavailable ranges
[    0.007887] On node 0, zone DMA32: 11208 pages in unavailable ranges
[    0.019966] On node 0, zone Normal: 4096 pages in unavailable ranges
[    0.020169] On node 0, zone Normal: 3264 pages in unavailable ranges
[    0.020346] ACPI: PM-Timer IO Port: 0x808
[    0.020352] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.020370] IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23
[    0.020382] IOAPIC[1]: apic_id 6, version 33, address 0xfec01000, GSI 24-55
[    0.020383] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.020385] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.020388] ACPI: Using ACPI (MADT) for SMP configuration information
[    0.020389] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.020393] smpboot: Allowing 32 CPUs, 28 hotplug CPUs
[    0.020420] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.020422] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[    0.020423] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.020423] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.020424] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.020426] PM: hibernation: Registered nosave memory: [mem 0x09bff000-0x09ffffff]
[    0.020427] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
[    0.020429] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.020430] PM: hibernation: Registered nosave memory: [mem 0x3b437000-0x3cb1ffff]
[    0.020431] PM: hibernation: Registered nosave memory: [mem 0x3cb20000-0x3cb4efff]
[    0.020432] PM: hibernation: Registered nosave memory: [mem 0x3cb4f000-0x3d1f7fff]
[    0.020432] PM: hibernation: Registered nosave memory: [mem 0x3d1f8000-0x3dffefff]
[    0.020434] PM: hibernation: Registered nosave memory: [mem 0x3f000000-0xbfffffff]
[    0.020434] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xefffffff]
[    0.020435] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[    0.020436] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfd0fffff]
[    0.020436] PM: hibernation: Registered nosave memory: [mem 0xfd100000-0xfd1fffff]
[    0.020437] PM: hibernation: Registered nosave memory: [mem 0xfd200000-0xfe9fffff]
[    0.020437] PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[    0.020438] PM: hibernation: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[    0.020439] PM: hibernation: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[    0.020439] PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[    0.020440] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[    0.020441] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[    0.020441] PM: hibernation: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[    0.020442] PM: hibernation: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[    0.020442] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[    0.020443] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[    0.020444] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[    0.020444] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[    0.020445] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[    0.020445] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[    0.020446] PM: hibernation: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[    0.020447] PM: hibernation: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[    0.020447] PM: hibernation: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[    0.020448] PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xfeffffff]
[    0.020448] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.020450] [mem 0xc0000000-0xefffffff] available for PCI devices
[    0.020451] Booting paravirtualized kernel on bare hardware
[    0.020454] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.023669] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:32 nr_node_ids:1
[    0.025188] percpu: Embedded 45 pages/cpu s145048 r8192 d31080 u262144
[    0.025200] pcpu-alloc: s145048 r8192 d31080 u262144 alloc=1*2097152
[    0.025202] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.025209] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 
[    0.025242] Built 1 zonelists, mobility grouping on.  Total pages: 1528702
[    0.025244] Policy zone: Normal
[    0.025245] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate root=UUID=b8df54a4-4ae4-4ab0-b5b3-0460cab61db5 ro video=1366x768 rd.retry=40 calculate=video:amdgpu splash quiet
[    0.025299] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate calculate=video:amdgpu", will be passed to user space.
[    0.025300] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.025301] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.025302] printk: log_buf_len min size: 32768 bytes
[    0.025502] printk: log_buf_len: 262144 bytes
[    0.025503] printk: early log buf free: 19216(58%)
[    0.026521] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.027025] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.027104] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.057735] Memory: 5978584K/6212512K available (12290K kernel code, 806K rwdata, 3236K rodata, 1292K init, 468K bss, 233672K reserved, 0K cma-reserved)
[    0.062083] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.062828] rcu: Preemptible hierarchical RCU implementation.
[    0.062829] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=32.
[    0.062831] 	Trampoline variant of Tasks RCU enabled.
[    0.062831] 	Tracing variant of Tasks RCU enabled.
[    0.062832] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.062833] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.062864] NR_IRQS: 4352, nr_irqs: 1224, preallocated irqs: 16
[    0.063406] random: crng init done
[    0.063454] spurious 8259A interrupt: IRQ7.
[    0.063484] Console: colour dummy device 80x25
[    0.063495] printk: console [tty0] enabled
[    0.063544] ACPI: Core revision 20210730
[    0.063684] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.063715] APIC: Switch to symmetric I/O mode setup
[    0.063719] Switched APIC routing to physical flat.
[    0.064860] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.069718] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3272b307295, max_idle_ns: 440795218880 ns
[    0.069720] Calibrating delay loop (skipped), value calculated using timer frequency.. 6999.66 BogoMIPS (lpj=3499833)
[    0.069722] pid_max: default: 32768 minimum: 301
[    0.069767] LSM: Security Framework initializing
[    0.069985] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.070003] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.070543] LVT offset 1 assigned for vector 0xf9
[    0.070627] LVT offset 2 assigned for vector 0xf4
[    0.070649] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.070650] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.070653] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.070655] Spectre V2 : Mitigation: Retpolines
[    0.070656] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.070657] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[    0.070657] Spectre V2 : Enabling Speculation Barrier for firmware calls
[    0.070658] RETBleed: Mitigation: untrained return thunk
[    0.070659] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.070660] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.074921] Freeing SMP alternatives memory: 32K
[    0.178010] smpboot: CPU0: AMD Ryzen 3 2200G with Radeon Vega Graphics (family: 0x17, model: 0x11, stepping: 0x0)
[    0.178168] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.178174] ... version:                0
[    0.178175] ... bit width:              48
[    0.178176] ... generic registers:      6
[    0.178176] ... value mask:             0000ffffffffffff
[    0.178177] ... max period:             00007fffffffffff
[    0.178178] ... fixed-purpose events:   0
[    0.178178] ... event mask:             000000000000003f
[    0.178266] rcu: Hierarchical SRCU implementation.
[    0.178565] smp: Bringing up secondary CPUs ...
[    0.178640] x86: Booting SMP configuration:
[    0.178641] .... node  #0, CPUs:        #1  #2  #3
[    0.181736] smp: Brought up 1 node, 4 CPUs
[    0.181736] smpboot: Max logical packages: 8
[    0.181736] smpboot: Total of 4 processors activated (27998.66 BogoMIPS)
[    0.183003] devtmpfs: initialized
[    0.183003] x86/mm: Memory block size: 128MB
[    0.183109] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
[    0.183109] ACPI: PM: Registering ACPI NVS region [mem 0x3cb4f000-0x3d1f7fff] (6983680 bytes)
[    0.183775] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.183778] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.183911] pinctrl core: initialized pinctrl subsystem
[    0.184086] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.184143] audit: initializing netlink subsys (disabled)
[    0.184157] audit: type=2000 audit(1683186131.119:1): state=initialized audit_enabled=0 res=1
[    0.184157] thermal_sys: Registered thermal governor 'bang_bang'
[    0.184157] thermal_sys: Registered thermal governor 'step_wise'
[    0.184157] thermal_sys: Registered thermal governor 'user_space'
[    0.184157] thermal_sys: Registered thermal governor 'power_allocator'
[    0.184157] cpuidle: using governor ladder
[    0.184157] cpuidle: using governor menu
[    0.184157] ACPI: bus type PCI registered
[    0.184157] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.184157] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[    0.184157] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[    0.184157] PCI: Using configuration type 1 for base access
[    0.184157] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.184157] mtrr: probably your BIOS does not setup all CPUs.
[    0.184157] mtrr: corrected configuration.
[    0.185377] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.185377] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.185765] ACPI: Added _OSI(Module Device)
[    0.185767] ACPI: Added _OSI(Processor Device)
[    0.185767] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.185768] ACPI: Added _OSI(Processor Aggregator Device)
[    0.185769] ACPI: Added _OSI(Linux-Dell-Video)
[    0.185770] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.185771] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.192169] ACPI: 8 ACPI AML tables successfully acquired and loaded
[    0.192954] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.194904] ACPI: Interpreter enabled
[    0.194917] ACPI: PM: (supports S0 S3 S4 S5)
[    0.194918] ACPI: Using IOAPIC for interrupt routing
[    0.195196] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.195468] ACPI: Enabled 3 GPEs in block 00 to 1F
[    0.200754] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.200759] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.200867] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
[    0.200969] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[    0.200977] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[    0.201182] PCI host bridge to bus 0000:00
[    0.201183] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.201185] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.201186] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.201187] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.201189] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.201191] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.201192] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfec2ffff window]
[    0.201194] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.201195] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.201230] pci 0000:00:00.0: [1022:15d0] type 00 class 0x060000
[    0.201363] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.201492] pci 0000:00:01.2: [1022:15d3] type 01 class 0x060400
[    0.201540] pci 0000:00:01.2: enabling Extended Tags
[    0.201599] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[    0.201729] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.201855] pci 0000:00:08.1: [1022:15db] type 01 class 0x060400
[    0.201906] pci 0000:00:08.1: enabling Extended Tags
[    0.201964] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.202104] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.202281] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.202455] pci 0000:00:18.0: [1022:15e8] type 00 class 0x060000
[    0.202505] pci 0000:00:18.1: [1022:15e9] type 00 class 0x060000
[    0.202553] pci 0000:00:18.2: [1022:15ea] type 00 class 0x060000
[    0.202606] pci 0000:00:18.3: [1022:15eb] type 00 class 0x060000
[    0.202656] pci 0000:00:18.4: [1022:15ec] type 00 class 0x060000
[    0.202705] pci 0000:00:18.5: [1022:15ed] type 00 class 0x060000
[    0.202757] pci 0000:00:18.6: [1022:15ee] type 00 class 0x060000
[    0.202806] pci 0000:00:18.7: [1022:15ef] type 00 class 0x060000
[    0.202932] pci 0000:01:00.0: [1022:43bc] type 00 class 0x0c0330
[    0.202954] pci 0000:01:00.0: reg 0x10: [mem 0xfcfa0000-0xfcfa7fff 64bit]
[    0.203004] pci 0000:01:00.0: enabling Extended Tags
[    0.203069] pci 0000:01:00.0: PME# supported from D3hot D3cold
[    0.203184] pci 0000:01:00.1: [1022:43b8] type 00 class 0x010601
[    0.203243] pci 0000:01:00.1: reg 0x24: [mem 0xfcf80000-0xfcf9ffff]
[    0.203253] pci 0000:01:00.1: reg 0x30: [mem 0xfcf00000-0xfcf7ffff pref]
[    0.203261] pci 0000:01:00.1: enabling Extended Tags
[    0.203310] pci 0000:01:00.1: PME# supported from D3hot D3cold
[    0.203392] pci 0000:01:00.2: [1022:43b3] type 01 class 0x060400
[    0.203447] pci 0000:01:00.2: enabling Extended Tags
[    0.203503] pci 0000:01:00.2: PME# supported from D3hot D3cold
[    0.203615] pci 0000:00:01.2: PCI bridge to [bus 01-05]
[    0.203620] pci 0000:00:01.2:   bridge window [io  0xf000-0xffff]
[    0.203623] pci 0000:00:01.2:   bridge window [mem 0xfce00000-0xfcffffff]
[    0.203726] pci 0000:02:04.0: [1022:43b4] type 01 class 0x060400
[    0.203784] pci 0000:02:04.0: enabling Extended Tags
[    0.203855] pci 0000:02:04.0: PME# supported from D3hot D3cold
[    0.203966] pci 0000:02:06.0: [1022:43b4] type 01 class 0x060400
[    0.204025] pci 0000:02:06.0: enabling Extended Tags
[    0.204096] pci 0000:02:06.0: PME# supported from D3hot D3cold
[    0.204206] pci 0000:02:07.0: [1022:43b4] type 01 class 0x060400
[    0.204264] pci 0000:02:07.0: enabling Extended Tags
[    0.204334] pci 0000:02:07.0: PME# supported from D3hot D3cold
[    0.204441] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[    0.204447] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    0.204451] pci 0000:01:00.2:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.204496] pci 0000:02:04.0: PCI bridge to [bus 03]
[    0.204548] pci 0000:02:06.0: PCI bridge to [bus 04]
[    0.204639] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
[    0.204670] pci 0000:05:00.0: reg 0x10: [io  0xf000-0xf0ff]
[    0.204711] pci 0000:05:00.0: reg 0x18: [mem 0xfce04000-0xfce04fff 64bit]
[    0.204739] pci 0000:05:00.0: reg 0x20: [mem 0xfce00000-0xfce03fff 64bit]
[    0.204906] pci 0000:05:00.0: supports D1 D2
[    0.204907] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.205095] pci 0000:02:07.0: PCI bridge to [bus 05]
[    0.205101] pci 0000:02:07.0:   bridge window [io  0xf000-0xffff]
[    0.205104] pci 0000:02:07.0:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.205248] pci 0000:06:00.0: [1002:15dd] type 00 class 0x030000
[    0.205276] pci 0000:06:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.205294] pci 0000:06:00.0: reg 0x18: [mem 0xe0000000-0xe01fffff 64bit pref]
[    0.205306] pci 0000:06:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.205318] pci 0000:06:00.0: reg 0x24: [mem 0xfcd00000-0xfcd7ffff]
[    0.205339] pci 0000:06:00.0: enabling Extended Tags
[    0.205367] pci 0000:06:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.205464] pci 0000:06:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.205620] pci 0000:06:00.1: [1002:15de] type 00 class 0x040300
[    0.205641] pci 0000:06:00.1: reg 0x10: [mem 0xfcd88000-0xfcd8bfff]
[    0.205713] pci 0000:06:00.1: enabling Extended Tags
[    0.205786] pci 0000:06:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.205889] pci 0000:06:00.2: [1022:15df] type 00 class 0x108000
[    0.205931] pci 0000:06:00.2: reg 0x18: [mem 0xfcc00000-0xfccfffff]
[    0.205963] pci 0000:06:00.2: reg 0x24: [mem 0xfcd8c000-0xfcd8dfff]
[    0.205983] pci 0000:06:00.2: enabling Extended Tags
[    0.206150] pci 0000:06:00.3: [1022:15e0] type 00 class 0x0c0330
[    0.206177] pci 0000:06:00.3: reg 0x10: [mem 0xfcb00000-0xfcbfffff 64bit]
[    0.206239] pci 0000:06:00.3: enabling Extended Tags
[    0.206314] pci 0000:06:00.3: PME# supported from D0 D3hot D3cold
[    0.206421] pci 0000:06:00.4: [1022:15e1] type 00 class 0x0c0330
[    0.206448] pci 0000:06:00.4: reg 0x10: [mem 0xfca00000-0xfcafffff 64bit]
[    0.206509] pci 0000:06:00.4: enabling Extended Tags
[    0.206585] pci 0000:06:00.4: PME# supported from D0 D3hot D3cold
[    0.206695] pci 0000:06:00.6: [1022:15e3] type 00 class 0x040300
[    0.206716] pci 0000:06:00.6: reg 0x10: [mem 0xfcd80000-0xfcd87fff]
[    0.206791] pci 0000:06:00.6: enabling Extended Tags
[    0.206861] pci 0000:06:00.6: PME# supported from D0 D3hot D3cold
[    0.206978] pci 0000:00:08.1: PCI bridge to [bus 06]
[    0.206984] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    0.206987] pci 0000:00:08.1:   bridge window [mem 0xfca00000-0xfcdfffff]
[    0.206992] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[    0.207381] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[    0.207424] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[    0.207460] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[    0.207508] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[    0.207550] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[    0.207583] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[    0.207617] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[    0.207651] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[    0.209384] iommu: Default domain type: Translated 
[    0.209385] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.209394] pci 0000:06:00.0: vgaarb: setting as boot VGA device
[    0.209394] pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.209394] pci 0000:06:00.0: vgaarb: bridge control possible
[    0.209394] vgaarb: loaded
[    0.209394] SCSI subsystem initialized
[    0.209394] libata version 3.00 loaded.
[    0.209394] ACPI: bus type USB registered
[    0.209394] usbcore: registered new interface driver usbfs
[    0.209394] usbcore: registered new interface driver hub
[    0.209394] usbcore: registered new device driver usb
[    0.209394] pps_core: LinuxPPS API ver. 1 registered
[    0.209394] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.209394] PTP clock support registered
[    0.209760] PCI: Using ACPI for IRQ routing
[    0.216707] PCI: pci_cache_line_size set to 64 bytes
[    0.216778] e820: reserve RAM buffer [mem 0x0009d400-0x0009ffff]
[    0.216780] e820: reserve RAM buffer [mem 0x09bff000-0x0bffffff]
[    0.216781] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.216782] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.216783] e820: reserve RAM buffer [mem 0x3b437000-0x3bffffff]
[    0.216783] e820: reserve RAM buffer [mem 0x3f000000-0x3fffffff]
[    0.216784] e820: reserve RAM buffer [mem 0x23f340000-0x23fffffff]
[    0.216787] clocksource: Switched to clocksource tsc-early
[    0.216827] VFS: Disk quotas dquot_6.6.0
[    0.216844] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.216887] pnp: PnP ACPI init
[    0.216947] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[    0.216971] system 00:01: [mem 0xfeb80000-0xfebfffff] has been reserved
[    0.217008] system 00:02: [mem 0x40000000-0xbfffffff window] has been reserved
[    0.217218] system 00:04: [io  0x0280-0x028f] has been reserved
[    0.217220] system 00:04: [io  0x0290-0x029f] has been reserved
[    0.217221] system 00:04: [io  0x02a0-0x02af] has been reserved
[    0.217222] system 00:04: [io  0x02b0-0x02bf] has been reserved
[    0.217425] pnp 00:05: [dma 0 disabled]
[    0.217612] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.217615] system 00:06: [io  0x040b] has been reserved
[    0.217616] system 00:06: [io  0x04d6] has been reserved
[    0.217617] system 00:06: [io  0x0c00-0x0c01] has been reserved
[    0.217618] system 00:06: [io  0x0c14] has been reserved
[    0.217619] system 00:06: [io  0x0c50-0x0c51] has been reserved
[    0.217620] system 00:06: [io  0x0c52] has been reserved
[    0.217623] system 00:06: [io  0x0c6c] has been reserved
[    0.217623] system 00:06: [io  0x0c6f] has been reserved
[    0.217624] system 00:06: [io  0x0cd8-0x0cdf] has been reserved
[    0.217626] system 00:06: [io  0x0800-0x089f] has been reserved
[    0.217627] system 00:06: [io  0x0b00-0x0b0f] has been reserved
[    0.217628] system 00:06: [io  0x0b20-0x0b3f] has been reserved
[    0.217629] system 00:06: [io  0x0900-0x090f] has been reserved
[    0.217630] system 00:06: [io  0x0910-0x091f] has been reserved
[    0.217631] system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.217633] system 00:06: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.217634] system 00:06: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.217635] system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.217635] system 00:06: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.217635] system 00:06: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.217635] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    0.217991] pnp: PnP ACPI: found 7 devices
[    0.223524] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.223561] NET: Registered PF_INET protocol family
[    0.223708] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.224661] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.224672] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.224676] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.224750] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.224891] TCP: Hash tables configured (established 65536 bind 65536)
[    0.225006] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.225028] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.225048] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.225119] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.225141] pci 0000:02:04.0: PCI bridge to [bus 03]
[    0.225157] pci 0000:02:06.0: PCI bridge to [bus 04]
[    0.225169] pci 0000:02:07.0: PCI bridge to [bus 05]
[    0.225172] pci 0000:02:07.0:   bridge window [io  0xf000-0xffff]
[    0.225177] pci 0000:02:07.0:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.225186] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[    0.225188] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    0.225192] pci 0000:01:00.2:   bridge window [mem 0xfce00000-0xfcefffff]
[    0.225201] pci 0000:00:01.2: PCI bridge to [bus 01-05]
[    0.225203] pci 0000:00:01.2:   bridge window [io  0xf000-0xffff]
[    0.225207] pci 0000:00:01.2:   bridge window [mem 0xfce00000-0xfcffffff]
[    0.225218] pci 0000:00:08.1: PCI bridge to [bus 06]
[    0.225225] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    0.225229] pci 0000:00:08.1:   bridge window [mem 0xfca00000-0xfcdfffff]
[    0.225233] pci 0000:00:08.1:   bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[    0.225241] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.225243] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.225244] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.225245] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.225246] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.225247] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.225248] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xfec2ffff window]
[    0.225250] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[    0.225251] pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
[    0.225252] pci_bus 0000:01: resource 1 [mem 0xfce00000-0xfcffffff]
[    0.225253] pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
[    0.225254] pci_bus 0000:02: resource 1 [mem 0xfce00000-0xfcefffff]
[    0.225255] pci_bus 0000:05: resource 0 [io  0xf000-0xffff]
[    0.225256] pci_bus 0000:05: resource 1 [mem 0xfce00000-0xfcefffff]
[    0.225257] pci_bus 0000:06: resource 0 [io  0xe000-0xefff]
[    0.225258] pci_bus 0000:06: resource 1 [mem 0xfca00000-0xfcdfffff]
[    0.225259] pci_bus 0000:06: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]
[    0.225488] pci 0000:06:00.1: D0 power state depends on 0000:06:00.0
[    0.225551] pci 0000:06:00.3: extending delay after power-on from D3hot to 20 msec
[    0.225671] pci 0000:06:00.4: extending delay after power-on from D3hot to 20 msec
[    0.225750] PCI: CLS 64 bytes, default 64
[    0.225757] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.225758] software IO TLB: mapped [mem 0x0000000037437000-0x000000003b437000] (64MB)
[    0.225818] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    0.225819] RAPL PMU: hw unit of domain package 2^-16 Joules
[    0.225836] amd_uncore: 4  amd_df counters detected
[    0.225840] Trying to unpack rootfs image as initramfs...
[    0.225853] amd_uncore: 6  amd_l3 counters detected
[    0.233389] Initialise system trusted keyrings
[    0.233423] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.234539] zbud: loaded
[    0.243284] Key type asymmetric registered
[    0.243290] Asymmetric key parser 'x509' registered
[    0.243321] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.243361] io scheduler mq-deadline registered
[    0.243362] io scheduler kyber registered
[    0.243402] io scheduler bfq registered
[    0.243587] pcieport 0000:00:01.2: PME: Signaling with IRQ 25
[    0.243731] pcieport 0000:00:08.1: PME: Signaling with IRQ 26
[    0.244498] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.245043] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.245124] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.337468] Freeing initrd memory: 24532K
[    0.338479] lp: driver loaded but no devices found
[    0.338481] Linux agpgart interface v0.103
[    0.341194] loop: module loaded
[    0.341397] ahci 0000:01:00.1: version 3.0
[    0.341526] ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
[    0.341573] ahci 0000:01:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
[    0.341576] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    0.342001] scsi host0: ahci
[    0.342125] scsi host1: ahci
[    0.342202] scsi host2: ahci
[    0.342274] scsi host3: ahci
[    0.342358] scsi host4: ahci
[    0.342438] scsi host5: ahci
[    0.342510] scsi host6: ahci
[    0.342586] scsi host7: ahci
[    0.342619] ata1: SATA max UDMA/133 abar m131072@0xfcf80000 port 0xfcf80100 irq 35
[    0.342622] ata2: SATA max UDMA/133 abar m131072@0xfcf80000 port 0xfcf80180 irq 35
[    0.342623] ata3: DUMMY
[    0.342624] ata4: DUMMY
[    0.342626] ata5: SATA max UDMA/133 abar m131072@0xfcf80000 port 0xfcf80300 irq 35
[    0.342628] ata6: SATA max UDMA/133 abar m131072@0xfcf80000 port 0xfcf80380 irq 35
[    0.342629] ata7: DUMMY
[    0.342630] ata8: DUMMY
[    0.342673] PPP generic driver version 2.4.2
[    0.342733] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.342734] ehci-pci: EHCI PCI platform driver
[    0.342742] ehci-platform: EHCI generic platform driver
[    0.342780] usbcore: registered new interface driver usb-storage
[    0.342811] i8042: PNP: No PS/2 controller found.
[    0.342880] mousedev: PS/2 mouse device common for all mice
[    0.342926] rtc_cmos 00:03: RTC can wake from S4
[    0.343205] rtc_cmos 00:03: registered as rtc0
[    0.343256] rtc_cmos 00:03: setting system clock to 2023-05-04T07:42:12 UTC (1683186132)
[    0.343272] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.343312] ledtrig-cpu: registered to indicate activity on CPUs
[    0.343336] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[    0.343338] vesafb: scrolling: redraw
[    0.343339] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[    0.343351] vesafb: framebuffer at 0xd0000000, mapped to 0x0000000017066049, using 3072k, total 3072k
[    0.343426] Console: switching to colour frame buffer device 128x48
[    0.364954] fb0: VESA VGA frame buffer device
[    0.364972] hid: raw HID events driver (C) Jiri Kosina
[    0.365152] usbcore: registered new interface driver usbhid
[    0.365153] usbhid: USB HID core driver
[    0.365343] NET: Registered PF_INET6 protocol family
[    0.368183] Segment Routing with IPv6
[    0.368184] RPL Segment Routing with IPv6
[    0.368189] In-situ OAM (IOAM) with IPv6
[    0.368203] NET: Registered PF_PACKET protocol family
[    0.368223] Key type dns_resolver registered
[    0.368464] microcode: CPU0: patch_level=0x08101016
[    0.368469] microcode: CPU1: patch_level=0x08101016
[    0.368475] microcode: CPU2: patch_level=0x08101016
[    0.368479] microcode: CPU3: patch_level=0x08101016
[    0.368506] microcode: Microcode Update Driver: v2.2.
[    0.368509] IPI shorthand broadcast: enabled
[    0.368515] sched_clock: Marking stable (366972596, 1530252)->(386927492, -18424644)
[    0.368538] registered taskstats version 1
[    0.368540] Loading compiled-in X.509 certificates
[    0.369308] zswap: loaded using pool zstd/zbud
[    0.655227] ata1: SATA link down (SStatus 0 SControl 300)
[    0.967676] ata2: SATA link down (SStatus 0 SControl 300)
[    1.247737] tsc: Refined TSC clocksource calibration: 3499.985 MHz
[    1.247748] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3273429044c, max_idle_ns: 440795241221 ns
[    1.247771] clocksource: Switched to clocksource tsc
[    1.431737] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.432526] ata5.00: ATA-8: TOSHIBA HDWD110, MS2OA8R0, max UDMA/133
[    1.432791] ata5.00: ATA Identify Device Log not supported
[    1.432793] ata5.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    1.433985] ata5.00: ATA Identify Device Log not supported
[    1.433988] ata5.00: configured for UDMA/133
[    1.434191] scsi 4:0:0:0: Direct-Access     ATA      TOSHIBA HDWD110  A8R0 PQ: 0 ANSI: 5
[    1.434406] sd 4:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    1.434408] sd 4:0:0:0: [sda] 4096-byte physical blocks
[    1.434417] sd 4:0:0:0: [sda] Write Protect is off
[    1.434419] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.434432] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.495384]  sda: sda1 sda2 sda3 sda4
[    1.495590] sd 4:0:0:0: [sda] Attached SCSI disk
[    1.740812] ata6: SATA link down (SStatus 0 SControl 300)
[    1.741237] Freeing unused kernel image (initmem) memory: 1292K
[    1.741241] Write protecting the kernel read-only data: 18432k
[    1.741874] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    1.742102] Freeing unused kernel image (rodata/data gap) memory: 860K
[    1.742110] rodata_test: all tests were successful
[    1.742117] Run /init as init process
[    1.742118]   with arguments:
[    1.742119]     /init
[    1.742119]     splash
[    1.742120]   with environment:
[    1.742121]     HOME=/
[    1.742121]     TERM=linux
[    1.742122]     BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate
[    1.742122]     calculate=video:amdgpu
[    1.774389] dracut: Calculate-23
[    1.797731] raid6: avx2x4   gen() 26116 MB/s
[    1.814721] raid6: avx2x4   xor()  7798 MB/s
[    1.831736] raid6: avx2x2   gen() 29058 MB/s
[    1.848730] raid6: avx2x2   xor() 16569 MB/s
[    1.865731] raid6: avx2x1   gen() 25749 MB/s
[    1.882731] raid6: avx2x1   xor() 16190 MB/s
[    1.899721] raid6: sse2x4   gen() 16538 MB/s
[    1.916722] raid6: sse2x4   xor()  7942 MB/s
[    1.933730] raid6: sse2x2   gen() 18897 MB/s
[    1.950722] raid6: sse2x2   xor() 10913 MB/s
[    1.967732] raid6: sse2x1   gen() 13948 MB/s
[    1.984731] raid6: sse2x1   xor()  8243 MB/s
[    1.984732] raid6: using algorithm avx2x2 gen() 29058 MB/s
[    1.984732] raid6: .... xor() 16569 MB/s, rmw enabled
[    1.984733] raid6: using avx2x2 recovery algorithm
[    1.984990] xor: automatically using best checksumming function   avx       
[    2.005028] Btrfs loaded, crc32c=crc32c-intel, zoned=no, fsverity=no
[    2.040635] dracut: TuxOnIce premodule started
[    2.040687] dracut: Kernel has no tuxonice support, aborting
[    2.088851] AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
[    2.105643] ACPI: video: Video Device [VGA1] (multi-head: yes  rom: no  post: no)
[    2.105839] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GP17.VGA.LCD._BCM.AFN7], AE_NOT_FOUND (20210730/psargs-330)
[    2.106658] ACPI Error: Aborting method \_SB.PCI0.GP17.VGA.LCD._BCM due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[    2.107461] ACPI: \_SB_.PCI0.GP17.VGA_.LCD_: _BCM evaluation failed
[    2.110287] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/LNXVIDEO:01/input/input0
[    2.178488] [drm] amdgpu kernel modesetting enabled.
[    2.178635] amdgpu: Topology: Add APU node [0x0:0x0]
[    2.178708] checking generic (d0000000 300000) vs hw (d0000000 10000000)
[    2.178873] Console: switching to colour dummy device 80x25
[    2.179027] amdgpu 0000:06:00.0: vgaarb: deactivate vga console
[    2.179217] [drm] initializing kernel modesetting (RAVEN 0x1002:0x15DD 0x1002:0x15DD 0xC8).
[    2.179221] amdgpu 0000:06:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[    2.179236] [drm] register mmio base: 0xFCD00000
[    2.179236] [drm] register mmio size: 524288
[    2.179253] [drm] add ip block number 0 <soc15_common>
[    2.179255] [drm] add ip block number 1 <gmc_v9_0>
[    2.179256] [drm] add ip block number 2 <vega10_ih>
[    2.179257] [drm] add ip block number 3 <psp>
[    2.179258] [drm] add ip block number 4 <gfx_v9_0>
[    2.179259] [drm] add ip block number 5 <sdma_v4_0>
[    2.179261] [drm] add ip block number 6 <powerplay>
[    2.179262] [drm] add ip block number 7 <dm>
[    2.179263] [drm] add ip block number 8 <vcn_v1_0>
[    2.203797] [drm] BIOS signature incorrect 0 0
[    2.203820] amdgpu 0000:06:00.0: amdgpu: Fetched VBIOS from ROM BAR
[    2.203821] amdgpu: ATOM BIOS: 113-RAVEN-117
[    2.203845] [drm] VCN decode is enabled in VM mode
[    2.203846] [drm] VCN encode is enabled in VM mode
[    2.203846] [drm] JPEG decode is enabled in VM mode
[    2.203871] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    2.203877] amdgpu 0000:06:00.0: amdgpu: VRAM: 2048M 0x000000F400000000 - 0x000000F47FFFFFFF (2048M used)
[    2.203879] amdgpu 0000:06:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[    2.203881] amdgpu 0000:06:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[    2.203886] [drm] Detected VRAM RAM=2048M, BAR=2048M
[    2.203886] [drm] RAM width 64bits DDR4
[    2.203910] [drm] amdgpu: 2048M of VRAM memory ready
[    2.203911] [drm] amdgpu: 3072M of GTT memory ready.
[    2.203914] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    2.204040] [drm] PCIE GART of 1024M enabled.
[    2.204042] [drm] PTB located at 0x000000F400900000
[    2.204178] amdgpu 0000:06:00.0: amdgpu: PSP runtime database doesn't exist
[    2.205262] amdgpu: hwmgr_sw_init smu backed is smu10_smu
[    2.205352] [drm] Found VCN firmware Version ENC: 1.13 DEC: 2 VEP: 0 Revision: 4
[    2.205356] amdgpu 0000:06:00.0: amdgpu: Will use PSP to load VCN firmware
[    2.226140] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[    2.286541] amdgpu 0000:06:00.0: amdgpu: RAS: optional ras ta ucode is not available
[    2.291440] amdgpu 0000:06:00.0: amdgpu: RAP: optional rap ta ucode is not available
[    2.291441] amdgpu 0000:06:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[    2.292837] [drm] kiq ring mec 2 pipe 1 q 0
[    2.293212] [drm] DM_PPLIB: values for F clock
[    2.293214] [drm] DM_PPLIB:	 400000 in kHz, 3649 in mV
[    2.293215] [drm] DM_PPLIB:	 933000 in kHz, 4074 in mV
[    2.293215] [drm] DM_PPLIB:	 1200000 in kHz, 4399 in mV
[    2.293216] [drm] DM_PPLIB:	 1333000 in kHz, 4399 in mV
[    2.293218] [drm] DM_PPLIB: values for DCF clock
[    2.293219] [drm] DM_PPLIB:	 300000 in kHz, 3649 in mV
[    2.293220] [drm] DM_PPLIB:	 600000 in kHz, 4074 in mV
[    2.293220] [drm] DM_PPLIB:	 626000 in kHz, 4250 in mV
[    2.293221] [drm] DM_PPLIB:	 654000 in kHz, 4399 in mV
[    2.293519] [drm] Display Core initialized with v3.2.149!
[    2.330291] [drm:dc_link_detect_helper [amdgpu]] *ERROR* No EDID read.
[    2.407764] 	[00] BAD  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    2.407766] 	[00] BAD  00 00 00 04 a5 00 00 00 00 00 00 00 00 00 00 00
[    2.407767] 	[00] BAD  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    2.407768] 	[00] BAD  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    2.407768] 	[00] BAD  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    2.407769] 	[00] BAD  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    2.407770] 	[00] BAD  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
[    2.407770] 	[00] BAD  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 57
[    2.409675] [drm:dc_link_detect_helper [amdgpu]] *ERROR* EDID checksum invalid.
[    2.439237] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[    2.440062] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[    2.440102] kfd kfd: amdgpu: error getting iommu info. is the iommu enabled?
[    2.440105] kfd kfd: amdgpu: Error initializing iommuv2
[    2.440435] kfd kfd: amdgpu: device 1002:15dd NOT added due to errors
[    2.440452] amdgpu 0000:06:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 11, active_cu_number 8
[    2.441487] [drm] fb mappable at 0x40BCA000
[    2.441489] [drm] vram apper at 0x40000000
[    2.441489] [drm] size 4325376
[    2.441490] [drm] fb depth is 24
[    2.441491] [drm]    pitch is 5632
[    2.441540] fbcon: amdgpudrmfb (fb0) is primary device
[    2.480725] Console: switching to colour frame buffer device 170x48
[    2.498600] amdgpu 0000:06:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[    2.503794] amdgpu 0000:06:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[    2.503797] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    2.503799] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    2.503800] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    2.503802] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    2.503803] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    2.503805] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    2.503806] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    2.503807] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    2.503809] amdgpu 0000:06:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    2.503810] amdgpu 0000:06:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[    2.503811] amdgpu 0000:06:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[    2.503813] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[    2.503814] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[    2.503816] amdgpu 0000:06:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[    2.508440] [drm] Initialized amdgpu 3.42.0 20150101 for 0000:06:00.0 on minor 0
[    2.514099] dracut: Starting plymouth daemon
[    2.633521] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.633912] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    2.633982] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    2.634033] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    2.634552] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[    2.639273] cryptd: max_cpu_qlen set to 1000
[    2.643696] AVX2 version of gcm_enc/dec engaged.
[    2.643708] AES CTR mode by8 optimization enabled
[    2.645132] ccp 0000:06:00.2: ccp enabled
[    2.655487] ccp 0000:06:00.2: tee enabled
[    2.655493] ccp 0000:06:00.2: psp enabled
[    2.689995] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000008000410
[    2.690203] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.690244] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[    2.690249] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    2.690293] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    2.690295] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.690297] usb usb1: Product: xHCI Host Controller
[    2.690298] usb usb1: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    2.690299] usb usb1: SerialNumber: 0000:01:00.0
[    2.690381] hub 1-0:1.0: USB hub found
[    2.690396] hub 1-0:1.0: 9 ports detected
[    2.690740] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.690753] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[    2.690755] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.690756] usb usb2: Product: xHCI Host Controller
[    2.690757] usb usb2: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    2.690758] usb usb2: SerialNumber: 0000:01:00.0
[    2.690816] hub 2-0:1.0: USB hub found
[    2.690823] hub 2-0:1.0: 3 ports detected
[    2.691127] xhci_hcd 0000:06:00.3: xHCI Host Controller
[    2.691154] xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 3
[    2.691345] xhci_hcd 0000:06:00.3: hcc params 0x0270ffe5 hci version 0x110 quirks 0x0000000840000410
[    2.691615] xhci_hcd 0000:06:00.3: xHCI Host Controller
[    2.691635] xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 4
[    2.691637] xhci_hcd 0000:06:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    2.691672] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    2.691673] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.691675] usb usb3: Product: xHCI Host Controller
[    2.691675] usb usb3: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    2.691676] usb usb3: SerialNumber: 0000:06:00.3
[    2.691740] hub 3-0:1.0: USB hub found
[    2.691754] hub 3-0:1.0: 4 ports detected
[    2.691926] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.691938] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[    2.691939] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.691940] usb usb4: Product: xHCI Host Controller
[    2.691941] usb usb4: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    2.691942] usb usb4: SerialNumber: 0000:06:00.3
[    2.691997] hub 4-0:1.0: USB hub found
[    2.692010] hub 4-0:1.0: 4 ports detected
[    2.692432] xhci_hcd 0000:06:00.4: xHCI Host Controller
[    2.692459] xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 5
[    2.692621] xhci_hcd 0000:06:00.4: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000840000410
[    2.692855] xhci_hcd 0000:06:00.4: xHCI Host Controller
[    2.692874] xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 6
[    2.692876] xhci_hcd 0000:06:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    2.692911] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[    2.692912] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.692914] usb usb5: Product: xHCI Host Controller
[    2.692914] usb usb5: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    2.692915] usb usb5: SerialNumber: 0000:06:00.4
[    2.692971] hub 5-0:1.0: USB hub found
[    2.692980] hub 5-0:1.0: 1 port detected
[    2.693043] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.693054] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[    2.693056] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.693057] usb usb6: Product: xHCI Host Controller
[    2.693058] usb usb6: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[    2.693059] usb usb6: SerialNumber: 0000:06:00.4
[    2.693112] hub 6-0:1.0: USB hub found
[    2.693122] hub 6-0:1.0: 1 port detected
[    2.929736] usb 3-2: new low-speed USB device number 2 using xhci_hcd
[    3.066251] BTRFS: device label CLD-23 devid 1 transid 10204 /dev/sda1 scanned by (udev-worker) (895)
[    3.075802] usb 3-2: New USB device found, idVendor=10c4, idProduct=8108, bcdDevice= 0.00
[    3.075805] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.075807] usb 3-2: Product: USB OPTICAL MOUSE
[    3.075808] usb 3-2: Manufacturer: YSPRINGTECH
[    3.098202] input: YSPRINGTECH USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-2/3-2:1.0/0003:10C4:8108.0001/input/input1
[    3.098276] hid-generic 0003:10C4:8108.0001: input,hidraw0: USB HID v1.11 Mouse [YSPRINGTECH USB OPTICAL MOUSE] on usb-0000:06:00.3-2/input0
[    3.203160] BTRFS: device label Calculate devid 1 transid 30814 /dev/sda3 scanned by (udev-worker) (611)
[    3.212621] dracut: TuxOnIce lvmfix started
[    3.212727] usb 3-3: new low-speed USB device number 3 using xhci_hcd
[    3.214885] dracut: TuxOnIce udev should be now fully settled
[    3.223991] BTRFS info (device sda1): using free space tree
[    3.223995] BTRFS info (device sda1): has skinny extents
[    3.288685] BTRFS info (device sda1): bdev /dev/sda1 errs: wr 0, rd 0, flush 0, corrupt 40, gen 0
[    3.356804] usb 3-3: New USB device found, idVendor=2a7a, idProduct=938f, bcdDevice= 0.01
[    3.356807] usb 3-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.356809] usb 3-3: Product: CASUE USB KB
[    3.387152] input: CASUE USB KB as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-3/3-3:1.0/0003:2A7A:938F.0002/input/input2
[    3.438957] hid-generic 0003:2A7A:938F.0002: input,hidraw1: USB HID v1.10 Keyboard [CASUE USB KB] on usb-0000:06:00.3-3/input0
[    3.447006] input: CASUE USB KB Consumer Control as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-3/3-3:1.1/0003:2A7A:938F.0003/input/input3
[    3.498777] input: CASUE USB KB System Control as /devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb3/3-3/3-3:1.1/0003:2A7A:938F.0003/input/input4
[    3.498825] hid-generic 0003:2A7A:938F.0003: input,hidraw2: USB HID v1.10 Device [CASUE USB KB] on usb-0000:06:00.3-3/input1
[    3.735006] dracut: Mounted root filesystem /dev/sda1
[    3.941413] dracut: Switching root
[    7.082491] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    7.082495] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    7.082556] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    7.084754] input: PC Speaker as /devices/platform/pcspkr/input/input5
[    7.090297] acpi_cpufreq: overriding BIOS provided _PSD data
[    7.092568] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
[    7.092628] ACPI: button: Power Button [PWRB]
[    7.092675] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
[    7.097759] ACPI: button: Power Button [PWRF]
[    7.255271] kvm: Nested Virtualization enabled
[    7.255275] SVM: kvm: Nested Paging enabled
[    7.255276] SEV supported: 16 ASIDs
[    7.255277] SEV-ES supported: 4294967295 ASIDs
[    7.255304] SVM: Virtual VMLOAD VMSAVE supported
[    7.255304] SVM: Virtual GIF supported
[    7.322084] r8169 0000:05:00.0 eth0: RTL8168h/8111h, 70:85:c2:96:6f:02, XID 541, IRQ 53
[    7.322090] r8169 0000:05:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    7.324158] r8169 0000:05:00.0 enp5s0: renamed from eth0
[    7.327192] snd_hda_intel 0000:06:00.1: bound 0000:06:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[    7.327927] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:06:00.1/sound/card0/input8
[    7.327963] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:06:00.1/sound/card0/input9
[    7.327990] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:06:00.1/sound/card0/input10
[    7.336596] EDAC MC: Ver: 3.0.0
[    7.341120] MCE: In-kernel MCE decoding enabled.
[    7.446151] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    7.446157] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    7.446160] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    7.446162] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    7.446164] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    7.446165] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    7.446167] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    7.446169] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    7.469107] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input11
[    7.469191] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input12
[    7.469790] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input13
[    7.470291] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input14
[    7.470472] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input15
[    7.576735] clocksource: timekeeping watchdog on CPU2: Marking clocksource 'tsc' as unstable because the skew is too large:
[    7.576742] clocksource:                       'hpet' wd_nsec: 502631968 wd_now: 66cec89 wd_last: 5ff1c22 mask: ffffffff
[    7.576746] clocksource:                       'tsc' cs_nsec: 505001992 cs_now: 11cd8bc624 cs_last: 116431dfdd mask: ffffffffffffffff
[    7.576750] clocksource:                       'tsc' is current clocksource.
[    7.576753] tsc: Marking TSC unstable due to clocksource watchdog
[    7.576759] TSC found unstable after boot, most likely due to broken BIOS. Use 'tsc=unstable'.
[    7.576761] sched_clock: Marking unstable (7575227786, 1530404)<-(7595182827, -18424644)
[    7.576798] clocksource: Checking clocksource tsc synchronization from CPU 2 to CPUs 0-1.
[    7.576832] clocksource: Switched to clocksource hpet
[    7.597264] zram: Added device: zram0
[    7.731410] zram0: detected capacity change from 0 to 24030400
[    7.878610] Adding 12015196k swap on /dev/zram0.  Priority:100 extents:1 across:12015196k SSFS
[    7.967666] BTRFS info (device sda3): using free space tree
[    7.967671] BTRFS info (device sda3): has skinny extents
[    8.202679] BTRFS info (device sda3): start tree-log replay
[    9.348927] BTRFS info (device sda3): checking UUID tree
[   11.570860] Bluetooth: Core ver 2.22
[   11.570893] NET: Registered PF_BLUETOOTH protocol family
[   11.570895] Bluetooth: HCI device and connection manager initialized
[   11.570900] Bluetooth: HCI socket layer initialized
[   11.570904] Bluetooth: L2CAP socket layer initialized
[   11.570908] Bluetooth: SCO socket layer initialized
[   11.644961] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   11.644966] Bluetooth: BNEP filters: protocol multicast
[   11.644971] Bluetooth: BNEP socket layer initialized
[   12.531762] Generic FE-GE Realtek PHY r8169-0-500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-500:00, irq=MAC)
[   12.671598] r8169 0000:05:00.0 enp5s0: Link is Down
[   13.904154] NET: Registered PF_QIPCRTR protocol family
[   14.243969] r8169 0000:05:00.0 enp5s0: Link is Up - 100Mbps/Full - flow control rx/tx
[   14.243981] IPv6: ADDRCONF(NETDEV_CHANGE): enp5s0: link becomes ready
[   14.474238] 8021q: 802.1Q VLAN Support v1.8
[   14.589541] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[   14.592570] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[   17.988705] Key type encrypted registered
Add Comment
Author