1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003 | [ 0.000000] Linux version 5.15.0-60-generic (buildd@lcy02-amd64-054) (gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #66-Ubuntu SMP Fri Jan 20 14:29:49 UTC 2023 (Ubuntu 5.15.0-60.66-generic 5.15.78)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-60-generic root=UUID=6950b34f-4bf6-4d14-8d71-727ef23f5e4d ro quiet splash
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.000000] signal: max sigframe size: 1776
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000004efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000004f000-0x000000000004ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000050000-0x000000000009dfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000c66e4fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000c66e5000-0x00000000c66ebfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000c66ec000-0x00000000c6b31fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000c6b32000-0x00000000c6eeafff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c6eeb000-0x00000000d986afff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d986b000-0x00000000d98f7fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d98f8000-0x00000000d9917fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000d9918000-0x00000000d9a02fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000d9a03000-0x00000000d9ffefff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d9fff000-0x00000000d9ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000dc000000-0x00000000de1fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000041fdfffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] e820: update [mem 0xc610a018-0xc611a057] usable ==> usable
[ 0.000000] e820: update [mem 0xc610a018-0xc611a057] usable ==> usable
[ 0.000000] e820: update [mem 0xc60fa018-0xc6109c57] usable ==> usable
[ 0.000000] e820: update [mem 0xc60fa018-0xc6109c57] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000004efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000004f000-0x000000000004ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000050000-0x000000000009dfff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009e000-0x000000000009ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x00000000c60fa017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000c60fa018-0x00000000c6109c57] usable
[ 0.000000] reserve setup_data: [mem 0x00000000c6109c58-0x00000000c610a017] usable
[ 0.000000] reserve setup_data: [mem 0x00000000c610a018-0x00000000c611a057] usable
[ 0.000000] reserve setup_data: [mem 0x00000000c611a058-0x00000000c66e4fff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000c66e5000-0x00000000c66ebfff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x00000000c66ec000-0x00000000c6b31fff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000c6b32000-0x00000000c6eeafff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000c6eeb000-0x00000000d986afff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000d986b000-0x00000000d98f7fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000d98f8000-0x00000000d9917fff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x00000000d9918000-0x00000000d9a02fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x00000000d9a03000-0x00000000d9ffefff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000d9fff000-0x00000000d9ffffff] usable
[ 0.000000] reserve setup_data: [mem 0x00000000dc000000-0x00000000de1fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000041fdfffff] usable
[ 0.000000] efi: EFI v2.31 by American Megatrends
[ 0.000000] efi: ACPI=0xd98fe000 ACPI 2.0=0xd98fe000 SMBIOS=0xd9f7e498 MOKvar=0xd9f73000
[ 0.000000] secureboot: Secure boot disabled
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: Hewlett-Packard HP ProDesk 600 G1 TWR/18E7, BIOS L01 v02.78 02/20/2020
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 3192.905 MHz processor
[ 0.000636] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000639] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000648] last_pfn = 0x41fe00 max_arch_pfn = 0x400000000
[ 0.000779] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001415] total RAM covered: 16318M
[ 0.001539] Found optimal setting for mtrr clean up
[ 0.001540] gran_size: 64K chunk_size: 128M num_reg: 8 lose cover RAM: 0G
[ 0.001851] e820: update [mem 0xdc000000-0xffffffff] usable ==> reserved
[ 0.001856] last_pfn = 0xda000 max_arch_pfn = 0x400000000
[ 0.005567] found SMP MP-table at [mem 0x000f4e90-0x000f4e9f]
[ 0.005601] Using GB pages for direct mapping
[ 0.006076] secureboot: Secure boot disabled
[ 0.006077] RAMDISK: [mem 0xbc8c3000-0xc2f07fff]
[ 0.006082] ACPI: Early table checksum verification disabled
[ 0.006085] ACPI: RSDP 0x00000000D98FE000 000024 (v02 HPQOEM)
[ 0.006088] ACPI: XSDT 0x00000000D98FE090 00009C (v01 HPQOEM SLIC-BPC 20200220 AMI 00010013)
[ 0.006094] ACPI: FACP 0x00000000D990C000 00010C (v05 HPQOEM SLIC-BPC 20200220 AMI 00010013)
[ 0.006100] ACPI: DSDT 0x00000000D98FE1B8 00DE46 (v02 HPQOEM SLIC-BPC 00000001 INTL 20091112)
[ 0.006103] ACPI: FACS 0x00000000D9A01080 000040
[ 0.006106] ACPI: APIC 0x00000000D990C110 000072 (v03 HPQOEM SLIC-BPC 20200220 AMI 00010013)
[ 0.006108] ACPI: FPDT 0x00000000D990C188 000044 (v01 HPQOEM SLIC-BPC 20200220 AMI 00010013)
[ 0.006111] ACPI: SSDT 0x00000000D990C1D0 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20120711)
[ 0.006115] ACPI: SSDT 0x00000000D990C710 000AD8 (v01 PmRef CpuPm 00003000 INTL 20120711)
[ 0.006118] ACPI: SSDT 0x00000000D990D1E8 0001C7 (v01 PmRef LakeTiny 00003000 INTL 20120711)
[ 0.006121] ACPI: MCFG 0x00000000D990D3B0 00003C (v01 HPQOEM SLIC-BPC 20200220 MSFT 00000097)
[ 0.006124] ACPI: HPET 0x00000000D990D3F0 000038 (v01 HPQOEM SLIC-BPC 20200220 AMI. 00000005)
[ 0.006126] ACPI: SSDT 0x00000000D990D428 00036D (v01 SataRe SataTabl 00001000 INTL 20120711)
[ 0.006129] ACPI: SSDT 0x00000000D990D798 00348C (v01 SaSsdt SaSsdt 00003000 INTL 20091112)
[ 0.006132] ACPI: SSDT 0x00000000D9910C28 00668F (v01 COMPAQ WMI 00000001 MSFT 03000001)
[ 0.006135] ACPI: MSDM 0x00000000D99172B8 000055 (v03 HPQOEM SLIC-BPC 20200220 HPQ 00010013)
[ 0.006138] ACPI: ASF! 0x00000000D9917310 0000A5 (v32 INTEL HCG 00000001 TFSM 000F4240)
[ 0.006141] ACPI: TCPA 0x00000000D99173B8 000032 (v02 APTIO4 NAPAASF 00000001 MSFT 01000013)
[ 0.006144] ACPI: DMAR 0x00000000D99173F0 0000B8 (v01 INTEL HSW 00000001 INTL 00000001)
[ 0.006147] ACPI: Reserving FACP table memory at [mem 0xd990c000-0xd990c10b]
[ 0.006148] ACPI: Reserving DSDT table memory at [mem 0xd98fe1b8-0xd990bffd]
[ 0.006149] ACPI: Reserving FACS table memory at [mem 0xd9a01080-0xd9a010bf]
[ 0.006151] ACPI: Reserving APIC table memory at [mem 0xd990c110-0xd990c181]
[ 0.006152] ACPI: Reserving FPDT table memory at [mem 0xd990c188-0xd990c1cb]
[ 0.006153] ACPI: Reserving SSDT table memory at [mem 0xd990c1d0-0xd990c708]
[ 0.006154] ACPI: Reserving SSDT table memory at [mem 0xd990c710-0xd990d1e7]
[ 0.006155] ACPI: Reserving SSDT table memory at [mem 0xd990d1e8-0xd990d3ae]
[ 0.006156] ACPI: Reserving MCFG table memory at [mem 0xd990d3b0-0xd990d3eb]
[ 0.006157] ACPI: Reserving HPET table memory at [mem 0xd990d3f0-0xd990d427]
[ 0.006158] ACPI: Reserving SSDT table memory at [mem 0xd990d428-0xd990d794]
[ 0.006159] ACPI: Reserving SSDT table memory at [mem 0xd990d798-0xd9910c23]
[ 0.006160] ACPI: Reserving SSDT table memory at [mem 0xd9910c28-0xd99172b6]
[ 0.006161] ACPI: Reserving MSDM table memory at [mem 0xd99172b8-0xd991730c]
[ 0.006162] ACPI: Reserving ASF! table memory at [mem 0xd9917310-0xd99173b4]
[ 0.006163] ACPI: Reserving TCPA table memory at [mem 0xd99173b8-0xd99173e9]
[ 0.006164] ACPI: Reserving DMAR table memory at [mem 0xd99173f0-0xd99174a7]
[ 0.006283] No NUMA configuration found
[ 0.006283] Faking a node at [mem 0x0000000000000000-0x000000041fdfffff]
[ 0.006293] NODE_DATA(0) allocated [mem 0x41fdd6000-0x41fdfffff]
[ 0.006591] Zone ranges:
[ 0.006592] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.006594] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.006595] Normal [mem 0x0000000100000000-0x000000041fdfffff]
[ 0.006597] Device empty
[ 0.006598] Movable zone start for each node
[ 0.006601] Early memory node ranges
[ 0.006601] node 0: [mem 0x0000000000001000-0x000000000004efff]
[ 0.006603] node 0: [mem 0x0000000000050000-0x000000000009dfff]
[ 0.006603] node 0: [mem 0x0000000000100000-0x00000000c66e4fff]
[ 0.006605] node 0: [mem 0x00000000c66ec000-0x00000000c6b31fff]
[ 0.006606] node 0: [mem 0x00000000c6eeb000-0x00000000d986afff]
[ 0.006606] node 0: [mem 0x00000000d9fff000-0x00000000d9ffffff]
[ 0.006607] node 0: [mem 0x0000000100000000-0x000000041fdfffff]
[ 0.006610] Initmem setup node 0 [mem 0x0000000000001000-0x000000041fdfffff]
[ 0.006614] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.006616] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.006649] On node 0, zone DMA: 98 pages in unavailable ranges
[ 0.013423] On node 0, zone DMA32: 7 pages in unavailable ranges
[ 0.014068] On node 0, zone DMA32: 953 pages in unavailable ranges
[ 0.014092] On node 0, zone DMA32: 1940 pages in unavailable ranges
[ 0.041899] On node 0, zone Normal: 24576 pages in unavailable ranges
[ 0.041908] On node 0, zone Normal: 512 pages in unavailable ranges
[ 0.041920] Reserving Intel graphics memory at [mem 0xdc200000-0xde1fffff]
[ 0.041982] ACPI: PM-Timer IO Port: 0x408
[ 0.041990] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.042005] IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
[ 0.042007] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.042009] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.042012] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.042014] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[ 0.042018] TSC deadline timer available
[ 0.042019] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.042043] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.042045] PM: hibernation: Registered nosave memory: [mem 0x0004f000-0x0004ffff]
[ 0.042047] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[ 0.042048] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.042050] PM: hibernation: Registered nosave memory: [mem 0xc60fa000-0xc60fafff]
[ 0.042052] PM: hibernation: Registered nosave memory: [mem 0xc6109000-0xc6109fff]
[ 0.042052] PM: hibernation: Registered nosave memory: [mem 0xc610a000-0xc610afff]
[ 0.042054] PM: hibernation: Registered nosave memory: [mem 0xc611a000-0xc611afff]
[ 0.042056] PM: hibernation: Registered nosave memory: [mem 0xc66e5000-0xc66ebfff]
[ 0.042058] PM: hibernation: Registered nosave memory: [mem 0xc6b32000-0xc6eeafff]
[ 0.042060] PM: hibernation: Registered nosave memory: [mem 0xd986b000-0xd98f7fff]
[ 0.042060] PM: hibernation: Registered nosave memory: [mem 0xd98f8000-0xd9917fff]
[ 0.042061] PM: hibernation: Registered nosave memory: [mem 0xd9918000-0xd9a02fff]
[ 0.042062] PM: hibernation: Registered nosave memory: [mem 0xd9a03000-0xd9ffefff]
[ 0.042064] PM: hibernation: Registered nosave memory: [mem 0xda000000-0xdbffffff]
[ 0.042064] PM: hibernation: Registered nosave memory: [mem 0xdc000000-0xde1fffff]
[ 0.042065] PM: hibernation: Registered nosave memory: [mem 0xde200000-0xf7ffffff]
[ 0.042066] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[ 0.042067] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[ 0.042067] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.042068] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.042069] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.042070] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
[ 0.042070] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.042071] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[ 0.042072] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.042073] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[ 0.042073] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.042075] [mem 0xde200000-0xf7ffffff] available for PCI devices
[ 0.042077] Booting paravirtualized kernel on bare hardware
[ 0.042079] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.042087] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.042236] percpu: Embedded 60 pages/cpu s208896 r8192 d28672 u524288
[ 0.042243] pcpu-alloc: s208896 r8192 d28672 u524288 alloc=1*2097152
[ 0.042245] pcpu-alloc: [0] 0 1 2 3
[ 0.042276] Built 1 zonelists, mobility grouping on. Total pages: 4100945
[ 0.042278] Policy zone: Normal
[ 0.042279] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-60-generic root=UUID=6950b34f-4bf6-4d14-8d71-727ef23f5e4d ro quiet splash
[ 0.042339] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-5.15.0-60-generic", will be passed to user space.
[ 0.043041] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.043384] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.043431] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.092539] Memory: 15918460K/16664864K available (16393K kernel code, 4379K rwdata, 10820K rodata, 3240K init, 6560K bss, 746144K reserved, 0K cma-reserved)
[ 0.093074] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.093097] Kernel/User page tables isolation: enabled
[ 0.093111] ftrace: allocating 50540 entries in 198 pages
[ 0.114443] ftrace: allocated 198 pages with 4 groups
[ 0.114577] rcu: Hierarchical RCU implementation.
[ 0.114579] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[ 0.114580] Rude variant of Tasks RCU enabled.
[ 0.114581] Tracing variant of Tasks RCU enabled.
[ 0.114581] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.114582] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.118461] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[ 0.118683] random: crng init done
[ 0.118706] Console: colour dummy device 80x25
[ 0.118722] printk: console [tty0] enabled
[ 0.118739] ACPI: Core revision 20210730
[ 0.118862] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.118877] APIC: Switch to symmetric I/O mode setup
[ 0.118879] DMAR: Host address width 39
[ 0.118880] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.118884] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
[ 0.118886] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.118889] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
[ 0.118890] DMAR: RMRR base: 0x000000d988d000 end: 0x000000d9899fff
[ 0.118891] DMAR: RMRR base: 0x000000dc000000 end: 0x000000de1fffff
[ 0.118893] DMAR-IR: IOAPIC id 8 under DRHD base 0xfed91000 IOMMU 1
[ 0.118895] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.118896] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.119423] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.119424] x2apic enabled
[ 0.119431] Switched APIC routing to cluster x2apic.
[ 0.119857] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.138880] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2e061bbb8a4, max_idle_ns: 440795253076 ns
[ 0.138886] Calibrating delay loop (skipped), value calculated using timer frequency.. 6385.81 BogoMIPS (lpj=12771620)
[ 0.138889] pid_max: default: 32768 minimum: 301
[ 0.144360] LSM: Security Framework initializing
[ 0.144370] landlock: Up and running.
[ 0.144371] Yama: becoming mindful.
[ 0.144394] AppArmor: AppArmor initialized
[ 0.144450] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.144483] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.144705] CPU0: Thermal monitoring enabled (TM1)
[ 0.144738] process: using mwait in idle threads
[ 0.144741] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.144742] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.144745] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.144747] Spectre V2 : Mitigation: Retpolines
[ 0.144748] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.144749] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.144749] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.144750] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.144752] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.144754] MDS: Mitigation: Clear CPU buffers
[ 0.144755] MMIO Stale Data: Unknown: No mitigations
[ 0.144756] SRBDS: Mitigation: Microcode
[ 0.162310] Freeing SMP alternatives memory: 40K
[ 0.162564] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1088
[ 0.162577] smpboot: CPU0: Intel(R) Core(TM) i5-4570 CPU @ 3.20GHz (family: 0x6, model: 0x3c, stepping: 0x3)
[ 0.162690] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.162718] ... version: 3
[ 0.162718] ... bit width: 48
[ 0.162719] ... generic registers: 8
[ 0.162719] ... value mask: 0000ffffffffffff
[ 0.162720] ... max period: 00007fffffffffff
[ 0.162721] ... fixed-purpose events: 3
[ 0.162722] ... event mask: 00000007000000ff
[ 0.162812] rcu: Hierarchical SRCU implementation.
[ 0.162883] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.162883] smp: Bringing up secondary CPUs ...
[ 0.162883] x86: Booting SMP configuration:
[ 0.162883] .... node #0, CPUs: #1 #2 #3
[ 0.163080] smp: Brought up 1 node, 4 CPUs
[ 0.163080] smpboot: Max logical packages: 1
[ 0.163080] smpboot: Total of 4 processors activated (25543.24 BogoMIPS)
[ 0.164865] devtmpfs: initialized
[ 0.164865] x86/mm: Memory block size: 128MB
[ 0.164865] ACPI: PM: Registering ACPI NVS region [mem 0xc66e5000-0xc66ebfff] (28672 bytes)
[ 0.164865] ACPI: PM: Registering ACPI NVS region [mem 0xd9918000-0xd9a02fff] (962560 bytes)
[ 0.164865] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.164865] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.164865] pinctrl core: initialized pinctrl subsystem
[ 0.164865] PM: RTC time: 08:21:15, date: 2023-02-05
[ 0.164865] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.164865] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.164865] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.164865] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.164865] audit: initializing netlink subsys (disabled)
[ 0.164865] audit: type=2000 audit(1675585275.044:1): state=initialized audit_enabled=0 res=1
[ 0.164865] thermal_sys: Registered thermal governor 'fair_share'
[ 0.164865] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.164865] thermal_sys: Registered thermal governor 'step_wise'
[ 0.166887] thermal_sys: Registered thermal governor 'user_space'
[ 0.166888] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.166893] EISA bus registered
[ 0.166901] cpuidle: using governor ladder
[ 0.166904] cpuidle: using governor menu
[ 0.166939] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.166940] ACPI: bus type PCI registered
[ 0.166941] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.167001] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.167005] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.167016] PCI: Using configuration type 1 for base access
[ 0.167071] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[ 0.167296] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.167945] Kprobes globally optimized
[ 0.167949] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.167949] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.167949] ACPI: Added _OSI(Module Device)
[ 0.167949] ACPI: Added _OSI(Processor Device)
[ 0.167949] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.167949] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.167949] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.167949] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.167949] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.179393] ACPI: 7 ACPI AML tables successfully acquired and loaded
[ 0.180702] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.183358] ACPI: Dynamic OEM Table Load:
[ 0.183364] ACPI: SSDT 0xFFFF8F70402E7400 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20120711)
[ 0.184291] ACPI: Dynamic OEM Table Load:
[ 0.184296] ACPI: SSDT 0xFFFF8F704118D000 0005AA (v01 PmRef ApIst 00003000 INTL 20120711)
[ 0.185264] ACPI: Dynamic OEM Table Load:
[ 0.185268] ACPI: SSDT 0xFFFF8F70401F7A00 000119 (v01 PmRef ApCst 00003000 INTL 20120711)
[ 0.187122] ACPI: Interpreter enabled
[ 0.187147] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.187148] ACPI: Using IOAPIC for interrupt routing
[ 0.187176] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.187177] PCI: Using E820 reservations for host bridge windows
[ 0.187489] ACPI: Enabled 7 GPEs in block 00 to 3F
[ 0.197321] ACPI: PM: Power Resource [FN00]
[ 0.197358] ACPI: PM: Power Resource [FN01]
[ 0.197394] ACPI: PM: Power Resource [FN02]
[ 0.197428] ACPI: PM: Power Resource [FN03]
[ 0.197462] ACPI: PM: Power Resource [FN04]
[ 0.198310] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.198315] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.198604] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug PME]
[ 0.198773] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR DPC]
[ 0.198775] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.199263] PCI host bridge to bus 0000:00
[ 0.199266] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.199268] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.199269] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.199270] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.199272] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
[ 0.199273] pci_bus 0000:00: root bus resource [mem 0xde200000-0xfeafffff window]
[ 0.199315] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
[ 0.199457] pci 0000:00:02.0: [8086:0412] type 00 class 0x030000
[ 0.199465] pci 0000:00:02.0: reg 0x10: [mem 0xf7800000-0xf7bfffff 64bit]
[ 0.199470] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.199473] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
[ 0.199482] pci 0000:00:02.0: BAR 2: assigned to efifb
[ 0.199485] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.199600] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
[ 0.199607] pci 0000:00:03.0: reg 0x10: [mem 0xf7c34000-0xf7c37fff 64bit]
[ 0.199760] pci 0000:00:14.0: [8086:8c31] type 00 class 0x0c0330
[ 0.199776] pci 0000:00:14.0: reg 0x10: [mem 0xf7c20000-0xf7c2ffff 64bit]
[ 0.199829] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.199925] pci 0000:00:16.0: [8086:8c3a] type 00 class 0x078000
[ 0.199941] pci 0000:00:16.0: reg 0x10: [mem 0xf7c40000-0xf7c4000f 64bit]
[ 0.199997] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.200101] pci 0000:00:16.3: [8086:8c3d] type 00 class 0x070002
[ 0.200113] pci 0000:00:16.3: reg 0x10: [io 0xf0e0-0xf0e7]
[ 0.200119] pci 0000:00:16.3: reg 0x14: [mem 0xf7c3e000-0xf7c3efff]
[ 0.200294] pci 0000:00:19.0: [8086:153a] type 00 class 0x020000
[ 0.200307] pci 0000:00:19.0: reg 0x10: [mem 0xf7c00000-0xf7c1ffff]
[ 0.200315] pci 0000:00:19.0: reg 0x14: [mem 0xf7c3d000-0xf7c3dfff]
[ 0.200322] pci 0000:00:19.0: reg 0x18: [io 0xf080-0xf09f]
[ 0.200373] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 0.200498] pci 0000:00:1a.0: [8086:8c2d] type 00 class 0x0c0320
[ 0.200514] pci 0000:00:1a.0: reg 0x10: [mem 0xf7c3c000-0xf7c3c3ff]
[ 0.200588] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.200715] pci 0000:00:1b.0: [8086:8c20] type 00 class 0x040300
[ 0.200729] pci 0000:00:1b.0: reg 0x10: [mem 0xf7c30000-0xf7c33fff 64bit]
[ 0.200786] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.200916] pci 0000:00:1d.0: [8086:8c26] type 00 class 0x0c0320
[ 0.200932] pci 0000:00:1d.0: reg 0x10: [mem 0xf7c3b000-0xf7c3b3ff]
[ 0.201006] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.201135] pci 0000:00:1f.0: [8086:8c4c] type 00 class 0x060100
[ 0.201343] pci 0000:00:1f.2: [8086:8c02] type 00 class 0x010601
[ 0.201355] pci 0000:00:1f.2: reg 0x10: [io 0xf0d0-0xf0d7]
[ 0.201361] pci 0000:00:1f.2: reg 0x14: [io 0xf0c0-0xf0c3]
[ 0.201368] pci 0000:00:1f.2: reg 0x18: [io 0xf0b0-0xf0b7]
[ 0.201375] pci 0000:00:1f.2: reg 0x1c: [io 0xf0a0-0xf0a3]
[ 0.201381] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
[ 0.201387] pci 0000:00:1f.2: reg 0x24: [mem 0xf7c3a000-0xf7c3a7ff]
[ 0.201418] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.201536] pci 0000:00:1f.3: [8086:8c22] type 00 class 0x0c0500
[ 0.201551] pci 0000:00:1f.3: reg 0x10: [mem 0xf7c39000-0xf7c390ff 64bit]
[ 0.201569] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
[ 0.202755] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[ 0.202819] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.202820] ACPI: PCI: Interrupt link LNKB disabled
[ 0.202889] ACPI: PCI: Interrupt link LNKC configured for IRQ 10
[ 0.202957] ACPI: PCI: Interrupt link LNKD configured for IRQ 10
[ 0.203025] ACPI: PCI: Interrupt link LNKE configured for IRQ 5
[ 0.203089] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.203090] ACPI: PCI: Interrupt link LNKF disabled
[ 0.203152] ACPI: PCI: Interrupt link LNKG configured for IRQ 3
[ 0.203219] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[ 0.205275] iommu: Default domain type: Translated
[ 0.205275] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.205275] SCSI subsystem initialized
[ 0.205275] libata version 3.00 loaded.
[ 0.205275] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.205275] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.205275] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.205275] vgaarb: loaded
[ 0.205275] ACPI: bus type USB registered
[ 0.205275] usbcore: registered new interface driver usbfs
[ 0.205275] usbcore: registered new interface driver hub
[ 0.205275] usbcore: registered new device driver usb
[ 0.205275] pps_core: LinuxPPS API ver. 1 registered
[ 0.205275] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.205275] PTP clock support registered
[ 0.205275] EDAC MC: Ver: 3.0.0
[ 0.205275] Registered efivars operations
[ 0.205275] NetLabel: Initializing
[ 0.205275] NetLabel: domain hash size = 128
[ 0.205275] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.205275] NetLabel: unlabeled traffic allowed by default
[ 0.205275] PCI: Using ACPI for IRQ routing
[ 0.207122] PCI: pci_cache_line_size set to 64 bytes
[ 0.207148] e820: reserve RAM buffer [mem 0x0004f000-0x0004ffff]
[ 0.207150] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.207151] e820: reserve RAM buffer [mem 0xc60fa018-0xc7ffffff]
[ 0.207152] e820: reserve RAM buffer [mem 0xc610a018-0xc7ffffff]
[ 0.207153] e820: reserve RAM buffer [mem 0xc66e5000-0xc7ffffff]
[ 0.207154] e820: reserve RAM buffer [mem 0xc6b32000-0xc7ffffff]
[ 0.207155] e820: reserve RAM buffer [mem 0xd986b000-0xdbffffff]
[ 0.207156] e820: reserve RAM buffer [mem 0xda000000-0xdbffffff]
[ 0.207157] e820: reserve RAM buffer [mem 0x41fe00000-0x41fffffff]
[ 0.207637] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.207644] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.210906] clocksource: Switched to clocksource tsc-early
[ 0.219312] VFS: Disk quotas dquot_6.6.0
[ 0.219326] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.219419] AppArmor: AppArmor Filesystem Enabled
[ 0.219453] pnp: PnP ACPI init
[ 0.219553] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.219679] pnp 00:01: can't evaluate _CRS: 12311
[ 0.219683] fbcon: Taking over console
[ 0.219771] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.220062] system 00:04: [io 0x0a20-0x0a3f] has been reserved
[ 0.220064] system 00:04: [io 0x0a10-0x0a1f] has been reserved
[ 0.220170] system 00:07: [io 0x04d0-0x04d1] has been reserved
[ 0.220373] pnp 00:08: [dma 0 disabled]
[ 0.221179] system 00:0a: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.221181] system 00:0a: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.221183] system 00:0a: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.221184] system 00:0a: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.221186] system 00:0a: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.221187] system 00:0a: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.221188] system 00:0a: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.221190] system 00:0a: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.221191] system 00:0a: [mem 0xff000000-0xffffffff] has been reserved
[ 0.221194] system 00:0a: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.221195] system 00:0a: [mem 0xf7fdf000-0xf7fdffff] has been reserved
[ 0.221197] system 00:0a: [mem 0xf7fe0000-0xf7feffff] has been reserved
[ 0.221548] pnp: PnP ACPI: found 11 devices
[ 0.226943] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.226992] NET: Registered PF_INET protocol family
[ 0.227114] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.229726] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.229753] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.229817] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.229958] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.230015] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.230074] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.230138] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.230173] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.230217] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.230222] NET: Registered PF_XDP protocol family
[ 0.230231] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.230234] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.230235] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.230236] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
[ 0.230237] pci_bus 0000:00: resource 8 [mem 0xde200000-0xfeafffff window]
[ 0.254967] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x160 took 23842 usecs
[ 0.274966] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x160 took 19513 usecs
[ 0.274984] PCI: CLS 64 bytes, default 64
[ 0.275011] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.275013] software IO TLB: mapped [mem 0x00000000b88c3000-0x00000000bc8c3000] (64MB)
[ 0.275037] Trying to unpack rootfs image as initramfs...
[ 0.275454] Initialise system trusted keyrings
[ 0.275461] Key type blacklist registered
[ 0.275482] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.276463] zbud: loaded
[ 0.276658] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.276782] fuse: init (API version 7.34)
[ 0.276904] integrity: Platform Keyring initialized
[ 0.285933] Key type asymmetric registered
[ 0.285936] Asymmetric key parser 'x509' registered
[ 0.285957] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.285982] io scheduler mq-deadline registered
[ 0.286292] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.286551] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.286583] ACPI: button: Power Button [PWRB]
[ 0.286609] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[ 0.286625] ACPI: button: Power Button [PWRF]
[ 0.287202] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.287204] ACPI: thermal: Thermal Zone [TZ00] (28 C)
[ 0.287442] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.287443] ACPI: thermal: Thermal Zone [TZ01] (30 C)
[ 0.287567] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.308017] 00:08: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.309837] serial 0000:00:16.3: enabling device (0000 -> 0003)
[ 0.330147] 0000:00:16.3: ttyS4 at I/O 0xf0e0 (irq = 19, base_baud = 115200) is a 16550A
[ 0.330586] Linux agpgart interface v0.103
[ 0.334567] tpm_tis 00:09: 1.2 TPM (device-id 0xB, rev-id 16)
[ 0.364237] loop: module loaded
[ 0.364437] tun: Universal TUN/TAP device driver, 1.6
[ 0.364464] PPP generic driver version 2.4.2
[ 0.364519] VFIO - User Level meta-driver version: 0.3
[ 0.364607] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.364610] ehci-pci: EHCI PCI platform driver
[ 0.364768] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 0.364776] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 0.364791] ehci-pci 0000:00:1a.0: debug port 2
[ 0.368713] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7c3c000
[ 0.382915] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 0.382958] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 0.382961] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.382962] usb usb1: Product: EHCI Host Controller
[ 0.382963] usb usb1: Manufacturer: Linux 5.15.0-60-generic ehci_hcd
[ 0.382964] usb usb1: SerialNumber: 0000:00:1a.0
[ 0.383099] hub 1-0:1.0: USB hub found
[ 0.383105] hub 1-0:1.0: 3 ports detected
[ 0.383387] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 0.383392] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 0.383407] ehci-pci 0000:00:1d.0: debug port 2
[ 0.387327] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7c3b000
[ 0.402916] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 0.402961] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 0.402963] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.402965] usb usb2: Product: EHCI Host Controller
[ 0.402966] usb usb2: Manufacturer: Linux 5.15.0-60-generic ehci_hcd
[ 0.402967] usb usb2: SerialNumber: 0000:00:1d.0
[ 0.403103] hub 2-0:1.0: USB hub found
[ 0.403110] hub 2-0:1.0: 3 ports detected
[ 0.403271] ehci-platform: EHCI generic platform driver
[ 0.403285] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.403288] ohci-pci: OHCI PCI platform driver
[ 0.403295] ohci-platform: OHCI generic platform driver
[ 0.403302] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.403358] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 0.406431] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.406437] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.406589] mousedev: PS/2 mouse device common for all mice
[ 0.406794] rtc_cmos 00:02: RTC can wake from S4
[ 0.407011] rtc_cmos 00:02: registered as rtc0
[ 0.407047] rtc_cmos 00:02: setting system clock to 2023-02-05T08:21:15 UTC (1675585275)
[ 0.407064] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 0.407072] i2c_dev: i2c /dev entries driver
[ 0.407209] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.407235] device-mapper: uevent: version 1.0.3
[ 0.407271] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[ 0.407289] platform eisa.0: Probing EISA bus 0
[ 0.407291] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.407293] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.407293] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.407294] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.407295] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.407296] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.407297] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.407298] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.407299] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.407299] platform eisa.0: EISA: Detected 0 cards
[ 0.407303] intel_pstate: Intel P-state driver initializing
[ 0.407486] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.407502] efifb: probing for efifb
[ 0.407514] efifb: No BGRT, not showing boot graphics
[ 0.407514] efifb: framebuffer at 0xe0000000, using 1876k, total 1875k
[ 0.407516] efifb: mode is 800x600x32, linelength=3200, pages=1
[ 0.407517] efifb: scrolling: redraw
[ 0.407517] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.407625] Console: switching to colour frame buffer device 100x37
[ 0.408389] fb0: EFI VGA frame buffer device
[ 0.408394] EFI Variables Facility v0.08 2004-May-17
[ 0.425997] drop_monitor: Initializing network drop monitor service
[ 0.426122] NET: Registered PF_INET6 protocol family
[ 0.718917] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 0.738920] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 0.795267] Freeing initrd memory: 104724K
[ 0.800162] Segment Routing with IPv6
[ 0.800184] In-situ OAM (IOAM) with IPv6
[ 0.800205] NET: Registered PF_PACKET protocol family
[ 0.800301] Key type dns_resolver registered
[ 0.800538] microcode: sig=0x306c3, pf=0x2, revision=0x28
[ 0.800577] microcode: Microcode Update Driver: v2.2.
[ 0.800583] IPI shorthand broadcast: enabled
[ 0.800590] sched_clock: Marking stable (800362005, 213106)->(804376836, -3801725)
[ 0.800699] registered taskstats version 1
[ 0.800743] Loading compiled-in X.509 certificates
[ 0.801370] Loaded X.509 cert 'Build time autogenerated kernel key: 2453f7d92edfc2f639f43e9f3b2f2940ca2143ea'
[ 0.801895] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 0.802421] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 0.802422] blacklist: Loading compiled-in revocation X.509 certificates
[ 0.802435] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 0.802446] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[ 0.802457] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[ 0.802469] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[ 0.802479] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[ 0.802490] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[ 0.802502] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[ 0.802513] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[ 0.802597] zswap: loaded using pool lzo/zbud
[ 0.802735] Key type .fscrypt registered
[ 0.802736] Key type fscrypt-provisioning registered
[ 0.802801] Key type trusted registered
[ 0.804963] Key type encrypted registered
[ 0.804975] AppArmor: AppArmor sha1 policy hashing enabled
[ 0.805457] integrity: Loading X.509 certificate: UEFI:db
[ 0.805481] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 0.805482] integrity: Loading X.509 certificate: UEFI:db
[ 0.805497] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 0.805497] integrity: Loading X.509 certificate: UEFI:db
[ 0.805510] integrity: Loaded X.509 cert 'Hewlett-Packard UEFI Secure Boot DB Key: e7203ac28b848d3c03432f6a485dd1f4c7b8e529'
[ 0.805908] integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table)
[ 0.806324] integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63'
[ 0.806328] Loading compiled-in module X.509 certificates
[ 0.806847] Loaded X.509 cert 'Build time autogenerated kernel key: 2453f7d92edfc2f639f43e9f3b2f2940ca2143ea'
[ 0.806848] ima: Allocated hash algorithm: sha1
[ 0.849653] ima: No architecture policies found
[ 0.849675] evm: Initialising EVM extended attributes:
[ 0.849676] evm: security.selinux
[ 0.849678] evm: security.SMACK64
[ 0.849679] evm: security.SMACK64EXEC
[ 0.849679] evm: security.SMACK64TRANSMUTE
[ 0.849680] evm: security.SMACK64MMAP
[ 0.849680] evm: security.apparmor
[ 0.849681] evm: security.ima
[ 0.849681] evm: security.capability
[ 0.849682] evm: HMAC attrs: 0x1
[ 0.850049] PM: Magic number: 11:20:371
[ 0.850355] RAS: Correctable Errors collector initialized.
[ 0.851284] Freeing unused decrypted memory: 2036K
[ 0.851644] Freeing unused kernel image (initmem) memory: 3240K
[ 0.874932] Write protecting the kernel read-only data: 30720k
[ 0.875328] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 0.875362] usb 1-1: New USB device found, idVendor=8087, idProduct=8008, bcdDevice= 0.04
[ 0.875365] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.875546] Freeing unused kernel image (rodata/data gap) memory: 1468K
[ 0.875603] hub 1-1:1.0: USB hub found
[ 0.875720] hub 1-1:1.0: 6 ports detected
[ 0.895221] usb 2-1: New USB device found, idVendor=8087, idProduct=8000, bcdDevice= 0.04
[ 0.895223] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.895491] hub 2-1:1.0: USB hub found
[ 0.895592] hub 2-1:1.0: 8 ports detected
[ 0.913017] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.913019] x86/mm: Checking user space page tables
[ 0.948669] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 0.948673] Run /init as init process
[ 0.948674] with arguments:
[ 0.948675] /init
[ 0.948675] splash
[ 0.948676] with environment:
[ 0.948677] HOME=/
[ 0.948677] TERM=linux
[ 0.948678] BOOT_IMAGE=/boot/vmlinuz-5.15.0-60-generic
[ 1.022835] ahci 0000:00:1f.2: version 3.0
[ 1.023042] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x7 impl SATA mode
[ 1.023046] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
[ 1.025080] i801_smbus 0000:00:1f.3: SPD Write Disable is set
[ 1.025101] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 1.025823] i2c i2c-0: 4/4 memory slots populated (from DMI)
[ 1.026102] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.026107] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 1.026121] i2c i2c-0: Successfully instantiated SPD at 0x50
[ 1.026400] i2c i2c-0: Successfully instantiated SPD at 0x51
[ 1.026706] i2c i2c-0: Successfully instantiated SPD at 0x52
[ 1.027002] i2c i2c-0: Successfully instantiated SPD at 0x53
[ 1.027811] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[ 1.028717] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20210730/utaddress-204)
[ 1.028721] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.028729] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x00000000000008FF (\GPR) (20210730/utaddress-204)
[ 1.028732] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.028733] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000053F (\GPRL) (20210730/utaddress-204)
[ 1.028735] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x00000000000008FF (\GPR) (20210730/utaddress-204)
[ 1.028737] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.028738] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000053F (\GPRL) (20210730/utaddress-204)
[ 1.028750] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x00000000000008FF (\GPR) (20210730/utaddress-204)
[ 1.028752] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.028753] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 1.028969] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.028972] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 1.028975] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 1.031237] e1000e: Intel(R) PRO/1000 Network Driver
[ 1.031239] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 1.031410] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 1.033251] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 1.033254] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.033255] usb usb3: Product: xHCI Host Controller
[ 1.033256] usb usb3: Manufacturer: Linux 5.15.0-60-generic xhci-hcd
[ 1.033257] usb usb3: SerialNumber: 0000:00:14.0
[ 1.033875] hub 3-0:1.0: USB hub found
[ 1.033968] hub 3-0:1.0: 14 ports detected
[ 1.038918] cryptd: max_cpu_qlen set to 1000
[ 1.043095] AVX2 version of gcm_enc/dec engaged.
[ 1.043118] AES CTR mode by8 optimization enabled
[ 1.064372] scsi host0: ahci
[ 1.064609] scsi host1: ahci
[ 1.064757] scsi host2: ahci
[ 1.064895] scsi host3: ahci
[ 1.065041] scsi host4: ahci
[ 1.065179] scsi host5: ahci
[ 1.065214] ata1: SATA max UDMA/133 abar m2048@0xf7c3a000 port 0xf7c3a100 irq 26
[ 1.065218] ata2: SATA max UDMA/133 abar m2048@0xf7c3a000 port 0xf7c3a180 irq 26
[ 1.065220] ata3: SATA max UDMA/133 abar m2048@0xf7c3a000 port 0xf7c3a200 irq 26
[ 1.065221] ata4: DUMMY
[ 1.065222] ata5: DUMMY
[ 1.065222] ata6: DUMMY
[ 1.065505] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 1.065508] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.065509] usb usb4: Product: xHCI Host Controller
[ 1.065510] usb usb4: Manufacturer: Linux 5.15.0-60-generic xhci-hcd
[ 1.065511] usb usb4: SerialNumber: 0000:00:14.0
[ 1.065609] hub 4-0:1.0: USB hub found
[ 1.065620] hub 4-0:1.0: 6 ports detected
[ 1.066069] usb: port power management may be unreliable
[ 1.109824] Console: switching to colour dummy device 80x25
[ 1.109863] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 1.111456] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 1.115704] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
[ 1.131095] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[ 1.131618] ACPI: video: [Firmware Bug]: Duplicate ACPI video bus devices for the same VGA controller, please try module parameter "video.allow_duplicates=1"if the current driver doesn't work.
[ 1.161626] fbcon: i915drmfb (fb0) is primary device
[ 1.185061] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 2c:44:fd:28:7c:93
[ 1.185064] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[ 1.185117] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: FFFFFF-0FF
[ 1.232945] Console: switching to colour frame buffer device 240x67
[ 1.252814] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 1.298963] tsc: Refined TSC clocksource calibration: 3192.593 MHz
[ 1.298970] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2e04f4fe30b, max_idle_ns: 440795344771 ns
[ 1.298993] clocksource: Switched to clocksource tsc
[ 1.378260] ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.378279] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.378293] ata3: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.378718] ata1.00: supports DRM functions and may not be fully accessible
[ 1.378722] ata1.00: ATA-9: MTFDDAK256MAM-1K12, 08TH, max UDMA/100
[ 1.378806] ata2.00: ATA-10: WDC WD5000AZLX-60K2TA0, 01.01A01, max UDMA/100
[ 1.378811] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 1.378929] ata2.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.379025] ata1.00: ATA Identify Device Log not supported
[ 1.379027] ata1.00: Security Log not supported
[ 1.379579] ata1.00: supports DRM functions and may not be fully accessible
[ 1.379774] ata2.00: configured for UDMA/100
[ 1.379841] ata1.00: ATA Identify Device Log not supported
[ 1.379843] ata1.00: Security Log not supported
[ 1.379846] ata1.00: configured for UDMA/100
[ 1.379953] scsi 0:0:0:0: Direct-Access ATA MTFDDAK256MAM-1K 08TH PQ: 0 ANSI: 5
[ 1.380136] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.380167] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 1.380173] sd 0:0:0:0: [sda] Write Protect is off
[ 1.380174] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.380181] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.380315] scsi 1:0:0:0: Direct-Access ATA WDC WD5000AZLX-6 1A01 PQ: 0 ANSI: 5
[ 1.380471] sd 1:0:0:0: Attached scsi generic sg1 type 0
[ 1.380499] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 1.380500] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[ 1.380508] sd 1:0:0:0: [sdb] Write Protect is off
[ 1.380510] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[ 1.380522] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.396808] sda: sda1 sda2 sda3
[ 1.402892] usb 3-3: new high-speed USB device number 2 using xhci_hcd
[ 1.418951] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.443832] sdb: sdb1
[ 1.459254] sd 1:0:0:0: [sdb] Attached SCSI disk
[ 1.561313] usb 3-3: New USB device found, idVendor=8564, idProduct=8000, bcdDevice= 0.00
[ 1.561328] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.561333] usb 3-3: Product: Portable Super Multi Drive
[ 1.561338] usb 3-3: Manufacturer: Hitachi-LG Data Storage Inc
[ 1.561342] usb 3-3: SerialNumber: KV8Z1654554
[ 1.694967] usb 3-4: new high-speed USB device number 3 using xhci_hcd
[ 1.696322] ata3.00: ATA-8: TOSHIBA MQ01ABD100, AX0P3D, max UDMA/100
[ 1.696748] ata3.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.699178] ata3.00: configured for UDMA/100
[ 1.699475] scsi 2:0:0:0: Direct-Access ATA TOSHIBA MQ01ABD1 3D PQ: 0 ANSI: 5
[ 1.700070] sd 2:0:0:0: Attached scsi generic sg2 type 0
[ 1.700121] sd 2:0:0:0: [sdc] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 1.700127] sd 2:0:0:0: [sdc] 4096-byte physical blocks
[ 1.700138] sd 2:0:0:0: [sdc] Write Protect is off
[ 1.700141] sd 2:0:0:0: [sdc] Mode Sense: 00 3a 00 00
[ 1.700159] sd 2:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.840027] sdc: sdc2 sdc3
[ 1.844611] usb 3-4: New USB device found, idVendor=05e3, idProduct=0608, bcdDevice= 9.01
[ 1.844617] usb 3-4: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 1.844619] usb 3-4: Product: USB2.0 Hub
[ 1.845742] hub 3-4:1.0: USB hub found
[ 1.846035] hub 3-4:1.0: 4 ports detected
[ 1.858997] sd 2:0:0:0: [sdc] Attached SCSI disk
[ 1.862778] e1000e 0000:00:19.0 eno1: renamed from eth0
[ 1.869016] usb-storage 3-3:1.0: USB Mass Storage device detected
[ 1.869154] scsi host6: usb-storage 3-3:1.0
[ 1.869239] usbcore: registered new interface driver usb-storage
[ 2.138940] usb 3-4.2: new full-speed USB device number 4 using xhci_hcd
[ 2.246785] usb 3-4.2: New USB device found, idVendor=04f9, idProduct=0027, bcdDevice= 1.00
[ 2.246791] usb 3-4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.246802] usb 3-4.2: Product: HL-2030 series
[ 2.246803] usb 3-4.2: Manufacturer: Brother
[ 2.246804] usb 3-4.2: SerialNumber: K6J136520
[ 2.330930] usb 3-4.3: new low-speed USB device number 5 using xhci_hcd
[ 2.455672] usb 3-4.3: New USB device found, idVendor=04f2, idProduct=0718, bcdDevice= 0.03
[ 2.455676] usb 3-4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.455678] usb 3-4.3: Product: Chicony wired mouse
[ 2.455679] usb 3-4.3: Manufacturer: Chicony
[ 2.462755] hid: raw HID events driver (C) Jiri Kosina
[ 2.470632] usbcore: registered new interface driver usbhid
[ 2.470633] usbhid: USB HID core driver
[ 2.472049] input: Chicony Chicony wired mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.3/3-4.3:1.0/0003:04F2:0718.0001/input/input5
[ 2.472253] hid-generic 0003:04F2:0718.0001: input,hidraw0: USB HID v1.11 Mouse [Chicony Chicony wired mouse] on usb-0000:00:14.0-4.3/input0
[ 2.538960] usb 3-4.4: new full-speed USB device number 6 using xhci_hcd
[ 2.639680] usb 3-4.4: New USB device found, idVendor=0409, idProduct=55aa, bcdDevice= 2.00
[ 2.639693] usb 3-4.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.642558] hub 3-4.4:1.0: USB hub found
[ 2.642700] hub 3-4.4:1.0: 3 ports detected
[ 2.661360] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 2.814257] systemd[1]: Inserted module 'autofs4'
[ 2.862882] systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 2.883053] systemd[1]: Detected architecture x86-64.
[ 2.883637] systemd[1]: Hostname set to <mate-HP>.
[ 2.907517] scsi 6:0:0:0: CD-ROM TS8XDVDS TRANSCEND 1.00 PQ: 0 ANSI: 0
[ 2.914244] sr 6:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 2.914247] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 2.920761] sr 6:0:0:0: Attached scsi CD-ROM sr0
[ 2.920799] sr 6:0:0:0: Attached scsi generic sg3 type 5
[ 2.934913] usb 3-4.4.1: new low-speed USB device number 7 using xhci_hcd
[ 3.041041] usb 3-4.4.1: New USB device found, idVendor=046d, idProduct=c301, bcdDevice= 3.00
[ 3.041046] usb 3-4.4.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.041048] usb 3-4.4.1: Product: USB Keyboard
[ 3.041049] usb 3-4.4.1: Manufacturer: LOGITECH
[ 3.049220] input: LOGITECH USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.4/3-4.4.1/3-4.4.1:1.0/0003:046D:C301.0002/input/input6
[ 3.107034] hid-generic 0003:046D:C301.0002: input,hidraw1: USB HID v1.10 Keyboard [LOGITECH USB Keyboard] on usb-0000:00:14.0-4.4.1/input0
[ 3.110016] input: LOGITECH USB Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.4/3-4.4.1/3-4.4.1:1.1/0003:046D:C301.0003/input/input7
[ 3.137947] systemd[1]: Queued start job for default target Graphical Interface.
[ 3.138892] systemd[1]: Created slice Slice /system/modprobe.
[ 3.139116] systemd[1]: Created slice Slice /system/systemd-fsck.
[ 3.139288] systemd[1]: Created slice User and Session Slice.
[ 3.139345] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 3.139477] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 3.139537] systemd[1]: Reached target User and Group Name Lookups.
[ 3.139552] systemd[1]: Reached target Remote File Systems.
[ 3.139561] systemd[1]: Reached target Slice Units.
[ 3.139576] systemd[1]: Reached target Swaps.
[ 3.139593] systemd[1]: Reached target Local Verity Protected Volumes.
[ 3.139678] systemd[1]: Listening on Syslog Socket.
[ 3.139746] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 3.139788] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 3.139935] systemd[1]: Listening on Journal Audit Socket.
[ 3.140002] systemd[1]: Listening on Journal Socket (/dev/log).
[ 3.140082] systemd[1]: Listening on Journal Socket.
[ 3.140178] systemd[1]: Listening on udev Control Socket.
[ 3.140256] systemd[1]: Listening on udev Kernel Socket.
[ 3.140781] systemd[1]: Mounting Huge Pages File System...
[ 3.141326] systemd[1]: Mounting POSIX Message Queue File System...
[ 3.141900] systemd[1]: Mounting Kernel Debug File System...
[ 3.142453] systemd[1]: Mounting Kernel Trace File System...
[ 3.143688] systemd[1]: Starting Journal Service...
[ 3.144451] systemd[1]: Starting Set the console keyboard layout...
[ 3.145114] systemd[1]: Starting Create List of Static Device Nodes...
[ 3.145745] systemd[1]: Starting Load Kernel Module chromeos_pstore...
[ 3.146352] systemd[1]: Starting Load Kernel Module configfs...
[ 3.146996] systemd[1]: Starting Load Kernel Module drm...
[ 3.147620] systemd[1]: Starting Load Kernel Module efi_pstore...
[ 3.148249] systemd[1]: Starting Load Kernel Module fuse...
[ 3.148886] systemd[1]: Starting Load Kernel Module pstore_blk...
[ 3.149478] systemd[1]: Starting Load Kernel Module pstore_zone...
[ 3.150150] systemd[1]: Starting Load Kernel Module ramoops...
[ 3.150249] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[ 3.153027] systemd[1]: Starting Load Kernel Modules...
[ 3.153771] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 3.164650] systemd[1]: Starting Coldplug All udev Devices...
[ 3.167344] input: LOGITECH USB Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4.4/3-4.4.1/3-4.4.1:1.1/0003:046D:C301.0003/input/input8
[ 3.168448] hid-generic 0003:046D:C301.0003: input,hidraw2: USB HID v1.10 Device [LOGITECH USB Keyboard] on usb-0000:00:14.0-4.4.1/input1
[ 3.172514] pstore: Using crash dump compression: deflate
[ 3.172525] pstore: Registered efi as persistent store backend
[ 3.174250] systemd[1]: Mounted Huge Pages File System.
[ 3.174373] systemd[1]: Mounted POSIX Message Queue File System.
[ 3.174452] systemd[1]: Mounted Kernel Debug File System.
[ 3.174532] systemd[1]: Mounted Kernel Trace File System.
[ 3.174760] systemd[1]: Finished Create List of Static Device Nodes.
[ 3.175030] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.175173] systemd[1]: Finished Load Kernel Module configfs.
[ 3.175364] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 3.175513] systemd[1]: Finished Load Kernel Module drm.
[ 3.175704] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 3.175852] systemd[1]: Finished Load Kernel Module fuse.
[ 3.176027] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully.
[ 3.176164] systemd[1]: Finished Load Kernel Module pstore_blk.
[ 3.176333] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully.
[ 3.176471] systemd[1]: Finished Load Kernel Module pstore_zone.
[ 3.176643] systemd[1]: modprobe@ramoops.service: Deactivated successfully.
[ 3.176776] systemd[1]: Finished Load Kernel Module ramoops.
[ 3.177497] systemd[1]: Mounting FUSE Control File System...
[ 3.178036] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro. Quota mode: none.
[ 3.178495] systemd[1]: Mounting Kernel Configuration File System...
[ 3.186971] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 3.187497] systemd[1]: Mounted Kernel Configuration File System.
[ 3.188170] systemd[1]: Starting Load/Save Random Seed...
[ 3.188743] systemd[1]: Starting Create System Users...
[ 3.189289] systemd[1]: Mounted FUSE Control File System.
[ 3.201269] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully.
[ 3.201477] systemd[1]: Finished Load Kernel Module chromeos_pstore.
[ 3.201706] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 3.201869] systemd[1]: Finished Load Kernel Module efi_pstore.
[ 3.201951] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[ 3.209152] systemd[1]: Started Journal Service.
[ 3.211060] lp: driver loaded but no devices found
[ 3.217664] ppdev: user-space parallel port driver
[ 3.217928] systemd-journald[344]: Received client request to flush runtime journal.
[ 3.232596] systemd-journald[344]: File /var/log/journal/24ba5fac733d470583fccc7fc21d9cde/system.journal corrupted or uncleanly shut down, renaming and replacing.
[ 3.529321] at24 0-0050: supply vcc not found, using dummy regulator
[ 3.529904] at24 0-0050: 256 byte spd EEPROM, read-only
[ 3.529928] at24 0-0051: supply vcc not found, using dummy regulator
[ 3.530471] at24 0-0051: 256 byte spd EEPROM, read-only
[ 3.530490] at24 0-0052: supply vcc not found, using dummy regulator
[ 3.531006] at24 0-0052: 256 byte spd EEPROM, read-only
[ 3.531024] at24 0-0053: supply vcc not found, using dummy regulator
[ 3.531582] at24 0-0053: 256 byte spd EEPROM, read-only
[ 3.665649] input: HP WMI hotkeys as /devices/virtual/input/input9
[ 3.700260] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[ 3.700266] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 3.700267] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 3.700267] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 3.700268] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 3.754533] snd_hda_intel 0000:00:03.0: enabling device (0100 -> 0102)
[ 3.754674] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 3.754854] snd_hda_intel 0000:00:1b.0: enabling device (0100 -> 0102)
[ 3.789441] EXT4-fs (sdb1): recovery complete
[ 3.789446] EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 3.796815] usblp 3-4.2:1.0: usblp0: USB Bidirectional printer dev 4 if 0 alt 0 proto 2 vid 0x04F9 pid 0x0027
[ 3.797054] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input10
[ 3.797129] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input11
[ 3.797165] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
[ 3.801021] usbcore: registered new interface driver usblp
[ 3.802893] input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
[ 3.803800] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC221: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[ 3.803804] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=1 (0x17/0x0/0x0/0x0/0x0)
[ 3.803806] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 3.803808] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0
[ 3.803809] snd_hda_codec_realtek hdaudioC1D0: inputs:
[ 3.803810] snd_hda_codec_realtek hdaudioC1D0: Mic=0x1a
[ 3.803811] snd_hda_codec_realtek hdaudioC1D0: Line=0x1b
[ 3.811132] input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input14
[ 3.828085] EXT4-fs (sda3): recovery complete
[ 3.828091] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 3.871546] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input15
[ 3.887208] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card1/input16
[ 3.887385] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card1/input17
[ 3.904747] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input18
[ 3.989425] intel_rapl_common: Found RAPL domain package
[ 3.989429] intel_rapl_common: Found RAPL domain core
[ 3.989430] intel_rapl_common: Found RAPL domain uncore
[ 3.989430] intel_rapl_common: Found RAPL domain dram
[ 3.989437] intel_rapl_common: RAPL package-0 domain package locked by BIOS
[ 3.989442] intel_rapl_common: RAPL package-0 domain dram locked by BIOS
[ 6.705260] audit: type=1400 audit(1675585281.791:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=927 comm="apparmor_parser"
[ 6.705734] audit: type=1400 audit(1675585281.791:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=928 comm="apparmor_parser"
[ 6.705738] audit: type=1400 audit(1675585281.791:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=928 comm="apparmor_parser"
[ 6.713936] audit: type=1400 audit(1675585281.799:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=926 comm="apparmor_parser"
[ 6.713940] audit: type=1400 audit(1675585281.799:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=926 comm="apparmor_parser"
[ 6.716522] audit: type=1400 audit(1675585281.803:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=929 comm="apparmor_parser"
[ 6.716525] audit: type=1400 audit(1675585281.803:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=929 comm="apparmor_parser"
[ 6.716527] audit: type=1400 audit(1675585281.803:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=929 comm="apparmor_parser"
[ 6.716529] audit: type=1400 audit(1675585281.803:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=929 comm="apparmor_parser"
[ 6.717817] audit: type=1400 audit(1675585281.803:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=931 comm="apparmor_parser"
[ 280.263012] usb 3-8: new high-speed USB device number 8 using xhci_hcd
[ 280.411579] usb 3-8: New USB device found, idVendor=0781, idProduct=5567, bcdDevice= 1.00
[ 280.411594] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 280.411600] usb 3-8: Product: Cruzer Blade
[ 280.411604] usb 3-8: Manufacturer: SanDisk
[ 280.411607] usb 3-8: SerialNumber: 4C530000180417201135
[ 280.413241] usb-storage 3-8:1.0: USB Mass Storage device detected
[ 280.413762] scsi host7: usb-storage 3-8:1.0
[ 280.444454] usbcore: registered new interface driver uas
[ 281.428528] scsi 7:0:0:0: Direct-Access SanDisk Cruzer Blade 1.00 PQ: 0 ANSI: 6
[ 281.430331] sd 7:0:0:0: Attached scsi generic sg4 type 0
[ 281.431591] sd 7:0:0:0: [sdd] 60088320 512-byte logical blocks: (30.8 GB/28.7 GiB)
[ 281.432353] sd 7:0:0:0: [sdd] Write Protect is off
[ 281.432356] sd 7:0:0:0: [sdd] Mode Sense: 43 00 00 00
[ 281.432676] sd 7:0:0:0: [sdd] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 281.454663] sdd: sdd1
[ 281.462516] sd 7:0:0:0: [sdd] Attached SCSI removable disk
[ 386.930520] usb 3-8: USB disconnect, device number 8
[ 390.070991] usb 3-8: new high-speed USB device number 9 using xhci_hcd
[ 390.219640] usb 3-8: New USB device found, idVendor=0781, idProduct=5567, bcdDevice= 1.00
[ 390.219655] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 390.219661] usb 3-8: Product: Cruzer Blade
[ 390.219665] usb 3-8: Manufacturer: SanDisk
[ 390.219669] usb 3-8: SerialNumber: 4C530000180417201135
[ 390.221436] usb-storage 3-8:1.0: USB Mass Storage device detected
[ 390.222016] scsi host7: usb-storage 3-8:1.0
[ 391.252589] scsi 7:0:0:0: Direct-Access SanDisk Cruzer Blade 1.00 PQ: 0 ANSI: 6
[ 391.254571] sd 7:0:0:0: Attached scsi generic sg4 type 0
[ 391.255943] sd 7:0:0:0: [sdd] 60088320 512-byte logical blocks: (30.8 GB/28.7 GiB)
[ 391.256708] sd 7:0:0:0: [sdd] Write Protect is off
[ 391.256712] sd 7:0:0:0: [sdd] Mode Sense: 43 00 00 00
[ 391.257028] sd 7:0:0:0: [sdd] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 391.279372] sdd: sdd1
[ 391.287411] sd 7:0:0:0: [sdd] Attached SCSI removable disk
|