Paste #226767

   
pasted on 13.10.2021 01:09
  • Edit to this paste
  • Print
  • Raw
  • The following pastes replied to this paste:  # 274930
  • 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
[    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=95140d20-3b28-4333-a40a-62be8a568992 ro video=1920x1080 rd.retry=40 calculate=video:modesetting splash quiet
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009f7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009f800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e4000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bb76ffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb770000-0x00000000bb77ffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bb780000-0x00000000bb7cffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bb7d0000-0x00000000bb7dffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bb7eb400-0x00000000cfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffa00000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000022fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./H55M-GE, BIOS P1.30 08/10/2010
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2794.668 MHz processor
[    0.000701] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000703] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000708] last_pfn = 0x230000 max_arch_pfn = 0x400000000
[    0.000711] MTRR default type: uncachable
[    0.000712] MTRR fixed ranges enabled:
[    0.000713]   00000-9FFFF write-back
[    0.000714]   A0000-BFFFF uncachable
[    0.000714]   C0000-CFFFF write-protect
[    0.000715]   D0000-DFFFF uncachable
[    0.000716]   E0000-EBFFF write-through
[    0.000717]   EC000-FFFFF write-protect
[    0.000717] MTRR variable ranges enabled:
[    0.000719]   0 base 000000000 mask E00000000 write-back
[    0.000720]   1 base 200000000 mask FE0000000 write-back
[    0.000721]   2 base 220000000 mask FF0000000 write-back
[    0.000722]   3 base 0D0000000 mask FF0000000 uncachable
[    0.000723]   4 base 0E0000000 mask FE0000000 uncachable
[    0.000724]   5 base 0BC000000 mask FFC000000 uncachable
[    0.000725]   6 base 0C0000000 mask FF0000000 uncachable
[    0.000725]   7 disabled
[    0.001427] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001660] e820: update [mem 0xbc000000-0xffffffff] usable ==> reserved
[    0.001666] last_pfn = 0xbb770 max_arch_pfn = 0x400000000
[    0.009170] found SMP MP-table at [mem 0x000ff780-0x000ff78f]
[    0.009526] RAMDISK: [mem 0x3694f000-0x3749efff]
[    0.009529] ACPI: Early table checksum verification disabled
[    0.009534] ACPI: RSDP 0x00000000000FAA80 000014 (v00 ACPIAM)
[    0.009538] ACPI: RSDT 0x00000000BB770000 000044 (v01 081010 RSDT1435 20100810 MSFT 00000097)
[    0.009544] ACPI: FACP 0x00000000BB770200 000084 (v01 A_M_I  OEMFACP  12000601 MSFT 00000097)
[    0.009550] ACPI: DSDT 0x00000000BB770460 006CF6 (v01 AS393  AS393123 00000123 INTL 20051117)
[    0.009553] ACPI: FACS 0x00000000BB780000 000040
[    0.009556] ACPI: APIC 0x00000000BB770390 00008C (v01 081010 APIC1435 20100810 MSFT 00000097)
[    0.009560] ACPI: MCFG 0x00000000BB770420 00003C (v01 081010 OEMMCFG  20100810 MSFT 00000097)
[    0.009563] ACPI: OEMB 0x00000000BB780040 000072 (v01 081010 OEMB1435 20100810 MSFT 00000097)
[    0.009566] ACPI: AAFT 0x00000000BB77A460 000027 (v01 081010 OEMAAFT  20100810 MSFT 00000097)
[    0.009570] ACPI: GSCI 0x00000000BB7800C0 002024 (v01 081010 GMCHSCI  20100810 MSFT 00000097)
[    0.009573] ACPI: DMAR 0x00000000BB7820F0 0000E0 (v01 AMI    OEMDMAR  00000001 MSFT 00000097)
[    0.009577] ACPI: SSDT 0x00000000BB782EC0 000363 (v01 DpgPmm CpuPm    00000012 INTL 20051117)
[    0.009580] ACPI: Reserving FACP table memory at [mem 0xbb770200-0xbb770283]
[    0.009581] ACPI: Reserving DSDT table memory at [mem 0xbb770460-0xbb777155]
[    0.009582] ACPI: Reserving FACS table memory at [mem 0xbb780000-0xbb78003f]
[    0.009582] ACPI: Reserving APIC table memory at [mem 0xbb770390-0xbb77041b]
[    0.009583] ACPI: Reserving MCFG table memory at [mem 0xbb770420-0xbb77045b]
[    0.009584] ACPI: Reserving OEMB table memory at [mem 0xbb780040-0xbb7800b1]
[    0.009585] ACPI: Reserving AAFT table memory at [mem 0xbb77a460-0xbb77a486]
[    0.009586] ACPI: Reserving GSCI table memory at [mem 0xbb7800c0-0xbb7820e3]
[    0.009587] ACPI: Reserving DMAR table memory at [mem 0xbb7820f0-0xbb7821cf]
[    0.009588] ACPI: Reserving SSDT table memory at [mem 0xbb782ec0-0xbb783222]
[    0.009598] ACPI: Local APIC address 0xfee00000
[    0.009615] No NUMA configuration found
[    0.009616] Faking a node at [mem 0x0000000000000000-0x000000022fffffff]
[    0.009621] NODE_DATA(0) allocated [mem 0x22fff6000-0x22fffafff]
[    0.009646] Zone ranges:
[    0.009646]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.009648]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.009649]   Normal   [mem 0x0000000100000000-0x000000022fffffff]
[    0.009651]   Device   empty
[    0.009652] Movable zone start for each node
[    0.009652] Early memory node ranges
[    0.009653]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.009655]   node   0: [mem 0x0000000000100000-0x00000000bb76ffff]
[    0.009656]   node   0: [mem 0x0000000100000000-0x000000022fffffff]
[    0.009658] Initmem setup node 0 [mem 0x0000000000001000-0x000000022fffffff]
[    0.009660] On node 0 totalpages: 2012942
[    0.009661]   DMA zone: 64 pages used for memmap
[    0.009662]   DMA zone: 21 pages reserved
[    0.009663]   DMA zone: 3998 pages, LIFO batch:0
[    0.009664]   DMA32 zone: 11934 pages used for memmap
[    0.009665]   DMA32 zone: 763760 pages, LIFO batch:63
[    0.009666]   Normal zone: 19456 pages used for memmap
[    0.009667]   Normal zone: 1245184 pages, LIFO batch:63
[    0.009670] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.009711] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.033017] On node 0, zone Normal: 18576 pages in unavailable ranges
[    0.033050] Reserving Intel graphics memory at [mem 0xc0000000-0xcfffffff]
[    0.033176] ACPI: PM-Timer IO Port: 0x808
[    0.033178] ACPI: Local APIC address 0xfee00000
[    0.033194] IOAPIC[0]: apic_id 5, version 32, address 0xfec00000, GSI 0-23
[    0.033197] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.033198] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.033200] ACPI: IRQ0 used by override.
[    0.033201] ACPI: IRQ9 used by override.
[    0.033203] Using ACPI (MADT) for SMP configuration information
[    0.033207] smpboot: Allowing 8 CPUs, 6 hotplug CPUs
[    0.033225] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.033227] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.033228] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000e3fff]
[    0.033229] PM: hibernation: Registered nosave memory: [mem 0x000e4000-0x000fffff]
[    0.033230] PM: hibernation: Registered nosave memory: [mem 0xbb770000-0xbb77ffff]
[    0.033231] PM: hibernation: Registered nosave memory: [mem 0xbb780000-0xbb7cffff]
[    0.033232] PM: hibernation: Registered nosave memory: [mem 0xbb7d0000-0xbb7dffff]
[    0.033233] PM: hibernation: Registered nosave memory: [mem 0xbb7e0000-0xbb7ebfff]
[    0.033233] PM: hibernation: Registered nosave memory: [mem 0xbb7ec000-0xcfffffff]
[    0.033234] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xfedfffff]
[    0.033235] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.033236] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xff9fffff]
[    0.033236] PM: hibernation: Registered nosave memory: [mem 0xffa00000-0xffffffff]
[    0.033238] [mem 0xd0000000-0xfedfffff] available for PCI devices
[    0.033239] Booting paravirtualized kernel on bare hardware
[    0.033243] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.038343] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
[    0.038718] percpu: Embedded 44 pages/cpu s141528 r8192 d30504 u262144
[    0.038728] pcpu-alloc: s141528 r8192 d30504 u262144 alloc=1*2097152
[    0.038730] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.038755] Built 1 zonelists, mobility grouping on.  Total pages: 1981467
[    0.038756] Policy zone: Normal
[    0.038758] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.10.68-calculate root=UUID=95140d20-3b28-4333-a40a-62be8a568992 ro video=1920x1080 rd.retry=40 calculate=video:modesetting splash quiet
[    0.038831] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.038832] printk: log_buf_len total cpu_extra contributions: 28672 bytes
[    0.038833] printk: log_buf_len min size: 32768 bytes
[    0.038908] printk: log_buf_len: 65536 bytes
[    0.038909] printk: early log buf free: 24192(73%)
[    0.040141] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.040764] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.040837] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.050678] DMAR: [Firmware Bug]: Your BIOS is broken; DMAR reported at address fed91000 returns all ones!
               BIOS vendor: American Megatrends Inc.; Ver: P1.30; Product Version: To Be Filled By O.E.M.
