Paste #224104

   
pasted on 04.10.2021 20:37
  • Edit to this paste
  • Print
  • Raw
  • The following pastes replied to this paste:  # 232461
  • Show paste tree
  • 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
[    0.000000] Linux version 5.10.68-calculate (root@localhost) (gcc (Gentoo 10.3.0-r2 p3) 10.3.0, GNU ld (Gentoo 2.37_p1 p0) 2.37) #1 SMP PREEMPT Fri Sep 24 12:41:54 UTC 2021
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.10.68-calculate root=UUID=8a420d96-860d-4973-a60b-0c5c8e603a06 ro video=1920x1080-32 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: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009c3ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009c400-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040400000-0x000000009c935fff] usable
[    0.000000] BIOS-e820: [mem 0x000000009c936000-0x000000009c936fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009c937000-0x000000009c95cfff] usable
[    0.000000] BIOS-e820: [mem 0x000000009c95d000-0x000000009c95dfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009c95e000-0x000000009caa6fff] usable
[    0.000000] BIOS-e820: [mem 0x000000009caa7000-0x000000009e312fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009e313000-0x000000009e38ffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000009e390000-0x000000009e868fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000009e869000-0x000000009effdfff] reserved
[    0.000000] BIOS-e820: [mem 0x000000009effe000-0x000000009effefff] usable
[    0.000000] BIOS-e820: [mem 0x000000009efff000-0x000000009fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000025effffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 3.2.0 present.
[    0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./B460M Pro4, BIOS P1.60 07/29/2021
[    0.000000] tsc: Detected 3600.000 MHz processor
[    0.000394] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000395] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000400] last_pfn = 0x25f000 max_arch_pfn = 0x400000000
[    0.000402] MTRR default type: write-back
[    0.000403] MTRR fixed ranges enabled:
[    0.000404]   00000-9FFFF write-back
[    0.000404]   A0000-BFFFF uncachable
[    0.000405]   C0000-FFFFF write-protect
[    0.000405] MTRR variable ranges enabled:
[    0.000406]   0 base 00C0000000 mask 7FC0000000 uncachable
[    0.000407]   1 base 00A0000000 mask 7FE0000000 uncachable
[    0.000407]   2 base 2000000000 mask 6000000000 uncachable
[    0.000408]   3 base 1000000000 mask 7000000000 uncachable
[    0.000409]   4 base 0800000000 mask 7800000000 uncachable
[    0.000409]   5 base 0400000000 mask 7C00000000 uncachable
[    0.000410]   6 base 4000000000 mask 4000000000 uncachable
[    0.000410]   7 disabled
[    0.000410]   8 disabled
[    0.000411]   9 disabled
[    0.000748] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000965] last_pfn = 0x9efff max_arch_pfn = 0x400000000
[    0.005955] found SMP MP-table at [mem 0x000fcd60-0x000fcd6f]
[    0.005963] Using GB pages for direct mapping
[    0.006457] RAMDISK: [mem 0x31779000-0x34bb3fff]
[    0.006458] ACPI: Early table checksum verification disabled
[    0.006460] ACPI: RSDP 0x00000000000F05B0 000024 (v02 ALASKA)
[    0.006462] ACPI: XSDT 0x000000009E7F3728 0000C4 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.006466] ACPI: FACP 0x000000009E389000 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.006469] ACPI: DSDT 0x000000009E351000 037A24 (v02 ALASKA A M I    01072009 INTL 20160527)
[    0.006472] ACPI: FACS 0x000000009E868000 000040
[    0.006473] ACPI: MCFG 0x000000009E38D000 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.006475] ACPI: SSDT 0x000000009E38A000 0020AD (v02 CpuRef CpuSsdt  00003000 INTL 20160527)
[    0.006477] ACPI: FIDT 0x000000009E350000 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.006479] ACPI: AAFT 0x000000009E38F000 000310 (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
[    0.006481] ACPI: SSDT 0x000000009E34C000 0031DA (v02 SaSsdt SaSsdt   00003000 INTL 20160527)
[    0.006483] ACPI: SSDT 0x000000009E349000 002703 (v02 Intel  PegSsdt  00001000 INTL 20160527)
[    0.006485] ACPI: HPET 0x000000009E38E000 000038 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.006487] ACPI: SSDT 0x000000009E346000 002FB1 (v02 INTEL  xh_cmvd4 00000000 INTL 20160527)
[    0.006489] ACPI: NHLT 0x000000009E345000 00002D (v00 ALASKA A M I    01072009 AMI  01000013)
[    0.006490] ACPI: LPIT 0x000000009E344000 000094 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.006492] ACPI: SSDT 0x000000009E340000 0025B2 (v02 ALASKA TbtTypeC 00000000 INTL 20160527)
[    0.006494] ACPI: DBGP 0x000000009E33F000 000034 (v01 ALASKA A M I    01072009 AMI  01000013)
[    0.006496] ACPI: DBG2 0x000000009E33E000 000054 (v00 ALASKA A M I    01072009 AMI  01000013)
[    0.006498] ACPI: SSDT 0x000000009E33C000 001B67 (v02 ALASKA UsbCTabl 00001000 INTL 20160527)
[    0.006500] ACPI: DMAR 0x000000009E33B000 000070 (v01 INTEL  EDK2     00000002      01000013)
[    0.006502] ACPI: TPM2 0x000000009E339000 00004C (v04 ALASKA A M I    00000001 AMI  00000000)
[    0.006504] ACPI: WSMT 0x000000009E343000 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.006505] ACPI: APIC 0x000000009E338000 0000BC (v04 ALASKA A M I    01072009 AMI  00010013)
[    0.006507] ACPI: FPDT 0x000000009E337000 000044 (v01 ALASKA CML      01072009 AMI  01000013)
[    0.006509] ACPI: Reserving FACP table memory at [mem 0x9e389000-0x9e389113]
[    0.006510] ACPI: Reserving DSDT table memory at [mem 0x9e351000-0x9e388a23]
[    0.006510] ACPI: Reserving FACS table memory at [mem 0x9e868000-0x9e86803f]
[    0.006511] ACPI: Reserving MCFG table memory at [mem 0x9e38d000-0x9e38d03b]
[    0.006512] ACPI: Reserving SSDT table memory at [mem 0x9e38a000-0x9e38c0ac]
[    0.006512] ACPI: Reserving FIDT table memory at [mem 0x9e350000-0x9e35009b]
[    0.006513] ACPI: Reserving AAFT table memory at [mem 0x9e38f000-0x9e38f30f]
[    0.006513] ACPI: Reserving SSDT table memory at [mem 0x9e34c000-0x9e34f1d9]
[    0.006514] ACPI: Reserving SSDT table memory at [mem 0x9e349000-0x9e34b702]
[    0.006514] ACPI: Reserving HPET table memory at [mem 0x9e38e000-0x9e38e037]
[    0.006515] ACPI: Reserving SSDT table memory at [mem 0x9e346000-0x9e348fb0]
[    0.006515] ACPI: Reserving NHLT table memory at [mem 0x9e345000-0x9e34502c]
[    0.006516] ACPI: Reserving LPIT table memory at [mem 0x9e344000-0x9e344093]
[    0.006516] ACPI: Reserving SSDT table memory at [mem 0x9e340000-0x9e3425b1]
[    0.006517] ACPI: Reserving DBGP table memory at [mem 0x9e33f000-0x9e33f033]
[    0.006518] ACPI: Reserving DBG2 table memory at [mem 0x9e33e000-0x9e33e053]
[    0.006518] ACPI: Reserving SSDT table memory at [mem 0x9e33c000-0x9e33db66]
[    0.006519] ACPI: Reserving DMAR table memory at [mem 0x9e33b000-0x9e33b06f]
[    0.006519] ACPI: Reserving TPM2 table memory at [mem 0x9e339000-0x9e33904b]
[    0.006520] ACPI: Reserving WSMT table memory at [mem 0x9e343000-0x9e343027]
[    0.006520] ACPI: Reserving APIC table memory at [mem 0x9e338000-0x9e3380bb]
[    0.006521] ACPI: Reserving FPDT table memory at [mem 0x9e337000-0x9e337043]
[    0.006526] ACPI: Local APIC address 0xfee00000
[    0.006534] No NUMA configuration found
[    0.006534] Faking a node at [mem 0x0000000000000000-0x000000025effffff]
[    0.006537] NODE_DATA(0) allocated [mem 0x25eff8000-0x25effcfff]
[    0.006549] Zone ranges:
[    0.006550]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.006551]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.006552]   Normal   [mem 0x0000000100000000-0x000000025effffff]
[    0.006553]   Device   empty
[    0.006553] Movable zone start for each node
[    0.006554] Early memory node ranges
[    0.006554]   node   0: [mem 0x0000000000001000-0x000000000009bfff]
[    0.006555]   node   0: [mem 0x0000000000100000-0x000000003fffffff]
[    0.006556]   node   0: [mem 0x0000000040400000-0x000000009c935fff]
[    0.006556]   node   0: [mem 0x000000009c937000-0x000000009c95cfff]
[    0.006557]   node   0: [mem 0x000000009c95e000-0x000000009caa6fff]
[    0.006557]   node   0: [mem 0x000000009effe000-0x000000009effefff]
[    0.006558]   node   0: [mem 0x0000000100000000-0x000000025effffff]
[    0.006559] Initmem setup node 0 [mem 0x0000000000001000-0x000000025effffff]
[    0.006560] On node 0 totalpages: 2078273
[    0.006560]   DMA zone: 64 pages used for memmap
[    0.006561]   DMA zone: 21 pages reserved
[    0.006562]   DMA zone: 3995 pages, LIFO batch:0
[    0.006562]   DMA32 zone: 9947 pages used for memmap
[    0.006563]   DMA32 zone: 636582 pages, LIFO batch:63
[    0.006563]   Normal zone: 22464 pages used for memmap
[    0.006564]   Normal zone: 1437696 pages, LIFO batch:63
[    0.006566] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.006593] On node 0, zone DMA: 100 pages in unavailable ranges
[    0.011845] On node 0, zone DMA32: 1024 pages in unavailable ranges
[    0.011847] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.011850] On node 0, zone DMA32: 1 pages in unavailable ranges
[    0.011936] On node 0, zone DMA32: 9559 pages in unavailable ranges
[    0.023817] On node 0, zone Normal: 4097 pages in unavailable ranges
[    0.023849] On node 0, zone Normal: 4096 pages in unavailable ranges
[    0.023996] ACPI: PM-Timer IO Port: 0x1808
[    0.023997] ACPI: Local APIC address 0xfee00000
[    0.024000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.024001] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.024001] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.024001] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.024002] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.024002] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.024003] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.024003] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.024029] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[    0.024030] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.024031] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.024032] ACPI: IRQ0 used by override.
[    0.024032] ACPI: IRQ9 used by override.
[    0.024033] Using ACPI (MADT) for SMP configuration information
[    0.024034] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.024036] TSC deadline timer available
[    0.024037] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.024052] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.024054] PM: hibernation: Registered nosave memory: [mem 0x0009c000-0x0009cfff]
[    0.024054] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
[    0.024055] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.024055] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.024056] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
[    0.024058] PM: hibernation: Registered nosave memory: [mem 0x9c936000-0x9c936fff]
[    0.024059] PM: hibernation: Registered nosave memory: [mem 0x9c95d000-0x9c95dfff]
[    0.024060] PM: hibernation: Registered nosave memory: [mem 0x9caa7000-0x9e312fff]
[    0.024060] PM: hibernation: Registered nosave memory: [mem 0x9e313000-0x9e38ffff]
[    0.024061] PM: hibernation: Registered nosave memory: [mem 0x9e390000-0x9e868fff]
[    0.024061] PM: hibernation: Registered nosave memory: [mem 0x9e869000-0x9effdfff]
[    0.024062] PM: hibernation: Registered nosave memory: [mem 0x9efff000-0x9fffffff]
[    0.024063] PM: hibernation: Registered nosave memory: [mem 0xa0000000-0xdfffffff]
[    0.024063] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[    0.024064] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[    0.024064] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[    0.024064] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[    0.024065] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.024065] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
[    0.024066] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.024066] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.024067] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.024068] [mem 0xa0000000-0xdfffffff] available for PCI devices
[    0.024068] Booting paravirtualized kernel on bare hardware
[    0.024070] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.026969] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
[    0.027091] percpu: Embedded 44 pages/cpu s141528 r8192 d30504 u262144
[    0.027096] pcpu-alloc: s141528 r8192 d30504 u262144 alloc=1*2097152
[    0.027097] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.027114] Built 1 zonelists, mobility grouping on.  Total pages: 2045777
[    0.027115] Policy zone: Normal
[    0.027116] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.10.68-calculate root=UUID=8a420d96-860d-4973-a60b-0c5c8e603a06 ro video=1920x1080-32 rd.retry=40 calculate=video:nvidia splash quiet
[    0.027155] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.027156] printk: log_buf_len total cpu_extra contributions: 28672 bytes
[    0.027156] printk: log_buf_len min size: 32768 bytes
[    0.027208] printk: log_buf_len: 65536 bytes
[    0.027208] printk: early log buf free: 19024(58%)
[    0.027616] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.027833] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.027879] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.050831] Memory: 8025648K/8313092K available (10243K kernel code, 773K rwdata, 2340K rodata, 1040K init, 840K bss, 287188K reserved, 0K cma-reserved)
[    0.050860] random: get_random_u64 called from cache_random_seq_create+0x84/0x170 with crng_init=0
[    0.050904] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.050944] rcu: Preemptible hierarchical RCU implementation.
[    0.050945] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
[    0.050945] 	Trampoline variant of Tasks RCU enabled.
[    0.050946] 	Tracing variant of Tasks RCU enabled.
[    0.050947] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.050947] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.050964] NR_IRQS: 4352, nr_irqs: 2048, preallocated irqs: 16
[    0.051265] random: crng done (trusting CPU's manufacturer)
[    0.051282] Console: colour dummy device 80x25
[    0.051292] printk: console [tty0] enabled
[    0.051303] ACPI: Core revision 20200925
[    0.051590] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[    0.051653] APIC: Switch to symmetric I/O mode setup
[    0.051654] DMAR: Host address width 39
[    0.051655] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[    0.051658] DMAR: dmar0: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[    0.051659] DMAR: RMRR base: 0x0000009eb1b000 end: 0x0000009ed64fff
[    0.051661] DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 0
[    0.051662] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[    0.051663] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.053057] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.053058] x2apic enabled
[    0.053069] Switched APIC routing to cluster x2apic.
[    0.057011] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.061627] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33e452fbb2f, max_idle_ns: 440795236593 ns
[    0.061630] Calibrating delay loop (skipped), value calculated using timer frequency.. 7200.00 BogoMIPS (lpj=3600000)
[    0.061631] pid_max: default: 32768 minimum: 301
[    0.061668] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.061683] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.061841] mce: CPU0: Thermal monitoring enabled (TM1)
[    0.061856] process: using mwait in idle threads
[    0.061857] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[    0.061858] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[    0.061859] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.061860] Spectre V2 : Mitigation: Enhanced IBRS
[    0.061861] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.061861] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.061863] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.061968] Freeing SMP alternatives memory: 28K
[    0.062370] smpboot: CPU0: Intel(R) Core(TM) i3-10100F CPU @ 3.60GHz (family: 0x6, model: 0xa5, stepping: 0x3)
[    0.062438] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.062446] ... version:                4
[    0.062446] ... bit width:              48
[    0.062447] ... generic registers:      4
[    0.062447] ... value mask:             0000ffffffffffff
[    0.062448] ... max period:             00007fffffffffff
[    0.062448] ... fixed-purpose events:   3
[    0.062449] ... event mask:             000000070000000f
[    0.062514] rcu: Hierarchical SRCU implementation.
[    0.062562] smp: Bringing up secondary CPUs ...
[    0.062598] x86: Booting SMP configuration:
[    0.062599] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.063935] smp: Brought up 1 node, 8 CPUs
[    0.063935] smpboot: Max logical packages: 1
[    0.063935] smpboot: Total of 8 processors activated (57600.00 BogoMIPS)
[    0.064789] devtmpfs: initialized
[    0.064789] x86/mm: Memory block size: 128MB
[    0.064965] PM: Registering ACPI NVS region [mem 0x9c936000-0x9c936fff] (4096 bytes)
[    0.064965] PM: Registering ACPI NVS region [mem 0x9e390000-0x9e868fff] (5083136 bytes)
[    0.064965] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.064965] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.064965] pinctrl core: initialized pinctrl subsystem
[    0.064965] NET: Registered protocol family 16
[    0.064965] audit: initializing netlink subsys (disabled)
[    0.064965] audit: type=2000 audit(1633379738.010:1): state=initialized audit_enabled=0 res=1
[    0.064965] thermal_sys: Registered thermal governor 'bang_bang'
[    0.064965] thermal_sys: Registered thermal governor 'step_wise'
[    0.064965] thermal_sys: Registered thermal governor 'user_space'
[    0.064965] thermal_sys: Registered thermal governor 'power_allocator'
[    0.064965] cpuidle: using governor ladder
[    0.064965] cpuidle: using governor menu
[    0.064965] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.064965] ACPI: bus type PCI registered
[    0.064965] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.065640] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.065642] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.065652] PCI: Using configuration type 1 for base access
[    0.065820] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.066898] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.066898] ACPI: Added _OSI(Module Device)
[    0.066898] ACPI: Added _OSI(Processor Device)
[    0.066898] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.066898] ACPI: Added _OSI(Processor Aggregator Device)
[    0.066898] ACPI: Added _OSI(Linux-Dell-Video)
[    0.066898] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.066898] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.108450] ACPI: 7 ACPI AML tables successfully acquired and loaded
[    0.112260] ACPI: Dynamic OEM Table Load:
[    0.112265] ACPI: SSDT 0xFFFF888100E23800 000400 (v02 PmRef  Cpu0Cst  00003001 INTL 20160527)
[    0.113061] ACPI: Dynamic OEM Table Load:
[    0.113065] ACPI: SSDT 0xFFFF888100A92800 0006CB (v02 PmRef  Cpu0Ist  00003000 INTL 20160527)
[    0.113888] ACPI: Dynamic OEM Table Load:
[    0.113891] ACPI: SSDT 0xFFFF88810107E500 0000FC (v02 PmRef  Cpu0Psd  00003000 INTL 20160527)
[    0.114854] ACPI: Dynamic OEM Table Load:
[    0.114858] ACPI: SSDT 0xFFFF888100A97000 000778 (v02 PmRef  ApIst    00003000 INTL 20160527)
[    0.115758] ACPI: Dynamic OEM Table Load:
[    0.115763] ACPI: SSDT 0xFFFF888100D9A000 000D22 (v02 PmRef  ApPsd    00003000 INTL 20160527)
[    0.116959] ACPI: Dynamic OEM Table Load:
[    0.116963] ACPI: SSDT 0xFFFF888100E25800 0003CA (v02 PmRef  ApCst    00003000 INTL 20160527)
[    0.120066] ACPI: Interpreter enabled
[    0.120096] ACPI: (supports S0 S3 S4 S5)
[    0.120097] ACPI: Using IOAPIC for interrupt routing
[    0.120178] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.120809] ACPI: Enabled 9 GPEs in block 00 to 7F
[    0.130373] ACPI: Power Resource [V0PR] (on)
[    0.130501] ACPI: Power Resource [V1PR] (on)
[    0.130624] ACPI: Power Resource [V2PR] (on)
[    0.136511] ACPI: Power Resource [PIN] (off)
[    0.136822] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.136826] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.136941] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME]
[    0.137047] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR]
[    0.137048] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.137488] PCI host bridge to bus 0000:00
[    0.137489] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.137490] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.137491] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.137491] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xdfffffff window]
[    0.137492] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[    0.137493] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.137502] pci 0000:00:00.0: [8086:9b63] type 00 class 0x060000
[    0.137774] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[    0.137807] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.138017] pci 0000:00:14.0: [8086:a3af] type 00 class 0x0c0330
[    0.138031] pci 0000:00:14.0: reg 0x10: [mem 0xa2230000-0xa223ffff 64bit]
[    0.138085] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.138259] pci 0000:00:14.2: [8086:a3b1] type 00 class 0x118000
[    0.138272] pci 0000:00:14.2: reg 0x10: [mem 0xa224e000-0xa224efff 64bit]
[    0.138424] pci 0000:00:16.0: [8086:a3ba] type 00 class 0x078000
[    0.138441] pci 0000:00:16.0: reg 0x10: [mem 0xa224d000-0xa224dfff 64bit]
[    0.138503] pci 0000:00:16.0: PME# supported from D3hot
[    0.138667] pci 0000:00:17.0: [8086:a382] type 00 class 0x010601
[    0.138678] pci 0000:00:17.0: reg 0x10: [mem 0xa2248000-0xa2249fff]
[    0.138683] pci 0000:00:17.0: reg 0x14: [mem 0xa224c000-0xa224c0ff]
[    0.138689] pci 0000:00:17.0: reg 0x18: [io  0x4050-0x4057]
[    0.138694] pci 0000:00:17.0: reg 0x1c: [io  0x4040-0x4043]
[    0.138700] pci 0000:00:17.0: reg 0x20: [io  0x4020-0x403f]
[    0.138705] pci 0000:00:17.0: reg 0x24: [mem 0xa224b000-0xa224b7ff]
[    0.138738] pci 0000:00:17.0: PME# supported from D3hot
[    0.138838] pci 0000:00:1b.0: [8086:a3eb] type 01 class 0x060400
[    0.138895] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.139067] pci 0000:00:1f.0: [8086:a3c8] type 00 class 0x060100
[    0.139266] pci 0000:00:1f.2: [8086:a3a1] type 00 class 0x058000
[    0.139278] pci 0000:00:1f.2: reg 0x10: [mem 0xa2244000-0xa2247fff]
[    0.139429] pci 0000:00:1f.3: [8086:a3f0] type 00 class 0x040300
[    0.139448] pci 0000:00:1f.3: reg 0x10: [mem 0xa2240000-0xa2243fff 64bit]
[    0.139476] pci 0000:00:1f.3: reg 0x20: [mem 0xa2220000-0xa222ffff 64bit]
[    0.139518] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.139748] pci 0000:00:1f.4: [8086:a3a3] type 00 class 0x0c0500
[    0.139804] pci 0000:00:1f.4: reg 0x10: [mem 0xa224a000-0xa224a0ff 64bit]
[    0.139873] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.140062] pci 0000:00:1f.6: [8086:0d55] type 00 class 0x020000
[    0.140079] pci 0000:00:1f.6: reg 0x10: [mem 0xa2200000-0xa221ffff]
[    0.140177] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[    0.140317] pci 0000:01:00.0: [10de:0fc6] type 00 class 0x030000
[    0.140327] pci 0000:01:00.0: reg 0x10: [mem 0xa1000000-0xa1ffffff]
[    0.140335] pci 0000:01:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
[    0.140343] pci 0000:01:00.0: reg 0x1c: [mem 0xc0000000-0xc1ffffff 64bit pref]
[    0.140348] pci 0000:01:00.0: reg 0x24: [io  0x3000-0x307f]
[    0.140354] pci 0000:01:00.0: reg 0x30: [mem 0xa2000000-0xa207ffff pref]
[    0.140421] pci 0000:01:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[    0.140458] pci 0000:01:00.1: [10de:0e1b] type 00 class 0x040300
[    0.140468] pci 0000:01:00.1: reg 0x10: [mem 0xa2080000-0xa2083fff]
[    0.140560] pci 0000:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
[    0.142662] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.142669] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.142674] pci 0000:00:01.0:   bridge window [mem 0xa1000000-0xa20fffff]
[    0.142692] pci 0000:00:01.0:   bridge window [mem 0xb0000000-0xc1ffffff 64bit pref]
[    0.142773] pci 0000:02:00.0: [2646:2263] type 00 class 0x010802
[    0.142793] pci 0000:02:00.0: reg 0x10: [mem 0xa2100000-0xa2103fff 64bit]
[    0.142979] pci 0000:00:1b.0: PCI bridge to [bus 02]
[    0.142982] pci 0000:00:1b.0:   bridge window [mem 0xa2100000-0xa21fffff]
[    0.145026] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    0.145095] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *1
[    0.145162] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    0.145229] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    0.145295] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    0.145361] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    0.145428] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    0.145494] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0
[    0.145754] iommu: Default domain type: Translated 
[    0.145762] pci 0000:01:00.0: vgaarb: setting as boot VGA device
[    0.145762] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.145762] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.145762] vgaarb: loaded
[    0.145762] SCSI subsystem initialized
[    0.145762] libata version 3.00 loaded.
[    0.145762] ACPI: bus type USB registered
[    0.145762] usbcore: registered new interface driver usbfs
[    0.145762] usbcore: registered new interface driver hub
[    0.145762] usbcore: registered new device driver usb
[    0.145762] pps_core: LinuxPPS API ver. 1 registered
[    0.145762] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.145762] PTP clock support registered
[    0.145762] PCI: Using ACPI for IRQ routing
[    0.173296] PCI: pci_cache_line_size set to 64 bytes
[    0.173330] e820: reserve RAM buffer [mem 0x0009c400-0x0009ffff]
[    0.173331] e820: reserve RAM buffer [mem 0x9c936000-0x9fffffff]
[    0.173332] e820: reserve RAM buffer [mem 0x9c95d000-0x9fffffff]
[    0.173333] e820: reserve RAM buffer [mem 0x9caa7000-0x9fffffff]
[    0.173334] e820: reserve RAM buffer [mem 0x9efff000-0x9fffffff]
[    0.173334] e820: reserve RAM buffer [mem 0x25f000000-0x25fffffff]
[    0.173660] clocksource: Switched to clocksource tsc-early
[    0.173695] VFS: Disk quotas dquot_6.6.0
[    0.173703] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.173731] pnp: PnP ACPI init
[    0.173792] system 00:00: [mem 0x40000000-0x403fffff] has been reserved
[    0.173796] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.173984] system 00:01: [io  0x0280-0x028f] has been reserved
[    0.173984] system 00:01: [io  0x02a0-0x02af] has been reserved
[    0.173985] system 00:01: [io  0x0290-0x029f] has been reserved
[    0.173986] system 00:01: [io  0x02b0-0x02bf] has been reserved
[    0.173989] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.174086] system 00:02: [io  0x0680-0x069f] has been reserved
[    0.174087] system 00:02: [io  0x164e-0x164f] has been reserved
[    0.174089] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.174166] system 00:03: [io  0x1854-0x1857] has been reserved
[    0.174169] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.174239] system 00:04: [mem 0xfd000000-0xfdabffff] has been reserved
[    0.174240] system 00:04: [mem 0xfdad0000-0xfdadffff] has been reserved
[    0.174240] system 00:04: [mem 0xfdb00000-0xfdffffff] has been reserved
[    0.174241] system 00:04: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.174242] system 00:04: [mem 0xfe036000-0xfe03bfff] has been reserved
[    0.174243] system 00:04: [mem 0xfe03d000-0xfe3fffff] has been reserved
[    0.174244] system 00:04: [mem 0xfe410000-0xfe7fffff] has been reserved
[    0.174246] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.174458] system 00:05: [io  0x2000-0x20fe] has been reserved
[    0.174460] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.174612] system 00:06: [mem 0xfdaf0000-0xfdafffff] has been reserved
[    0.174613] system 00:06: [mem 0xfdae0000-0xfdaeffff] has been reserved
[    0.174614] system 00:06: [mem 0xfdac0000-0xfdacffff] has been reserved
[    0.174617] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.174951] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.174952] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.174953] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.174953] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
[    0.174954] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.174955] system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.174956] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.174957] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.174959] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.175203] system 00:08: [mem 0xfe038000-0xfe038fff] has been reserved
[    0.175205] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.175508] pnp: PnP ACPI: found 9 devices
[    0.180858] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.180881] NET: Registered protocol family 2
[    0.180941] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.181621] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.181629] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.181697] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.181817] TCP: Hash tables configured (established 65536 bind 65536)
[    0.181858] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.181873] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.181892] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.181930] NET: Registered protocol family 1
[    0.181941] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.181943] pci 0000:00:01.0:   bridge window [io  0x3000-0x3fff]
[    0.181945] pci 0000:00:01.0:   bridge window [mem 0xa1000000-0xa20fffff]
[    0.181946] pci 0000:00:01.0:   bridge window [mem 0xb0000000-0xc1ffffff 64bit pref]
[    0.181949] pci 0000:00:1b.0: PCI bridge to [bus 02]
[    0.181951] pci 0000:00:1b.0:   bridge window [mem 0xa2100000-0xa21fffff]
[    0.181956] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.181957] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.181958] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.181958] pci_bus 0000:00: resource 7 [mem 0xa0000000-0xdfffffff window]
[    0.181959] pci_bus 0000:00: resource 8 [mem 0xfc800000-0xfe7fffff window]
[    0.181960] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.181960] pci_bus 0000:01: resource 1 [mem 0xa1000000-0xa20fffff]
[    0.181961] pci_bus 0000:01: resource 2 [mem 0xb0000000-0xc1ffffff 64bit pref]
[    0.181962] pci_bus 0000:02: resource 1 [mem 0xa2100000-0xa21fffff]
[    0.183046] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.183065] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
[    0.183079] PCI: CLS 64 bytes, default 64
[    0.183105] Trying to unpack rootfs image as initramfs...
[    0.272629] Freeing initrd memory: 53484K
[    0.272668] DMAR: No ATSR found
[    0.272696] DMAR: dmar0: Using Queued invalidation
[    0.272736] pci 0000:00:00.0: Adding to iommu group 0
[    0.272747] pci 0000:00:01.0: Adding to iommu group 1
[    0.272757] pci 0000:00:14.0: Adding to iommu group 2
[    0.272761] pci 0000:00:14.2: Adding to iommu group 2
[    0.272767] pci 0000:00:16.0: Adding to iommu group 3
[    0.272772] pci 0000:00:17.0: Adding to iommu group 4
[    0.272784] pci 0000:00:1b.0: Adding to iommu group 5
[    0.272796] pci 0000:00:1f.0: Adding to iommu group 6
[    0.272800] pci 0000:00:1f.2: Adding to iommu group 6
[    0.272804] pci 0000:00:1f.3: Adding to iommu group 6
[    0.272809] pci 0000:00:1f.4: Adding to iommu group 6
[    0.272813] pci 0000:00:1f.6: Adding to iommu group 6
[    0.272816] pci 0000:01:00.0: Adding to iommu group 1
[    0.272819] pci 0000:01:00.1: Adding to iommu group 1
[    0.272822] pci 0000:02:00.0: Adding to iommu group 5
[    0.274210] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.274211] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.274212] software IO TLB: mapped [mem 0x0000000098936000-0x000000009c936000] (64MB)
[    0.274256] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
[    0.274256] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[    0.274257] RAPL PMU: hw unit of domain package 2^-14 Joules
[    0.274257] RAPL PMU: hw unit of domain dram 2^-14 Joules
[    0.274423] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    0.274782] Initialise system trusted keyrings
[    0.274799] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.275406] zbud: loaded
[    0.281574] Key type asymmetric registered
[    0.281575] Asymmetric key parser 'x509' registered
[    0.281580] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.281598] io scheduler mq-deadline registered
[    0.281599] io scheduler kyber registered
[    0.281611] io scheduler bfq registered
[    0.281961] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.281971] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
[    0.281971] vesafb: scrolling: redraw
[    0.281972] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.281983] vesafb: framebuffer at 0xc1000000, mapped to 0x000000005a722cc1, using 8128k, total 8128k
[    0.282031] Console: switching to colour frame buffer device 240x67
[    0.409423] fb0: VESA VGA frame buffer device
[    0.409437] intel_idle: MWAIT substates: 0x11142120
[    0.409598] Monitor-Mwait will be used to enter C-1 state
[    0.409602] Monitor-Mwait will be used to enter C-2 state
[    0.409605] ACPI: \_SB_.PR00: Found 2 idle states
[    0.409605] intel_idle: v0.5.1 model 0xA5
[    0.409725] intel_idle: Local APIC timer is reliable in all C-states
[    0.410022] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.410088] serial8250: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.410735] lp: driver loaded but no devices found
[    0.410735] Linux agpgart interface v0.103
[    0.495726] loop: module loaded
[    0.496053] nvme 0000:02:00.0: platform quirk: setting simple suspend
[    0.496073] nvme nvme0: pci function 0000:02:00.0
[    0.496090] ahci 0000:00:17.0: version 3.0
[    0.496334] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
[    0.496336] ahci 0000:00:17.0: flags: 64bit ncq sntf led clo only pio slum part ems deso sadm sds apst 
[    0.499961] nvme nvme0: missing or invalid SUBNQN field.
[    0.501230] nvme nvme0: 8/0/0 default/read/poll queues
[    0.501675]  nvme0n1: p1 p2
[    0.512040] scsi host0: ahci
[    0.512109] scsi host1: ahci
[    0.512156] scsi host2: ahci
[    0.512206] scsi host3: ahci
[    0.512260] scsi host4: ahci
[    0.512310] scsi host5: ahci
[    0.512331] ata1: SATA max UDMA/133 abar m2048@0xa224b000 port 0xa224b100 irq 123
[    0.512333] ata2: SATA max UDMA/133 abar m2048@0xa224b000 port 0xa224b180 irq 123
[    0.512334] ata3: SATA max UDMA/133 abar m2048@0xa224b000 port 0xa224b200 irq 123
[    0.512335] ata4: SATA max UDMA/133 abar m2048@0xa224b000 port 0xa224b280 irq 123
[    0.512336] ata5: SATA max UDMA/133 abar m2048@0xa224b000 port 0xa224b300 irq 123
[    0.512337] ata6: SATA max UDMA/133 abar m2048@0xa224b000 port 0xa224b380 irq 123
[    0.512371] PPP generic driver version 2.4.2
[    0.512413] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.512413] ehci-pci: EHCI PCI platform driver
[    0.512419] ehci-platform: EHCI generic platform driver
[    0.512445] usbcore: registered new interface driver usb-storage
[    0.512468] i8042: PNP: No PS/2 controller found.
[    0.512507] mousedev: PS/2 mouse device common for all mice
[    0.512545] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.513015] rtc_cmos rtc_cmos: registered as rtc0
[    0.513111] rtc_cmos rtc_cmos: setting system clock to 2021-10-04T20:35:39 UTC (1633379739)
[    0.513120] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.513126] intel_pstate: CPU model not supported
[    0.513158] ledtrig-cpu: registered to indicate activity on CPUs
[    0.513167] hid: raw HID events driver (C) Jiri Kosina
[    0.513269] usbcore: registered new interface driver usbhid
[    0.513270] usbhid: USB HID core driver
[    0.513295] resource sanity check: requesting [mem 0xfdffe800-0xfe0007ff], which spans more than pnp 00:04 [mem 0xfdb00000-0xfdffffff]
[    0.513298] caller pmc_core_probe+0x76/0x1d0 mapping multiple BARs
[    0.513303] intel_pmc_core INT33A1:00:  initialized
[    0.513447] NET: Registered protocol family 10
[    0.515288] Segment Routing with IPv6
[    0.515289] RPL Segment Routing with IPv6
[    0.515300] NET: Registered protocol family 17
[    0.515315] Key type dns_resolver registered
[    0.515533] microcode: sig=0xa0653, pf=0x2, revision=0xcc
[    0.515565] microcode: Microcode Update Driver: v2.2.
[    0.515568] IPI shorthand broadcast: enabled
[    0.515572] sched_clock: Marking stable (512168514, 3393261)->(518482028, -2920253)
[    0.515589] registered taskstats version 1
[    0.515590] Loading compiled-in X.509 certificates
[    0.516341] zswap: loaded using pool zstd/zbud
[    0.819720] ata4: SATA link down (SStatus 4 SControl 300)
[    0.819735] ata6: SATA link down (SStatus 4 SControl 300)
[    0.819750] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    0.819765] ata3: SATA link down (SStatus 4 SControl 300)
[    0.819777] ata1: SATA link down (SStatus 4 SControl 300)
[    0.819789] ata5: SATA link down (SStatus 4 SControl 300)
[    0.820966] ata2.00: ATA-8: Hitachi HDS5C1010CLA382, JC4OA3MA, max UDMA/133
[    0.820967] ata2.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    0.822309] ata2.00: configured for UDMA/133
[    0.822390] scsi 1:0:0:0: Direct-Access     ATA      Hitachi HDS5C101 A3MA PQ: 0 ANSI: 5
[    0.822503] sd 1:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    0.822510] sd 1:0:0:0: [sda] Write Protect is off
[    0.822511] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.822517] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.830392]  sda: sda1
[    0.842751] sd 1:0:0:0: [sda] Attached SCSI disk
[    0.842978] Freeing unused kernel image (initmem) memory: 1040K
[    0.858718] Write protecting the kernel read-only data: 16384k
[    0.859070] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    0.859265] Freeing unused kernel image (rodata/data gap) memory: 1756K
[    0.859268] rodata_test: all tests were successful
[    0.859271] Run /init as init process
[    0.859271]   with arguments:
[    0.859272]     /init
[    0.859272]     splash
[    0.859272]   with environment:
[    0.859273]     HOME=/
[    0.859273]     TERM=linux
[    0.859273]     BOOT_IMAGE=/boot/vmlinuz-5.10.68-calculate
[    0.859274]     calculate=video:nvidia
[    0.922464] dracut: TuxOnIce premodule started
[    0.922529] dracut: Kernel has no tuxonice support, aborting
[    0.926635] systemd-udevd[1244]: starting version 3.2.10
[    0.927320] udevd[1245]: starting eudev-3.2.10
[    0.943013] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[    0.943065] ACPI: Sleep Button [SLPB]
[    0.943112] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[    0.943155] ACPI: Power Button [PWRB]
[    0.943189] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    0.946054] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[    0.947684] ACPI: Power Button [PWRF]
[    0.991290] nvidia: loading out-of-tree module taints kernel.
[    0.991298] nvidia: module license 'NVIDIA' taints kernel.
[    0.991299] Disabling lock debugging due to kernel taint
[    1.006237] nvidia-nvlink: Nvlink Core is being initialized, major device number 240

