Paste #210946

   
pasted on 05.08.2021 00:10
  • Edit to this paste
  • Print
  • Raw
  • The following pastes replied to this paste:  # 224111 # 274288 # 275546 # 277997
  • Show paste tree
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
[    0.060743] 0xfffffe000003f000-0xfffffe0000040000           4K                               pte
[    0.060744] 0xfffffe0000040000-0xfffffe0000041000           4K     RW                 GLB NX pte
[    0.060747] 0xfffffe0000041000-0xfffffe0000042000           4K                               pte
[    0.060747] 0xfffffe0000042000-0xfffffe0000043000           4K     RW                 GLB NX pte
[    0.060750] 0xfffffe0000043000-0xfffffe0000044000           4K                               pte
[    0.060751] 0xfffffe0000044000-0xfffffe0000045000           4K     RW                 GLB NX pte
[    0.060753] 0xfffffe0000045000-0xfffffe000004a000          20K                               pte
[    0.060754] 0xfffffe000004a000-0xfffffe000004b000           4K     RW                 GLB NX pte
[    0.060756] 0xfffffe000004b000-0xfffffe000006b000         128K                               pte
[    0.060757] 0xfffffe000006b000-0xfffffe000006c000           4K     ro                 GLB NX pte
[    0.060759] 0xfffffe000006c000-0xfffffe000006d000           4K     RW                 GLB NX pte
[    0.060761] 0xfffffe000006d000-0xfffffe0000072000          20K     ro                 GLB NX pte
[    0.060763] 0xfffffe0000072000-0xfffffe0000073000           4K                               pte
[    0.060764] 0xfffffe0000073000-0xfffffe0000074000           4K     RW                 GLB NX pte
[    0.060767] 0xfffffe0000074000-0xfffffe0000075000           4K                               pte
[    0.060767] 0xfffffe0000075000-0xfffffe0000076000           4K     RW                 GLB NX pte
[    0.060770] 0xfffffe0000076000-0xfffffe0000077000           4K                               pte
[    0.060771] 0xfffffe0000077000-0xfffffe0000078000           4K     RW                 GLB NX pte
[    0.060773] 0xfffffe0000078000-0xfffffe0000079000           4K                               pte
[    0.060774] 0xfffffe0000079000-0xfffffe000007a000           4K     RW                 GLB NX pte
[    0.060776] 0xfffffe000007a000-0xfffffe000007f000          20K                               pte
[    0.060777] 0xfffffe000007f000-0xfffffe0000080000           4K     RW                 GLB NX pte
[    0.060779] 0xfffffe0000080000-0xfffffe00000a0000         128K                               pte
[    0.060780] 0xfffffe00000a0000-0xfffffe00000a1000           4K     ro                 GLB NX pte
[    0.060782] 0xfffffe00000a1000-0xfffffe00000a2000           4K     RW                 GLB NX pte
[    0.060784] 0xfffffe00000a2000-0xfffffe00000a7000          20K     ro                 GLB NX pte
[    0.060787] 0xfffffe00000a7000-0xfffffe00000a8000           4K                               pte
[    0.060788] 0xfffffe00000a8000-0xfffffe00000a9000           4K     RW                 GLB NX pte
[    0.060790] 0xfffffe00000a9000-0xfffffe00000aa000           4K                               pte
[    0.060791] 0xfffffe00000aa000-0xfffffe00000ab000           4K     RW                 GLB NX pte
[    0.060793] 0xfffffe00000ab000-0xfffffe00000ac000           4K                               pte
[    0.060794] 0xfffffe00000ac000-0xfffffe00000ad000           4K     RW                 GLB NX pte
[    0.060796] 0xfffffe00000ad000-0xfffffe00000ae000           4K                               pte
[    0.060797] 0xfffffe00000ae000-0xfffffe00000af000           4K     RW                 GLB NX pte
[    0.060799] 0xfffffe00000af000-0xfffffe00000b4000          20K                               pte
[    0.060800] 0xfffffe00000b4000-0xfffffe00000b5000           4K     RW                 GLB NX pte
[    0.060802] 0xfffffe00000b5000-0xfffffe00000d5000         128K                               pte
[    0.060803] 0xfffffe00000d5000-0xfffffe00000d6000           4K     ro                 GLB NX pte
[    0.060805] 0xfffffe00000d6000-0xfffffe00000d7000           4K     RW                 GLB NX pte
[    0.060807] 0xfffffe00000d7000-0xfffffe00000dc000          20K     ro                 GLB NX pte
[    0.060810] 0xfffffe00000dc000-0xfffffe00000dd000           4K                               pte
[    0.060811] 0xfffffe00000dd000-0xfffffe00000de000           4K     RW                 GLB NX pte
[    0.060813] 0xfffffe00000de000-0xfffffe00000df000           4K                               pte
[    0.060814] 0xfffffe00000df000-0xfffffe00000e0000           4K     RW                 GLB NX pte
[    0.060816] 0xfffffe00000e0000-0xfffffe00000e1000           4K                               pte
[    0.060817] 0xfffffe00000e1000-0xfffffe00000e2000           4K     RW                 GLB NX pte
[    0.060819] 0xfffffe00000e2000-0xfffffe00000e3000           4K                               pte
[    0.060820] 0xfffffe00000e3000-0xfffffe00000e4000           4K     RW                 GLB NX pte
[    0.060822] 0xfffffe00000e4000-0xfffffe00000e9000          20K                               pte
[    0.060823] 0xfffffe00000e9000-0xfffffe00000ea000           4K     RW                 GLB NX pte
[    0.060825] 0xfffffe00000ea000-0xfffffe000010a000         128K                               pte
[    0.060826] 0xfffffe000010a000-0xfffffe000010b000           4K     ro                 GLB NX pte
[    0.060828] 0xfffffe000010b000-0xfffffe000010c000           4K     RW                 GLB NX pte
[    0.060831] 0xfffffe000010c000-0xfffffe0000111000          20K     ro                 GLB NX pte
[    0.060833] 0xfffffe0000111000-0xfffffe0000112000           4K                               pte
[    0.060834] 0xfffffe0000112000-0xfffffe0000113000           4K     RW                 GLB NX pte
[    0.060836] 0xfffffe0000113000-0xfffffe0000114000           4K                               pte
[    0.060837] 0xfffffe0000114000-0xfffffe0000115000           4K     RW                 GLB NX pte
[    0.060839] 0xfffffe0000115000-0xfffffe0000116000           4K                               pte
[    0.060840] 0xfffffe0000116000-0xfffffe0000117000           4K     RW                 GLB NX pte
[    0.060842] 0xfffffe0000117000-0xfffffe0000118000           4K                               pte
[    0.060843] 0xfffffe0000118000-0xfffffe0000119000           4K     RW                 GLB NX pte
[    0.060845] 0xfffffe0000119000-0xfffffe000011e000          20K                               pte
[    0.060846] 0xfffffe000011e000-0xfffffe000011f000           4K     RW                 GLB NX pte
[    0.060848] 0xfffffe000011f000-0xfffffe000013f000         128K                               pte
[    0.060849] 0xfffffe000013f000-0xfffffe0000140000           4K     ro                 GLB NX pte
[    0.060851] 0xfffffe0000140000-0xfffffe0000141000           4K     RW                 GLB NX pte
[    0.060854] 0xfffffe0000141000-0xfffffe0000146000          20K     ro                 GLB NX pte
[    0.060856] 0xfffffe0000146000-0xfffffe0000147000           4K                               pte
[    0.060857] 0xfffffe0000147000-0xfffffe0000148000           4K     RW                 GLB NX pte
[    0.060859] 0xfffffe0000148000-0xfffffe0000149000           4K                               pte
[    0.060860] 0xfffffe0000149000-0xfffffe000014a000           4K     RW                 GLB NX pte
[    0.060862] 0xfffffe000014a000-0xfffffe000014b000           4K                               pte
[    0.060863] 0xfffffe000014b000-0xfffffe000014c000           4K     RW                 GLB NX pte
[    0.060865] 0xfffffe000014c000-0xfffffe000014d000           4K                               pte
[    0.060866] 0xfffffe000014d000-0xfffffe000014e000           4K     RW                 GLB NX pte
[    0.060868] 0xfffffe000014e000-0xfffffe0000153000          20K                               pte
[    0.060869] 0xfffffe0000153000-0xfffffe0000154000           4K     RW                 GLB NX pte
[    0.060871] 0xfffffe0000154000-0xfffffe0000174000         128K                               pte
[    0.060872] 0xfffffe0000174000-0xfffffe0000175000           4K     ro                 GLB NX pte
[    0.060874] 0xfffffe0000175000-0xfffffe0000176000           4K     RW                 GLB NX pte
[    0.060877] 0xfffffe0000176000-0xfffffe000017b000          20K     ro                 GLB NX pte
[    0.060879] 0xfffffe000017b000-0xfffffe000017c000           4K                               pte
[    0.060880] 0xfffffe000017c000-0xfffffe000017d000           4K     RW                 GLB NX pte
[    0.060882] 0xfffffe000017d000-0xfffffe000017e000           4K                               pte
[    0.060883] 0xfffffe000017e000-0xfffffe000017f000           4K     RW                 GLB NX pte
[    0.060885] 0xfffffe000017f000-0xfffffe0000180000           4K                               pte
[    0.060886] 0xfffffe0000180000-0xfffffe0000181000           4K     RW                 GLB NX pte
[    0.060888] 0xfffffe0000181000-0xfffffe0000182000           4K                               pte
[    0.060889] 0xfffffe0000182000-0xfffffe0000183000           4K     RW                 GLB NX pte
[    0.060891] 0xfffffe0000183000-0xfffffe0000188000          20K                               pte
[    0.060892] 0xfffffe0000188000-0xfffffe0000189000           4K     RW                 GLB NX pte
[    0.060894] 0xfffffe0000189000-0xfffffe00001a9000         128K                               pte
[    0.060896] 0xfffffe00001a9000-0xfffffe0000200000         348K                               pte
[    0.060900] 0xfffffe0000200000-0xfffffe0040000000        1022M                               pmd
[    0.060903] 0xfffffe0040000000-0xfffffe8000000000         511G                               pud
[    0.060904] 0xfffffe8000000000-0xffffff0000000000         512G                               pgd
[    0.060905] ---[ ESPfix Area ]---
[    0.060907] 0xffffff0000000000-0xffffff3500000000         212G                               pud
[    0.060908] 0xffffff3500000000-0xffffff3500002000           8K                               pte
[    0.060908] 0xffffff3500002000-0xffffff3500003000           4K     ro                 GLB NX pte
[    0.060911] 0xffffff3500003000-0xffffff3500012000          60K                               pte
[    0.060912] 0xffffff3500012000-0xffffff3500013000           4K     ro                 GLB NX pte
[    0.060914] 0xffffff3500013000-0xffffff3500022000          60K                               pte
[    0.060915] 0xffffff3500022000-0xffffff3500023000           4K     ro                 GLB NX pte
[    0.060917] 0xffffff3500023000-0xffffff3500032000          60K                               pte
[    0.060918] 0xffffff3500032000-0xffffff3500033000           4K     ro                 GLB NX pte
[    0.060920] 0xffffff3500033000-0xffffff3500042000          60K                               pte
[    0.060921] 0xffffff3500042000-0xffffff3500043000           4K     ro                 GLB NX pte
[    0.060924] 0xffffff3500043000-0xffffff3500052000          60K                               pte
[    0.060925] 0xffffff3500052000-0xffffff3500053000           4K     ro                 GLB NX pte
[    0.060927] 0xffffff3500053000-0xffffff3500062000          60K                               pte
[    0.060928] 0xffffff3500062000-0xffffff3500063000           4K     ro                 GLB NX pte
[    0.060930] 0xffffff3500063000-0xffffff3500072000          60K                               pte
[    0.066359] ... 131059 entries skipped ... 
[    0.066359] ---[ EFI Runtime Services ]---
[    0.066360] 0xffffffef00000000-0xfffffffec0000000          63G                               pud
[    0.066363] 0xfffffffec0000000-0xfffffffef9400000         916M                               pmd
[    0.066365] 0xfffffffef9400000-0xfffffffef9487000         540K                               pte
[    0.066366] 0xfffffffef9487000-0xfffffffef9488000           4K                               pte
[    0.066367] 0xfffffffef9488000-0xfffffffef94b0000         160K                               pte
[    0.066368] 0xfffffffef94b0000-0xfffffffef94f0000         256K                               pte
[    0.066371] 0xfffffffef94f0000-0xfffffffef95fe000        1080K                               pte
[    0.066372] 0xfffffffef95fe000-0xfffffffef9a00000        4104K                               pte
[    0.066375] 0xfffffffef9a00000-0xfffffffef9b81000        1540K                               pte
[    0.066376] 0xfffffffef9b81000-0xfffffffef9ba1000         128K                               pte
[    0.066377] 0xfffffffef9ba1000-0xfffffffef9bb6000          84K                               pte
[    0.066378] 0xfffffffef9bb6000-0xfffffffef9bc3000          52K                               pte
[    0.066379] 0xfffffffef9bc3000-0xfffffffef9be1000         120K                               pte
[    0.066380] 0xfffffffef9be1000-0xfffffffef9bf2000          68K                               pte
[    0.066381] 0xfffffffef9bf2000-0xfffffffef9bf3000           4K                               pte
[    0.066382] 0xfffffffef9bf3000-0xfffffffef9c04000          68K                               pte
[    0.066383] 0xfffffffef9c04000-0xfffffffef9c12000          56K                               pte
[    0.066384] 0xfffffffef9c12000-0xfffffffef9c30000         120K                               pte
[    0.066385] 0xfffffffef9c30000-0xfffffffef9c33000          12K                               pte
[    0.066386] 0xfffffffef9c33000-0xfffffffef9c46000          76K                               pte
[    0.066387] 0xfffffffef9c46000-0xfffffffef9c4c000          24K                               pte
[    0.066389] 0xfffffffef9c4c000-0xfffffffef9c8d000         260K                               pte
[    0.066390] 0xfffffffef9c8d000-0xfffffffef9cad000         128K                               pte
[    0.066391] 0xfffffffef9cad000-0xfffffffef9cd1000         144K                               pte
[    0.066392] 0xfffffffef9cd1000-0xfffffffef9cd3000           8K                               pte
[    0.066393] 0xfffffffef9cd3000-0xfffffffef9cd8000          20K                               pte
[    0.066394] 0xfffffffef9cd8000-0xfffffffef9cdc000          16K                               pte
[    0.066395] 0xfffffffef9cdc000-0xfffffffef9ce4000          32K                               pte
[    0.066396] 0xfffffffef9ce4000-0xfffffffef9ce5000           4K                               pte
[    0.066397] 0xfffffffef9ce5000-0xfffffffef9cea000          20K                               pte
[    0.066398] 0xfffffffef9cea000-0xfffffffef9ceb000           4K                               pte
[    0.066399] 0xfffffffef9ceb000-0xfffffffef9d33000         288K                               pte
[    0.066400] 0xfffffffef9d33000-0xfffffffef9d39000          24K                               pte
[    0.066401] 0xfffffffef9d39000-0xfffffffef9d43000          40K                               pte
[    0.066402] 0xfffffffef9d43000-0xfffffffef9d48000          20K                               pte
[    0.066403] 0xfffffffef9d48000-0xfffffffef9d51000          36K                               pte
[    0.066404] 0xfffffffef9d51000-0xfffffffef9d86000         212K                               pte
[    0.066408] 0xfffffffef9d86000-0xfffffffefb170000       20392K                               pte
[    0.066409] 0xfffffffefb170000-0xfffffffefb18e000         120K                               pte
[    0.066410] 0xfffffffefb18e000-0xfffffffefb190000           8K                               pte
[    0.066411] 0xfffffffefb190000-0xfffffffefb199000          36K                               pte
[    0.066413] 0xfffffffefb199000-0xfffffffefb299000           1M                               pte
[    0.066414] 0xfffffffefb299000-0xfffffffefb2a0000          28K                               pte
[    0.066415] 0xfffffffefb2a0000-0xfffffffefb2cb000         172K                               pte
[    0.066419] 0xfffffffefb2cb000-0xfffffffefbb33000        8608K                               pte
[    0.066422] 0xfffffffefbb33000-0xfffffffefbc55000        1160K                               pte
[    0.066423] 0xfffffffefbc55000-0xfffffffefbc56000           4K                               pte
[    0.066424] 0xfffffffefbc56000-0xfffffffefbc95000         252K                               pte
[    0.066425] 0xfffffffefbc95000-0xfffffffefbc9e000          36K                               pte
[    0.066426] 0xfffffffefbc9e000-0xfffffffefbc9f000           4K     RW                     NX pte
[    0.066431] 0xfffffffefbc9f000-0xfffffffefd8af000       28736K                               pte
[    0.066432] 0xfffffffefd8af000-0xfffffffefd902000         332K                               pte
[    0.066435] 0xfffffffefd902000-0xfffffffefe2af000        9908K                               pte
[    0.066438] 0xfffffffefe2af000-0xfffffffefe400000        1348K     RW                     x  pte
[    0.066440] 0xfffffffefe400000-0xfffffffefe600000           2M     RW         PSE         x  pmd
[    0.066443] 0xfffffffefe600000-0xfffffffefe67f000         508K     RW                     x  pte
[    0.066447] 0xfffffffefe67f000-0xfffffffefe800000        1540K     RW                     NX pte
[    0.066449] 0xfffffffefe800000-0xfffffffeff000000           8M     RW         PSE         NX pmd
[    0.066453] 0xfffffffeff000000-0xfffffffeff0ff000        1020K     RW                     NX pte
[    0.066456] 0xfffffffeff0ff000-0xfffffffeff1ff000           1M                               pte
[    0.066457] 0xfffffffeff1ff000-0xfffffffeff200000           4K                               pte
[    0.066458] 0xfffffffeff200000-0xfffffffeff210000          64K                               pte
[    0.066459] 0xfffffffeff210000-0xfffffffeff211000           4K     RW     PCD             NX pte
[    0.066464] 0xfffffffeff211000-0xfffffffeff400000        1980K                               pte
[    0.066465] 0xfffffffeff400000-0xffffffff00000000          12M     RW     PCD PSE         NX pmd
[    0.066468] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.066469] ---[ High Kernel Mapping ]---
[    0.066469] 0xffffffff80000000-0xffffffff81000000          16M                               pmd
[    0.066470] 0xffffffff81000000-0xffffffff82400000          20M     RW         PSE     GLB x  pmd
[    0.066474] 0xffffffff82400000-0xffffffff82523000        1164K     RW                 GLB x  pte
[    0.066476] 0xffffffff82523000-0xffffffff82524000           4K     ro                 GLB x  pte
[    0.066479] 0xffffffff82524000-0xffffffff82600000         880K     RW                 GLB x  pte
[    0.066482] 0xffffffff82600000-0xffffffff82800000           2M     RW         PSE     GLB x  pmd
[    0.066485] 0xffffffff82800000-0xffffffffa0000000         472M                               pmd
[    0.066486] ---[ Modules ]---
[    0.066490] 0xffffffffa0000000-0xffffffffff000000        1520M                               pmd
[    0.066491] ---[ End Modules ]---
[    0.066491] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.066497] 0xffffffffff200000-0xffffffffff57c000        3568K                               pte
[    0.066497] ---[ Fixmap Area ]---
[    0.066498] 0xffffffffff57c000-0xffffffffff5fc000         512K                               pte
[    0.066499] 0xffffffffff5fc000-0xffffffffff5fe000           8K     RW PWT PCD         GLB NX pte
[    0.066502] 0xffffffffff5fe000-0xffffffffff600000           8K                               pte
[    0.066503] 0xffffffffff600000-0xffffffffff601000           4K USR ro                 GLB NX pte
[    0.066507] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.066508] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.066549] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.066560] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.066707] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.066736] mce: CPU0: Thermal monitoring enabled (TM1)
[    0.066802] process: using mwait in idle threads
[    0.066803] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.066804] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.066805] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.066806] Spectre V2 : Mitigation: Enhanced IBRS
[    0.066807] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.066807] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.066808] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.066925] Freeing SMP alternatives memory: 28K
[    0.067693] smpboot: CPU0: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz (family: 0x6, model: 0x8c, stepping: 0x1)
[    0.067772] Performance Events: PEBS fmt4+-baseline,  AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver.
[    0.067779] ... version:                5
[    0.067779] ... bit width:              48
[    0.067779] ... generic registers:      8
[    0.067780] ... value mask:             0000ffffffffffff
[    0.067780] ... max period:             00007fffffffffff
[    0.067780] ... fixed-purpose events:   4
[    0.067781] ... event mask:             0001000f000000ff
[    0.067834] rcu: Hierarchical SRCU implementation.
[    0.067883] smp: Bringing up secondary CPUs ...
[    0.067914] x86: Booting SMP configuration:
[    0.067914] .... node  #0, CPUs:      #1 #2 #3 #4 #5 #6 #7
[    0.073081] smp: Brought up 1 node, 8 CPUs
[    0.073081] smpboot: Max logical packages: 1
[    0.073081] smpboot: Total of 8 processors activated (38707.20 BogoMIPS)
[    0.073807] devtmpfs: initialized
[    0.073807] PM: Registering ACPI NVS region [mem 0x452ff000-0x45b2efff] (8585216 bytes)
[    0.073807] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.073807] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    0.073807] pinctrl core: initialized pinctrl subsystem
[    0.073897] NET: Registered protocol family 16
[    0.073944] audit: initializing netlink subsys (disabled)
[    0.073947] audit: type=2000 audit(1628121730.023:1): state=initialized audit_enabled=0 res=1
[    0.073947] thermal_sys: Registered thermal governor 'bang_bang'
[    0.073947] thermal_sys: Registered thermal governor 'step_wise'
[    0.073947] thermal_sys: Registered thermal governor 'user_space'
[    0.073947] thermal_sys: Registered thermal governor 'power_allocator'
[    0.073947] cpuidle: using governor ladder
[    0.073947] cpuidle: using governor menu
[    0.073947] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.073947] ACPI: bus type PCI registered
[    0.073947] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.073947] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
[    0.073947] PCI: not using MMCONFIG
[    0.073947] PCI: Using configuration type 1 for base access
[    0.074641] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.075466] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.075644] ACPI: Added _OSI(Module Device)
[    0.075645] ACPI: Added _OSI(Processor Device)
[    0.075646] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.075646] ACPI: Added _OSI(Processor Aggregator Device)
[    0.075647] ACPI: Added _OSI(Linux-Dell-Video)
[    0.075647] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.075648] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.117419] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0], AE_NOT_FOUND (20200925/dswload2-162)
[    0.117424] ACPI Error: AE_NOT_FOUND, During name lookup/catalog (20200925/psobject-220)
[    0.117426] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0010)
[    0.117730] ACPI: 14 ACPI AML tables successfully acquired and loaded
[    0.118506] ACPI: EC: EC started
[    0.118507] ACPI: EC: interrupt blocked
[    0.119842] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.119843] ACPI: EC: Boot ECDT EC used to handle transactions
[    0.126235] ACPI: Dynamic OEM Table Load:
[    0.126242] ACPI: SSDT 0xFFFF888101776C00 0001C6 (v02 PmRef  Cpu0Psd  00003000 INTL 20160422)
[    0.126957] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[    0.127541] ACPI: Dynamic OEM Table Load:
[    0.127546] ACPI: SSDT 0xFFFF888100D39400 000386 (v02 PmRef  Cpu0Cst  00003001 INTL 20160422)
[    0.128366] ACPI: Dynamic OEM Table Load:
[    0.128371] ACPI: SSDT 0xFFFF888100E82000 0005C3 (v02 PmRef  Cpu0Ist  00003000 INTL 20160422)
[    0.129225] ACPI: Dynamic OEM Table Load:
[    0.129229] ACPI: SSDT 0xFFFF888100D3E000 000266 (v02 PmRef  Cpu0Hwp  00003000 INTL 20160422)
[    0.130140] ACPI: Dynamic OEM Table Load:
[    0.130145] ACPI: SSDT 0xFFFF88810153D000 0008E7 (v02 PmRef  ApIst    00003000 INTL 20160422)
[    0.131028] ACPI: Dynamic OEM Table Load:
[    0.131032] ACPI: SSDT 0xFFFF888100E81000 00048A (v02 PmRef  ApHwp    00003000 INTL 20160422)
[    0.131873] ACPI: Dynamic OEM Table Load:
[    0.131877] ACPI: SSDT 0xFFFF888100E85800 0004D4 (v02 PmRef  ApPsd    00003000 INTL 20160422)
[    0.132719] ACPI: Dynamic OEM Table Load:
[    0.132723] ACPI: SSDT 0xFFFF888100E81800 00048A (v02 PmRef  ApCst    00003000 INTL 20160422)
[    0.135382] ACPI: Interpreter enabled
[    0.135433] ACPI: (supports S0 S4 S5)
[    0.135434] ACPI: Using IOAPIC for interrupt routing
[    0.135617] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000)
[    0.136084] PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in ACPI motherboard resources
[    0.136097] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.136617] ACPI: Enabled 7 GPEs in block 00 to 7F
[    0.137625] ACPI: Power Resource [PCRP] (on)
[    0.137628] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PC00.DGPV], AE_NOT_FOUND (20200925/psargs-330)
[    0.137628] ACPI Error: Aborting method \_SB.PC00.PEG0.PCRP._ON due to previous error (AE_NOT_FOUND) (20200925/psparse-529)
[    0.139628] ACPI: Power Resource [BTPR] (on)
[    0.140642] ACPI: Power Resource [PAUD] (on)
[    0.147626] ACPI: Power Resource [V0PR] (on)
[    0.147626] ACPI: Power Resource [V1PR] (on)
[    0.147626] ACPI: Power Resource [V2PR] (on)
[    0.148647] ACPI: Power Resource [PXTC] (off)
[    0.150660] ACPI: Power Resource [WRST] (on)
[    0.150660] ACPI: Power Resource [TBT0] (on)
[    0.150660] ACPI: Power Resource [TBT1] (on)
[    0.150660] ACPI: Power Resource [D3C] (on)
[    0.158627] ACPI: Power Resource [PIN] (off)
[    0.158640] ACPI: PCI Root Bridge [PC00] (domain 0000 [bus 00-e0])
[    0.158640] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.158963] acpi PNP0A08:00: _OSC: platform does not support [AER]
[    0.160625] acpi PNP0A08:00: _OSC: OS now controls [SHPCHotplug PME PCIeCapability LTR]
[    0.160626] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[    0.162442] PCI host bridge to bus 0000:00
[    0.162443] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.162444] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.162445] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.162445] pci_bus 0000:00: root bus resource [mem 0x4f400000-0xbfffffff window]
[    0.162446] pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window]
[    0.162446] pci_bus 0000:00: root bus resource [bus 00-e0]
[    0.162469] pci 0000:00:00.0: [8086:9a14] type 00 class 0x060000
[    0.163617] pci 0000:00:02.0: [8086:9a49] type 00 class 0x030000
[    0.163617] pci 0000:00:02.0: reg 0x10: [mem 0x6002000000-0x6002ffffff 64bit]
[    0.163617] pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref]
[    0.163617] pci 0000:00:02.0: reg 0x20: [io  0x4000-0x403f]
[    0.163617] pci 0000:00:02.0: BAR 2: assigned to efifb
[    0.163617] pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics
[    0.163617] pci 0000:00:02.0: reg 0x344: [mem 0x00000000-0x00ffffff 64bit]
[    0.163617] pci 0000:00:02.0: VF(n) BAR0 space: [mem 0x00000000-0x06ffffff 64bit] (contains BAR0 for 7 VFs)
[    0.163617] pci 0000:00:02.0: reg 0x34c: [mem 0x00000000-0x1fffffff 64bit pref]
[    0.163617] pci 0000:00:02.0: VF(n) BAR2 space: [mem 0x00000000-0xdfffffff 64bit pref] (contains BAR2 for 7 VFs)
[    0.164623] pci 0000:00:04.0: [8086:9a03] type 00 class 0x118000
[    0.164623] pci 0000:00:04.0: reg 0x10: [mem 0x6003200000-0x600321ffff 64bit]
[    0.165631] pci 0000:00:0a.0: [8086:9a0d] type 00 class 0x118000
[    0.165631] pci 0000:00:0a.0: reg 0x10: [mem 0x6003230000-0x6003237fff 64bit]
[    0.165631] pci 0000:00:0a.0: enabling Extended Tags
[    0.166617] pci 0000:00:0d.0: [8086:9a13] type 00 class 0x0c0330
[    0.166617] pci 0000:00:0d.0: reg 0x10: [mem 0x6003220000-0x600322ffff 64bit]
[    0.166617] pci 0000:00:0d.0: PME# supported from D3hot D3cold
[    0.167630] pci 0000:00:0e.0: [8086:9a0b] type 00 class 0x010400
[    0.167630] pci 0000:00:0e.0: reg 0x10: [mem 0x6000000000-0x6001ffffff 64bit]
[    0.167630] pci 0000:00:0e.0: reg 0x18: [mem 0x50000000-0x51ffffff]
[    0.167630] pci 0000:00:0e.0: reg 0x20: [mem 0x6003100000-0x60031fffff 64bit]
[    0.167720] pci 0000:00:14.0: [8086:a0ed] type 00 class 0x0c0330
[    0.167741] pci 0000:00:14.0: reg 0x10: [mem 0x52100000-0x5210ffff 64bit]
[    0.167826] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.168666] pci 0000:00:14.2: [8086:a0ef] type 00 class 0x050000
[    0.168689] pci 0000:00:14.2: reg 0x10: [mem 0x6003240000-0x6003243fff 64bit]
[    0.168704] pci 0000:00:14.2: reg 0x18: [mem 0x600324a000-0x600324afff 64bit]
[    0.169617] pci 0000:00:14.3: [8086:a0f0] type 00 class 0x028000
[    0.169617] pci 0000:00:14.3: reg 0x10: [mem 0x600323c000-0x600323ffff 64bit]
[    0.169723] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[    0.170632] pci 0000:00:15.0: [8086:a0e8] type 00 class 0x0c8000
[    0.170632] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.171621] pci 0000:00:15.1: [8086:a0e9] type 00 class 0x0c8000
[    0.171637] pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.172655] pci 0000:00:16.0: [8086:a0e0] type 00 class 0x078000
[    0.172678] pci 0000:00:16.0: reg 0x10: [mem 0x6003247000-0x6003247fff 64bit]
[    0.172768] pci 0000:00:16.0: PME# supported from D3hot
[    0.173626] pci 0000:00:17.0: [8086:a0d3] type 00 class 0x010601
[    0.173643] pci 0000:00:17.0: reg 0x10: [mem 0x52110000-0x52111fff]
[    0.173654] pci 0000:00:17.0: reg 0x14: [mem 0x52114000-0x521140ff]
[    0.173664] pci 0000:00:17.0: reg 0x18: [io  0x4080-0x4087]
[    0.173675] pci 0000:00:17.0: reg 0x1c: [io  0x4088-0x408b]
[    0.173685] pci 0000:00:17.0: reg 0x20: [io  0x4060-0x407f]
[    0.173697] pci 0000:00:17.0: reg 0x24: [mem 0x52113000-0x521137ff]
[    0.173748] pci 0000:00:17.0: PME# supported from D3hot
[    0.174619] pci 0000:00:1d.0: [8086:a0b1] type 01 class 0x060400
[    0.174719] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.175643] pci 0000:00:1e.0: [8086:a0a8] type 00 class 0x078000
[    0.175670] pci 0000:00:1e.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.176679] pci 0000:00:1e.3: [8086:a0ab] type 00 class 0x0c8000
[    0.176707] pci 0000:00:1e.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[    0.177662] pci 0000:00:1f.0: [8086:a082] type 00 class 0x060100
[    0.178627] pci 0000:00:1f.3: [8086:a0c8] type 00 class 0x040100
[    0.178627] pci 0000:00:1f.3: reg 0x10: [mem 0x6003238000-0x600323bfff 64bit]
[    0.178678] pci 0000:00:1f.3: reg 0x20: [mem 0x6003000000-0x60030fffff 64bit]
[    0.178787] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[    0.179639] pci 0000:00:1f.4: [8086:a0a3] type 00 class 0x0c0500
[    0.179659] pci 0000:00:1f.4: reg 0x10: [mem 0x6003244000-0x60032440ff 64bit]
[    0.179690] pci 0000:00:1f.4: reg 0x20: [io  0xefa0-0xefbf]
[    0.180632] pci 0000:00:1f.5: [8086:a0a4] type 00 class 0x0c8000
[    0.180632] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[    0.181639] pci 0000:01:00.0: [10ec:8168] type 00 class 0x020000
[    0.181639] pci 0000:01:00.0: reg 0x10: [io  0x3000-0x30ff]
[    0.181639] pci 0000:01:00.0: reg 0x18: [mem 0x52004000-0x52004fff 64bit]
[    0.181639] pci 0000:01:00.0: reg 0x20: [mem 0x52000000-0x52003fff 64bit]
[    0.181639] pci 0000:01:00.0: supports D1 D2
[    0.181639] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.182630] pci 0000:00:1d.0: PCI bridge to [bus 01]
[    0.182630] pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
[    0.182630] pci 0000:00:1d.0:   bridge window [mem 0x52000000-0x520fffff]
[    0.193699] ACPI: EC: interrupt unblocked
[    0.193700] ACPI: EC: event unblocked
[    0.193717] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.193718] ACPI: EC: GPE=0x6e
[    0.193719] ACPI: \_SB_.PC00.LPCB.EC0_: Boot ECDT EC initialization complete
[    0.193719] ACPI: \_SB_.PC00.LPCB.EC0_: EC: Used to handle transactions and events
[    0.194625] iommu: Default domain type: Translated 
[    0.194632] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.194632] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.194632] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.194632] vgaarb: loaded
[    0.194709] SCSI subsystem initialized
[    0.194714] libata version 3.00 loaded.
[    0.194714] ACPI: bus type USB registered
[    0.194714] usbcore: registered new interface driver usbfs
[    0.194714] usbcore: registered new interface driver hub
[    0.194714] usbcore: registered new device driver usb
[    0.194714] pps_core: LinuxPPS API ver. 1 registered
[    0.194714] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.194714] PTP clock support registered
[    0.194714] Registered efivars operations
[    0.194714] PCI: Using ACPI for IRQ routing
[    0.215054] PCI: pci_cache_line_size set to 64 bytes
[    0.215206] pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window
[    0.215340] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.215341] e820: reserve RAM buffer [mem 0x39f99000-0x3bffffff]
[    0.215342] e820: reserve RAM buffer [mem 0x3fa9e000-0x3fffffff]
[    0.215342] e820: reserve RAM buffer [mem 0x434af000-0x43ffffff]
[    0.215343] e820: reserve RAM buffer [mem 0x45c00000-0x47ffffff]
[    0.215343] e820: reserve RAM buffer [mem 0x2b0c00000-0x2b3ffffff]
[    0.215648] clocksource: Switched to clocksource tsc-early
[    0.215685] VFS: Disk quotas dquot_6.6.0
[    0.215693] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.215721] pnp: PnP ACPI init
[    0.215902] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.215903] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.215907] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.215990] system 00:01: [io  0x1854-0x1857] has been reserved
[    0.215992] system 00:01: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.216012] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.216309] pnp 00:03: disabling [mem 0xc0000000-0xcfffffff] because it overlaps 0000:00:02.0 BAR 9 [mem 0x00000000-0xdfffffff 64bit pref]
[    0.216327] system 00:03: [mem 0xfedc0000-0xfedc7fff] has been reserved
[    0.216327] system 00:03: [mem 0xfeda0000-0xfeda0fff] has been reserved
[    0.216328] system 00:03: [mem 0xfeda1000-0xfeda1fff] has been reserved
[    0.216330] system 00:03: [mem 0xfed20000-0xfed7ffff] could not be reserved
[    0.216330] system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
[    0.216331] system 00:03: [mem 0xfed45000-0xfed8ffff] could not be reserved
[    0.216332] system 00:03: [mem 0xfee00000-0xfeefffff] has been reserved
[    0.216336] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.216826] system 00:04: [io  0x1800-0x18fe] could not be reserved
[    0.216827] system 00:04: [mem 0xfe000000-0xfe01ffff] could not be reserved
[    0.216828] system 00:04: [mem 0xfe04c000-0xfe04ffff] has been reserved
[    0.216828] system 00:04: [mem 0xfe050000-0xfe0affff] has been reserved
[    0.216829] system 00:04: [mem 0xfe0d0000-0xfe0fffff] has been reserved
[    0.216830] system 00:04: [mem 0xfe200000-0xfe7fffff] has been reserved
[    0.216831] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
[    0.216831] system 00:04: [mem 0xfd000000-0xfd68ffff] has been reserved
[    0.216832] system 00:04: [mem 0xfd6b0000-0xfd6cffff] has been reserved
[    0.216833] system 00:04: [mem 0xfd6f0000-0xfdffffff] has been reserved
[    0.216835] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.217059] system 00:05: [io  0x2000-0x20fe] has been reserved
[    0.217061] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.217209] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.217346] pnp: PnP ACPI: found 7 devices
[    0.222605] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.222631] NET: Registered protocol family 2
[    0.222707] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.222716] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.222800] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.222921] TCP: Hash tables configured (established 65536 bind 65536)
[    0.222967] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.222985] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.223005] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.223049] NET: Registered protocol family 1
[    0.223064] pci 0000:00:02.0: BAR 9: assigned [mem 0x4020000000-0x40ffffffff 64bit pref]
[    0.223066] pci 0000:00:02.0: BAR 7: assigned [mem 0x4010000000-0x4016ffffff 64bit]
[    0.223068] pci 0000:00:15.0: BAR 0: assigned [mem 0x4017000000-0x4017000fff 64bit]
[    0.223131] pci 0000:00:15.1: BAR 0: assigned [mem 0x4017001000-0x4017001fff 64bit]
[    0.223144] pci 0000:00:1e.0: BAR 0: assigned [mem 0x4017002000-0x4017002fff 64bit]
[    0.223204] pci 0000:00:1e.3: BAR 0: assigned [mem 0x4017003000-0x4017003fff 64bit]
[    0.223217] pci 0000:00:1f.5: BAR 0: assigned [mem 0x4f400000-0x4f400fff]
[    0.223228] pci 0000:00:1d.0: PCI bridge to [bus 01]
[    0.223230] pci 0000:00:1d.0:   bridge window [io  0x3000-0x3fff]
[    0.223234] pci 0000:00:1d.0:   bridge window [mem 0x52000000-0x520fffff]
[    0.223240] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.223241] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.223242] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.223242] pci_bus 0000:00: resource 7 [mem 0x4f400000-0xbfffffff window]
[    0.223243] pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window]
[    0.223244] pci_bus 0000:01: resource 0 [io  0x3000-0x3fff]
[    0.223244] pci_bus 0000:01: resource 1 [mem 0x52000000-0x520fffff]
[    0.223330] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.225047] PCI: CLS 64 bytes, default 64
[    0.225070] Trying to unpack rootfs image as initramfs...
[    0.261056] Freeing initrd memory: 11508K
[    0.261142] DMAR: No ATSR found
[    0.261189] DMAR: dmar0: Using Queued invalidation
[    0.261191] DMAR: dmar1: Using Queued invalidation
[    0.261312] pci 0000:00:00.0: Adding to iommu group 0
[    0.261319] pci 0000:00:02.0: Adding to iommu group 1
[    0.261325] pci 0000:00:04.0: Adding to iommu group 2
[    0.261331] pci 0000:00:0a.0: Adding to iommu group 3
[    0.261341] pci 0000:00:0d.0: Adding to iommu group 4
[    0.261346] pci 0000:00:0e.0: Adding to iommu group 5
[    0.261358] pci 0000:00:14.0: Adding to iommu group 6
[    0.261362] pci 0000:00:14.2: Adding to iommu group 6
[    0.261366] pci 0000:00:14.3: Adding to iommu group 7
[    0.261375] pci 0000:00:15.0: Adding to iommu group 8
[    0.261380] pci 0000:00:15.1: Adding to iommu group 8
[    0.261386] pci 0000:00:16.0: Adding to iommu group 9
[    0.261391] pci 0000:00:17.0: Adding to iommu group 10
[    0.261400] pci 0000:00:1d.0: Adding to iommu group 11
[    0.261408] pci 0000:00:1e.0: Adding to iommu group 12
[    0.261413] pci 0000:00:1e.3: Adding to iommu group 12
[    0.261424] pci 0000:00:1f.0: Adding to iommu group 13
[    0.261429] pci 0000:00:1f.3: Adding to iommu group 13
[    0.261434] pci 0000:00:1f.4: Adding to iommu group 13
[    0.261440] pci 0000:00:1f.5: Adding to iommu group 13
[    0.261447] pci 0000:01:00.0: Adding to iommu group 14
[    0.266874] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    0.266875] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.266876] software IO TLB: mapped [mem 0x000000003b0cb000-0x000000003f0cb000] (64MB)
[    0.266923] resource sanity check: requesting [mem 0xfedc0000-0xfedcdfff], which spans more than pnp 00:03 [mem 0xfedc0000-0xfedc7fff]
[    0.266927] caller tgl_uncore_imc_freerunning_init_box+0xb6/0xf0 mapping multiple BARs
[    0.267009] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22df1149949, max_idle_ns: 440795312789 ns
[    0.267019] clocksource: Switched to clocksource tsc
[    0.267037] platform rtc_cmos: registered platform RTC device (no PNP device found)
[    0.267396] Initialise system trusted keyrings
[    0.267417] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.267937] zbud: loaded
[    0.275136] Key type asymmetric registered
[    0.275136] Asymmetric key parser 'x509' registered
[    0.275142] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.275165] io scheduler mq-deadline registered
[    0.275165] io scheduler kyber registered
[    0.275178] io scheduler bfq registered
[    0.275463] pcieport 0000:00:1d.0: PME: Signaling with IRQ 122
[    0.275545] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.275564] efifb: probing for efifb
[    0.275572] efifb: framebuffer at 0x4000000000, using 8128k, total 8128k
[    0.275572] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    0.275573] efifb: scrolling: redraw
[    0.275574] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.275622] Console: switching to colour frame buffer device 240x67
[    0.281108] fb0: EFI VGA frame buffer device
[    0.281116] intel_idle: MWAIT substates: 0x11121020
[    0.281246] Monitor-Mwait will be used to enter C-1 state
[    0.281250] Monitor-Mwait will be used to enter C-2 state
[    0.281253] Monitor-Mwait will be used to enter C-3 state
[    0.281257] ACPI: \_SB_.PR00: Found 3 idle states
[    0.281257] intel_idle: v0.5.1 model 0x8C
[    0.281387] intel_idle: Local APIC timer is reliable in all C-states
[    0.282190] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.282970] lp: driver loaded but no devices found
[    0.282975] Linux agpgart interface v0.103
[    0.284071] loop: module loaded
[    0.284198] ahci 0000:00:17.0: version 3.0
[    0.284428] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0x3 impl SATA mode
[    0.284429] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part deso sadm sds 
[    0.284604] scsi host0: ahci
[    0.284668] scsi host1: ahci
[    0.284697] ata1: SATA max UDMA/133 abar m2048@0x52113000 port 0x52113100 irq 123
[    0.284700] ata2: SATA max UDMA/133 abar m2048@0x52113000 port 0x52113180 irq 123
[    0.284725] PPP generic driver version 2.4.2
[    0.284764] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.284764] ehci-pci: EHCI PCI platform driver
[    0.284769] ehci-platform: EHCI generic platform driver
[    0.284788] usbcore: registered new interface driver usb-storage
[    0.284803] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    0.284804] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    0.285559] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.285644] mousedev: PS/2 mouse device common for all mice
[    0.285721] rtc_cmos rtc_cmos: RTC can wake from S4
[    0.286353] rtc_cmos rtc_cmos: registered as rtc0
[    0.286474] rtc_cmos rtc_cmos: setting system clock to 2021-08-05T00:02:10 UTC (1628121730)
[    0.286481] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[    0.286486] intel_pstate: Intel P-state driver initializing
[    0.286757] intel_pstate: HWP enabled
[    0.286786] ledtrig-cpu: registered to indicate activity on CPUs
[    0.286804] hid: raw HID events driver (C) Jiri Kosina
[    0.286891] usbcore: registered new interface driver usbhid
[    0.286892] usbhid: USB HID core driver
[    0.286935] intel_pmc_core INT33A1:00:  initialized
[    0.287102] NET: Registered protocol family 10
[    0.288800] Segment Routing with IPv6
[    0.288802] RPL Segment Routing with IPv6
[    0.288815] NET: Registered protocol family 17
[    0.288831] Key type dns_resolver registered
[    0.289225] microcode: sig=0x806c1, pf=0x80, revision=0x8a
[    0.289232] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    0.289263] microcode: Microcode Update Driver: v2.2.
[    0.289266] IPI shorthand broadcast: enabled
[    0.289276] sched_clock: Marking stable (284805900, 4452428)->(292841926, -3583598)
[    0.289297] registered taskstats version 1
[    0.289298] Loading compiled-in X.509 certificates
[    0.290270] zswap: loaded using pool zstd/zbud
[    0.594469] ata1: SATA link down (SStatus 4 SControl 300)
[    0.594506] ata2: SATA link down (SStatus 4 SControl 300)
[    0.596218] Freeing unused kernel image (initmem) memory: 1056K
[    0.596223] Write protecting the kernel read-only data: 16384k
[    0.596991] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    0.597520] Freeing unused kernel image (rodata/data gap) memory: 1800K
[    0.597526] rodata_test: all tests were successful
[    0.597534] Run /init as init process
[    0.597535]   with arguments:
[    0.597536]     /init
[    0.597537]     splash
[    0.597538]   with environment:
[    0.597539]     HOME=/
[    0.597540]     TERM=linux
[    0.597541]     BOOT_IMAGE=/boot/vmlinuz-5.10.32-calculate
[    0.597542]     calculate=video:intel
[    0.680620] raid6: avx512x4 gen() 30654 MB/s
[    0.697622] raid6: avx512x4 xor() 14397 MB/s
[    0.714618] raid6: avx512x2 gen() 57931 MB/s
[    0.731618] raid6: avx512x2 xor() 37899 MB/s
[    0.748619] raid6: avx512x1 gen() 57452 MB/s
[    0.765618] raid6: avx512x1 xor() 35222 MB/s
[    0.782619] raid6: avx2x4   gen() 48246 MB/s
[    0.799619] raid6: avx2x4   xor() 15788 MB/s
[    0.816618] raid6: avx2x2   gen() 50109 MB/s
[    0.833619] raid6: avx2x2   xor() 27347 MB/s
[    0.850618] raid6: avx2x1   gen() 37549 MB/s
[    0.867618] raid6: avx2x1   xor() 23616 MB/s
[    0.884619] raid6: sse2x4   gen() 13107 MB/s
[    0.901619] raid6: sse2x4   xor()  6791 MB/s
[    0.918619] raid6: sse2x2   gen() 13980 MB/s
[    0.935618] raid6: sse2x2   xor()  8891 MB/s
[    0.952619] raid6: sse2x1   gen() 12897 MB/s
[    0.969619] raid6: sse2x1   xor()  7020 MB/s
[    0.969620] raid6: using algorithm avx512x2 gen() 57931 MB/s
[    0.969620] raid6: .... xor() 37899 MB/s, rmw enabled
[    0.969621] raid6: using avx512x2 recovery algorithm
[    0.969940] xor: automatically using best checksumming function   avx       
[    0.978884] Btrfs loaded, crc32c=crc32c-intel
[    1.014940] dracut: TuxOnIce premodule started
[    1.015001] dracut: Kernel has no tuxonice support, aborting
[    1.019223] systemd-udevd[1266]: starting version 3.2.10
[    1.020017] udevd[1267]: starting eudev-3.2.10
[    1.042627] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.042668] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.042721] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.042785] acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
[    1.061487] i915 0000:00:02.0: [drm] VT-d active for gfx access
[    1.061490] checking generic (4000000000 7f0000) vs hw (6002000000 1000000)
[    1.061491] checking generic (4000000000 7f0000) vs hw (4000000000 10000000)
[    1.061491] fb0: switching to inteldrmfb from EFI VGA
[    1.061547] Console: switching to colour dummy device 80x25
[    1.061567] i915 0000:00:02.0: vgaarb: deactivate vga console
[    1.062264] i915 0000:00:02.0: [drm] Number of memory channels is zero
[    1.062680] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    1.063152] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/tgl_dmc_ver2_08.bin (v2.8)
[    1.113764] battery: ACPI: Battery Slot [BAT0] (battery present)
[    2.299339] [drm] Initialized i915 1.6.0 20200917 for 0000:00:02.0 on minor 0
[    2.301721] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.302616] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input1
[    2.303360] fbcon: i915drmfb (fb0) is primary device
[    2.314674] Console: switching to colour frame buffer device 240x67
[    2.339130] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[    2.350474] dracut: Starting plymouth daemon
[    2.506645] vmd 0000:00:0e.0: PCI host bridge to bus 10000:e0
[    2.506654] pci_bus 10000:e0: root bus resource [bus e0-ff]
[    2.506657] pci_bus 10000:e0: root bus resource [mem 0x50000000-0x51ffffff]
[    2.506661] pci_bus 10000:e0: root bus resource [mem 0x6003102000-0x60031fffff 64bit]
[    2.506683] pci 10000:e0:1c.0: [8086:09ab] type 00 class 0x088000
[    2.506769] pci 10000:e0:1c.0: Adding to iommu group 5
[    2.506823] pci 10000:e0:1c.4: [8086:a0bc] type 01 class 0x060400
[    2.506966] pci 10000:e0:1c.4: PME# supported from D0 D3hot D3cold
[    2.507071] pci 10000:e0:1c.4: Adding to iommu group 5
[    2.507097] pci 10000:e0:1c.4: Primary bus is hard wired to 0
[    2.507183] pci 10000:e1:00.0: [1cc4:6202] type 00 class 0x010802
[    2.507227] pci 10000:e1:00.0: reg 0x10: [mem 0x50000000-0x50003fff 64bit]
[    2.507502] pci 10000:e1:00.0: 7.876 Gb/s available PCIe bandwidth, limited by 8.0 GT/s PCIe x1 link at 10000:e0:1c.4 (capable of 31.504 Gb/s with 8.0 GT/s PCIe x4 link)
[    2.507528] pci 10000:e1:00.0: Adding to iommu group 5
[    2.507593] pci 10000:e0:1c.4: PCI bridge to [bus e1]
[    2.507597] pci 10000:e0:1c.4:   bridge window [io  0x0000-0x0fff]
[    2.507601] pci 10000:e0:1c.4:   bridge window [mem 0x50000000-0x500fffff]
[    2.507609] pci 10000:e0:1c.4: Primary bus is hard wired to 0
[    2.507662] pci 10000:e0:1c.4: BAR 14: assigned [mem 0x50000000-0x500fffff]
[    2.507664] pci 10000:e0:1c.4: BAR 13: no space for [io  size 0x1000]
[    2.507665] pci 10000:e0:1c.4: BAR 13: failed to assign [io  size 0x1000]
[    2.507668] pci 10000:e1:00.0: BAR 0: assigned [mem 0x50000000-0x50003fff 64bit]
[    2.507689] pci 10000:e0:1c.4: PCI bridge to [bus e1]
[    2.507695] pci 10000:e0:1c.4:   bridge window [mem 0x50000000-0x500fffff]
[    2.507739] pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
[    2.507740] pcieport 10000:e0:1c.4: PCI INT A: no GSI
[    2.507827] pcieport 10000:e0:1c.4: PME: Signaling with IRQ 144
[    2.508031] nvme nvme0: pci function 10000:e1:00.0
[    2.508047] vmd 0000:00:0e.0: Bound to PCI domain 10000
[    2.508053] pcieport 10000:e0:1c.4: can't derive routing for PCI INT A
[    2.508057] nvme 10000:e1:00.0: PCI INT A: not connected
[    2.509424] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    2.509475] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1
[    2.510586] xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000200009810
[    2.510591] xhci_hcd 0000:00:0d.0: cache line size of 64 is not supported
[    2.510765] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.510767] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.510768] usb usb1: Product: xHCI Host Controller
[    2.510769] usb usb1: Manufacturer: Linux 5.10.32-calculate xhci-hcd
[    2.510769] usb usb1: SerialNumber: 0000:00:0d.0
[    2.510876] hub 1-0:1.0: USB hub found
[    2.510885] hub 1-0:1.0: 1 port detected
[    2.511065] xhci_hcd 0000:00:0d.0: xHCI Host Controller
[    2.511088] xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2
[    2.511091] xhci_hcd 0000:00:0d.0: Host supports USB 3.1 Enhanced SuperSpeed
[    2.511122] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    2.511123] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.511124] usb usb2: Product: xHCI Host Controller
[    2.511125] usb usb2: Manufacturer: Linux 5.10.32-calculate xhci-hcd
[    2.511125] usb usb2: SerialNumber: 0000:00:0d.0
[    2.511196] hub 2-0:1.0: USB hub found
[    2.511206] hub 2-0:1.0: 4 ports detected
[    2.511711] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.511748] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    2.512887] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x120 quirks 0x0000000000009810
[    2.512893] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    2.513063] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.513064] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.513065] usb usb3: Product: xHCI Host Controller
[    2.513066] usb usb3: Manufacturer: Linux 5.10.32-calculate xhci-hcd
[    2.513067] usb usb3: SerialNumber: 0000:00:14.0
[    2.513137] hub 3-0:1.0: USB hub found
[    2.513154] hub 3-0:1.0: 12 ports detected
[    2.513328] nvme nvme0: 8/0/0 default/read/poll queues
[    2.513565] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    2.513589] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    2.513590] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[    2.513636] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    2.513637] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.513637] usb usb4: Product: xHCI Host Controller
[    2.513638] usb usb4: Manufacturer: Linux 5.10.32-calculate xhci-hcd
[    2.513639] usb usb4: SerialNumber: 0000:00:14.0
[    2.513724] hub 4-0:1.0: USB hub found
[    2.513740] hub 4-0:1.0: 4 ports detected
[    2.513903] usb: port power management may be unreliable
[    2.514519]  nvme0n1: p1 p2 p3 p4
[    2.526566] BTRFS: device label Calculate devid 1 transid 32 /dev/nvme0n1p3 scanned by systemd-udevd (1967)
[    2.526640] BTRFS: device label CLD-21 devid 1 transid 35 /dev/nvme0n1p1 scanned by systemd-udevd (2064)
[    2.542716] dracut: TuxOnIce lvmfix started
[    2.547950] dracut: TuxOnIce udev should be now fully settled
[    2.560493] BTRFS info (device nvme0n1p1): enabling ssd optimizations
[    2.560498] BTRFS info (device nvme0n1p1): turning on sync discard
[    2.560504] BTRFS info (device nvme0n1p1): disk space caching is enabled
[    2.560506] BTRFS info (device nvme0n1p1): has skinny extents
[    2.590561] dracut: Mounted root filesystem /dev/nvme0n1p1
[    2.593784] BTRFS info (device nvme0n1p1): disk space caching is enabled
[    2.619756] BTRFS info (device nvme0n1p1): disk space caching is enabled
[    2.700519] dracut: Switching root
[    2.838711] usb 3-1: new full-speed USB device number 2 using xhci_hcd
[    2.967942] usb 3-1: New USB device found, idVendor=045e, idProduct=07fd, bcdDevice= 3.15
[    2.967944] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.967944] usb 3-1: Product: Microsoft Nano Transceiver 1.1
[    2.967945] usb 3-1: Manufacturer: Microsoft
[    2.970124] input: Microsoft Microsoft Nano Transceiver 1.1 as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0/0003:045E:07FD.0001/input/input2
[    3.021865] hid-generic 0003:045E:07FD.0001: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft Nano Transceiver 1.1] on usb-0000:00:14.0-1/input0
[    3.023816] input: Microsoft Microsoft Nano Transceiver 1.1 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.1/0003:045E:07FD.0002/input/input3
[    3.077019] input: Microsoft Microsoft Nano Transceiver 1.1 System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.1/0003:045E:07FD.0002/input/input4
[    3.077097] input: Microsoft Microsoft Nano Transceiver 1.1 as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.1/0003:045E:07FD.0002/input/input5
[    3.077188] hid-generic 0003:045E:07FD.0002: input,hiddev96,hidraw1: USB HID v1.11 Device [Microsoft Microsoft Nano Transceiver 1.1] on usb-0000:00:14.0-1/input1
[    3.078726] input: Microsoft Microsoft Nano Transceiver 1.1 as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.2/0003:045E:07FD.0003/input/input6
[    3.078792] hid-generic 0003:045E:07FD.0003: input,hidraw2: USB HID v1.11 Mouse [Microsoft Microsoft Nano Transceiver 1.1] on usb-0000:00:14.0-1/input2
[    3.192655] usb 3-5: new high-speed USB device number 3 using xhci_hcd
[    3.321689] usb 3-5: New USB device found, idVendor=04f2, idProduct=b725, bcdDevice=27.36
[    3.321694] usb 3-5: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[    3.321696] usb 3-5: Product: Integrated Camera
[    3.321699] usb 3-5: Manufacturer: Chicony Electronics Co.,Ltd.
[    3.321700] usb 3-5: SerialNumber: 0001
[    3.437636] usb 3-10: new full-speed USB device number 4 using xhci_hcd
[    3.564666] usb 3-10: New USB device found, idVendor=8087, idProduct=0aaa, bcdDevice= 0.02
[    3.564670] usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.053121] udevd[3642]: starting version 3.2.10
[    4.070177] udevd[3642]: starting eudev-3.2.10
[    4.163940] ACPI: AC Adapter [ADP0] (off-line)
[    4.276226] input: Ideapad extra buttons as /devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input7
[    4.303969] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input8
[    4.304004] ACPI: Lid Switch [LID0]
[    4.304024] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input9
[    4.304046] ACPI: Power Button [PWRB]
[    4.307465] proc_thermal 0000:00:04.0: Creating sysfs group for PROC_THERMAL_PCI
[    4.352227] Bluetooth: Core ver 2.22
[    4.352238] NET: Registered protocol family 31
[    4.352239] Bluetooth: HCI device and connection manager initialized
[    4.352241] Bluetooth: HCI socket layer initialized
[    4.352242] Bluetooth: L2CAP socket layer initialized
[    4.352244] Bluetooth: SCO socket layer initialized
[    4.353648] usbcore: registered new interface driver btusb
[    4.354532] Bluetooth: hci0: Bootloader revision 0.1 build 0 week 30 2018
[    4.355533] Bluetooth: hci0: Device revision is 2
[    4.355533] Bluetooth: hci0: Secure boot is enabled
[    4.355534] Bluetooth: hci0: OTP lock is enabled
[    4.355534] Bluetooth: hci0: API lock is enabled
[    4.355534] Bluetooth: hci0: Debug lock is disabled
[    4.355535] Bluetooth: hci0: Minimum firmware build 1 week 10 2014
[    4.357763] Bluetooth: hci0: Found device firmware: intel/ibt-19-0-1.sfi
[    4.382165] mc: Linux media interface: v0.10
[    4.383540] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    4.384665] videodev: Linux video capture interface: v2.00
[    4.384725] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[    4.384767] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    4.387374] Intel(R) Wireless WiFi driver for Linux
[    4.387688] uvcvideo: Found UVC 1.10 device Integrated Camera (04f2:b725)
[    4.388946] input: Integrated Camera: Integrated C as /devices/pci0000:00/0000:00:14.0/usb3/3-5/3-5:1.0/input/input10
[    4.388985] usbcore: registered new interface driver uvcvideo
[    4.388986] USB Video Class driver (1.1.1)
[    4.391633] iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver
[    4.391646] iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 65.3.35.22
[    4.391841] iwlwifi 0000:00:14.3: loaded firmware version 59.601f3a66.0 QuZ-a0-jf-b0-59.ucode op_mode iwlmvm
[    4.396648] intel-lpss 0000:00:15.0: enabling device (0004 -> 0006)
[    4.396958] idma64 idma64.0: Found Intel integrated DMA 64-bit
[    4.400340] wl: loading out-of-tree module taints kernel.
[    4.400342] wl: module license 'MIXED/Proprietary' taints kernel.
[    4.400343] Disabling lock debugging due to kernel taint
[    4.407842] r8169 0000:01:00.0: can't disable ASPM; OS doesn't have ASPM control
[    4.408701] intel-lpss 0000:00:15.1: enabling device (0004 -> 0006)
[    4.409014] idma64 idma64.1: Found Intel integrated DMA 64-bit
[    4.409231] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[    4.409274] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[    4.410091] i2c i2c-10: 1/1 memory slots populated (from DMI)
[    4.411190] snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040100
[    4.411201] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[    4.411343] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_globals_exit [i915])
[    4.416587] libphy: r8169: probed
[    4.416717] r8169 0000:01:00.0 eth0: RTL8168h/8111h, 38:f3:ab:93:ee:13, XID 541, IRQ 168
[    4.416718] r8169 0000:01:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    4.420659] intel-lpss 0000:00:1e.0: enabling device (0004 -> 0006)
[    4.420949] idma64 idma64.2: Found Intel integrated DMA 64-bit
[    4.432766] intel-lpss 0000:00:1e.3: enabling device (0004 -> 0006)
[    4.432984] idma64 idma64.3: Found Intel integrated DMA 64-bit
[    4.434123] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC257: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    4.434125] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    4.434126] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    4.434127] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    4.434127] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    4.434128] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
[    4.459094] cryptd: max_cpu_qlen set to 1000
[    4.461006] AVX2 version of gcm_enc/dec engaged.
[    4.461008] AES CTR mode by8 optimization enabled
[    4.500144] ALSA pcmC0D12p,0:HDMI 6: cannot preallocate for size 4194304
[    4.500150] ALSA pcmC0D13p,0:HDMI 7: cannot preallocate for size 4194304
[    4.500153] ALSA pcmC0D14p,0:HDMI 8: cannot preallocate for size 4194304
[    4.500156] ALSA pcmC0D15p,0:HDMI 9: cannot preallocate for size 4194304
[    4.500159] ALSA pcmC0D16p,0:HDMI 10: cannot preallocate for size 4194304
[    4.510258] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1f.3/sound/card0/input11
[    4.510293] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input12
[    4.510314] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[    4.510334] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[    4.510349] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[    4.510365] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[    4.510380] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[    4.510396] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
[    4.510411] input: HDA Intel PCH HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
[    4.510431] input: HDA Intel PCH HDMI/DP,pcm=12 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[    4.510464] input: HDA Intel PCH HDMI/DP,pcm=13 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input21
[    4.510488] input: HDA Intel PCH HDMI/DP,pcm=14 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input22
[    4.510511] input: HDA Intel PCH HDMI/DP,pcm=15 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input23
[    4.510532] input: HDA Intel PCH HDMI/DP,pcm=16 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input24
[    4.546203] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_globals_exit [i915])
[    4.570793] iwlwifi 0000:00:14.3: Detected Intel(R) Wireless-AC 9560, REV=0x354
[    4.610669] i801_smbus 0000:00:1f.4: Timeout waiting for interrupt!
[    4.610672] i801_smbus 0000:00:1f.4: Transaction timeout
[    4.612674] i801_smbus 0000:00:1f.4: Failed terminating the transaction
[    4.614256] iTCO_vendor_support: vendor-support=0
[    4.614888] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    4.614924] iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[    4.614978] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    4.738811] iwlwifi 0000:00:14.3: base HW address: f0:77:c3:45:64:8d
[    4.751059] thermal thermal_zone8: failed to read out thermal zone (-61)
[    4.842063] BTRFS info (device nvme0n1p1): disk space caching is enabled
[    4.884643] zram: Added device: zram0
[    4.894921] zram0: detected capacity change from 0 to 16290439168
[    4.917623] Adding 15908628k swap on /dev/zram0.  Priority:100 extents:1 across:15908628k SSFS
[    4.953583] FAT-fs (nvme0n1p4): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[    4.955588] BTRFS info (device nvme0n1p3): enabling ssd optimizations
[    4.955590] BTRFS info (device nvme0n1p3): turning on sync discard
[    4.955591] BTRFS info (device nvme0n1p3): disk space caching is enabled
[    4.955592] BTRFS info (device nvme0n1p3): has skinny extents
[    5.286899] fuse: init (API version 7.32)
[    5.313127] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    5.313129] Bluetooth: BNEP filters: protocol multicast
[    5.313132] Bluetooth: BNEP socket layer initialized
[    5.419661] Generic FE-GE Realtek PHY r8169-100:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-100:00, irq=IGNORE)
[    5.559761] r8169 0000:01:00.0 eth0: Link is Down
[    5.930533] Bluetooth: hci0: Waiting for firmware download to complete
[    5.931601] Bluetooth: hci0: Firmware loaded in 1540944 usecs
[    5.931626] Bluetooth: hci0: Waiting for device to boot
[    5.947633] Bluetooth: hci0: Device booted in 15648 usecs
[    5.947734] Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-19-0-1.ddc
[    5.949550] Bluetooth: hci0: Applying Intel DDC parameters completed
[    5.952551] Bluetooth: hci0: Firmware revision 0.0 build 121 week 7 2021
[    6.026539] NET: Registered protocol family 38
[   16.060658] Key type encrypted registered
[   17.820328] Bluetooth: RFCOMM TTY layer initialized
[   17.820333] Bluetooth: RFCOMM socket layer initialized
[   17.820337] Bluetooth: RFCOMM ver 1.11
[   22.569862] usb 3-1: USB disconnect, device number 2
[   30.110763] wlan0: authenticate with ec:43:f6:08:3c:bc
[   30.112710] wlan0: send auth to ec:43:f6:08:3c:bc (try 1/3)
[   30.138666] wlan0: authenticated
[   30.139661] wlan0: associate with ec:43:f6:08:3c:bc (try 1/3)
[   30.145429] wlan0: RX AssocResp from ec:43:f6:08:3c:bc (capab=0xc11 status=0 aid=1)
[   30.149206] wlan0: associated
[   30.359310] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   78.273788] usb 3-1: new full-speed USB device number 5 using xhci_hcd
[   78.403847] usb 3-1: New USB device found, idVendor=045e, idProduct=07fd, bcdDevice= 3.15
[   78.403852] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[   78.403854] usb 3-1: Product: Microsoft Nano Transceiver 1.1
[   78.403856] usb 3-1: Manufacturer: Microsoft
[   78.407029] input: Microsoft Microsoft Nano Transceiver 1.1 as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.0/0003:045E:07FD.0004/input/input25
[   78.459347] hid-generic 0003:045E:07FD.0004: input,hidraw0: USB HID v1.11 Keyboard [Microsoft Microsoft Nano Transceiver 1.1] on usb-0000:00:14.0-1/input0
[   78.461735] input: Microsoft Microsoft Nano Transceiver 1.1 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.1/0003:045E:07FD.0005/input/input26
[   78.514085] input: Microsoft Microsoft Nano Transceiver 1.1 System Control as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.1/0003:045E:07FD.0005/input/input27
[   78.514225] input: Microsoft Microsoft Nano Transceiver 1.1 as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.1/0003:045E:07FD.0005/input/input28
[   78.514475] hid-generic 0003:045E:07FD.0005: input,hiddev96,hidraw1: USB HID v1.11 Device [Microsoft Microsoft Nano Transceiver 1.1] on usb-0000:00:14.0-1/input1
[   78.515993] input: Microsoft Microsoft Nano Transceiver 1.1 as /devices/pci0000:00/0000:00:14.0/usb3/3-1/3-1:1.2/0003:045E:07FD.0006/input/input29
[   78.516136] hid-generic 0003:045E:07FD.0006: input,hidraw2: USB HID v1.11 Mouse [Microsoft Microsoft Nano Transceiver 1.1] on usb-0000:00:14.0-1/input2
Add Comment
Author