[    0.081637] Memory: 7810316K/8051768K available (10243K kernel code, 773K rwdata, 2340K rodata, 1040K init, 840K bss, 241196K reserved, 0K cma-reserved)
[    0.081687] random: get_random_u64 called from cache_random_seq_create+0x84/0x170 with crng_init=0
[    0.081789] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.081802] Kernel/User page tables isolation: enabled
[    0.081878] rcu: Preemptible hierarchical RCU implementation.
[    0.081880] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=8.
[    0.081881] 	Trampoline variant of Tasks RCU enabled.
[    0.081882] 	Tracing variant of Tasks RCU enabled.
[    0.081883] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.081884] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.081895] NR_IRQS: 4352, nr_irqs: 488, preallocated irqs: 16
[    0.082256] Console: colour dummy device 80x25
[    0.082270] printk: console [tty0] enabled
[    0.082290] ACPI: Core revision 20200925
[    0.082379] APIC: Switch to symmetric I/O mode setup
[    0.082382] DMAR: Host address width 36
[    0.082384] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[    0.082389] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c9008020e30272 ecap 1000
[    0.082390] DMAR: DRHD base: 0x000000fed91000 flags: 0x0
[    0.082399] DMAR: Failed to map dmar1
[    0.082402] DMAR: Parse DMAR table failure.
[    0.082889] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.087378] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x284893be5af, max_idle_ns: 440795269018 ns
[    0.087382] Calibrating delay loop (skipped), value calculated using timer frequency.. 5589.33 BogoMIPS (lpj=2794668)
[    0.087385] pid_max: default: 32768 minimum: 301
[    0.087450] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.087476] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.087734] mce: CPU0: Thermal monitoring enabled (TM1)
[    0.087743] process: using mwait in idle threads
[    0.087746] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
[    0.087747] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.087750] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.087752] Spectre V2 : Mitigation: Full generic retpoline
[    0.087752] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.087753] Speculative Store Bypass: Vulnerable
[    0.087755] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.087874] Freeing SMP alternatives memory: 28K
[    0.190075] smpboot: CPU0: Intel(R) Pentium(R) CPU        G6950  @ 2.80GHz (family: 0x6, model: 0x25, stepping: 0x2)
[    0.190205] Performance Events: PEBS fmt1+, Westmere events, 16-deep LBR, Intel PMU driver.
[    0.190214] core: CPUID marked event: 'bus cycles' unavailable
[    0.190215] ... version:                3
[    0.190216] ... bit width:              48
[    0.190217] ... generic registers:      4
[    0.190217] ... value mask:             0000ffffffffffff
[    0.190218] ... max period:             000000007fffffff
[    0.190219] ... fixed-purpose events:   3
[    0.190220] ... event mask:             000000070000000f
[    0.190333] rcu: Hierarchical SRCU implementation.
[    0.190381] smp: Bringing up secondary CPUs ...
[    0.190381] x86: Booting SMP configuration:
[    0.190381] .... node  #0, CPUs:      #1
[    0.190408] smp: Brought up 1 node, 2 CPUs
[    0.190408] smpboot: Max logical packages: 4
[    0.190408] smpboot: Total of 2 processors activated (11178.67 BogoMIPS)
[    0.192466] devtmpfs: initialized
[    0.192466] x86/mm: Memory block size: 128MB
[    0.193027] PM: Registering ACPI NVS region [mem 0xbb780000-0xbb7cffff] (327680 bytes)
[    0.193027] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.193027] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.193027] pinctrl core: initialized pinctrl subsystem
[    0.193594] NET: Registered protocol family 16
[    0.193659] audit: initializing netlink subsys (disabled)
[    0.193722] thermal_sys: Registered thermal governor 'bang_bang'
[    0.193722] thermal_sys: Registered thermal governor 'step_wise'
[    0.193722] thermal_sys: Registered thermal governor 'user_space'
[    0.193722] thermal_sys: Registered thermal governor 'power_allocator'
[    0.193726] cpuidle: using governor ladder
[    0.193732] cpuidle: using governor menu
[    0.193757] ACPI: bus type PCI registered
[    0.193759] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.193850] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.193852] PCI: not using MMCONFIG
[    0.193857] PCI: Using configuration type 1 for base access
[    0.196841] audit: type=2000 audit(1634076493.111:1): state=initialized audit_enabled=0 res=1
[    0.198100] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.200457] ACPI: Added _OSI(Module Device)
[    0.200459] ACPI: Added _OSI(Processor Device)
[    0.200460] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.200461] ACPI: Added _OSI(Processor Aggregator Device)
[    0.200463] ACPI: Added _OSI(Linux-Dell-Video)
[    0.200464] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.200465] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.203905] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    0.204768] ACPI: Dynamic OEM Table Load:
[    0.204775] ACPI: SSDT 0xFFFF8881002CF000 0008AA (v01 DpgPmm P001Ist  00000011 INTL 20051117)
[    0.205267] ACPI: Dynamic OEM Table Load:
[    0.205272] ACPI: SSDT 0xFFFF8881002D0800 000432 (v01 PmRef  P001Cst  00003001 INTL 20051117)
[    0.206085] ACPI: Interpreter enabled
[    0.206103] ACPI: (supports S0 S1 S3 S4 S5)
[    0.206105] ACPI: Using IOAPIC for interrupt routing
[    0.206134] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.206818] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.206828] pmd_set_huge: Cannot satisfy [mem 0xe0000000-0xe0200000] with a huge-page mapping due to MTRR override.
[    0.207075] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.207349] ACPI: Enabled 15 GPEs in block 00 to 3F
[    0.214217] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.214223] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.214371] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PCIeCapability LTR]
[    0.214446] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
[    0.214448] acpi PNP0A08:00: _OSC: OS requested [SHPCHotplug PME AER PCIeCapability LTR]
[    0.214449] acpi PNP0A08:00: _OSC: platform willing to grant [PME AER]
[    0.214451] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
[    0.214629] PCI host bridge to bus 0000:00
[    0.214631] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.214633] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.214634] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.214635] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[    0.214636] pci_bus 0000:00: root bus resource [mem 0xbc000000-0xdfffffff window]
[    0.214638] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfed8ffff window]
[    0.214639] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.214652] pci 0000:00:00.0: [8086:0040] type 00 class 0x060000
[    0.214672] pci 0000:00:00.0: DMAR: Disabling batched IOTLB flush on Ironlake
[    0.214749] pci 0000:00:01.0: [8086:0041] type 01 class 0x060400
[    0.214786] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.214874] pci 0000:00:02.0: [8086:0042] type 00 class 0x030000
[    0.214882] pci 0000:00:02.0: reg 0x10: [mem 0xfb800000-0xfbbfffff 64bit]
[    0.214888] pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.214891] pci 0000:00:02.0: reg 0x20: [io  0xc000-0xc007]
[    0.215015] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
[    0.215029] pci 0000:00:1a.0: reg 0x10: [mem 0xfbef6000-0xfbef63ff]
[    0.215104] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.215198] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
[    0.215213] pci 0000:00:1b.0: reg 0x10: [mem 0xfbef8000-0xfbefbfff 64bit]
[    0.215280] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.215359] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
[    0.215432] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.215527] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
[    0.215594] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.215698] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
[    0.215713] pci 0000:00:1d.0: reg 0x10: [mem 0xfbefc000-0xfbefc3ff]
[    0.215787] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.215875] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.216001] pci 0000:00:1f.0: [8086:3b06] type 00 class 0x060100
[    0.216174] pci 0000:00:1f.2: [8086:3b20] type 00 class 0x01018f
[    0.216185] pci 0000:00:1f.2: reg 0x10: [io  0xcc00-0xcc07]
[    0.216192] pci 0000:00:1f.2: reg 0x14: [io  0xc880-0xc883]
[    0.216198] pci 0000:00:1f.2: reg 0x18: [io  0xc800-0xc807]
[    0.216204] pci 0000:00:1f.2: reg 0x1c: [io  0xc480-0xc483]
[    0.216211] pci 0000:00:1f.2: reg 0x20: [io  0xc400-0xc40f]
[    0.216217] pci 0000:00:1f.2: reg 0x24: [io  0xc080-0xc08f]
[    0.216323] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
[    0.216338] pci 0000:00:1f.3: reg 0x10: [mem 0xfbeffc00-0xfbeffcff 64bit]
[    0.216354] pci 0000:00:1f.3: reg 0x20: [io  0x0400-0x041f]
[    0.216443] pci 0000:00:1f.5: [8086:3b26] type 00 class 0x010185
[    0.216454] pci 0000:00:1f.5: reg 0x10: [io  0xdc00-0xdc07]
[    0.216461] pci 0000:00:1f.5: reg 0x14: [io  0xd880-0xd883]
[    0.216467] pci 0000:00:1f.5: reg 0x18: [io  0xd800-0xd807]
[    0.216473] pci 0000:00:1f.5: reg 0x1c: [io  0xd480-0xd483]
[    0.216479] pci 0000:00:1f.5: reg 0x20: [io  0xd400-0xd40f]
[    0.216485] pci 0000:00:1f.5: reg 0x24: [io  0xd080-0xd08f]
[    0.216609] pci 0000:00:01.0: PCI bridge to [bus 04]
[    0.216614] pci 0000:00:01.0:   bridge window [mem 0xfaf00000-0xfaffffff 64bit pref]
[    0.216645] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.216652] pci 0000:00:1c.0:   bridge window [mem 0xfae00000-0xfaefffff 64bit pref]
[    0.216705] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[    0.216724] pci 0000:01:00.0: reg 0x10: [io  0xe800-0xe8ff]
[    0.216749] pci 0000:01:00.0: reg 0x18: [mem 0xfadff000-0xfadfffff 64bit pref]
[    0.216765] pci 0000:01:00.0: reg 0x20: [mem 0xfadf8000-0xfadfbfff 64bit pref]
[    0.216776] pci 0000:01:00.0: reg 0x30: [mem 0xfbfe0000-0xfbffffff pref]
[    0.216861] pci 0000:01:00.0: supports D1 D2
[    0.216862] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.219401] pci 0000:00:1c.1: PCI bridge to [bus 01]
[    0.219404] pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
[    0.219407] pci 0000:00:1c.1:   bridge window [mem 0xfbf00000-0xfbffffff]
[    0.219411] pci 0000:00:1c.1:   bridge window [mem 0xfad00000-0xfadfffff 64bit pref]
[    0.219426] pci_bus 0000:03: extended config space not accessible
[    0.219474] pci 0000:00:1e.0: PCI bridge to [bus 03] (subtractive decode)
[    0.219482] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.219483] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.219484] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.219486] pci 0000:00:1e.0:   bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
[    0.219487] pci 0000:00:1e.0:   bridge window [mem 0xbc000000-0xdfffffff window] (subtractive decode)
[    0.219488] pci 0000:00:1e.0:   bridge window [mem 0xf0000000-0xfed8ffff window] (subtractive decode)
[    0.220212] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 6 7 *10 11 12 14 15)
[    0.220260] ACPI: PCI Interrupt Link [LNKB] (IRQs *5)
[    0.220302] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 6 7 10 11 12 14 *15)
[    0.220348] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 6 7 10 *11 12 14 15)
[    0.220399] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled.
[    0.220446] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 6 7 10 11 12 14 15) *0, disabled.
[    0.220492] ACPI: PCI Interrupt Link [LNKG] (IRQs *3 4 6 7 10 11 12 14 15)
[    0.220538] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 6 7 10 11 12 *14 15)
[    0.220658] iommu: Default domain type: Translated 
[    0.220692] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.220694] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.220696] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.220698] vgaarb: loaded
[    0.220839] SCSI subsystem initialized
[    0.220886] libata version 3.00 loaded.
[    0.220886] ACPI: bus type USB registered
[    0.220886] usbcore: registered new interface driver usbfs
[    0.220886] usbcore: registered new interface driver hub
[    0.220886] usbcore: registered new device driver usb
[    0.220886] pps_core: LinuxPPS API ver. 1 registered
[    0.220886] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.220886] PTP clock support registered
[    0.221547] PCI: Using ACPI for IRQ routing
[    0.226888] PCI: Discovered peer bus ff
[    0.226889] PCI: root bus ff: using default resources
[    0.226890] PCI: Probing PCI hardware (bus ff)
[    0.226910] PCI host bridge to bus 0000:ff
[    0.226912] pci_bus 0000:ff: root bus resource [io  0x0000-0xffff]
[    0.226913] pci_bus 0000:ff: root bus resource [mem 0x00000000-0xfffffffff]
[    0.226915] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
[    0.226917] pci_bus 0000:ff: busn_res: can not insert [bus ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
[    0.226923] pci 0000:ff:00.0: [8086:2c61] type 00 class 0x060000
[    0.226966] pci 0000:ff:00.1: [8086:2d01] type 00 class 0x060000
[    0.227004] pci 0000:ff:02.0: [8086:2d10] type 00 class 0x060000
[    0.227039] pci 0000:ff:02.1: [8086:2d11] type 00 class 0x060000
[    0.227073] pci 0000:ff:02.2: [8086:2d12] type 00 class 0x060000
[    0.227109] pci 0000:ff:02.3: [8086:2d13] type 00 class 0x060000
[    0.227152] pci_bus 0000:ff: busn_res: [bus ff] end is updated to ff
[    0.227154] pci_bus 0000:ff: busn_res: can not insert [bus ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
[    0.227157] PCI: pci_cache_line_size set to 64 bytes
[    0.227193] Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    0.227194] e820: reserve RAM buffer [mem 0x0009f800-0x0009ffff]
[    0.227196] e820: reserve RAM buffer [mem 0xbb770000-0xbbffffff]
[    0.227201] clocksource: Switched to clocksource tsc-early
[    0.227201] VFS: Disk quotas dquot_6.6.0
[    0.227201] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.227201] pnp: PnP ACPI init
[    0.227201] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    0.227201] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    0.227201] system 00:00: [mem 0xfe000000-0xfebfffff] has been reserved
[    0.227201] system 00:00: [mem 0xfed14000-0xfed19fff] has been reserved
[    0.227201] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.227201] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.227201] system 00:02: [io  0x04d0-0x04d1] has been reserved
[    0.227201] system 00:02: [io  0x0800-0x087f] has been reserved
[    0.227201] system 00:02: [io  0x0500-0x057f] has been reserved
[    0.227201] system 00:02: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.227201] system 00:02: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.227201] system 00:02: [mem 0xfed40000-0xfed8ffff] has been reserved
[    0.227201] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.227201] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.227201] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.227207] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.227397] pnp 00:04: [dma 0 disabled]
[    0.227469] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.227544] system 00:05: [io  0x0290-0x029f] has been reserved
[    0.227568] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.227648] system 00:06: [mem 0xe0000000-0xefffffff] has been reserved
[    0.227670] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.227860] system 00:07: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.227862] system 00:07: [mem 0x000c0000-0x000cffff] could not be reserved
[    0.227863] system 00:07: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.227865] system 00:07: [mem 0x00100000-0xbbffffff] could not be reserved
[    0.227866] system 00:07: [mem 0xfed90000-0xffffffff] could not be reserved
[    0.227887] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.227991] pnp: PnP ACPI: found 8 devices
[    0.234241] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.234283] NET: Registered protocol family 2
[    0.234478] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.235564] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.235593] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.235743] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.236013] TCP: Hash tables configured (established 65536 bind 65536)
[    0.236126] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.236165] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.236215] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.236309] NET: Registered protocol family 1
[    0.236327] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
[    0.236330] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 02] add_size 200000 add_align 100000
[    0.236341] pci 0000:00:1c.0: BAR 14: assigned [mem 0xf0000000-0xf01fffff]
[    0.236344] pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
[    0.236347] pci 0000:00:01.0: PCI bridge to [bus 04]
[    0.236352] pci 0000:00:01.0:   bridge window [mem 0xfaf00000-0xfaffffff 64bit pref]
[    0.236355] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.236357] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
[    0.236361] pci 0000:00:1c.0:   bridge window [mem 0xf0000000-0xf01fffff]
[    0.236364] pci 0000:00:1c.0:   bridge window [mem 0xfae00000-0xfaefffff 64bit pref]
[    0.236369] pci 0000:00:1c.1: PCI bridge to [bus 01]
[    0.236370] pci 0000:00:1c.1:   bridge window [io  0xe000-0xefff]
[    0.236374] pci 0000:00:1c.1:   bridge window [mem 0xfbf00000-0xfbffffff]
[    0.236376] pci 0000:00:1c.1:   bridge window [mem 0xfad00000-0xfadfffff 64bit pref]
[    0.236381] pci 0000:00:1e.0: PCI bridge to [bus 03]
[    0.236390] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.236392] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.236393] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.236394] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
[    0.236395] pci_bus 0000:00: resource 8 [mem 0xbc000000-0xdfffffff window]
[    0.236396] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed8ffff window]
[    0.236398] pci_bus 0000:04: resource 2 [mem 0xfaf00000-0xfaffffff 64bit pref]
[    0.236399] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
[    0.236400] pci_bus 0000:02: resource 1 [mem 0xf0000000-0xf01fffff]
[    0.236401] pci_bus 0000:02: resource 2 [mem 0xfae00000-0xfaefffff 64bit pref]
[    0.236403] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.236404] pci_bus 0000:01: resource 1 [mem 0xfbf00000-0xfbffffff]
[    0.236405] pci_bus 0000:01: resource 2 [mem 0xfad00000-0xfadfffff 64bit pref]
[    0.236407] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7 window]
[    0.236408] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff window]
[    0.236409] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.236411] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000dffff window]
[    0.236412] pci_bus 0000:03: resource 8 [mem 0xbc000000-0xdfffffff window]
[    0.236413] pci_bus 0000:03: resource 9 [mem 0xf0000000-0xfed8ffff window]
[    0.236554] pci_bus 0000:ff: resource 4 [io  0x0000-0xffff]
[    0.236556] pci_bus 0000:ff: resource 5 [mem 0x00000000-0xfffffffff]
[    0.236585] pci 0000:00:02.0: BIOS left Intel GPU interrupts enabled; disabling
[    0.236600] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.236970] PCI: CLS 32 bytes, default 64
[    0.237012] Trying to unpack rootfs image as initramfs...
[    0.324577] Freeing initrd memory: 11584K
[    0.324582] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.324584] software IO TLB: mapped [mem 0x00000000b7770000-0x00000000bb770000] (64MB)
[    0.325256] Initialise system trusted keyrings
[    0.325325] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.326335] zbud: loaded
[    0.336393] Key type asymmetric registered
[    0.336395] Asymmetric key parser 'x509' registered
[    0.336409] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.336442] io scheduler mq-deadline registered
[    0.336443] io scheduler kyber registered
[    0.336467] io scheduler bfq registered
[    0.336727] pcieport 0000:00:1c.0: enabling device (0106 -> 0107)
[    0.336971] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.336983] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[    0.336984] vesafb: scrolling: redraw
[    0.336985] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.337004] vesafb: framebuffer at 0xd0000000, mapped to 0x(____ptrval____), using 3072k, total 3072k
[    0.337090] Console: switching to colour frame buffer device 128x48
[    0.445857] fb0: VESA VGA frame buffer device
[    0.445875] intel_idle: MWAIT substates: 0x1120
[    0.445876] intel_idle: v0.5.1 model 0x25
[    0.445951] intel_idle: Local APIC timer is reliable in all C-states
[    0.446150] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.446214] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.448544] lp: driver loaded but no devices found
[    0.448550] Linux agpgart interface v0.103
[    0.496518] loop: module loaded
[    0.496874] PPP generic driver version 2.4.2
[    0.496935] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.496937] ehci-pci: EHCI PCI platform driver
[    0.497105] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    0.497261] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    0.497277] ehci-pci 0000:00:1a.0: debug port 2
[    0.501196] ehci-pci 0000:00:1a.0: cache line size of 32 is not supported
[    0.501212] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfbef6000
[    0.508490] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    0.508601] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    0.508604] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.508607] usb usb1: Product: EHCI Host Controller
[    0.508609] usb usb1: Manufacturer: Linux 5.10.68-calculate ehci_hcd
[    0.508610] usb usb1: SerialNumber: 0000:00:1a.0
[    0.508876] hub 1-0:1.0: USB hub found
[    0.508891] hub 1-0:1.0: 6 ports detected
[    0.509345] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.509397] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    0.509410] ehci-pci 0000:00:1d.0: debug port 2
[    0.513338] ehci-pci 0000:00:1d.0: cache line size of 32 is not supported
[    0.513353] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfbefc000
[    0.520489] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.520543] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    0.520547] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.520549] usb usb2: Product: EHCI Host Controller
[    0.520551] usb usb2: Manufacturer: Linux 5.10.68-calculate ehci_hcd
[    0.520553] usb usb2: SerialNumber: 0000:00:1d.0
[    0.520785] hub 2-0:1.0: USB hub found
[    0.520799] hub 2-0:1.0: 8 ports detected
[    0.521170] ehci-platform: EHCI generic platform driver
[    0.521208] usbcore: registered new interface driver usb-storage
[    0.521246] i8042: PNP: No PS/2 controller found.
[    0.521247] i8042: Probing ports directly.
[    0.523976] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.524027] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.524230] mousedev: PS/2 mouse device common for all mice
[    0.524274] rtc_cmos 00:01: RTC can wake from S4
[    0.524519] rtc_cmos 00:01: registered as rtc0
[    0.524545] rtc_cmos 00:01: setting system clock to 2021-10-12T22:08:13 UTC (1634076493)
[    0.524562] rtc_cmos 00:01: alarms up to one month, y3k, 114 bytes nvram
[    0.524572] intel_pstate: CPU model not supported
[    0.524665] ledtrig-cpu: registered to indicate activity on CPUs
[    0.524679] hid: raw HID events driver (C) Jiri Kosina
[    0.524790] usbcore: registered new interface driver usbhid
[    0.524790] usbhid: USB HID core driver
[    0.525005] NET: Registered protocol family 10
[    0.531421] Segment Routing with IPv6
[    0.531425] RPL Segment Routing with IPv6
[    0.531469] NET: Registered protocol family 17
[    0.531629] Key type dns_resolver registered
[    0.531840] microcode: sig=0x20652, pf=0x2, revision=0x9
[    0.531882] microcode: Microcode Update Driver: v2.2.
[    0.531886] IPI shorthand broadcast: enabled
[    0.531893] sched_clock: Marking stable (531599624, 180582)->(534322300, -2542094)
[    0.531925] registered taskstats version 1
[    0.531928] Loading compiled-in X.509 certificates
[    0.532387] zswap: loaded using pool zstd/zbud
[    0.533126] Freeing unused kernel image (initmem) memory: 1040K
[    0.540583] Write protecting the kernel read-only data: 16384k
[    0.541471] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    0.542129] Freeing unused kernel image (rodata/data gap) memory: 1756K
[    0.542209] rodata_test: all tests were successful
[    0.542276] Run /init as init process
[    0.542277]   with arguments:
[    0.542278]     /init
[    0.542279]     splash
[    0.542281]   with environment:
[    0.542282]     HOME=/
[    0.542283]     TERM=linux
[    0.542284]     BOOT_IMAGE=/boot/vmlinuz-5.10.68-calculate
[    0.542286]     calculate=video:modesetting
[    0.749436] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    0.756603] dracut: TuxOnIce premodule started
[    0.756920] dracut: Kernel has no tuxonice support, aborting
[    0.765513] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    0.769853] systemd-udevd[981]: starting version 3.2.10
[    0.770154] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    0.770184] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    0.770202] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    0.771132] udevd[982]: starting eudev-3.2.10
[    0.880797] usb 1-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
[    0.880803] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    0.881180] hub 1-1:1.0: USB hub found
[    0.881231] hub 1-1:1.0: 6 ports detected
[    0.896805] usb 2-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
[    0.896811] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    0.897181] hub 2-1:1.0: USB hub found
[    0.897232] hub 2-1:1.0: 8 ports detected
[    0.969665] pci 0000:00:00.0: Intel HD Graphics Chipset
[    0.969691] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[    0.970014] pci 0000:00:00.0: detected 262144K stolen memory
[    0.970078] checking generic (d0000000 300000) vs hw (fb800000 400000)
[    0.970081] checking generic (d0000000 300000) vs hw (d0000000 10000000)
[    0.970083] fb0: switching to inteldrmfb from VESA VGA
[    0.970444] Console: switching to colour dummy device 80x25
[    0.970538] i915 0000:00:02.0: vgaarb: deactivate vga console
[    0.975082] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.003895] [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
[    1.044791] fbcon: i915drmfb (fb0) is primary device
[    1.139324] Console: switching to colour frame buffer device 240x67
[    1.155458] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
[    1.160779] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    1.179229] dracut: Starting plymouth daemon
[    1.330402] tsc: Refined TSC clocksource calibration: 2794.629 MHz
[    1.330410] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28486ee630b, max_idle_ns: 440795304693 ns
[    1.330439] clocksource: Switched to clocksource tsc
[    1.337901] ata_piix 0000:00:1f.2: version 2.13
[    1.338042] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    1.341049] scsi host0: ata_piix
[    1.341472] scsi host1: ata_piix
[    1.341510] ata1: SATA max UDMA/133 cmd 0xcc00 ctl 0xc880 bmdma 0xc400 irq 19
[    1.341513] ata2: SATA max UDMA/133 cmd 0xc800 ctl 0xc480 bmdma 0xc408 irq 19
[    1.341655] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    1.344564] scsi host2: ata_piix
[    1.349137] scsi host3: ata_piix
[    1.349197] ata3: SATA max UDMA/133 cmd 0xdc00 ctl 0xd880 bmdma 0xd400 irq 19
[    1.349199] ata4: SATA max UDMA/133 cmd 0xd800 ctl 0xd480 bmdma 0xd408 irq 19
[    1.667580] ata3: SATA link down (SStatus 0 SControl 300)
[    1.826490] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.828863] ata4.00: ATAPI: ATAPI   iHAS124   Y, BL0V, max UDMA/100
[    1.833495] ata4.00: configured for UDMA/100
[    2.114510] ata1.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.114524] ata1.01: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.114641] ata2.00: SATA link down (SStatus 0 SControl 300)
[    2.114651] ata2.01: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.144749] ata2.01: ATA-7: SAMSUNG HD103SI, 1AG01113, max UDMA7
[    2.144753] ata2.01: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.163789] ata2.01: configured for UDMA/133
[    2.173404] ata1.00: ATA-7: ST380211AS, 3.AAB, max UDMA/133
[    2.173408] ata1.00: 156301488 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.173751] ata1.01: ATA-9: ST2000DM001-1CH164, CC29, max UDMA/133
[    2.173754] ata1.01: 3907029168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.248321] ata1.00: configured for UDMA/133
[    2.253219] ata1.01: configured for UDMA/133
[    2.253515] scsi 0:0:0:0: Direct-Access     ATA      ST380211AS       B    PQ: 0 ANSI: 5
[    2.253859] sd 0:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
[    2.253868] sd 0:0:0:0: [sda] Write Protect is off
[    2.253870] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.253882] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.253980] scsi 0:0:1:0: Direct-Access     ATA      ST2000DM001-1CH1 CC29 PQ: 0 ANSI: 5
[    2.254252] scsi 1:0:1:0: Direct-Access     ATA      SAMSUNG HD103SI  1113 PQ: 0 ANSI: 5
[    2.254603] sd 1:0:1:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    2.254610] sd 1:0:1:0: [sdc] Write Protect is off
[    2.254612] sd 1:0:1:0: [sdc] Mode Sense: 00 3a 00 00
[    2.254622] sd 1:0:1:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.254662] sd 0:0:1:0: [sdb] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[    2.254664] sd 0:0:1:0: [sdb] 4096-byte physical blocks
[    2.254670] sd 0:0:1:0: [sdb] Write Protect is off
[    2.254672] sd 0:0:1:0: [sdb] Mode Sense: 00 3a 00 00
[    2.254682] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.255916] scsi 3:0:0:0: CD-ROM            ATAPI    iHAS124   Y      BL0V PQ: 0 ANSI: 5
[    2.273196]  sdc: sdc1 sdc2 sdc3 sdc4
[    2.279699] sd 1:0:1:0: [sdc] Attached SCSI disk
[    2.296373]  sda: sda1 sda2 sda3
[    2.299260] sr 3:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.299265] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.323477] sr 3:0:0:0: Attached scsi CD-ROM sr0
[    2.355827] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.355837]  sdb: sdb1 sdb2 sdb3 sdb4 < sdb5 sdb6 sdb7 sdb8 >
[    2.365665] sd 0:0:1:0: [sdb] Attached SCSI disk
[    2.543996] random: fast init done
[    2.649260] random: crng init done
[    2.649264] random: 4 urandom warning(s) missed due to ratelimiting
[    6.261461] usb 1-1.1: device descriptor read/64, error -110
[    6.434460] usb 1-1.1: new full-speed USB device number 4 using ehci-pci
[   11.893456] usb 1-1.1: device descriptor read/64, error -110
[   12.002666] usb 1-1-port1: attempt power cycle
[   12.582456] usb 1-1.1: new full-speed USB device number 5 using ehci-pci
[   18.178455] usb 1-1.1: device not accepting address 5, error -110
[   18.242427] usb 1-1.1: new full-speed USB device number 6 using ehci-pci
[   23.810458] usb 1-1.1: device not accepting address 6, error -110
[   23.810620] usb 1-1-port1: unable to enumerate USB device
[   23.823440] dracut: TuxOnIce lvmfix started
[   23.829981] dracut: TuxOnIce udev should be now fully settled
[   23.930486] EXT4-fs (sdb3): mounted filesystem with ordered data mode. Opts: (null)
[   24.131370] dracut: Mounted root filesystem /dev/sdb3
[   24.194968] EXT4-fs (sdb3): re-mounted. Opts: (null)
[   24.486633] EXT4-fs (sdb3): re-mounted. Opts: (null)
[   24.618655] dracut: Switching root
[   28.120504] udevd[2720]: starting version 3.2.10
[   29.289538] w83627ehf: Found W83667HG-B chip at 0x290
[   29.301574] udevd[2720]: starting eudev-3.2.10
[   29.381819] vboxdrv: loading out-of-tree module taints kernel.
[   29.385517] vboxdrv: Found 2 processor cores
[   29.402693] vboxdrv: TSC mode is Invariant, tentative frequency 2794628930 Hz
[   29.402694] vboxdrv: Successfully loaded version 6.1.26 r145957 (interface 0x00300000)
[   29.449942] VBoxNetFlt: Successfully started.
[   29.591709] VBoxNetAdp: Successfully started.
[   29.655080] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[   29.655147] ACPI: Power Button [PWRB]
[   29.655190] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
[   29.658402] ACPI: Power Button [PWRF]
[   29.666461] ACPI Warning: SystemIO range 0x0000000000000828-0x000000000000082F conflicts with OpRegion 0x0000000000000800-0x000000000000084F (\PMRG) (20200925/utaddress-204)
[   29.666470] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   29.666473] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000052F (\GPR2) (20200925/utaddress-204)
[   29.666476] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   29.666498] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   29.992546] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[   29.992595] i2c i2c-8: 4/4 memory slots populated (from DMI)
[   29.992597] i2c i2c-8: Memory type 0x0f not supported yet, not instantiating SPD
[   30.206492] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_globals_exit [i915])
[   30.746780] iTCO_vendor_support: vendor-support=0
[   30.788507] snd_hda_codec_via hdaudioC0D0: autoconfig for VT1705: line_outs=1 (0x1c/0x0/0x0/0x0/0x0) type:line
[   30.788511] snd_hda_codec_via hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   30.788513] snd_hda_codec_via hdaudioC0D0:    hp_outs=1 (0x1d/0x0/0x0/0x0/0x0)
[   30.788515] snd_hda_codec_via hdaudioC0D0:    mono: mono_out=0x0
[   30.788516] snd_hda_codec_via hdaudioC0D0:    dig-out=0x20/0x0
[   30.788518] snd_hda_codec_via hdaudioC0D0:    inputs:
[   30.788520] snd_hda_codec_via hdaudioC0D0:      Rear Mic=0x1a
[   30.788522] snd_hda_codec_via hdaudioC0D0:      Front Mic=0x1e
[   30.788524] snd_hda_codec_via hdaudioC0D0:      Line=0x1b
[   30.797929] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[   30.995527] input: HDA Intel MID Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
[   30.995576] input: HDA Intel MID Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[   30.995620] input: HDA Intel MID Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[   30.995657] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[   30.995693] input: HDA Intel MID HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   31.109795] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   31.109867] iTCO_wdt: Found a H55 TCO device (Version=2, TCOBASE=0x0860)
[   31.110019] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   31.332358] r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[   31.334966] libphy: r8169: probed
[   31.335547] r8169 0000:01:00.0 eth0: RTL8168e/8111e, 00:25:22:59:44:91, XID 2c1, IRQ 27
[   31.335550] r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[   33.512939] EXT4-fs (sdb3): re-mounted. Opts: (null)
[   33.680179] zram: Added device: zram0
[   33.781135] zram0: detected capacity change from 0 to 16029745152
[   33.847478] Adding 15654044k swap on /dev/zram0.  Priority:100 extents:1 across:15654044k SSFS
[   33.887394] RTL8211DN Gigabit Ethernet r8169-0-100:00: attached PHY driver [RTL8211DN Gigabit Ethernet] (mii_bus:phy_addr=r8169-0-100:00, irq=IGNORE)
[   33.975987] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
[   34.038799] EXT4-fs (sdb2): mounted filesystem with ordered data mode. Opts: (null)
[   34.112848] fuse: init (API version 7.32)
[   34.200616] r8169 0000:01:00.0 eth0: Link is Down
[   37.175140] r8169 0000:01:00.0 eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[   37.175157] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   38.348165] Bluetooth: Core ver 2.22
[   38.348205] NET: Registered protocol family 31
[   38.348205] Bluetooth: HCI device and connection manager initialized
[   38.348211] Bluetooth: HCI socket layer initialized
[   38.348213] Bluetooth: L2CAP socket layer initialized
[   38.348218] Bluetooth: SCO socket layer initialized
[   38.840829] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   38.840832] Bluetooth: BNEP filters: protocol multicast
[   38.840837] Bluetooth: BNEP socket layer initialized
[   40.441552] Key type cifs.spnego registered
[   40.441558] Key type cifs.idmap registered
[   40.442013] CIFS: Attempting to mount //192.168.30.130/Volume_1
[   40.540208] CIFS: Attempting to mount //192.168.30.130/Volume_2/mm
[   44.443521] Key type encrypted registered
Add Comment
Author