[    1.006574] nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
[    1.302724] tsc: Refined TSC clocksource calibration: 3600.000 MHz
[    1.302728] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33e452fbb2f, max_idle_ns: 440795236593 ns
[    1.302768] clocksource: Switched to clocksource tsc
[    3.606751] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  470.63.01  Tue Aug  3 20:44:16 UTC 2021
[    3.610178] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  470.63.01  Tue Aug  3 20:30:55 UTC 2021
[    3.610825] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[    6.677168] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 0
[    6.682157] dracut: Starting plymouth daemon
[    7.024570] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    7.024598] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    7.025702] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000109810
[    7.025766] cryptd: max_cpu_qlen set to 1000
[    7.025963] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    7.026145] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    7.026146] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.026147] usb usb1: Product: xHCI Host Controller
[    7.026148] usb usb1: Manufacturer: Linux 5.10.68-calculate xhci-hcd
[    7.026149] usb usb1: SerialNumber: 0000:00:14.0
[    7.026285] hub 1-0:1.0: USB hub found
[    7.026301] hub 1-0:1.0: 12 ports detected
[    7.027949] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    7.028011] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    7.028017] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[    7.028054] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    7.028055] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    7.028056] usb usb2: Product: xHCI Host Controller
[    7.028057] usb usb2: Manufacturer: Linux 5.10.68-calculate xhci-hcd
[    7.028058] usb usb2: SerialNumber: 0000:00:14.0
[    7.028220] hub 2-0:1.0: USB hub found
[    7.028233] hub 2-0:1.0: 8 ports detected
[    7.028250] AVX2 version of gcm_enc/dec engaged.
[    7.028251] AES CTR mode by8 optimization enabled
[    7.028548] usb: port power management may be unreliable
[    7.167735] dracut: TuxOnIce lvmfix started
[    7.264710] usb 1-1: new high-speed USB device number 2 using xhci_hcd
[    7.392511] usb 1-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=60.52
[    7.392512] usb 1-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    7.392512] usb 1-1: Product: USB2.0 Hub
[    7.393289] hub 1-1:1.0: USB hub found
[    7.393620] hub 1-1:1.0: 4 ports detected
[    7.446962] dracut: TuxOnIce udev should be now fully settled
[    7.459992] EXT4-fs (nvme0n1p1): mounted filesystem with ordered data mode. Opts: discard
[    7.485013] dracut: Mounted root filesystem /dev/nvme0n1p1
[    7.488826] EXT4-fs (nvme0n1p1): re-mounted. Opts: discard
[    7.495203] EXT4-fs (nvme0n1p1): re-mounted. Opts: discard
[    7.511639] usb 1-4: new full-speed USB device number 3 using xhci_hcd
[    7.519971] dracut: Switching root
[    7.655276] usb 1-4: New USB device found, idVendor=0a12, idProduct=0001, bcdDevice=88.91
[    7.655278] usb 1-4: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[    7.655279] usb 1-4: Product: CSR8510 A10
[    7.771639] usb 1-5: new full-speed USB device number 4 using xhci_hcd
[    7.898896] usb 1-5: New USB device found, idVendor=26ce, idProduct=01a2, bcdDevice= 0.00
[    7.898899] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    7.898900] usb 1-5: Product: LED Controller
[    7.898901] usb 1-5: Manufacturer: ASRock
[    7.898902] usb 1-5: SerialNumber: A02019100900
[    7.900258] input: ASRock LED Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:26CE:01A2.0001/input/input3
[    7.952678] hid-generic 0003:26CE:01A2.0001: input,hidraw0: USB HID v1.10 Device [ASRock LED Controller] on usb-0000:00:14.0-5/input0
[    7.954749] udevd[3272]: starting version 3.2.10
[    7.975216] udevd[3272]: starting eudev-3.2.10
[    8.066643] usb 1-7: new high-speed USB device number 5 using xhci_hcd
[    8.137790] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    8.140889] snd_hda_intel 0000:01:00.1: Disabling MSI
[    8.140892] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[    8.157752] e1000e: Intel(R) PRO/1000 Network Driver
[    8.157753] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    8.157980] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    8.158010] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    8.158647] i2c i2c-3: 1/4 memory slots populated (from DMI)
[    8.159255] snd_hda_codec_realtek hdaudioC0D0: ALCS1200A: SKU not ready 0x00000000
[    8.159524] i2c i2c-3: Successfully instantiated SPD at 0x53
[    8.159607] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALCS1200A: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    8.159609] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    8.159610] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    8.159611] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    8.159611] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    8.159613] snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
[    8.159614] snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
[    8.159615] snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
[    8.177061] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input4
[    8.177086] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input10
[    8.177110] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    8.177145] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    8.177182] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    8.177205] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input5
[    8.177222] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    8.177282] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input6
[    8.177307] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input7
[    8.177330] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input8
[    8.177355] input: HDA NVidia HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input9
[    8.194220] usb 1-7: New USB device found, idVendor=03f0, idProduct=002a, bcdDevice= 1.00
[    8.194224] usb 1-7: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    8.194225] usb 1-7: Product: HP LaserJet Professional P1102
[    8.194226] usb 1-7: Manufacturer: Hewlett-Packard
[    8.194227] usb 1-7: SerialNumber: 000000000Q87CR9DPR1a
[    8.216946] iTCO_vendor_support: vendor-support=0
[    8.217578] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    8.217619] iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
[    8.217690] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    8.310640] usb 1-8: new low-speed USB device number 6 using xhci_hcd
[    8.369393] EXT4-fs (nvme0n1p1): re-mounted. Opts: discard
[    8.387740] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[    8.437003] zram: Added device: zram0
[    8.441917] usb 1-8: New USB device found, idVendor=1c4f, idProduct=0026, bcdDevice= 1.10
[    8.441920] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    8.441921] usb 1-8: Product: USB Keyboard
[    8.441922] usb 1-8: Manufacturer: SIGMACHIP
[    8.445296] input: SIGMACHIP USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:1C4F:0026.0002/input/input15
[    8.445818] zram0: detected capacity change from 0 to 16556556288
[    8.451887] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) a8:a1:59:62:7b:17
[    8.451892] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[    8.451968] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
[    8.455639] Adding 16168508k swap on /dev/zram0.  Priority:100 extents:1 across:16168508k SSFS
[    8.496708] hid-generic 0003:1C4F:0026.0002: input,hidraw1: USB HID v1.10 Keyboard [SIGMACHIP USB Keyboard] on usb-0000:00:14.0-8/input0
[    8.498805] input: SIGMACHIP USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:1C4F:0026.0003/input/input16
[    8.550685] input: SIGMACHIP USB Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.1/0003:1C4F:0026.0003/input/input17
[    8.550709] hid-generic 0003:1C4F:0026.0003: input,hidraw2: USB HID v1.10 Device [SIGMACHIP USB Keyboard] on usb-0000:00:14.0-8/input1
[    8.608814] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    8.610678] EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: discard
Add Comment
Author