1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813 | [ 0.000000] Linux version 6.1.39-calculate (root@localhost) (gcc (Gentoo 12.3.1_p20230526 p2) 12.3.1 20230526, GNU ld (Gentoo 2.40 p5) 2.40.0) #1 SMP PREEMPT_DYNAMIC Wed Jul 19 21:20:18 UTC 2023
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.1.39-calculate root=UUID=02813945-d7bf-4eb9-a6c9-1240c42c0ff9 ro video=1366x768 rd.retry=40 calculate=video:intel splash quiet
[ 0.000000] x86/fpu: x87 FPU will use FXSAVE
[ 0.000000] signal: max sigframe size: 1440
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bb63efff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bb63f000-0x00000000bb6befff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bb6bf000-0x00000000bb7befff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bb7bf000-0x00000000bb7fefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000bb7ff000-0x00000000bb7fffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bb800000-0x00000000bfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed13fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed18000-0x00000000fed19fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffe80000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000137ffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.6 present.
[ 0.000000] DMI: TOSHIBA Satellite L655/Portable PC, BIOS 2.40 11/09/2011
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 2792.934 MHz processor
[ 0.001683] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.001687] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.001698] last_pfn = 0x138000 max_arch_pfn = 0x400000000
[ 0.002396] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.002951] last_pfn = 0xbb800 max_arch_pfn = 0x400000000
[ 0.015799] RAMDISK: [mem 0x2c00d000-0x31ffdfff]
[ 0.015807] ACPI: Early table checksum verification disabled
[ 0.015813] ACPI: RSDP 0x00000000000FE020 000024 (v02 TOSINV)
[ 0.015818] ACPI: XSDT 0x00000000BB7FE120 00007C (v01 TOSINV TOSINV00 00000001 01000013)
[ 0.015825] ACPI: FACP 0x00000000BB7FC000 0000F4 (v04 TOSINV TOSINV00 00000001 MSFT 01000013)
[ 0.015832] ACPI: DSDT 0x00000000BB7EE000 00AF91 (v02 TOSINV TOSINV00 00000001 MSFT 01000013)
[ 0.015836] ACPI: FACS 0x00000000BB76E000 000040
[ 0.015840] ACPI: FACS 0x00000000BB76E000 000040
[ 0.015844] ACPI: ASF! 0x00000000BB7FD000 0000A5 (v32 TOSINV TOSINV00 00000001 MSFT 01000013)
[ 0.015848] ACPI: HPET 0x00000000BB7FB000 000038 (v01 TOSINV TOSINV00 00000001 MSFT 01000013)
[ 0.015853] ACPI: APIC 0x00000000BB7FA000 00008C (v02 TOSINV TOSINV00 00000001 MSFT 01000013)
[ 0.015857] ACPI: MCFG 0x00000000BB7F9000 00003C (v01 TOSINV TOSINV00 00000001 MSFT 01000013)
[ 0.015862] ACPI: SLIC 0x00000000BB7ED000 000176 (v01 TOSINV TOSINV00 00000001 MSFT 01000013)
[ 0.015866] ACPI: BOOT 0x00000000BB7EA000 000028 (v01 TOSINV TOSINV00 00000001 MSFT 01000013)
[ 0.015871] ACPI: SSDT 0x00000000BB7E7000 000110 (v01 INTEL SataAhci 00001000 INTL 20051117)
[ 0.015875] ACPI: ASPT 0x00000000BB7E5000 000034 (v04 INTEL Calpella 00000001 MSFT 01000013)
[ 0.015879] ACPI: WDAT 0x00000000BB7E4000 000224 (v01 INTEL Calpella 00000001 MSFT 01000013)
[ 0.015884] ACPI: SSDT 0x00000000BB7E3000 0009F1 (v01 PmRef CpuPm 00003000 INTL 20051117)
[ 0.015887] ACPI: Reserving FACP table memory at [mem 0xbb7fc000-0xbb7fc0f3]
[ 0.015889] ACPI: Reserving DSDT table memory at [mem 0xbb7ee000-0xbb7f8f90]
[ 0.015890] ACPI: Reserving FACS table memory at [mem 0xbb76e000-0xbb76e03f]
[ 0.015892] ACPI: Reserving FACS table memory at [mem 0xbb76e000-0xbb76e03f]
[ 0.015893] ACPI: Reserving ASF! table memory at [mem 0xbb7fd000-0xbb7fd0a4]
[ 0.015894] ACPI: Reserving HPET table memory at [mem 0xbb7fb000-0xbb7fb037]
[ 0.015895] ACPI: Reserving APIC table memory at [mem 0xbb7fa000-0xbb7fa08b]
[ 0.015897] ACPI: Reserving MCFG table memory at [mem 0xbb7f9000-0xbb7f903b]
[ 0.015898] ACPI: Reserving SLIC table memory at [mem 0xbb7ed000-0xbb7ed175]
[ 0.015899] ACPI: Reserving BOOT table memory at [mem 0xbb7ea000-0xbb7ea027]
[ 0.015900] ACPI: Reserving SSDT table memory at [mem 0xbb7e7000-0xbb7e710f]
[ 0.015902] ACPI: Reserving ASPT table memory at [mem 0xbb7e5000-0xbb7e5033]
[ 0.015903] ACPI: Reserving WDAT table memory at [mem 0xbb7e4000-0xbb7e4223]
[ 0.015904] ACPI: Reserving SSDT table memory at [mem 0xbb7e3000-0xbb7e39f0]
[ 0.015985] No NUMA configuration found
[ 0.015986] Faking a node at [mem 0x0000000000000000-0x0000000137ffffff]
[ 0.015998] NODE_DATA(0) allocated [mem 0x137fd2000-0x137ffcfff]
[ 0.016068] Zone ranges:
[ 0.016069] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.016071] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.016073] Normal [mem 0x0000000100000000-0x0000000137ffffff]
[ 0.016075] Device empty
[ 0.016076] Movable zone start for each node
[ 0.016079] Early memory node ranges
[ 0.016080] node 0: [mem 0x0000000000001000-0x000000000009dfff]
[ 0.016082] node 0: [mem 0x0000000000100000-0x00000000bb63efff]
[ 0.016084] node 0: [mem 0x00000000bb7ff000-0x00000000bb7fffff]
[ 0.016085] node 0: [mem 0x0000000100000000-0x0000000137ffffff]
[ 0.016088] Initmem setup node 0 [mem 0x0000000000001000-0x0000000137ffffff]
[ 0.016094] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.016133] On node 0, zone DMA: 98 pages in unavailable ranges
[ 0.025609] On node 0, zone DMA32: 448 pages in unavailable ranges
[ 0.028831] On node 0, zone Normal: 18432 pages in unavailable ranges
[ 0.028845] Reserving Intel graphics memory at [mem 0xbe000000-0xbfffffff]
[ 0.029103] ACPI: PM-Timer IO Port: 0x408
[ 0.029128] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[ 0.029132] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.029135] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.029140] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.029142] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.029149] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
[ 0.029175] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.029178] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
[ 0.029179] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.029180] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.029181] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.029184] PM: hibernation: Registered nosave memory: [mem 0xbb63f000-0xbb6befff]
[ 0.029185] PM: hibernation: Registered nosave memory: [mem 0xbb6bf000-0xbb7befff]
[ 0.029186] PM: hibernation: Registered nosave memory: [mem 0xbb7bf000-0xbb7fefff]
[ 0.029188] PM: hibernation: Registered nosave memory: [mem 0xbb800000-0xbfffffff]
[ 0.029189] PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xefffffff]
[ 0.029190] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf3ffffff]
[ 0.029191] PM: hibernation: Registered nosave memory: [mem 0xf4000000-0xfeafffff]
[ 0.029192] PM: hibernation: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
[ 0.029194] PM: hibernation: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
[ 0.029195] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.029196] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
[ 0.029197] PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed13fff]
[ 0.029198] PM: hibernation: Registered nosave memory: [mem 0xfed14000-0xfed17fff]
[ 0.029199] PM: hibernation: Registered nosave memory: [mem 0xfed18000-0xfed19fff]
[ 0.029200] PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed1afff]
[ 0.029201] PM: hibernation: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
[ 0.029202] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[ 0.029203] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.029204] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffe7ffff]
[ 0.029205] PM: hibernation: Registered nosave memory: [mem 0xffe80000-0xffffffff]
[ 0.029208] [mem 0xc0000000-0xefffffff] available for PCI devices
[ 0.029209] Booting paravirtualized kernel on bare hardware
[ 0.029213] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
[ 0.036015] setup_percpu: NR_CPUS:512 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.036444] percpu: Embedded 63 pages/cpu s221184 r8192 d28672 u262144
[ 0.036455] pcpu-alloc: s221184 r8192 d28672 u262144 alloc=1*2097152
[ 0.036459] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.036494] Fallback order for Node 0: 0
[ 0.036498] Built 1 zonelists, mobility grouping on. Total pages: 981095
[ 0.036500] Policy zone: Normal
[ 0.036502] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.1.39-calculate root=UUID=02813945-d7bf-4eb9-a6c9-1240c42c0ff9 ro video=1366x768 rd.retry=40 calculate=video:intel splash quiet
[ 0.036682] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.1.39-calculate calculate=video:intel", will be passed to user space.
[ 0.037218] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.037535] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.037981] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[ 0.037990] software IO TLB: area num 8.
[ 0.077270] Memory: 3694616K/3987316K available (16393K kernel code, 2890K rwdata, 5460K rodata, 2752K init, 17612K bss, 292440K reserved, 0K cma-reserved)
[ 0.077641] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.077663] Kernel/User page tables isolation: enabled
[ 0.077693] ftrace: allocating 50920 entries in 199 pages
[ 0.088547] ftrace: allocated 199 pages with 5 groups
[ 0.089631] Dynamic Preempt: voluntary
[ 0.089698] rcu: Preemptible hierarchical RCU implementation.
[ 0.089700] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8.
[ 0.089702] Trampoline variant of Tasks RCU enabled.
[ 0.089703] Rude variant of Tasks RCU enabled.
[ 0.089703] Tracing variant of Tasks RCU enabled.
[ 0.089704] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[ 0.089705] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.096560] NR_IRQS: 33024, nr_irqs: 488, preallocated irqs: 16
[ 0.096766] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.096925] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
[ 0.096971] Console: colour dummy device 80x25
[ 0.096995] printk: console [tty0] enabled
[ 0.097030] ACPI: Core revision 20220331
[ 0.097033] ACPI: TOSHIBA Satellite detected - force copy of DSDT to local memory
[ 0.097193] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.097214] APIC: Switch to symmetric I/O mode setup
[ 0.097710] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.113881] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x28422dc19d5, max_idle_ns: 440795264520 ns
[ 0.113887] Calibrating delay loop (skipped), value calculated using timer frequency.. 5588.61 BogoMIPS (lpj=9309780)
[ 0.113890] pid_max: default: 32768 minimum: 301
[ 0.113970] LSM: Security Framework initializing
[ 0.113974] Yama: becoming mindful.
[ 0.114032] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.114047] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[ 0.114434] process: using mwait in idle threads
[ 0.114438] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
[ 0.114440] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.114445] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.114447] Spectre V2 : Mitigation: Retpolines
[ 0.114448] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.114449] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.114451] Speculative Store Bypass: Vulnerable
[ 0.114455] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[ 0.114456] MMIO Stale Data: Unknown: No mitigations
[ 0.134794] Freeing SMP alternatives memory: 48K
[ 0.246664] smpboot: CPU0: Intel(R) Core(TM) i7 CPU M 640 @ 2.80GHz (family: 0x6, model: 0x25, stepping: 0x5)
[ 0.246880] cblist_init_generic: Setting adjustable number of callback queues.
[ 0.246883] cblist_init_generic: Setting shift to 3 and lim to 1.
[ 0.246905] cblist_init_generic: Setting shift to 3 and lim to 1.
[ 0.246926] cblist_init_generic: Setting shift to 3 and lim to 1.
[ 0.246944] Performance Events: PEBS fmt1+, Westmere events, 16-deep LBR, Intel PMU driver.
[ 0.246965] core: CPUID marked event: 'bus cycles' unavailable
[ 0.246966] ... version: 3
[ 0.246967] ... bit width: 48
[ 0.246968] ... generic registers: 4
[ 0.246969] ... value mask: 0000ffffffffffff
[ 0.246970] ... max period: 000000007fffffff
[ 0.246971] ... fixed-purpose events: 3
[ 0.246971] ... event mask: 000000070000000f
[ 0.247126] Estimated ratio of average max frequency by base frequency (times 1024): 1267
[ 0.247155] rcu: Hierarchical SRCU implementation.
[ 0.247157] rcu: Max phase no-delay instances is 1000.
[ 0.247217] smp: Bringing up secondary CPUs ...
[ 0.247217] x86: Booting SMP configuration:
[ 0.247217] .... node #0, CPUs: #1
[ 0.247310] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[ 0.247408] #2 #3
[ 0.250585] smp: Brought up 1 node, 4 CPUs
[ 0.250586] smpboot: Max logical packages: 2
[ 0.250587] smpboot: Total of 4 processors activated (22352.45 BogoMIPS)
[ 0.254311] devtmpfs: initialized
[ 0.254311] x86/mm: Memory block size: 128MB
[ 0.254490] ACPI: PM: Registering ACPI NVS region [mem 0xbb6bf000-0xbb7befff] (1048576 bytes)
[ 0.254490] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[ 0.254490] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.254490] pinctrl core: initialized pinctrl subsystem
[ 0.254490] PM: RTC time: 11:35:45, date: 2023-09-08
[ 0.254777] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.254929] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[ 0.254935] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.254940] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.254956] audit: initializing netlink subsys (disabled)
[ 0.254966] audit: type=2000 audit(1694172945.156:1): state=initialized audit_enabled=0 res=1
[ 0.254966] thermal_sys: Registered thermal governor 'fair_share'
[ 0.254966] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.254966] thermal_sys: Registered thermal governor 'step_wise'
[ 0.254966] thermal_sys: Registered thermal governor 'user_space'
[ 0.254966] cpuidle: using governor menu
[ 0.257257] Simple Boot Flag at 0x44 set to 0x1
[ 0.257276] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.257278] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.257386] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[ 0.257393] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[ 0.257410] PCI: Using configuration type 1 for base access
[ 0.259553] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.260784] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.260787] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.261133] cryptd: max_cpu_qlen set to 1000
[ 0.261243] raid6: skipped pq benchmark and selected sse2x4
[ 0.261243] raid6: using ssse3x2 recovery algorithm
[ 0.261243] ACPI: Added _OSI(Module Device)
[ 0.261243] ACPI: Added _OSI(Processor Device)
[ 0.261243] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.261243] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.261243] ACPI: Forced DSDT copy: length 0x0AF91 copied locally, original unmapped
[ 0.274938] ACPI: 3 ACPI AML tables successfully acquired and loaded
[ 0.276299] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.309123] ACPI: Dynamic OEM Table Load:
[ 0.309123] ACPI: SSDT 0xFFFF9C2900823800 0004AE (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
[ 0.309123] ACPI: Dynamic OEM Table Load:
[ 0.309123] ACPI: SSDT 0xFFFF9C2900824800 000633 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 0.310774] ACPI: Dynamic OEM Table Load:
[ 0.310779] ACPI: SSDT 0xFFFF9C2900CB8C00 000303 (v01 PmRef ApIst 00003000 INTL 20051117)
[ 0.311296] ACPI: Dynamic OEM Table Load:
[ 0.311301] ACPI: SSDT 0xFFFF9C2900C86E00 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
[ 0.312317] ACPI: Interpreter enabled
[ 0.312351] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.312353] ACPI: Using IOAPIC for interrupt routing
[ 0.312390] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.312392] PCI: Using E820 reservations for host bridge windows
[ 0.312536] ACPI: watchdog: Skipping WDAT on this system because it uses RTC SRAM
[ 0.312585] ACPI: Enabled 18 GPEs in block 00 to 3F
[ 0.324083] ACPI: PM: Power Resource [FN00]
[ 0.324922] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.324931] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.324938] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.324940] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.324941] acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_NOT_FOUND)
[ 0.325503] PCI host bridge to bus 0000:00
[ 0.325506] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.325508] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.325510] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.325512] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff window]
[ 0.325514] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.325531] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
[ 0.325552] pci 0000:00:00.0: DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
[ 0.325615] pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
[ 0.325624] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff 64bit]
[ 0.325630] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
[ 0.325634] pci 0000:00:02.0: reg 0x20: [io 0x4050-0x4057]
[ 0.325647] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.325766] pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
[ 0.325791] pci 0000:00:16.0: reg 0x10: [mem 0xd6406100-0xd640610f 64bit]
[ 0.325884] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.325963] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
[ 0.325983] pci 0000:00:1a.0: reg 0x10: [mem 0xd6405c00-0xd6405fff]
[ 0.326086] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.326186] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
[ 0.326212] pci 0000:00:1b.0: reg 0x10: [mem 0xd6400000-0xd6403fff 64bit]
[ 0.326327] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.326458] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
[ 0.326575] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.326691] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
[ 0.326807] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.326926] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
[ 0.327042] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.327162] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
[ 0.327182] pci 0000:00:1d.0: reg 0x10: [mem 0xd6405800-0xd6405bff]
[ 0.327290] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.327387] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[ 0.327543] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
[ 0.327745] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
[ 0.327764] pci 0000:00:1f.2: reg 0x10: [io 0x4048-0x404f]
[ 0.327775] pci 0000:00:1f.2: reg 0x14: [io 0x405c-0x405f]
[ 0.327786] pci 0000:00:1f.2: reg 0x18: [io 0x4040-0x4047]
[ 0.327796] pci 0000:00:1f.2: reg 0x1c: [io 0x4058-0x405b]
[ 0.327807] pci 0000:00:1f.2: reg 0x20: [io 0x4020-0x403f]
[ 0.327817] pci 0000:00:1f.2: reg 0x24: [mem 0xd6405000-0xd64057ff]
[ 0.327876] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.327967] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
[ 0.327991] pci 0000:00:1f.3: reg 0x10: [mem 0xd6406000-0xd64060ff 64bit]
[ 0.328020] pci 0000:00:1f.3: reg 0x20: [io 0x4000-0x401f]
[ 0.328124] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
[ 0.328149] pci 0000:00:1f.6: reg 0x10: [mem 0xd6404000-0xd6404fff 64bit]
[ 0.328351] pci 0000:01:00.0: [1969:2060] type 00 class 0x020000
[ 0.328382] pci 0000:01:00.0: reg 0x10: [mem 0xd5400000-0xd543ffff 64bit]
[ 0.328397] pci 0000:01:00.0: reg 0x18: [io 0x3000-0x307f]
[ 0.328465] pci 0000:01:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format)
[ 0.328538] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.328693] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.328698] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
[ 0.328703] pci 0000:00:1c.0: bridge window [mem 0xd5400000-0xd63fffff]
[ 0.328710] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
[ 0.328826] pci 0000:02:00.0: [14e4:4727] type 00 class 0x028000
[ 0.328863] pci 0000:02:00.0: reg 0x10: [mem 0xd4400000-0xd4403fff 64bit]
[ 0.328946] pci 0000:02:00.0: enabling Extended Tags
[ 0.329074] pci 0000:02:00.0: supports D1 D2
[ 0.329076] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.329303] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.329308] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
[ 0.329313] pci 0000:00:1c.1: bridge window [mem 0xd4400000-0xd53fffff]
[ 0.329320] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
[ 0.329398] acpiphp: Slot [1] registered
[ 0.329404] pci 0000:00:1c.4: PCI bridge to [bus 20-22]
[ 0.329409] pci 0000:00:1c.4: bridge window [io 0x1000-0x1fff]
[ 0.329414] pci 0000:00:1c.4: bridge window [mem 0xd3400000-0xd43fffff]
[ 0.329421] pci 0000:00:1c.4: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
[ 0.329445] pci_bus 0000:03: extended config space not accessible
[ 0.329504] pci 0000:00:1e.0: PCI bridge to [bus 03] (subtractive decode)
[ 0.329516] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
[ 0.329518] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
[ 0.329520] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[ 0.329521] pci 0000:00:1e.0: bridge window [mem 0xc0000000-0xfeafffff window] (subtractive decode)
[ 0.330187] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[ 0.330232] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[ 0.330276] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.330277] ACPI: PCI: Interrupt link LNKC disabled
[ 0.330319] ACPI: PCI: Interrupt link LNKD configured for IRQ 9
[ 0.330362] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.330363] ACPI: PCI: Interrupt link LNKE disabled
[ 0.330409] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
[ 0.330453] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[ 0.330496] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[ 0.330561] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus 3f])
[ 0.330566] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.330642] PCI host bridge to bus 0000:3f
[ 0.330644] pci_bus 0000:3f: root bus resource [bus 3f]
[ 0.330652] pci 0000:3f:00.0: [8086:2c62] type 00 class 0x060000
[ 0.330698] pci 0000:3f:00.1: [8086:2d01] type 00 class 0x060000
[ 0.330766] pci 0000:3f:02.0: [8086:2d10] type 00 class 0x060000
[ 0.330809] pci 0000:3f:02.1: [8086:2d11] type 00 class 0x060000
[ 0.330852] pci 0000:3f:02.2: [8086:2d12] type 00 class 0x060000
[ 0.330892] pci 0000:3f:02.3: [8086:2d13] type 00 class 0x060000
[ 0.331144] iommu: Default domain type: Translated
[ 0.331144] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.331144] SCSI subsystem initialized
[ 0.331144] libata version 3.00 loaded.
[ 0.331144] ACPI: bus type USB registered
[ 0.331144] usbcore: registered new interface driver usbfs
[ 0.331144] usbcore: registered new interface driver hub
[ 0.331144] usbcore: registered new device driver usb
[ 0.331144] pps_core: LinuxPPS API ver. 1 registered
[ 0.331144] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.331144] PTP clock support registered
[ 0.331144] EDAC MC: Ver: 3.0.0
[ 0.331144] NetLabel: Initializing
[ 0.331144] NetLabel: domain hash size = 128
[ 0.331144] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.331144] NetLabel: unlabeled traffic allowed by default
[ 0.331144] mctp: management component transport protocol core
[ 0.331144] NET: Registered PF_MCTP protocol family
[ 0.331144] PCI: Using ACPI for IRQ routing
[ 0.334205] PCI: pci_cache_line_size set to 64 bytes
[ 0.334291] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
[ 0.334293] e820: reserve RAM buffer [mem 0xbb63f000-0xbbffffff]
[ 0.334294] e820: reserve RAM buffer [mem 0xbb800000-0xbbffffff]
[ 0.334320] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.334320] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.334320] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.334320] vgaarb: loaded
[ 0.334320] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.334320] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.336030] clocksource: Switched to clocksource tsc-early
[ 0.346872] VFS: Disk quotas dquot_6.6.0
[ 0.346896] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.346986] pnp: PnP ACPI init
[ 0.347367] pnp 00:02: disabling [io 0x164e-0x164f] because it overlaps 0000:00:1c.4 BAR 13 [io 0x1000-0x1fff]
[ 0.347421] system 00:02: [io 0x0680-0x069f] has been reserved
[ 0.347423] system 00:02: [io 0x0800-0x080f] has been reserved
[ 0.347425] system 00:02: [io 0x0810-0x0813] has been reserved
[ 0.347427] system 00:02: [io 0xffff] has been reserved
[ 0.347429] system 00:02: [io 0x0400-0x047f] has been reserved
[ 0.347430] system 00:02: [io 0x0500-0x057f] has been reserved
[ 0.347696] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.347699] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
[ 0.347701] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.347703] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.347705] system 00:04: [mem 0xf0000000-0xf3ffffff] has been reserved
[ 0.347707] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.347709] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.347711] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.347713] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.347715] system 00:04: [mem 0xd6500000-0xd6500fff] has been reserved
[ 0.347717] system 00:04: [mem 0xff800000-0xff8001ff] has been reserved
[ 0.347858] pnp: PnP ACPI: found 5 devices
[ 0.353976] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.354076] NET: Registered PF_INET protocol family
[ 0.354215] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.355425] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[ 0.355435] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.355449] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.355501] TCP bind hash table entries: 32768 (order: 8, 1048576 bytes, linear)
[ 0.355701] TCP: Hash tables configured (established 32768 bind 32768)
[ 0.355799] MPTCP token hash table entries: 4096 (order: 4, 98304 bytes, linear)
[ 0.355829] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.355844] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[ 0.355916] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.355925] NET: Registered PF_XDP protocol family
[ 0.355940] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.355946] pci 0000:00:1c.0: bridge window [io 0x3000-0x3fff]
[ 0.355953] pci 0000:00:1c.0: bridge window [mem 0xd5400000-0xd63fffff]
[ 0.355958] pci 0000:00:1c.0: bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
[ 0.355966] pci 0000:00:1c.1: PCI bridge to [bus 02]
[ 0.355969] pci 0000:00:1c.1: bridge window [io 0x2000-0x2fff]
[ 0.355975] pci 0000:00:1c.1: bridge window [mem 0xd4400000-0xd53fffff]
[ 0.355979] pci 0000:00:1c.1: bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
[ 0.355987] pci 0000:00:1c.4: PCI bridge to [bus 20-22]
[ 0.355990] pci 0000:00:1c.4: bridge window [io 0x1000-0x1fff]
[ 0.355996] pci 0000:00:1c.4: bridge window [mem 0xd3400000-0xd43fffff]
[ 0.356000] pci 0000:00:1c.4: bridge window [mem 0xd2400000-0xd33fffff 64bit pref]
[ 0.356008] pci 0000:00:1e.0: PCI bridge to [bus 03]
[ 0.356023] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.356025] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.356027] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.356028] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff window]
[ 0.356030] pci_bus 0000:01: resource 0 [io 0x3000-0x3fff]
[ 0.356032] pci_bus 0000:01: resource 1 [mem 0xd5400000-0xd63fffff]
[ 0.356033] pci_bus 0000:01: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
[ 0.356035] pci_bus 0000:02: resource 0 [io 0x2000-0x2fff]
[ 0.356036] pci_bus 0000:02: resource 1 [mem 0xd4400000-0xd53fffff]
[ 0.356038] pci_bus 0000:02: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
[ 0.356040] pci_bus 0000:20: resource 0 [io 0x1000-0x1fff]
[ 0.356041] pci_bus 0000:20: resource 1 [mem 0xd3400000-0xd43fffff]
[ 0.356042] pci_bus 0000:20: resource 2 [mem 0xd2400000-0xd33fffff 64bit pref]
[ 0.356044] pci_bus 0000:03: resource 4 [io 0x0000-0x0cf7 window]
[ 0.356046] pci_bus 0000:03: resource 5 [io 0x0d00-0xffff window]
[ 0.356047] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.356049] pci_bus 0000:03: resource 7 [mem 0xc0000000-0xfeafffff window]
[ 0.356134] pci 0000:00:02.0: BIOS left Intel GPU interrupts enabled; disabling
[ 0.356595] PCI: CLS 64 bytes, default 64
[ 0.356603] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.356604] software IO TLB: mapped [mem 0x00000000b763f000-0x00000000bb63f000] (64MB)
[ 0.356655] Trying to unpack rootfs image as initramfs...
[ 0.357730] Initialise system trusted keyrings
[ 0.357760] Key type blacklist registered
[ 0.357834] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[ 0.359792] zbud: loaded
[ 0.370716] NET: Registered PF_ALG protocol family
[ 0.370723] xor: measuring software checksum speed
[ 0.371364] prefetch64-sse : 15602 MB/sec
[ 0.372103] generic_sse : 13360 MB/sec
[ 0.372104] xor: using function: prefetch64-sse (15602 MB/sec)
[ 0.372109] Key type asymmetric registered
[ 0.372110] Asymmetric key parser 'x509' registered
[ 1.300006] Freeing initrd memory: 98244K
[ 1.302587] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[ 1.302620] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[ 1.302668] io scheduler mq-deadline registered
[ 1.302670] io scheduler kyber registered
[ 1.302723] io scheduler bfq registered
[ 1.302989] atomic64_test: passed for x86-64 platform with CX8 and with SSE
[ 1.303611] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 1.304007] ACPI: AC: AC Adapter [ADP0] (off-line)
[ 1.304065] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/PNP0C0C:00/input/input0
[ 1.304089] ACPI: button: Power Button [PWRB]
[ 1.304124] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/PNP0C0D:00/input/input1
[ 1.304167] ACPI: button: Lid Switch [LID0]
[ 1.304208] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 1.304251] ACPI: button: Power Button [PWRF]
[ 1.305195] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.305198] ACPI: thermal: Thermal Zone [THRM] (63 C)
[ 1.305650] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.306350] ACPI: battery: Slot [BAT0] (battery present)
[ 1.308153] Non-volatile memory driver v1.3
[ 1.308161] Linux agpgart interface v0.103
[ 1.308305] ACPI: bus type drm_connector registered
[ 1.308906] loop: module loaded
[ 1.309407] ahci 0000:00:1f.2: version 3.0
[ 1.309604] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 1.309640] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x22 impl SATA mode
[ 1.309644] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems apst
[ 1.318124] scsi host0: ahci
[ 1.318472] scsi host1: ahci
[ 1.318672] scsi host2: ahci
[ 1.318781] scsi host3: ahci
[ 1.318888] scsi host4: ahci
[ 1.318996] scsi host5: ahci
[ 1.319041] ata1: DUMMY
[ 1.319045] ata2: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405180 irq 24
[ 1.319046] ata3: DUMMY
[ 1.319047] ata4: DUMMY
[ 1.319048] ata5: DUMMY
[ 1.319050] ata6: SATA max UDMA/133 abar m2048@0xd6405000 port 0xd6405380 irq 24
[ 1.319497] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 1.319534] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 1.319549] ehci-pci 0000:00:1a.0: debug port 2
[ 1.323469] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd6405c00
[ 1.333929] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 1.334058] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[ 1.334061] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.334063] usb usb1: Product: EHCI Host Controller
[ 1.334065] usb usb1: Manufacturer: Linux 6.1.39-calculate ehci_hcd
[ 1.334066] usb usb1: SerialNumber: 0000:00:1a.0
[ 1.334403] hub 1-0:1.0: USB hub found
[ 1.334424] hub 1-0:1.0: 3 ports detected
[ 1.334668] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 1.334805] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 1.334824] ehci-pci 0000:00:1d.0: debug port 2
[ 1.338780] ehci-pci 0000:00:1d.0: irq 23, io mem 0xd6405800
[ 1.350502] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 1.350608] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.01
[ 1.350615] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.350618] usb usb2: Product: EHCI Host Controller
[ 1.350623] usb usb2: Manufacturer: Linux 6.1.39-calculate ehci_hcd
[ 1.350624] usb usb2: SerialNumber: 0000:00:1d.0
[ 1.350944] hub 2-0:1.0: USB hub found
[ 1.350962] hub 2-0:1.0: 3 ports detected
[ 1.351187] usbcore: registered new interface driver usbserial_generic
[ 1.351193] usbserial: USB Serial support registered for generic
[ 1.351235] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:MOUE] at 0x60,0x64 irq 1,12
[ 1.377142] tsc: Refined TSC clocksource calibration: 2792.985 MHz
[ 1.377151] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x28425e080ab, max_idle_ns: 440795249665 ns
[ 1.378423] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.378435] clocksource: Switched to clocksource tsc
[ 1.378439] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.378722] mousedev: PS/2 mouse device common for all mice
[ 1.379601] rtc_cmos 00:03: RTC can wake from S4
[ 1.380072] rtc_cmos 00:03: registered as rtc0
[ 1.380117] rtc_cmos 00:03: setting system clock to 2023-09-08T11:35:47 UTC (1694172947)
[ 1.380151] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 1.380180] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 1.380206] device-mapper: uevent: version 1.0.3
[ 1.380408] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[ 1.380675] intel_pstate: CPU model not supported
[ 1.380840] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[ 1.380843] vesafb: scrolling: redraw
[ 1.380843] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 1.380854] vesafb: framebuffer at 0xc0000000, mapped to 0x(____ptrval____), using 3072k, total 3072k
[ 1.380917] fbcon: Deferring console take-over
[ 1.380920] fb0: VESA VGA frame buffer device
[ 1.380959] hid: raw HID events driver (C) Jiri Kosina
[ 1.381027] usbcore: registered new interface driver usbhid
[ 1.381028] usbhid: USB HID core driver
[ 1.381145] drop_monitor: Initializing network drop monitor service
[ 1.381235] Initializing XFRM netlink socket
[ 1.381360] NET: Registered PF_INET6 protocol family
[ 1.385565] Segment Routing with IPv6
[ 1.385570] RPL Segment Routing with IPv6
[ 1.385596] In-situ OAM (IOAM) with IPv6
[ 1.385640] mip6: Mobile IPv6
[ 1.385645] NET: Registered PF_PACKET protocol family
[ 1.386584] microcode: sig=0x20655, pf=0x10, revision=0x2
[ 1.386623] microcode: Microcode Update Driver: v2.2.
[ 1.386628] IPI shorthand broadcast: enabled
[ 1.386636] SSE version of gcm_enc/dec engaged.
[ 1.387377] sched_clock: Marking stable (1386926649, 417185)->(1432925503, -45581669)
[ 1.387484] registered taskstats version 1
[ 1.387571] Loading compiled-in X.509 certificates
[ 1.388723] zswap: loaded using pool zstd/zbud
[ 1.388986] Key type .fscrypt registered
[ 1.388988] Key type fscrypt-provisioning registered
[ 1.389569] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[ 1.389605] Key type big_key registered
[ 1.392068] Key type encrypted registered
[ 1.392079] ima: No TPM chip found, activating TPM-bypass!
[ 1.392083] ima: Allocated hash algorithm: sha256
[ 1.392099] ima: No architecture policies found
[ 1.392111] evm: Initialising EVM extended attributes:
[ 1.392112] evm: security.selinux
[ 1.392114] evm: security.SMACK64 (disabled)
[ 1.392114] evm: security.SMACK64EXEC (disabled)
[ 1.392115] evm: security.SMACK64TRANSMUTE (disabled)
[ 1.392116] evm: security.SMACK64MMAP (disabled)
[ 1.392117] evm: security.apparmor
[ 1.392118] evm: security.ima
[ 1.392118] evm: security.capability
[ 1.392119] evm: HMAC attrs: 0x1
[ 1.394272] PM: Magic number: 7:813:579
[ 1.394344] pci_bus 0000:00: hash matches
[ 1.394440] RAS: Correctable Errors collector initialized.
[ 1.415233] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 1.600495] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 1.600539] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 1.634471] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.634672] ata2.00: ATA-9: TMI 256GB SATA CRMP.467512.001, SFMB004K, max UDMA/133
[ 1.634775] ata2.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.635384] ata2.00: configured for UDMA/133
[ 1.635875] scsi 1:0:0:0: Direct-Access ATA TMI 256GB SATA C 004K PQ: 0 ANSI: 5
[ 1.636892] sd 1:0:0:0: Attached scsi generic sg0 type 0
[ 1.636998] sd 1:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 1.637019] sd 1:0:0:0: [sda] Write Protect is off
[ 1.637025] sd 1:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.637051] sd 1:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.637077] sd 1:0:0:0: [sda] Preferred minimum I/O size 512 bytes
[ 1.639199] sda: sda1 sda2 sda3 sda4
[ 1.639351] sd 1:0:0:0: [sda] Attached SCSI disk
[ 1.747588] usb 1-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
[ 1.747595] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.747871] usb 2-1: New USB device found, idVendor=8087, idProduct=0020, bcdDevice= 0.00
[ 1.747879] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.748029] hub 1-1:1.0: USB hub found
[ 1.748180] hub 1-1:1.0: 6 ports detected
[ 1.748244] hub 2-1:1.0: USB hub found
[ 1.748550] hub 2-1:1.0: 8 ports detected
[ 1.951277] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 1.951687] ata6.00: ATA-11: e2e4 ATOM SSD, SBFM61.3, max UDMA/133
[ 1.951848] ata6.00: 1875385008 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.952486] ata6.00: configured for UDMA/133
[ 1.962987] scsi 5:0:0:0: Direct-Access ATA e2e4 ATOM SSD 61.3 PQ: 0 ANSI: 5
[ 1.963333] scsi 5:0:0:0: Attached scsi generic sg1 type 0
[ 1.963451] sd 5:0:0:0: [sdb] 1875385008 512-byte logical blocks: (960 GB/894 GiB)
[ 1.963470] sd 5:0:0:0: [sdb] Write Protect is off
[ 1.963473] sd 5:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.963500] sd 5:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.963537] sd 5:0:0:0: [sdb] Preferred minimum I/O size 512 bytes
[ 1.964047] sdb: sdb1
[ 1.964110] sd 5:0:0:0: [sdb] Attached SCSI disk
[ 1.965494] Freeing unused decrypted memory: 2036K
[ 1.966118] Freeing unused kernel image (initmem) memory: 2752K
[ 1.966194] Write protecting the kernel read-only data: 24576k
[ 1.966900] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 1.967228] Freeing unused kernel image (rodata/data gap) memory: 684K
[ 2.019596] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 2.019599] x86/mm: Checking user space page tables
[ 2.027153] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[ 2.027188] usb 2-1.2: new full-speed USB device number 3 using ehci-pci
[ 2.070547] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 2.070554] Run /init as init process
[ 2.070556] with arguments:
[ 2.070557] /init
[ 2.070558] splash
[ 2.070559] with environment:
[ 2.070560] HOME=/
[ 2.070561] TERM=linux
[ 2.070562] BOOT_IMAGE=/boot/vmlinuz-6.1.39-calculate
[ 2.070563] calculate=video:intel
[ 2.126546] usb 2-1.2: New USB device found, idVendor=25a7, idProduct=fa23, bcdDevice= 2.41
[ 2.126557] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.126560] usb 2-1.2: Product: 2.4G Receiver
[ 2.126563] usb 2-1.2: Manufacturer: Compx
[ 2.128320] input: Compx 2.4G Receiver as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/0003:25A7:FA23.0001/input/input6
[ 2.141986] dracut: Calculate-23
[ 2.183985] hid-generic 0003:25A7:FA23.0001: input,hidraw0: USB HID v1.10 Keyboard [Compx 2.4G Receiver] on usb-0000:00:1d.0-1.2/input0
[ 2.187148] input: Compx 2.4G Receiver Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/0003:25A7:FA23.0002/input/input7
[ 2.187321] input: Compx 2.4G Receiver as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/0003:25A7:FA23.0002/input/input8
[ 2.187482] input: Compx 2.4G Receiver Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/0003:25A7:FA23.0002/input/input9
[ 2.247206] input: Compx 2.4G Receiver System Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/0003:25A7:FA23.0002/input/input10
[ 2.247328] hid-generic 0003:25A7:FA23.0002: input,hiddev96,hidraw1: USB HID v1.10 Mouse [Compx 2.4G Receiver] on usb-0000:00:1d.0-1.2/input1
[ 2.371240] dracut: TuxOnIce premodule started
[ 2.371331] dracut: Kernel has no tuxonice support, aborting
[ 2.437322] psmouse serio1: synaptics: queried max coordinates: x [..5692], y [..4680]
[ 2.453598] RPC: Registered named UNIX socket transport module.
[ 2.453601] RPC: Registered udp transport module.
[ 2.453602] RPC: Registered tcp transport module.
[ 2.453602] RPC: Registered tcp NFSv4.1 backchannel transport module.
[ 2.462988] fbcon: Taking over console
[ 2.463089] Console: switching to colour frame buffer device 128x48
[ 2.551272] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000/0xa0000/0x0, board id: 0, fw id: 582762
[ 2.551298] psmouse serio1: synaptics: Toshiba Satellite L655 detected, limiting rate to 40pps.
[ 2.621613] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[ 3.071553] pci 0000:00:00.0: Intel HD Graphics Chipset
[ 3.071572] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[ 3.072130] pci 0000:00:00.0: detected 32768K stolen memory
[ 3.072509] Console: switching to colour dummy device 80x25
[ 3.072557] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 3.106757] i915 0000:00:02.0: [drm] Skipping intel_backlight registration
[ 3.107009] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[ 3.107591] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 3.108411] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input12
[ 3.109272] acpi device:01: registered as cooling_device5
[ 3.126662] fbcon: i915drmfb (fb0) is primary device
[ 3.353260] usb 1-1.3: New USB device found, idVendor=10f1, idProduct=1a2a, bcdDevice=18.15
[ 3.353267] usb 1-1.3: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[ 3.353270] usb 1-1.3: Product: USB Camera
[ 3.353273] usb 1-1.3: Manufacturer: Generic
[ 3.353275] usb 1-1.3: SerialNumber: MU418ASA
[ 3.928092] Console: switching to colour frame buffer device 170x48
[ 3.946159] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 3.968425] dracut: Starting plymouth daemon
[ 4.058987] dracut: rd.md=0: removing MD RAID activation
[ 4.324415] BTRFS: device label CLDM-22 devid 1 transid 84631 /dev/sda1 scanned by (udev-worker) (583)
[ 4.329272] BTRFS: device label Calculate devid 1 transid 179446 /dev/sda3 scanned by (udev-worker) (584)
[ 4.345478] dracut: TuxOnIce lvmfix started
[ 4.396340] dracut: TuxOnIce udev should be now fully settled
[ 4.418490] BTRFS info (device sda1): using crc32c (crc32c-intel) checksum algorithm
[ 4.418509] BTRFS info (device sda1): disk space caching is enabled
[ 4.430037] BTRFS info (device sda1): enabling ssd optimizations
[ 4.463557] dracut: Remounting /dev/disk/by-uuid/02813945-d7bf-4eb9-a6c9-1240c42c0ff9 with -o noatime,ssd,space_cache,ro
[ 4.502512] dracut: Mounted root filesystem /dev/sda1
[ 4.932900] dracut: Switching root
[ 6.230423] random: crng init done
[ 7.119021] ACPI: watchdog: Skipping WDAT on this system because it uses RTC SRAM
[ 7.119117] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20220331/utaddress-204)
[ 7.119126] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 7.119130] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20220331/utaddress-204)
[ 7.119135] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 7.119137] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20220331/utaddress-204)
[ 7.119142] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 7.119143] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20220331/utaddress-204)
[ 7.119148] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 7.119150] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 7.126730] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
[ 7.137352] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
[ 7.147076] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 7.147097] ACPI: watchdog: Skipping WDAT on this system because it uses RTC SRAM
[ 7.148125] i2c i2c-7: 2/2 memory slots populated (from DMI)
[ 7.151201] i2c i2c-7: Successfully instantiated SPD at 0x50
[ 7.207578] atl1c 0000:01:00.0 enp1s0: renamed from eth0
[ 7.234276] toshiba_bluetooth: Toshiba ACPI Bluetooth device driver
[ 7.267358] toshiba_acpi: Toshiba Laptop ACPI Extras version 0.24
[ 7.480744] input: Toshiba input device as /devices/LNXSYSTM:00/LNXSYBUS:00/TOS1900:00/input/input13
[ 7.500730] bcma-pci-bridge 0000:02:00.0: bus0: Found chip with id 0x4313, rev 0x01 and package 0x08
[ 7.500770] bcma-pci-bridge 0000:02:00.0: bus0: Core 0 found: ChipCommon (manuf 0x4BF, id 0x800, rev 0x24, class 0x0)
[ 7.500796] bcma-pci-bridge 0000:02:00.0: bus0: Core 1 found: IEEE 802.11 (manuf 0x4BF, id 0x812, rev 0x18, class 0x0)
[ 7.500847] bcma-pci-bridge 0000:02:00.0: bus0: Core 2 found: PCIe (manuf 0x4BF, id 0x820, rev 0x11, class 0x0)
[ 7.508736] input: PC Speaker as /devices/platform/pcspkr/input/input14
[ 7.524379] bcma-pci-bridge 0000:02:00.0: bus0: Bus registered
[ 7.529460] toshiba_acpi: Supported laptop features: hotkeys touchpad wwan cooling-method
[ 7.568500] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops __SCT__tp_func_intel_frontbuffer_flush [i915])
[ 7.573107] mc: Linux media interface: v0.10
[ 7.593990] videodev: Linux video capture interface: v2.00
[ 7.604497] snd_hda_codec_conexant hdaudioC0D0: CX20585: BIOS auto-probing.
[ 7.605015] snd_hda_codec_conexant hdaudioC0D0: autoconfig for CX20585: line_outs=1 (0x1f/0x0/0x0/0x0/0x0) type:speaker
[ 7.605019] snd_hda_codec_conexant hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 7.605022] snd_hda_codec_conexant hdaudioC0D0: hp_outs=1 (0x19/0x0/0x0/0x0/0x0)
[ 7.605025] snd_hda_codec_conexant hdaudioC0D0: mono: mono_out=0x0
[ 7.605027] snd_hda_codec_conexant hdaudioC0D0: inputs:
[ 7.605029] snd_hda_codec_conexant hdaudioC0D0: Internal Mic=0x23
[ 7.605030] snd_hda_codec_conexant hdaudioC0D0: Mic=0x1b
[ 7.662043] input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[ 7.662163] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[ 7.662246] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[ 7.683043] iTCO_vendor_support: vendor-support=0
[ 7.691184] usb 2-1.6: new full-speed USB device number 4 using ehci-pci
[ 7.696455] at24 7-0050: supply vcc not found, using dummy regulator
[ 7.700001] at24 7-0050: 256 byte spd EEPROM, read-only
[ 7.719953] usb 1-1.3: Found UVC 1.00 device USB Camera (10f1:1a2a)
[ 7.751265] iTCO_wdt iTCO_wdt.1.auto: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
[ 7.752935] input: USB Camera: Toshiba Webcam as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input18
[ 7.753036] usbcore: registered new interface driver uvcvideo
[ 7.754736] iTCO_wdt iTCO_wdt.1.auto: initialized. heartbeat=30 sec (nowayout=0)
[ 7.783828] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[ 7.791643] usb 2-1.6: New USB device found, idVendor=0930, idProduct=0214, bcdDevice= 5.46
[ 7.791653] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 7.791655] usb 2-1.6: Product: Askey Bluetooth Module
[ 7.791657] usb 2-1.6: Manufacturer: Broadcom Corp
[ 7.791659] usb 2-1.6: SerialNumber: 4CEDDE0BD9D9
[ 7.840171] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 7.843512] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 7.874585] Bluetooth: Core ver 2.22
[ 7.874626] NET: Registered PF_BLUETOOTH protocol family
[ 7.874628] Bluetooth: HCI device and connection manager initialized
[ 7.874635] Bluetooth: HCI socket layer initialized
[ 7.874638] Bluetooth: L2CAP socket layer initialized
[ 7.874643] Bluetooth: SCO socket layer initialized
[ 7.930676] usbcore: registered new interface driver btusb
[ 7.932767] Bluetooth: hci0: unexpected event for opcode 0x1009
[ 7.936210] Support for cores revisions 0x17 and 0x18 disabled by module param allhwsupport=0. Try b43.allhwsupport=1
[ 7.936213] b43: probe of bcma0:1 failed with error -524
[ 7.936235] Broadcom 43xx driver loaded [ Features: PNLS ]
[ 7.949364] brcmsmac bcma0:1: mfg 4bf core 812 rev 24 class 0 irq 17
[ 7.950368] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 7.950798] ieee80211 phy0: registered radio enabled led device: brcmsmac-phy0:radio
[ 7.952743] brcmsmac bcma0:1 wlp2s0b1: renamed from wlan0
[ 8.697042] zram: Added device: zram0
[ 8.715548] zram0: detected capacity change from 0 to 15202704
[ 8.725489] Adding 7601348k swap on /dev/zram0. Priority:100 extents:1 across:7601348k SSFS
[ 8.822388] BTRFS info (device sda3): using crc32c (crc32c-intel) checksum algorithm
[ 8.822405] BTRFS info (device sda3): enabling ssd optimizations
[ 8.822408] BTRFS info (device sda3): disk space caching is enabled
[ 8.852579] /dev/disk/by-uuid/FA0C15410C14FA79: Can't open blockdev
[ 8.860358] /dev/disk/by-label/TOSHIBA-2TB: Can't open blockdev
[ 8.911050] /dev/disk/by-uuid/1ED9F94E76BCCDE8: Can't open blockdev
[ 9.886495] fuse: init (API version 7.37)
[ 9.978758] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 9.978764] Bluetooth: BNEP filters: protocol multicast
[ 9.978770] Bluetooth: BNEP socket layer initialized
[ 9.980562] Bluetooth: MGMT ver 1.22
[ 10.344651] atl1c 0000:01:00.0: atl1c: enp1s0 NIC Link is Up<100 Mbps Full Duplex>
[ 10.533672] NET: Registered PF_QIPCRTR protocol family
[ 16.023882] Bluetooth: RFCOMM TTY layer initialized
[ 16.023899] Bluetooth: RFCOMM socket layer initialized
[ 16.023908] Bluetooth: RFCOMM ver 1.11
[ 168.210544] usb 2-1.6: USB disconnect, device number 4
[ 256.777130] usb 2-1.1: new high-speed USB device number 5 using ehci-pci
[ 256.933129] usb 2-1.1: New USB device found, idVendor=0480, idProduct=b208, bcdDevice= 0.00
[ 256.933138] usb 2-1.1: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[ 256.933143] usb 2-1.1: Product: External USB 3.0
[ 256.933147] usb 2-1.1: Manufacturer: TOSHIBA
[ 256.933151] usb 2-1.1: SerialNumber: 20190818003641F
[ 256.951918] usb-storage 2-1.1:1.0: USB Mass Storage device detected
[ 256.952313] scsi host6: usb-storage 2-1.1:1.0
[ 256.952481] usbcore: registered new interface driver usb-storage
[ 256.954486] usbcore: registered new interface driver uas
[ 257.965626] scsi 6:0:0:0: Direct-Access TOSHIBA External USB 3.0 0 PQ: 0 ANSI: 6
[ 257.966001] sd 6:0:0:0: Attached scsi generic sg2 type 0
[ 257.969931] sd 6:0:0:0: [sdc] Spinning up disk...
[ 258.977089] ..ready
[ 259.997000] sd 6:0:0:0: [sdc] 3907029168 512-byte logical blocks: (2.00 TB/1.82 TiB)
[ 259.998070] sd 6:0:0:0: [sdc] Write Protect is off
[ 259.998079] sd 6:0:0:0: [sdc] Mode Sense: 43 00 00 00
[ 259.999182] sd 6:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 260.033244] sdc: sdc1
[ 260.033489] sd 6:0:0:0: [sdc] Attached SCSI disk
|