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
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431 | # dmesg
[ 0.018102] ACPI: WSMT 0x000000007A4251A8 000028 (v01 INTEL Notebook 00000002 01000013)
[ 0.018104] ACPI: SSDT 0x000000007A4251D0 0027DE (v02 INTEL PtidDevc 00001000 INTL 20160527)
[ 0.018106] ACPI: SSDT 0x000000007A4279B0 000FFE (v02 INTEL TbtTypeC 00000000 INTL 20160527)
[ 0.018109] ACPI: DBGP 0x000000007A4289B0 000034 (v01 _ASUS_ Notebook 00000002 01000013)
[ 0.018111] ACPI: DBG2 0x000000007A4289E8 000054 (v00 _ASUS_ Notebook 00000002 01000013)
[ 0.018113] ACPI: SSDT 0x000000007A428A40 0000AE (v02 SgRef SgPeg 00001000 INTL 20160527)
[ 0.018116] ACPI: DMAR 0x000000007A428AF0 0000A8 (v01 INTEL EDK2 00000002 01000013)
[ 0.018118] ACPI: BGRT 0x000000007A428B98 000038 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
[ 0.018120] ACPI: BGRT 0x000000007A428BD0 000038 (v01 _ASUS_ Notebook 01072009 AMI 00010013)
[ 0.018122] ACPI: TPM2 0x000000007A428C08 000034 (v04 _ASUS_ Notebook 00000001 AMI 00000000)
[ 0.018125] ACPI: SSDT 0x000000007A428C40 001F8B (v01 OptRef OptTabl 00001000 INTL 20160527)
[ 0.018132] ACPI: Local APIC address 0xfee00000
[ 0.018200] No NUMA configuration found
[ 0.018200] Faking a node at [mem 0x0000000000000000-0x000000047dffffff]
[ 0.018204] NODE_DATA(0) allocated [mem 0x47dffa000-0x47dffdfff]
[ 0.018225] Zone ranges:
[ 0.018226] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.018227] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.018228] Normal [mem 0x0000000100000000-0x000000047dffffff]
[ 0.018229] Movable zone start for each node
[ 0.018229] Early memory node ranges
[ 0.018230] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.018231] node 0: [mem 0x0000000000100000-0x0000000078f15fff]
[ 0.018232] node 0: [mem 0x000000007ac0e000-0x000000007ac0efff]
[ 0.018233] node 0: [mem 0x0000000100000000-0x000000047dffffff]
[ 0.018542] Zeroed struct page in unavailable ranges: 37195 pages
[ 0.018543] Initmem setup node 0 [mem 0x0000000000001000-0x000000047dffffff]
[ 0.018544] On node 0 totalpages: 4157109
[ 0.018545] DMA zone: 64 pages used for memmap
[ 0.018546] DMA zone: 23 pages reserved
[ 0.018547] DMA zone: 3998 pages, LIFO batch:0
[ 0.018592] DMA32 zone: 7677 pages used for memmap
[ 0.018593] DMA32 zone: 491287 pages, LIFO batch:63
[ 0.026331] Normal zone: 57216 pages used for memmap
[ 0.026332] Normal zone: 3661824 pages, LIFO batch:63
[ 0.071652] x86/hpet: Will disable the HPET for this platform because it's not reliable
[ 0.071681] Reserving Intel graphics memory at [mem 0x7c000000-0x7fffffff]
[ 0.072226] ACPI: PM-Timer IO Port: 0x1808
[ 0.072227] ACPI: Local APIC address 0xfee00000
[ 0.072233] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.072233] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.072234] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.072234] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.072235] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.072236] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.072236] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.072237] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.072237] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.072238] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.072238] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.072239] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.072298] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.072300] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.072301] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.072302] ACPI: IRQ0 used by override.
[ 0.072303] ACPI: IRQ9 used by override.
[ 0.072305] Using ACPI (MADT) for SMP configuration information
[ 0.072306] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.072308] smpboot: Allowing 12 CPUs, 0 hotplug CPUs
[ 0.072323] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.072324] PM: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.072326] PM: Registered nosave memory: [mem 0x7772b000-0x7772bfff]
[ 0.072327] PM: Registered nosave memory: [mem 0x78f16000-0x7a3b7fff]
[ 0.072327] PM: Registered nosave memory: [mem 0x7a3b8000-0x7a434fff]
[ 0.072328] PM: Registered nosave memory: [mem 0x7a435000-0x7a548fff]
[ 0.072329] PM: Registered nosave memory: [mem 0x7a549000-0x7ab40fff]
[ 0.072329] PM: Registered nosave memory: [mem 0x7ab41000-0x7ac0dfff]
[ 0.072330] PM: Registered nosave memory: [mem 0x7ac0f000-0x7fffffff]
[ 0.072331] PM: Registered nosave memory: [mem 0x80000000-0xdfffffff]
[ 0.072331] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
[ 0.072332] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
[ 0.072332] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.072333] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.072333] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.072334] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.072334] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.072335] PM: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[ 0.072335] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.072336] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[ 0.072336] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.072338] [mem 0x80000000-0xdfffffff] available for PCI devices
[ 0.072339] Booting paravirtualized kernel on bare hardware
[ 0.072341] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.143528] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:12 nr_node_ids:1
[ 0.143892] percpu: Embedded 42 pages/cpu s134616 r8192 d29224 u262144
[ 0.143898] pcpu-alloc: s134616 r8192 d29224 u262144 alloc=1*2097152
[ 0.143898] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 -- -- -- --
[ 0.143918] Built 1 zonelists, mobility grouping on. Total pages: 4092129
[ 0.143919] Policy zone: Normal
[ 0.143920] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.4.45-calculate root=UUID=b592ce4a-af13-40d6-bac7-8c9d36d7cc72 ro video=1920x1080 real_resume=UUID=553995fa-9bbd-45b0-a64c-a80d5c26e2fd rd.retry=40 calculate=video:intel splash quiet
[ 0.144036] printk: log_buf_len individual max cpu contribution: 4096 bytes
[ 0.144037] printk: log_buf_len total cpu_extra contributions: 45056 bytes
[ 0.144037] printk: log_buf_len min size: 32768 bytes
[ 0.144050] printk: log_buf_len: 131072 bytes
[ 0.144051] printk: early log buf free: 19208(58%)
[ 0.145150] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.145679] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.145782] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.150036] Calgary: detecting Calgary via BIOS EBDA area
[ 0.150037] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[ 0.190075] Memory: 16185072K/16628436K available (10244K kernel code, 611K rwdata, 2024K rodata, 1032K init, 1688K bss, 443364K reserved, 0K cma-reserved)
[ 0.190143] random: get_random_u64 called from cache_random_seq_create+0x77/0x130 with crng_init=0
[ 0.190222] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[ 0.190232] Kernel/User page tables isolation: enabled
[ 0.190300] rcu: Preemptible hierarchical RCU implementation.
[ 0.190301] rcu: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=12.
[ 0.190302] Tasks RCU enabled.
[ 0.190303] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.190304] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[ 0.190347] NR_IRQS: 4352, nr_irqs: 2152, preallocated irqs: 16
[ 0.190902] random: crng done (trusting CPU's manufacturer)
[ 0.190926] Console: colour dummy device 80x25
[ 0.190930] printk: console [tty0] enabled
[ 0.190948] ACPI: Core revision 20190816
[ 0.191303] APIC: Switch to symmetric I/O mode setup
[ 0.191305] DMAR: Host address width 39
[ 0.191306] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.191311] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[ 0.191312] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.191316] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.191317] DMAR: RMRR base: 0x0000007a717000 end: 0x0000007a960fff
[ 0.191317] DMAR: RMRR base: 0x0000007b800000 end: 0x0000007fffffff
[ 0.191319] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.191320] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.191321] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.194540] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.194541] x2apic enabled
[ 0.194573] Switched APIC routing to cluster x2apic.
[ 0.203662] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1fb62f12e8c, max_idle_ns: 440795238402 ns
[ 0.203665] Calibrating delay loop (skipped), value calculated using timer frequency.. 4399.99 BogoMIPS (lpj=2199996)
[ 0.203667] pid_max: default: 32768 minimum: 301
[ 0.204664] ---[ User Space ]---
[ 0.204664] 0x0000000000000000-0x0000000000001000 4K RW x pte
[ 0.204664] 0x0000000000001000-0x0000000000200000 2044K pte
[ 0.204664] 0x0000000000200000-0x0000000064000000 1598M pmd
[ 0.204664] 0x0000000064000000-0x00000000640a2000 648K pte
[ 0.204664] 0x00000000640a2000-0x00000000640e2000 256K pte
[ 0.204664] 0x00000000640e2000-0x0000000064200000 1144K pte
[ 0.204664] 0x0000000064200000-0x0000000072a00000 232M pmd
[ 0.204664] 0x0000000072a00000-0x0000000072bd4000 1872K pte
[ 0.204664] 0x0000000072bd4000-0x0000000072c00000 176K pte
[ 0.204664] 0x0000000072c00000-0x0000000074000000 20M pmd
[ 0.204664] 0x0000000074000000-0x00000000740a2000 648K pte
[ 0.204664] 0x00000000740a2000-0x00000000740b1000 60K pte
[ 0.204664] 0x00000000740b1000-0x0000000074200000 1340K RW x pte
[ 0.204664] 0x0000000074200000-0x0000000077600000 52M RW PSE x pmd
[ 0.204664] 0x0000000077600000-0x000000007772c000 1200K RW x pte
[ 0.204664] 0x000000007772c000-0x0000000077800000 848K pte
[ 0.204664] 0x0000000077800000-0x0000000078600000 14M pmd
[ 0.204664] 0x0000000078600000-0x0000000078766000 1432K pte
[ 0.204664] 0x0000000078766000-0x00000000788ef000 1572K pte
[ 0.204664] 0x00000000788ef000-0x0000000078a00000 1092K pte
[ 0.204664] 0x0000000078a00000-0x0000000078e00000 4M pmd
[ 0.204664] 0x0000000078e00000-0x0000000078f16000 1112K pte
[ 0.204664] 0x0000000078f16000-0x0000000079000000 936K pte
[ 0.204664] 0x0000000079000000-0x000000007a400000 20M pmd
[ 0.204664] 0x000000007a400000-0x000000007a549000 1316K pte
[ 0.204664] 0x000000007a549000-0x000000007a600000 732K RW NX pte
[ 0.204664] 0x000000007a600000-0x000000007aa00000 4M RW PSE NX pmd
[ 0.204664] 0x000000007aa00000-0x000000007ab6b000 1452K RW NX pte
[ 0.204664] 0x000000007ab6b000-0x000000007ab6e000 12K ro x pte
[ 0.204664] 0x000000007ab6e000-0x000000007ab73000 20K RW NX pte
[ 0.204664] 0x000000007ab73000-0x000000007ab75000 8K ro x pte
[ 0.204664] 0x000000007ab75000-0x000000007ab7a000 20K RW NX pte
[ 0.204664] 0x000000007ab7a000-0x000000007ab7e000 16K ro x pte
[ 0.204664] 0x000000007ab7e000-0x000000007ab83000 20K RW NX pte
[ 0.204664] 0x000000007ab83000-0x000000007ab84000 4K ro x pte
[ 0.204664] 0x000000007ab84000-0x000000007ab88000 16K RW NX pte
[ 0.204664] 0x000000007ab88000-0x000000007ab89000 4K ro x pte
[ 0.204664] 0x000000007ab89000-0x000000007ab8e000 20K RW NX pte
[ 0.204664] 0x000000007ab8e000-0x000000007ab9c000 56K ro x pte
[ 0.204664] 0x000000007ab9c000-0x000000007aba6000 40K RW NX pte
[ 0.204664] 0x000000007aba6000-0x000000007aba7000 4K ro x pte
[ 0.204664] 0x000000007aba7000-0x000000007abac000 20K RW NX pte
[ 0.204664] 0x000000007abac000-0x000000007abad000 4K ro x pte
[ 0.204664] 0x000000007abad000-0x000000007abb2000 20K RW NX pte
[ 0.204664] 0x000000007abb2000-0x000000007abb5000 12K ro x pte
[ 0.204664] 0x000000007abb5000-0x000000007abbb000 24K RW NX pte
[ 0.204664] 0x000000007abbb000-0x000000007abbc000 4K ro x pte
[ 0.204664] 0x000000007abbc000-0x000000007abc1000 20K RW NX pte
[ 0.204664] 0x000000007abc1000-0x000000007abc2000 4K ro x pte
[ 0.204664] 0x000000007abc2000-0x000000007abc7000 20K RW NX pte
[ 0.204664] 0x000000007abc7000-0x000000007abc8000 4K ro x pte
[ 0.204664] 0x000000007abc8000-0x000000007abcd000 20K RW NX pte
[ 0.204664] 0x000000007abcd000-0x000000007abce000 4K ro x pte
[ 0.204664] 0x000000007abce000-0x000000007abd2000 16K RW NX pte
[ 0.204664] 0x000000007abd2000-0x000000007abde000 48K ro x pte
[ 0.204664] 0x000000007abde000-0x000000007abe6000 32K RW NX pte
[ 0.204664] 0x000000007abe6000-0x000000007abf2000 48K ro x pte
[ 0.204664] 0x000000007abf2000-0x000000007abfa000 32K RW NX pte
[ 0.204664] 0x000000007abfa000-0x000000007abfe000 16K ro x pte
[ 0.204664] 0x000000007abfe000-0x000000007ac04000 24K RW NX pte
[ 0.204664] 0x000000007ac04000-0x000000007ac08000 16K ro x pte
[ 0.204664] 0x000000007ac08000-0x000000007ac0e000 24K RW NX pte
[ 0.204664] 0x000000007ac0e000-0x000000007ac0f000 4K pte
[ 0.204664] 0x000000007ac0f000-0x000000007ae00000 1988K pte
[ 0.204664] 0x000000007ae00000-0x0000000080000000 82M pmd
[ 0.204664] 0x0000000080000000-0x00000000c0000000 1G pud
[ 0.204664] 0x00000000c0000000-0x00000000e0000000 512M pmd
[ 0.204664] 0x00000000e0000000-0x00000000f0000000 256M RW PSE x pmd
[ 0.204664] 0x00000000f0000000-0x00000000fe000000 224M pmd
[ 0.204664] 0x00000000fe000000-0x00000000fe011000 68K RW PCD x pte
[ 0.204664] 0x00000000fe011000-0x00000000fe200000 1980K pte
[ 0.204664] 0x00000000fe200000-0x00000000fec00000 10M pmd
[ 0.204664] 0x00000000fec00000-0x00000000fec01000 4K RW x pte
[ 0.204664] 0x00000000fec01000-0x00000000fed00000 1020K pte
[ 0.204664] 0x00000000fed00000-0x00000000fed04000 16K RW x pte
[ 0.204664] 0x00000000fed04000-0x00000000fee00000 1008K pte
[ 0.204664] 0x00000000fee00000-0x00000000fee01000 4K RW PCD x pte
[ 0.204664] 0x00000000fee01000-0x00000000ff000000 2044K pte
[ 0.204664] 0x00000000ff000000-0x0000000100000000 16M RW PSE x pmd
[ 0.204664] 0x0000000100000000-0x0000000440000000 13G pud
[ 0.204664] 0x0000000440000000-0x000000046bc00000 700M pmd
[ 0.204664] 0x000000046bc00000-0x000000046bc8c000 560K pte
[ 0.204664] 0x000000046bc8c000-0x000000046bc8e000 8K RW NX pte
[ 0.204664] 0x000000046bc8e000-0x000000046be00000 1480K pte
[ 0.204664] 0x000000046be00000-0x0000000480000000 322M pmd
[ 0.204664] 0x0000000480000000-0x0000008000000000 494G pud
[ 0.204664] 0x0000008000000000-0xffff800000000000 17179737600G pgd
[ 0.204664] ---[ Kernel Space ]---
[ 0.204664] 0xffff800000000000-0xffff808000000000 512G pgd
[ 0.204664] ---[ LDT remap ]---
[ 0.204664] 0xffff808000000000-0xffff810000000000 512G pgd
[ 0.204664] ---[ Low Kernel Mapping ]---
[ 0.204664] 0xffff810000000000-0xffff818000000000 512G pgd
[ 0.204664] ---[ vmalloc() Area ]---
[ 0.204664] 0xffff818000000000-0xffff820000000000 512G pgd
[ 0.204664] ---[ Vmemmap ]---
[ 0.204664] 0xffff820000000000-0xffff888000000000 6656G pgd
[ 0.204664] 0xffff888000000000-0xffff888000200000 2M RW NX pte
[ 0.204664] 0xffff888000200000-0xffff888078e00000 1932M RW PSE NX pmd
[ 0.204664] 0xffff888078e00000-0xffff888078f16000 1112K RW NX pte
[ 0.204664] 0xffff888078f16000-0xffff888079000000 936K pte
[ 0.204664] 0xffff888079000000-0xffff88807ac00000 28M pmd
[ 0.204664] 0xffff88807ac00000-0xffff88807ac0e000 56K pte
[ 0.204664] 0xffff88807ac0e000-0xffff88807ac0f000 4K RW NX pte
[ 0.204664] 0xffff88807ac0f000-0xffff88807ae00000 1988K pte
[ 0.204664] 0xffff88807ae00000-0xffff888080000000 82M pmd
[ 0.204664] 0xffff888080000000-0xffff888100000000 2G pud
[ 0.204664] 0xffff888100000000-0xffff888440000000 13G RW PSE NX pud
[ 0.204664] 0xffff888440000000-0xffff88847e000000 992M RW PSE NX pmd
[ 0.204664] 0xffff88847e000000-0xffff888480000000 32M pmd
[ 0.204664] 0xffff888480000000-0xffff890000000000 494G pud
[ 0.204664] 0xffff890000000000-0xffffc90000000000 64T pgd
[ 0.204664] 0xffffc90000000000-0xffffc90000005000 20K RW NX pte
[ 0.204664] 0xffffc90000005000-0xffffc90000006000 4K pte
[ 0.204664] 0xffffc90000006000-0xffffc90000007000 4K RW NX pte
[ 0.204664] 0xffffc90000007000-0xffffc90000008000 4K pte
[ 0.204664] 0xffffc90000008000-0xffffc90000010000 32K RW NX pte
[ 0.204664] 0xffffc90000010000-0xffffc90000011000 4K pte
[ 0.204664] 0xffffc90000011000-0xffffc90000012000 4K RW PCD NX pte
[ 0.204664] 0xffffc90000012000-0xffffc90000014000 8K pte
[ 0.204664] 0xffffc90000014000-0xffffc90000017000 12K RW NX pte
[ 0.204664] 0xffffc90000017000-0xffffc90000018000 4K pte
[ 0.204664] 0xffffc90000018000-0xffffc9000001c000 16K RW NX pte
[ 0.204664] 0xffffc9000001c000-0xffffc9000001d000 4K pte
[ 0.204664] 0xffffc9000001d000-0xffffc9000001e000 4K RW PCD NX pte
[ 0.204664] 0xffffc9000001e000-0xffffc90000020000 8K pte
[ 0.204664] 0xffffc90000020000-0xffffc90000023000 12K RW NX pte
[ 0.204664] 0xffffc90000023000-0xffffc90000024000 4K pte
[ 0.204664] 0xffffc90000024000-0xffffc90000026000 8K RW NX pte
[ 0.204664] 0xffffc90000026000-0xffffc90000028000 8K pte
[ 0.204664] 0xffffc90000028000-0xffffc9000002c000 16K RW NX pte
[ 0.204664] 0xffffc9000002c000-0xffffc90000030000 16K pte
[ 0.204664] 0xffffc90000030000-0xffffc90000033000 12K RW NX pte
[ 0.204664] 0xffffc90000033000-0xffffc90000034000 4K pte
[ 0.204664] 0xffffc90000034000-0xffffc90000036000 8K RW NX pte
[ 0.204664] 0xffffc90000036000-0xffffc90000038000 8K pte
[ 0.204664] 0xffffc90000038000-0xffffc9000003b000 12K RW NX pte
[ 0.204664] 0xffffc9000003b000-0xffffc90000080000 276K pte
[ 0.204664] 0xffffc90000080000-0xffffc900000c3000 268K RW NX pte
[ 0.204664] 0xffffc900000c3000-0xffffc90000200000 1268K pte
[ 0.204664] 0xffffc90000200000-0xffffc90040000000 1022M pmd
[ 0.204664] 0xffffc90040000000-0xffffc98000000000 511G pud
[ 0.204664] 0xffffc98000000000-0xffffea0000000000 33280G pgd
[ 0.204664] 0xffffea0000000000-0xffffea0002000000 32M RW PSE NX pmd
[ 0.204664] 0xffffea0002000000-0xffffea0004000000 32M pmd
[ 0.204664] 0xffffea0004000000-0xffffea0012000000 224M RW PSE NX pmd
[ 0.204664] 0xffffea0012000000-0xffffea0040000000 736M pmd
[ 0.204664] 0xffffea0040000000-0xffffea8000000000 511G pud
[ 0.204664] 0xffffea8000000000-0xfffffe0000000000 19968G pgd
[ 0.204664] ---[ CPU entry Area ]---
[ 0.204664] 0xfffffe0000000000-0xfffffe0000002000 8K ro GLB NX pte
[ 0.204664] 0xfffffe0000002000-0xfffffe0000003000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000003000-0xfffffe0000006000 12K ro GLB NX pte
[ 0.204664] 0xfffffe0000006000-0xfffffe0000007000 4K pte
[ 0.204664] 0xfffffe0000007000-0xfffffe0000008000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000008000-0xfffffe0000009000 4K pte
[ 0.204664] 0xfffffe0000009000-0xfffffe000000a000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000000a000-0xfffffe000000d000 12K pte
[ 0.204664] 0xfffffe000000d000-0xfffffe000000e000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000000e000-0xfffffe000000f000 4K pte
[ 0.204664] 0xfffffe000000f000-0xfffffe0000010000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000010000-0xfffffe0000011000 4K pte
[ 0.204664] 0xfffffe0000011000-0xfffffe0000012000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000012000-0xfffffe0000013000 4K pte
[ 0.204664] 0xfffffe0000013000-0xfffffe0000014000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000014000-0xfffffe0000034000 128K pte
[ 0.204664] 0xfffffe0000034000-0xfffffe0000035000 4K ro GLB NX pte
[ 0.204664] 0xfffffe0000035000-0xfffffe0000036000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000036000-0xfffffe0000039000 12K ro GLB NX pte
[ 0.204664] 0xfffffe0000039000-0xfffffe000003a000 4K pte
[ 0.204664] 0xfffffe000003a000-0xfffffe000003b000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000003b000-0xfffffe000003c000 4K pte
[ 0.204664] 0xfffffe000003c000-0xfffffe000003d000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000003d000-0xfffffe0000040000 12K pte
[ 0.204664] 0xfffffe0000040000-0xfffffe0000041000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000041000-0xfffffe0000042000 4K pte
[ 0.204664] 0xfffffe0000042000-0xfffffe0000043000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000043000-0xfffffe0000044000 4K pte
[ 0.204664] 0xfffffe0000044000-0xfffffe0000045000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000045000-0xfffffe0000046000 4K pte
[ 0.204664] 0xfffffe0000046000-0xfffffe0000047000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000047000-0xfffffe0000067000 128K pte
[ 0.204664] 0xfffffe0000067000-0xfffffe0000068000 4K ro GLB NX pte
[ 0.204664] 0xfffffe0000068000-0xfffffe0000069000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000069000-0xfffffe000006c000 12K ro GLB NX pte
[ 0.204664] 0xfffffe000006c000-0xfffffe000006d000 4K pte
[ 0.204664] 0xfffffe000006d000-0xfffffe000006e000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000006e000-0xfffffe000006f000 4K pte
[ 0.204664] 0xfffffe000006f000-0xfffffe0000070000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000070000-0xfffffe0000073000 12K pte
[ 0.204664] 0xfffffe0000073000-0xfffffe0000074000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000074000-0xfffffe0000075000 4K pte
[ 0.204664] 0xfffffe0000075000-0xfffffe0000076000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000076000-0xfffffe0000077000 4K pte
[ 0.204664] 0xfffffe0000077000-0xfffffe0000078000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000078000-0xfffffe0000079000 4K pte
[ 0.204664] 0xfffffe0000079000-0xfffffe000007a000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000007a000-0xfffffe000009a000 128K pte
[ 0.204664] 0xfffffe000009a000-0xfffffe000009b000 4K ro GLB NX pte
[ 0.204664] 0xfffffe000009b000-0xfffffe000009c000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000009c000-0xfffffe000009f000 12K ro GLB NX pte
[ 0.204664] 0xfffffe000009f000-0xfffffe00000a0000 4K pte
[ 0.204664] 0xfffffe00000a0000-0xfffffe00000a1000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000a1000-0xfffffe00000a2000 4K pte
[ 0.204664] 0xfffffe00000a2000-0xfffffe00000a3000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000a3000-0xfffffe00000a6000 12K pte
[ 0.204664] 0xfffffe00000a6000-0xfffffe00000a7000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000a7000-0xfffffe00000a8000 4K pte
[ 0.204664] 0xfffffe00000a8000-0xfffffe00000a9000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000a9000-0xfffffe00000aa000 4K pte
[ 0.204664] 0xfffffe00000aa000-0xfffffe00000ab000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000ab000-0xfffffe00000ac000 4K pte
[ 0.204664] 0xfffffe00000ac000-0xfffffe00000ad000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000ad000-0xfffffe00000cd000 128K pte
[ 0.204664] 0xfffffe00000cd000-0xfffffe00000ce000 4K ro GLB NX pte
[ 0.204664] 0xfffffe00000ce000-0xfffffe00000cf000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000cf000-0xfffffe00000d2000 12K ro GLB NX pte
[ 0.204664] 0xfffffe00000d2000-0xfffffe00000d3000 4K pte
[ 0.204664] 0xfffffe00000d3000-0xfffffe00000d4000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000d4000-0xfffffe00000d5000 4K pte
[ 0.204664] 0xfffffe00000d5000-0xfffffe00000d6000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000d6000-0xfffffe00000d9000 12K pte
[ 0.204664] 0xfffffe00000d9000-0xfffffe00000da000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000da000-0xfffffe00000db000 4K pte
[ 0.204664] 0xfffffe00000db000-0xfffffe00000dc000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000dc000-0xfffffe00000dd000 4K pte
[ 0.204664] 0xfffffe00000dd000-0xfffffe00000de000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000de000-0xfffffe00000df000 4K pte
[ 0.204664] 0xfffffe00000df000-0xfffffe00000e0000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00000e0000-0xfffffe0000100000 128K pte
[ 0.204664] 0xfffffe0000100000-0xfffffe0000101000 4K ro GLB NX pte
[ 0.204664] 0xfffffe0000101000-0xfffffe0000102000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000102000-0xfffffe0000105000 12K ro GLB NX pte
[ 0.204664] 0xfffffe0000105000-0xfffffe0000106000 4K pte
[ 0.204664] 0xfffffe0000106000-0xfffffe0000107000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000107000-0xfffffe0000108000 4K pte
[ 0.204664] 0xfffffe0000108000-0xfffffe0000109000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000109000-0xfffffe000010c000 12K pte
[ 0.204664] 0xfffffe000010c000-0xfffffe000010d000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000010d000-0xfffffe000010e000 4K pte
[ 0.204664] 0xfffffe000010e000-0xfffffe000010f000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000010f000-0xfffffe0000110000 4K pte
[ 0.204664] 0xfffffe0000110000-0xfffffe0000111000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000111000-0xfffffe0000112000 4K pte
[ 0.204664] 0xfffffe0000112000-0xfffffe0000113000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000113000-0xfffffe0000133000 128K pte
[ 0.204664] 0xfffffe0000133000-0xfffffe0000134000 4K ro GLB NX pte
[ 0.204664] 0xfffffe0000134000-0xfffffe0000135000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000135000-0xfffffe0000138000 12K ro GLB NX pte
[ 0.204664] 0xfffffe0000138000-0xfffffe0000139000 4K pte
[ 0.204664] 0xfffffe0000139000-0xfffffe000013a000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000013a000-0xfffffe000013b000 4K pte
[ 0.204664] 0xfffffe000013b000-0xfffffe000013c000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000013c000-0xfffffe000013f000 12K pte
[ 0.204664] 0xfffffe000013f000-0xfffffe0000140000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000140000-0xfffffe0000141000 4K pte
[ 0.204664] 0xfffffe0000141000-0xfffffe0000142000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000142000-0xfffffe0000143000 4K pte
[ 0.204664] 0xfffffe0000143000-0xfffffe0000144000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000144000-0xfffffe0000145000 4K pte
[ 0.204664] 0xfffffe0000145000-0xfffffe0000146000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000146000-0xfffffe0000166000 128K pte
[ 0.204664] 0xfffffe0000166000-0xfffffe0000167000 4K ro GLB NX pte
[ 0.204664] 0xfffffe0000167000-0xfffffe0000168000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000168000-0xfffffe000016b000 12K ro GLB NX pte
[ 0.204664] 0xfffffe000016b000-0xfffffe000016c000 4K pte
[ 0.204664] 0xfffffe000016c000-0xfffffe000016d000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000016d000-0xfffffe000016e000 4K pte
[ 0.204664] 0xfffffe000016e000-0xfffffe000016f000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000016f000-0xfffffe0000172000 12K pte
[ 0.204664] 0xfffffe0000172000-0xfffffe0000173000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000173000-0xfffffe0000174000 4K pte
[ 0.204664] 0xfffffe0000174000-0xfffffe0000175000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000175000-0xfffffe0000176000 4K pte
[ 0.204664] 0xfffffe0000176000-0xfffffe0000177000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000177000-0xfffffe0000178000 4K pte
[ 0.204664] 0xfffffe0000178000-0xfffffe0000179000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000179000-0xfffffe0000199000 128K pte
[ 0.204664] 0xfffffe0000199000-0xfffffe000019a000 4K ro GLB NX pte
[ 0.204664] 0xfffffe000019a000-0xfffffe000019b000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000019b000-0xfffffe000019e000 12K ro GLB NX pte
[ 0.204664] 0xfffffe000019e000-0xfffffe000019f000 4K pte
[ 0.204664] 0xfffffe000019f000-0xfffffe00001a0000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001a0000-0xfffffe00001a1000 4K pte
[ 0.204664] 0xfffffe00001a1000-0xfffffe00001a2000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001a2000-0xfffffe00001a5000 12K pte
[ 0.204664] 0xfffffe00001a5000-0xfffffe00001a6000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001a6000-0xfffffe00001a7000 4K pte
[ 0.204664] 0xfffffe00001a7000-0xfffffe00001a8000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001a8000-0xfffffe00001a9000 4K pte
[ 0.204664] 0xfffffe00001a9000-0xfffffe00001aa000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001aa000-0xfffffe00001ab000 4K pte
[ 0.204664] 0xfffffe00001ab000-0xfffffe00001ac000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001ac000-0xfffffe00001cc000 128K pte
[ 0.204664] 0xfffffe00001cc000-0xfffffe00001cd000 4K ro GLB NX pte
[ 0.204664] 0xfffffe00001cd000-0xfffffe00001ce000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001ce000-0xfffffe00001d1000 12K ro GLB NX pte
[ 0.204664] 0xfffffe00001d1000-0xfffffe00001d2000 4K pte
[ 0.204664] 0xfffffe00001d2000-0xfffffe00001d3000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001d3000-0xfffffe00001d4000 4K pte
[ 0.204664] 0xfffffe00001d4000-0xfffffe00001d5000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001d5000-0xfffffe00001d8000 12K pte
[ 0.204664] 0xfffffe00001d8000-0xfffffe00001d9000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001d9000-0xfffffe00001da000 4K pte
[ 0.204664] 0xfffffe00001da000-0xfffffe00001db000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001db000-0xfffffe00001dc000 4K pte
[ 0.204664] 0xfffffe00001dc000-0xfffffe00001dd000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001dd000-0xfffffe00001de000 4K pte
[ 0.204664] 0xfffffe00001de000-0xfffffe00001df000 4K RW GLB NX pte
[ 0.204664] 0xfffffe00001df000-0xfffffe00001ff000 128K pte
[ 0.204664] 0xfffffe00001ff000-0xfffffe0000200000 4K ro GLB NX pte
[ 0.204664] 0xfffffe0000200000-0xfffffe0000201000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000201000-0xfffffe0000204000 12K ro GLB NX pte
[ 0.204664] 0xfffffe0000204000-0xfffffe0000205000 4K pte
[ 0.204664] 0xfffffe0000205000-0xfffffe0000206000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000206000-0xfffffe0000207000 4K pte
[ 0.204664] 0xfffffe0000207000-0xfffffe0000208000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000208000-0xfffffe000020b000 12K pte
[ 0.204664] 0xfffffe000020b000-0xfffffe000020c000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000020c000-0xfffffe000020d000 4K pte
[ 0.204664] 0xfffffe000020d000-0xfffffe000020e000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000020e000-0xfffffe000020f000 4K pte
[ 0.204664] 0xfffffe000020f000-0xfffffe0000210000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000210000-0xfffffe0000211000 4K pte
[ 0.204664] 0xfffffe0000211000-0xfffffe0000212000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000212000-0xfffffe0000232000 128K pte
[ 0.204664] 0xfffffe0000232000-0xfffffe0000233000 4K ro GLB NX pte
[ 0.204664] 0xfffffe0000233000-0xfffffe0000234000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000234000-0xfffffe0000237000 12K ro GLB NX pte
[ 0.204664] 0xfffffe0000237000-0xfffffe0000238000 4K pte
[ 0.204664] 0xfffffe0000238000-0xfffffe0000239000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000239000-0xfffffe000023a000 4K pte
[ 0.204664] 0xfffffe000023a000-0xfffffe000023b000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000023b000-0xfffffe000023e000 12K pte
[ 0.204664] 0xfffffe000023e000-0xfffffe000023f000 4K RW GLB NX pte
[ 0.204664] 0xfffffe000023f000-0xfffffe0000240000 4K pte
[ 0.204664] 0xfffffe0000240000-0xfffffe0000241000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000241000-0xfffffe0000242000 4K pte
[ 0.204664] 0xfffffe0000242000-0xfffffe0000243000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000243000-0xfffffe0000244000 4K pte
[ 0.204664] 0xfffffe0000244000-0xfffffe0000245000 4K RW GLB NX pte
[ 0.204664] 0xfffffe0000245000-0xfffffe0000265000 128K pte
[ 0.204664] 0xfffffe0000265000-0xfffffe0000400000 1644K pte
[ 0.204664] 0xfffffe0000400000-0xfffffe0040000000 1020M pmd
[ 0.204664] 0xfffffe0040000000-0xfffffe8000000000 511G pud
[ 0.204664] 0xfffffe8000000000-0xffffff0000000000 512G pgd
[ 0.204664] ---[ ESPfix Area ]---
[ 0.204664] 0xffffff0000000000-0xffffff1100000000 68G pud
[ 0.204664] 0xffffff1100000000-0xffffff1100009000 36K pte
[ 0.204664] 0xffffff1100009000-0xffffff110000a000 4K ro GLB NX pte
[ 0.204664] 0xffffff110000a000-0xffffff1100019000 60K pte
[ 0.204664] 0xffffff1100019000-0xffffff110001a000 4K ro GLB NX pte
[ 0.204664] 0xffffff110001a000-0xffffff1100029000 60K pte
[ 0.204664] 0xffffff1100029000-0xffffff110002a000 4K ro GLB NX pte
[ 0.204664] 0xffffff110002a000-0xffffff1100039000 60K pte
[ 0.204664] 0xffffff1100039000-0xffffff110003a000 4K ro GLB NX pte
[ 0.204664] 0xffffff110003a000-0xffffff1100049000 60K pte
[ 0.204664] 0xffffff1100049000-0xffffff110004a000 4K ro GLB NX pte
[ 0.204664] 0xffffff110004a000-0xffffff1100059000 60K pte
[ 0.204664] 0xffffff1100059000-0xffffff110005a000 4K ro GLB NX pte
[ 0.204664] 0xffffff110005a000-0xffffff1100069000 60K pte
[ 0.204664] 0xffffff1100069000-0xffffff110006a000 4K ro GLB NX pte
[ 0.204664] 0xffffff110006a000-0xffffff1100079000 60K pte
[ 0.204664] ... 131059 entries skipped ...
[ 0.204664] ---[ EFI Runtime Services ]---
[ 0.204664] 0xffffffef00000000-0xfffffffec0000000 63G pud
[ 0.204664] 0xfffffffec0000000-0xfffffffee7c00000 636M pmd
[ 0.204664] 0xfffffffee7c00000-0xfffffffee7ca2000 648K pte
[ 0.204664] 0xfffffffee7ca2000-0xfffffffee7ce2000 256K pte
[ 0.204664] 0xfffffffee7ce2000-0xfffffffee7dd4000 968K pte
[ 0.204664] 0xfffffffee7dd4000-0xfffffffee7e00000 176K pte
[ 0.204664] 0xfffffffee7e00000-0xfffffffee9200000 20M pmd
[ 0.204664] 0xfffffffee9200000-0xfffffffee92a2000 648K pte
[ 0.204664] 0xfffffffee92a2000-0xfffffffee92b1000 60K pte
[ 0.204664] 0xfffffffee92b1000-0xfffffffee9400000 1340K RW x pte
[ 0.204664] 0xfffffffee9400000-0xfffffffeec800000 52M RW PSE x pmd
[ 0.204664] 0xfffffffeec800000-0xfffffffeec92c000 1200K RW x pte
[ 0.204664] 0xfffffffeec92c000-0xfffffffeeca00000 848K pte
[ 0.204664] 0xfffffffeeca00000-0xfffffffeed800000 14M pmd
[ 0.204664] 0xfffffffeed800000-0xfffffffeed966000 1432K pte
[ 0.204664] 0xfffffffeed966000-0xfffffffeedaef000 1572K pte
[ 0.204664] 0xfffffffeedaef000-0xfffffffeedc00000 1092K pte
[ 0.204664] 0xfffffffeedc00000-0xfffffffeee000000 4M pmd
[ 0.204664] 0xfffffffeee000000-0xfffffffeee116000 1112K pte
[ 0.204664] 0xfffffffeee116000-0xfffffffeee149000 204K pte
[ 0.204664] 0xfffffffeee149000-0xfffffffeee200000 732K RW NX pte
[ 0.204664] 0xfffffffeee200000-0xfffffffeee600000 4M RW PSE NX pmd
[ 0.204664] 0xfffffffeee600000-0xfffffffeee76b000 1452K RW NX pte
[ 0.204664] 0xfffffffeee76b000-0xfffffffeee76e000 12K ro x pte
[ 0.204664] 0xfffffffeee76e000-0xfffffffeee773000 20K RW NX pte
[ 0.204664] 0xfffffffeee773000-0xfffffffeee775000 8K ro x pte
[ 0.204664] 0xfffffffeee775000-0xfffffffeee77a000 20K RW NX pte
[ 0.204664] 0xfffffffeee77a000-0xfffffffeee77e000 16K ro x pte
[ 0.204664] 0xfffffffeee77e000-0xfffffffeee783000 20K RW NX pte
[ 0.204664] 0xfffffffeee783000-0xfffffffeee784000 4K ro x pte
[ 0.204664] 0xfffffffeee784000-0xfffffffeee788000 16K RW NX pte
[ 0.204664] 0xfffffffeee788000-0xfffffffeee789000 4K ro x pte
[ 0.204664] 0xfffffffeee789000-0xfffffffeee78e000 20K RW NX pte
[ 0.204664] 0xfffffffeee78e000-0xfffffffeee79c000 56K ro x pte
[ 0.204664] 0xfffffffeee79c000-0xfffffffeee7a6000 40K RW NX pte
[ 0.204664] 0xfffffffeee7a6000-0xfffffffeee7a7000 4K ro x pte
[ 0.204664] 0xfffffffeee7a7000-0xfffffffeee7ac000 20K RW NX pte
[ 0.204664] 0xfffffffeee7ac000-0xfffffffeee7ad000 4K ro x pte
[ 0.204664] 0xfffffffeee7ad000-0xfffffffeee7b2000 20K RW NX pte
[ 0.204664] 0xfffffffeee7b2000-0xfffffffeee7b5000 12K ro x pte
[ 0.204664] 0xfffffffeee7b5000-0xfffffffeee7bb000 24K RW NX pte
[ 0.204664] 0xfffffffeee7bb000-0xfffffffeee7bc000 4K ro x pte
[ 0.204664] 0xfffffffeee7bc000-0xfffffffeee7c1000 20K RW NX pte
[ 0.204664] 0xfffffffeee7c1000-0xfffffffeee7c2000 4K ro x pte
[ 0.204664] 0xfffffffeee7c2000-0xfffffffeee7c7000 20K RW NX pte
[ 0.204664] 0xfffffffeee7c7000-0xfffffffeee7c8000 4K ro x pte
[ 0.204664] 0xfffffffeee7c8000-0xfffffffeee7cd000 20K RW NX pte
[ 0.204664] 0xfffffffeee7cd000-0xfffffffeee7ce000 4K ro x pte
[ 0.204664] 0xfffffffeee7ce000-0xfffffffeee7d2000 16K RW NX pte
[ 0.204664] 0xfffffffeee7d2000-0xfffffffeee7de000 48K ro x pte
[ 0.204664] 0xfffffffeee7de000-0xfffffffeee7e6000 32K RW NX pte
[ 0.204664] 0xfffffffeee7e6000-0xfffffffeee7f2000 48K ro x pte
[ 0.204664] 0xfffffffeee7f2000-0xfffffffeee7fa000 32K RW NX pte
[ 0.204664] 0xfffffffeee7fa000-0xfffffffeee7fe000 16K ro x pte
[ 0.204664] 0xfffffffeee7fe000-0xfffffffeee804000 24K RW NX pte
[ 0.204664] 0xfffffffeee804000-0xfffffffeee808000 16K ro x pte
[ 0.204664] 0xfffffffeee808000-0xfffffffeee80e000 24K RW NX pte
[ 0.204664] 0xfffffffeee80e000-0xfffffffeee80f000 4K pte
[ 0.204664] 0xfffffffeee80f000-0xfffffffeeea00000 1988K pte
[ 0.204664] 0xfffffffeeea00000-0xfffffffefea00000 256M RW PSE x pmd
[ 0.204664] 0xfffffffefea00000-0xfffffffefea11000 68K RW PCD x pte
[ 0.204664] 0xfffffffefea11000-0xfffffffefec00000 1980K pte
[ 0.204664] 0xfffffffefec00000-0xfffffffefec01000 4K RW x pte
[ 0.204664] 0xfffffffefec01000-0xfffffffefed00000 1020K pte
[ 0.204664] 0xfffffffefed00000-0xfffffffefed04000 16K RW x pte
[ 0.204664] 0xfffffffefed04000-0xfffffffefee00000 1008K pte
[ 0.204664] 0xfffffffefee00000-0xfffffffefee01000 4K RW PCD x pte
[ 0.204664] 0xfffffffefee01000-0xfffffffeff000000 2044K pte
[ 0.204664] 0xfffffffeff000000-0xffffffff00000000 16M RW PSE x pmd
[ 0.204664] 0xffffffff00000000-0xffffffff80000000 2G pud
[ 0.204664] ---[ High Kernel Mapping ]---
[ 0.204664] 0xffffffff80000000-0xffffffff81000000 16M pmd
[ 0.204664] 0xffffffff81000000-0xffffffff81800000 8M RW PSE x pmd
[ 0.204664] 0xffffffff81800000-0xffffffff81a00000 2M RW PSE GLB x pmd
[ 0.204664] 0xffffffff81a00000-0xffffffff82600000 12M RW PSE x pmd
[ 0.204664] 0xffffffff82600000-0xffffffffa0000000 474M pmd
[ 0.204664] ---[ Modules ]---
[ 0.204664] 0xffffffffa0000000-0xffffffffff000000 1520M pmd
[ 0.204664] ---[ End Modules ]---
[ 0.204664] 0xffffffffff000000-0xffffffffff200000 2M pmd
[ 0.204664] 0xffffffffff200000-0xffffffffff57b000 3564K pte
[ 0.204664] ---[ Fixmap Area ]---
[ 0.204664] 0xffffffffff57b000-0xffffffffff5fc000 516K pte
[ 0.204664] 0xffffffffff5fc000-0xffffffffff5fe000 8K RW PWT PCD NX pte
[ 0.204664] 0xffffffffff5fe000-0xffffffffff600000 8K pte
[ 0.204664] 0xffffffffff600000-0xffffffffff601000 4K USR ro NX pte
[ 0.204664] 0xffffffffff601000-0xffffffffff800000 2044K pte
[ 0.204664] 0xffffffffff800000-0x0000000000000000 8M pmd
[ 0.204664] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.204664] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.204664] mce: CPU0: Thermal monitoring enabled (TM1)
[ 0.204664] process: using mwait in idle threads
[ 0.204664] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.204664] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.204664] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.204664] Spectre V2 : Mitigation: Full generic retpoline
[ 0.204664] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.204664] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.204664] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.204664] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
[ 0.204664] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.204664] MDS: Mitigation: Clear CPU buffers
[ 0.204664] Freeing SMP alternatives memory: 24K
[ 0.204664] smpboot: CPU0: Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz (family: 0x6, model: 0x9e, stepping: 0xa)
[ 0.209679] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.209692] ... version: 4
[ 0.209693] ... bit width: 48
[ 0.209694] ... generic registers: 4
[ 0.209696] ... value mask: 0000ffffffffffff
[ 0.209698] ... max period: 00007fffffffffff
[ 0.209699] ... fixed-purpose events: 3
[ 0.209701] ... event mask: 000000070000000f
[ 0.211671] rcu: Hierarchical SRCU implementation.
[ 0.215670] smp: Bringing up secondary CPUs ...
[ 0.223682] x86: Booting SMP configuration:
[ 0.223685] .... node #0, CPUs: #1 #2 #3 #4 #5 #6
[ 0.264372] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[ 0.271685] #7 #8 #9 #10 #11
[ 0.304215] smp: Brought up 1 node, 12 CPUs
[ 0.304215] smpboot: Max logical packages: 1
[ 0.304215] smpboot: Total of 12 processors activated (52799.90 BogoMIPS)
[ 0.305059] devtmpfs: initialized
[ 0.305059] PM: Registering ACPI NVS region [mem 0x7a435000-0x7a548fff] (1130496 bytes)
[ 0.305059] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.305059] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.305059] pinctrl core: initialized pinctrl subsystem
[ 0.305740] NET: Registered protocol family 16
[ 0.305847] audit: initializing netlink subsys (disabled)
[ 0.305853] audit: type=2000 audit(1595193048.102:1): state=initialized audit_enabled=0 res=1
[ 0.305853] cpuidle: using governor ladder
[ 0.305853] cpuidle: using governor menu
[ 0.305853] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.305853] ACPI: bus type PCI registered
[ 0.305853] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.305853] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[ 0.305853] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[ 0.305853] PCI: Using configuration type 1 for base access
[ 0.306146] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.307960] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.309730] ACPI: Added _OSI(Module Device)
[ 0.309731] ACPI: Added _OSI(Processor Device)
[ 0.309732] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.309733] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.309734] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.309735] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.309736] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.369443] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.GPLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.369453] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.369456] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.369458] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.TPLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.369463] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.369466] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.369467] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.GUPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.369472] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.369474] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.369476] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.TUPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.369480] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.369482] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.369515] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS01._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.369520] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.369523] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.369524] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS01._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.369528] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.369531] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.370698] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS02._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.370704] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.370707] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.370708] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS02._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.370713] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.370716] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.371870] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS03._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.371875] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.371878] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.371880] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS03._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.371884] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.371887] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.373038] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS04._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.373044] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.373046] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.373048] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS04._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.373052] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.373055] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.374209] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS05._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.374214] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.374217] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.374219] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS05._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.374223] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.374226] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.375380] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS06._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.375385] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.375388] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.375389] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS06._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.375394] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.375397] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.376549] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS07._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.376554] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.376557] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.376558] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS07._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.376563] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.376566] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.377719] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS08._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.377724] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.377727] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.377728] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS08._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.377733] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.377736] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.378889] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS09._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.378894] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.378897] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.378899] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS09._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.378903] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.378906] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.380058] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS10._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.380063] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.380066] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.380068] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS10._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.380072] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.380075] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.381227] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS11._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.381233] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.381236] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.381237] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS11._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.381241] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.381244] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.382395] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS12._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.382401] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.382404] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.382405] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS12._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.382409] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.382412] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.383564] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS13._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.383570] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.383573] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.383574] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS13._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.383579] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.383581] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.384736] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS14._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.384741] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.384744] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.384745] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.HS14._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.384750] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.384753] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.385878] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.USR1._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.385883] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.385886] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.385887] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.USR1._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.385892] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.385895] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.385898] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.USR2._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.385902] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.385905] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.385906] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.USR2._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.385911] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.385914] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.385959] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS01._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.385964] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.385967] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.385968] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS01._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.385973] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.385975] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386016] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS02._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386021] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386023] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386025] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS02._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386029] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386032] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386072] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS03._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386077] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386079] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386081] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS03._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386085] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386088] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386127] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS04._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386132] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386135] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386136] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS04._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386141] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386143] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386183] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS05._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386188] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386191] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386192] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS05._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386197] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386200] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386239] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS06._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386244] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386246] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386248] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS06._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386252] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386255] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386294] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS07._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386299] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386302] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386303] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS07._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386308] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386311] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386350] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS08._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386355] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386358] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386359] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS08._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386364] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386366] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386406] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS09._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386411] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386414] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386415] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS09._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386420] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386423] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386462] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS10._UPC], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386467] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386470] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.386471] ACPI BIOS Error (bug): Failure creating named object [\_SB.PCI0.XHC.RHUB.SS10._PLD], AE_ALREADY_EXISTS (20190816/dswload2-326)
[ 0.386476] ACPI Error: AE_ALREADY_EXISTS, During name lookup/catalog (20190816/psobject-220)
[ 0.386479] ACPI: Skipping parse of AML opcode: OpcodeName unavailable (0x0014)
[ 0.388752] ACPI: 12 ACPI AML tables successfully acquired and loaded
[ 0.400626] ACPI: Dynamic OEM Table Load:
[ 0.400632] ACPI: SSDT 0xFFFF88846AC09800 0005BE (v02 PmRef Cpu0Ist 00003000 INTL 20160527)
[ 0.402442] ACPI: \_SB_.PR00: _OSC native thermal LVT Acked
[ 0.404129] ACPI: Dynamic OEM Table Load:
[ 0.404135] ACPI: SSDT 0xFFFF88846B2E0800 000400 (v02 PmRef Cpu0Cst 00003001 INTL 20160527)
[ 0.405913] ACPI: Dynamic OEM Table Load:
[ 0.405917] ACPI: SSDT 0xFFFF88846B776E00 00011B (v02 PmRef Cpu0Hwp 00003000 INTL 20160527)
[ 0.407593] ACPI: Dynamic OEM Table Load:
[ 0.407598] ACPI: SSDT 0xFFFF88846AC09000 000724 (v02 PmRef HwpLvt 00003000 INTL 20160527)
[ 0.409671] ACPI: Dynamic OEM Table Load:
[ 0.409680] ACPI: SSDT 0xFFFF88846A8E2000 000EF1 (v02 PmRef ApIst 00003000 INTL 20160527)
[ 0.412117] ACPI: Dynamic OEM Table Load:
[ 0.412121] ACPI: SSDT 0xFFFF88846B2E6800 000317 (v02 PmRef ApHwp 00003000 INTL 20160527)
[ 0.413922] ACPI: Dynamic OEM Table Load:
[ 0.413927] ACPI: SSDT 0xFFFF88846B2E6C00 00030A (v02 PmRef ApCst 00003000 INTL 20160527)
[ 0.420562] ACPI: EC: EC started
[ 0.420562] ACPI: EC: interrupt blocked
[ 0.420650] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
[ 0.420652] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x37, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.420653] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.420654] ACPI: Interpreter enabled
[ 0.420710] ACPI: (supports S0 S3 S4 S5)
[ 0.420711] ACPI: Using IOAPIC for interrupt routing
[ 0.420759] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.422074] ACPI: Enabled 6 GPEs in block 00 to 7F
[ 0.425180] ACPI: Power Resource [PG00] (on)
[ 0.455540] ACPI: Power Resource [USBC] (on)
[ 0.459244] ACPI: Power Resource [V0PR] (on)
[ 0.459444] ACPI: Power Resource [V1PR] (on)
[ 0.459635] ACPI: Power Resource [V2PR] (on)
[ 0.466431] ACPI: Power Resource [WRST] (on)
[ 0.472980] ACPI: Power Resource [FN00] (off)
[ 0.473070] ACPI: Power Resource [FN01] (off)
[ 0.473161] ACPI: Power Resource [FN02] (off)
[ 0.473248] ACPI: Power Resource [FN03] (off)
[ 0.473333] ACPI: Power Resource [FN04] (off)
[ 0.474110] ACPI: Power Resource [PIN] (off)
[ 0.474597] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.474603] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.474812] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME]
[ 0.475002] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability LTR]
[ 0.475003] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.475877] PCI host bridge to bus 0000:00
[ 0.475879] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.475880] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.475881] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.475882] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[ 0.475883] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[ 0.475884] pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
[ 0.475885] pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
[ 0.475886] pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
[ 0.475887] pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
[ 0.475888] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[ 0.475889] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.475899] pci 0000:00:00.0: [8086:3ec4] type 00 class 0x060000
[ 0.476358] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
[ 0.476412] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[ 0.476682] pci 0000:00:02.0: [8086:3e9b] type 00 class 0x030000
[ 0.476694] pci 0000:00:02.0: reg 0x10: [mem 0xa2000000-0xa2ffffff 64bit]
[ 0.476700] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff 64bit pref]
[ 0.476705] pci 0000:00:02.0: reg 0x20: [io 0x5000-0x503f]
[ 0.476723] pci 0000:00:02.0: BAR 2: assigned to efifb
[ 0.476882] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
[ 0.476895] pci 0000:00:04.0: reg 0x10: [mem 0xa4410000-0xa4417fff 64bit]
[ 0.477114] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000
[ 0.477125] pci 0000:00:08.0: reg 0x10: [mem 0xa442b000-0xa442bfff 64bit]
[ 0.477363] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000
[ 0.477412] pci 0000:00:12.0: reg 0x10: [mem 0xa442a000-0xa442afff 64bit]
[ 0.477752] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330
[ 0.477798] pci 0000:00:14.0: reg 0x10: [mem 0xa4400000-0xa440ffff 64bit]
[ 0.477949] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.478187] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000
[ 0.478225] pci 0000:00:14.2: reg 0x10: [mem 0xa4422000-0xa4423fff 64bit]
[ 0.478245] pci 0000:00:14.2: reg 0x18: [mem 0xa4429000-0xa4429fff 64bit]
[ 0.479042] pci 0000:00:14.3: [8086:a370] type 00 class 0x028000
[ 0.480483] pci 0000:00:14.3: reg 0x10: [mem 0xa441c000-0xa441ffff 64bit]
[ 0.485357] pci 0000:00:14.3: PME# supported from D0 D3hot D3cold
[ 0.487143] pci 0000:00:15.0: [8086:a368] type 00 class 0x0c8000
[ 0.487858] pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit]
[ 0.490396] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000
[ 0.490441] pci 0000:00:16.0: reg 0x10: [mem 0xa4427000-0xa4427fff 64bit]
[ 0.490570] pci 0000:00:16.0: PME# supported from D3hot
[ 0.490886] pci 0000:00:17.0: [8086:a353] type 00 class 0x010601
[ 0.490926] pci 0000:00:17.0: reg 0x10: [mem 0xa4420000-0xa4421fff]
[ 0.490941] pci 0000:00:17.0: reg 0x14: [mem 0xa4426000-0xa44260ff]
[ 0.490957] pci 0000:00:17.0: reg 0x18: [io 0x5090-0x5097]
[ 0.490973] pci 0000:00:17.0: reg 0x1c: [io 0x5080-0x5083]
[ 0.490988] pci 0000:00:17.0: reg 0x20: [io 0x5060-0x507f]
[ 0.491004] pci 0000:00:17.0: reg 0x24: [mem 0xa4425000-0xa44257ff]
[ 0.491094] pci 0000:00:17.0: PME# supported from D3hot
[ 0.491406] pci 0000:00:1d.0: [8086:a336] type 01 class 0x060400
[ 0.491641] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.492001] pci 0000:00:1d.7: [8086:a337] type 01 class 0x060400
[ 0.492236] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[ 0.492531] pci 0000:00:1f.0: [8086:a30d] type 00 class 0x060100
[ 0.492978] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300
[ 0.493057] pci 0000:00:1f.3: reg 0x10: [mem 0xa4418000-0xa441bfff 64bit]
[ 0.493131] pci 0000:00:1f.3: reg 0x20: [mem 0xa4100000-0xa41fffff 64bit]
[ 0.493286] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.493675] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500
[ 0.493846] pci 0000:00:1f.4: reg 0x10: [mem 0xa4424000-0xa44240ff 64bit]
[ 0.494061] pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
[ 0.494491] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000
[ 0.494520] pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff]
[ 0.494778] pci 0000:01:00.0: [10de:1c8c] type 00 class 0x030200
[ 0.494793] pci 0000:01:00.0: reg 0x10: [mem 0xa3000000-0xa3ffffff]
[ 0.494801] pci 0000:01:00.0: reg 0x14: [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.494809] pci 0000:01:00.0: reg 0x1c: [mem 0xa0000000-0xa1ffffff 64bit pref]
[ 0.494814] pci 0000:01:00.0: reg 0x24: [io 0x4000-0x407f]
[ 0.494820] pci 0000:01:00.0: reg 0x30: [mem 0xa4000000-0xa407ffff pref]
[ 0.494835] pci 0000:01:00.0: Enabling HDA controller
[ 0.494987] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.494989] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 0.494991] pci 0000:00:01.0: bridge window [mem 0xa3000000-0xa40fffff]
[ 0.494994] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[ 0.495128] pci 0000:02:00.0: [10ec:8168] type 00 class 0x020000
[ 0.495173] pci 0000:02:00.0: reg 0x10: [io 0x3000-0x30ff]
[ 0.495213] pci 0000:02:00.0: reg 0x18: [mem 0xa4304000-0xa4304fff 64bit]
[ 0.495237] pci 0000:02:00.0: reg 0x20: [mem 0xa4300000-0xa4303fff 64bit]
[ 0.495391] pci 0000:02:00.0: supports D1 D2
[ 0.495392] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.495673] pci 0000:00:1d.0: PCI bridge to [bus 02]
[ 0.495673] pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
[ 0.495673] pci 0000:00:1d.0: bridge window [mem 0xa4300000-0xa43fffff]
[ 0.495785] pci 0000:03:00.0: [10ec:5229] type 00 class 0xff0000
[ 0.495821] pci 0000:03:00.0: reg 0x10: [mem 0xa4200000-0xa4200fff]
[ 0.495990] pci 0000:03:00.0: supports D1 D2
[ 0.495991] pci 0000:03:00.0: PME# supported from D1 D2 D3hot
[ 0.496213] pci 0000:00:1d.7: PCI bridge to [bus 03]
[ 0.496222] pci 0000:00:1d.7: bridge window [mem 0xa4200000-0xa42fffff]
[ 0.498231] ACPI: PCI Interrupt Link [LNKA] (IRQs) *0
[ 0.498270] ACPI: PCI Interrupt Link [LNKB] (IRQs) *1
[ 0.498308] ACPI: PCI Interrupt Link [LNKC] (IRQs) *0
[ 0.498345] ACPI: PCI Interrupt Link [LNKD] (IRQs) *0
[ 0.498382] ACPI: PCI Interrupt Link [LNKE] (IRQs) *0
[ 0.498419] ACPI: PCI Interrupt Link [LNKF] (IRQs) *0
[ 0.498455] ACPI: PCI Interrupt Link [LNKG] (IRQs) *0
[ 0.498492] ACPI: PCI Interrupt Link [LNKH] (IRQs) *0
[ 0.499828] ACPI: EC: interrupt unblocked
[ 0.499859] ACPI: EC: event unblocked
[ 0.499891] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x37, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.499892] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions and events
[ 0.499978] iommu: Default domain type: Translated
[ 0.499992] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.499992] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.499992] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.499992] vgaarb: loaded
[ 0.499992] SCSI subsystem initialized
[ 0.499992] libata version 3.00 loaded.
[ 0.499992] ACPI: bus type USB registered
[ 0.499992] usbcore: registered new interface driver usbfs
[ 0.499992] usbcore: registered new interface driver hub
[ 0.499992] usbcore: registered new device driver usb
[ 0.499992] pps_core: LinuxPPS API ver. 1 registered
[ 0.499992] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.499992] PTP clock support registered
[ 0.499992] Registered efivars operations
[ 0.499992] PCI: Using ACPI for IRQ routing
[ 0.586189] PCI: pci_cache_line_size set to 64 bytes
[ 0.586527] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 0.586528] e820: reserve RAM buffer [mem 0x7772b000-0x77ffffff]
[ 0.586529] e820: reserve RAM buffer [mem 0x78f16000-0x7bffffff]
[ 0.586530] e820: reserve RAM buffer [mem 0x7ac0f000-0x7bffffff]
[ 0.586531] e820: reserve RAM buffer [mem 0x47e000000-0x47fffffff]
[ 0.586718] clocksource: Switched to clocksource tsc-early
[ 0.586770] VFS: Disk quotas dquot_6.6.0
[ 0.586786] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.586835] pnp: PnP ACPI init
[ 0.587075] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.587077] system 00:00: [io 0x164e-0x164f] has been reserved
[ 0.587083] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.587104] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.587221] system 00:02: [io 0x1854-0x1857] has been reserved
[ 0.587226] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.587441] system 00:03: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.587443] system 00:03: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.587444] system 00:03: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.587446] system 00:03: [mem 0xe0000000-0xefffffff] has been reserved
[ 0.587448] system 00:03: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.587449] system 00:03: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 0.587450] system 00:03: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.587452] system 00:03: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.587456] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.587706] system 00:04: [io 0x1800-0x18fe] could not be reserved
[ 0.587708] system 00:04: [mem 0xfd000000-0xfd69ffff] has been reserved
[ 0.587709] system 00:04: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[ 0.587710] system 00:04: [mem 0xfd6f0000-0xfdffffff] has been reserved
[ 0.587711] system 00:04: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.587713] system 00:04: [mem 0xfe200000-0xfe7fffff] has been reserved
[ 0.587714] system 00:04: [mem 0xff000000-0xffffffff] has been reserved
[ 0.587718] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.588111] system 00:05: [io 0x2000-0x20fe] has been reserved
[ 0.588116] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.589401] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.590518] pnp: PnP ACPI: found 7 devices
[ 0.591789] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.591789] thermal_sys: Registered thermal governor 'step_wise'
[ 0.591790] thermal_sys: Registered thermal governor 'user_space'
[ 0.591791] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.596330] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.596345] pci 0000:00:15.0: BAR 0: assigned [mem 0xa4428000-0xa4428fff 64bit]
[ 0.596616] pci 0000:00:01.0: PCI bridge to [bus 01]
[ 0.596618] pci 0000:00:01.0: bridge window [io 0x4000-0x4fff]
[ 0.596621] pci 0000:00:01.0: bridge window [mem 0xa3000000-0xa40fffff]
[ 0.596623] pci 0000:00:01.0: bridge window [mem 0x90000000-0xa1ffffff 64bit pref]
[ 0.596627] pci 0000:00:1d.0: PCI bridge to [bus 02]
[ 0.596633] pci 0000:00:1d.0: bridge window [io 0x3000-0x3fff]
[ 0.596640] pci 0000:00:1d.0: bridge window [mem 0xa4300000-0xa43fffff]
[ 0.596654] pci 0000:00:1d.7: PCI bridge to [bus 03]
[ 0.596662] pci 0000:00:1d.7: bridge window [mem 0xa4200000-0xa42fffff]
[ 0.596679] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.596680] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.596681] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.596682] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000e3fff window]
[ 0.596683] pci_bus 0000:00: resource 8 [mem 0x000e4000-0x000e7fff window]
[ 0.596684] pci_bus 0000:00: resource 9 [mem 0x000e8000-0x000ebfff window]
[ 0.596685] pci_bus 0000:00: resource 10 [mem 0x000ec000-0x000effff window]
[ 0.596686] pci_bus 0000:00: resource 11 [mem 0x000f0000-0x000fffff window]
[ 0.596687] pci_bus 0000:00: resource 12 [mem 0x80000000-0xdfffffff window]
[ 0.596688] pci_bus 0000:00: resource 13 [mem 0xfc800000-0xfe7fffff window]
[ 0.596689] pci_bus 0000:01: resource 0 [io 0x4000-0x4fff]
[ 0.596690] pci_bus 0000:01: resource 1 [mem 0xa3000000-0xa40fffff]
[ 0.596691] pci_bus 0000:01: resource 2 [mem 0x90000000-0xa1ffffff 64bit pref]
[ 0.596693] pci_bus 0000:02: resource 0 [io 0x3000-0x3fff]
[ 0.596694] pci_bus 0000:02: resource 1 [mem 0xa4300000-0xa43fffff]
[ 0.596695] pci_bus 0000:03: resource 1 [mem 0xa4200000-0xa42fffff]
[ 0.596872] NET: Registered protocol family 2
[ 0.596987] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.597007] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.597153] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.597267] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.597294] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.597326] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.597417] NET: Registered protocol family 1
[ 0.597431] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.597662] PCI: CLS 64 bytes, default 64
[ 0.597691] Trying to unpack rootfs image as initramfs...
[ 0.670057] Freeing initrd memory: 23408K
[ 0.670091] DMAR: No ATSR found
[ 0.670145] DMAR: dmar0: Using Queued invalidation
[ 0.670149] DMAR: dmar1: Using Queued invalidation
[ 0.670723] pci 0000:00:00.0: Adding to iommu group 0
[ 0.670795] pci 0000:00:01.0: Adding to iommu group 1
[ 0.678847] pci 0000:00:02.0: Adding to iommu group 2
[ 0.678923] pci 0000:00:04.0: Adding to iommu group 3
[ 0.678992] pci 0000:00:08.0: Adding to iommu group 4
[ 0.679061] pci 0000:00:12.0: Adding to iommu group 5
[ 0.679586] pci 0000:00:14.0: Adding to iommu group 6
[ 0.679597] pci 0000:00:14.2: Adding to iommu group 6
[ 0.679791] pci 0000:00:14.3: Adding to iommu group 6
[ 0.679858] pci 0000:00:15.0: Adding to iommu group 7
[ 0.679928] pci 0000:00:16.0: Adding to iommu group 8
[ 0.679994] pci 0000:00:17.0: Adding to iommu group 9
[ 0.680068] pci 0000:00:1d.0: Adding to iommu group 10
[ 0.680149] pci 0000:00:1d.7: Adding to iommu group 11
[ 0.681973] pci 0000:00:1f.0: Adding to iommu group 12
[ 0.681985] pci 0000:00:1f.3: Adding to iommu group 12
[ 0.681996] pci 0000:00:1f.4: Adding to iommu group 12
[ 0.682006] pci 0000:00:1f.5: Adding to iommu group 12
[ 0.682015] pci 0000:01:00.0: Adding to iommu group 1
[ 0.682110] pci 0000:02:00.0: Adding to iommu group 13
[ 0.682185] pci 0000:03:00.0: Adding to iommu group 14
[ 0.682570] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 0.684207] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[ 0.684207] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 0.684208] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 0.684209] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 0.684209] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 0.684210] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 0.685044] Initialise system trusted keyrings
[ 0.685071] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[ 0.686436] zbud: loaded
[ 0.691328] Key type asymmetric registered
[ 0.691329] Asymmetric key parser 'x509' registered
[ 0.691335] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.691376] io scheduler mq-deadline registered
[ 0.691376] io scheduler kyber registered
[ 0.691400] io scheduler bfq registered
[ 0.692064] pcieport 0000:00:1d.0: AER: enabled with IRQ 123
[ 0.692485] pcieport 0000:00:1d.7: AER: enabled with IRQ 124
[ 0.692637] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.692670] efifb: probing for efifb
[ 0.692686] efifb: framebuffer at 0x80000000, using 8128k, total 8128k
[ 0.692687] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[ 0.692687] efifb: scrolling: redraw
[ 0.692688] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.692764] Console: switching to colour frame buffer device 240x67
[ 0.697005] fb0: EFI VGA frame buffer device
[ 0.697015] intel_idle: MWAIT substates: 0x11142120
[ 0.697015] intel_idle: v0.4.1 model 0x9E
[ 0.697629] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 0.699831] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 0.702312] lp: driver loaded but no devices found
[ 0.702313] Linux agpgart interface v0.103
[ 0.705135] loop: module loaded
[ 0.705422] ahci 0000:00:17.0: version 3.0
[ 0.705717] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x10 impl SATA mode
[ 0.705719] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[ 0.706294] scsi host0: ahci
[ 0.706410] scsi host1: ahci
[ 0.706481] scsi host2: ahci
[ 0.706553] scsi host3: ahci
[ 0.706627] scsi host4: ahci
[ 0.706662] ata1: DUMMY
[ 0.706662] ata2: DUMMY
[ 0.706663] ata3: DUMMY
[ 0.706663] ata4: DUMMY
[ 0.706674] ata5: SATA max UDMA/133 abar m2048@0xa4425000 port 0xa4425300 irq 125
[ 0.706711] PPP generic driver version 2.4.2
[ 0.706788] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.706789] ehci-pci: EHCI PCI platform driver
[ 0.706804] ehci-platform: EHCI generic platform driver
[ 0.706835] usbcore: registered new interface driver usb-storage
[ 0.706859] i8042: PNP: No PS/2 controller found.
[ 0.706860] i8042: Probing ports directly.
[ 0.711028] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.711055] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.711163] mousedev: PS/2 mouse device common for all mice
[ 0.711250] rtc_cmos 00:01: RTC can wake from S4
[ 0.712389] rtc_cmos 00:01: registered as rtc0
[ 0.712402] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 0.712411] intel_pstate: Intel P-state driver initializing
[ 0.712426] intel_pstate: Disabling energy efficiency optimization
[ 0.713138] intel_pstate: HWP enabled
[ 0.713181] hidraw: raw HID events driver (C) Jiri Kosina
[ 0.713306] usbcore: registered new interface driver usbhid
[ 0.713307] usbhid: USB HID core driver
[ 0.713352] intel_pmc_core INT33A1:00: initialized
[ 0.713460] NET: Registered protocol family 17
[ 0.713479] Key type dns_resolver registered
[ 0.713960] microcode: sig=0x906ea, pf=0x20, revision=0xb4
[ 0.714180] microcode: Microcode Update Driver: v2.2.
[ 0.714182] IPI shorthand broadcast: enabled
[ 0.714185] sched_clock: Marking stable (701368585, 12808817)->(731122644, -16945242)
[ 0.714236] registered taskstats version 1
[ 0.714237] Loading compiled-in X.509 certificates
[ 0.714249] zswap: loaded using pool lzo/zbud
[ 0.715304] rtc_cmos 00:01: setting system clock to 2020-07-19T21:10:49 UTC (1595193049)
[ 0.720014] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[ 1.017799] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.111787] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (unknown) succeeded
[ 1.111792] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (unknown) filtered out
[ 1.111795] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (unknown) filtered out
[ 1.192475] ata5.00: ATA-10: ST1000LX015-1U7172, SDM1, max UDMA/133
[ 1.192479] ata5.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.255281] ata5.00: ACPI cmd ef/10:06:00:00:00:00 (unknown) succeeded
[ 1.255286] ata5.00: ACPI cmd f5/00:00:00:00:00:00 (unknown) filtered out
[ 1.255289] ata5.00: ACPI cmd b1/c1:00:00:00:00:00 (unknown) filtered out
[ 1.335971] ata5.00: configured for UDMA/133
[ 1.336317] scsi 4:0:0:0: Direct-Access ATA ST1000LX015-1U71 SDM1 PQ: 0 ANSI: 5
[ 1.337251] sd 4:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 1.337255] sd 4:0:0:0: [sda] 4096-byte physical blocks
[ 1.337341] sd 4:0:0:0: [sda] Write Protect is off
[ 1.337345] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.337491] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.340962] sda: sda1 sda2 sda3 sda4 sda5
[ 1.342240] sd 4:0:0:0: [sda] Attached SCSI disk
[ 1.342958] Freeing unused kernel image memory: 1032K
[ 1.360765] Write protecting the kernel read-only data: 14336k
[ 1.361861] Freeing unused kernel image memory: 2012K
[ 1.362037] Freeing unused kernel image memory: 24K
[ 1.362134] rodata_test: all tests were successful
[ 1.362137] Run /init as init process
[ 1.489663] dracut: dracut-049
[ 1.707767] tsc: Refined TSC clocksource calibration: 2208.004 MHz
[ 1.707781] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1fd3bc108c2, max_idle_ns: 440795311349 ns
[ 1.707857] clocksource: Switched to clocksource tsc
[ 1.718380] dracut: TuxOnIce premodule started
[ 1.718600] dracut: Kernel has no tuxonice support, aborting
[ 1.738379] systemd-udevd[1470]: starting version 3.2.9
[ 1.741304] udevd[1471]: starting eudev-3.2.9
[ 1.796276] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
[ 1.796402] ACPI: Sleep Button [SLPB]
[ 1.796495] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input4
[ 1.796609] ACPI: Power Button [PWRB]
[ 1.796706] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input5
[ 1.796828] ACPI: Lid Switch [LID0]
[ 1.796916] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[ 1.797027] ACPI: Power Button [PWRF]
[ 1.802154] acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:02)
[ 1.805969] battery: ACPI: Battery Slot [BAT1] (battery present)
[ 1.836517] i915 0000:00:02.0: VT-d active for gfx access
[ 1.836519] checking generic (80000000 7f0000) vs hw (80000000 10000000)
[ 1.836519] fb0: switching to inteldrmfb from EFI VGA
[ 1.836559] Console: switching to colour dummy device 80x25
[ 1.836578] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 1.838416] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 1.838416] [drm] Driver supports precise vblank timestamp query.
[ 1.839055] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 1.839330] [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[ 1.863552] [drm] Initialized i915 1.6.0 20190822 for 0000:00:02.0 on minor 0
[ 1.865616] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 1.865942] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input7
[ 1.866063] ACPI: Video Device [PEGP] (multi-head: no rom: yes post: no)
[ 1.866114] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:13/LNXVIDEO:01/input/input8
[ 1.879450] fbcon: i915drmfb (fb0) is primary device
[ 1.893838] Console: switching to colour frame buffer device 240x67
[ 1.920439] i915 0000:00:02.0: fb0: i915drmfb frame buffer device
[ 1.940284] dracut: Starting plymouth daemon
[ 2.076144] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 2.076183] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 2.076964] rtsx_pci 0000:03:00.0: enabling device (0000 -> 0002)
[ 2.077374] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x110 quirks 0x0000000000009810
[ 2.077381] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 2.077590] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
[ 2.077591] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.077592] usb usb1: Product: xHCI Host Controller
[ 2.077593] usb usb1: Manufacturer: Linux 5.4.45-calculate xhci-hcd
[ 2.077595] usb usb1: SerialNumber: 0000:00:14.0
[ 2.077699] hub 1-0:1.0: USB hub found
[ 2.077746] hub 1-0:1.0: 16 ports detected
[ 2.079124] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 2.079184] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 2.079192] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 2.079247] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
[ 2.079249] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.079250] usb usb2: Product: xHCI Host Controller
[ 2.079251] usb usb2: Manufacturer: Linux 5.4.45-calculate xhci-hcd
[ 2.079252] usb usb2: SerialNumber: 0000:00:14.0
[ 2.079341] hub 2-0:1.0: USB hub found
[ 2.079358] hub 2-0:1.0: 8 ports detected
[ 2.079978] usb: port power management may be unreliable
[ 2.118744] nvidia: loading out-of-tree module taints kernel.
[ 2.118751] nvidia: module license 'NVIDIA' taints kernel.
[ 2.118752] Disabling lock debugging due to kernel taint
[ 2.128440] nvidia-nvlink: Nvlink Core is being initialized, major device number 240
[ 2.128640] nvidia 0000:01:00.0: enabling device (0006 -> 0007)
[ 2.203748] raid6: avx2x4 gen() 9199 MB/s
[ 2.220719] raid6: avx2x4 xor() 8166 MB/s
[ 2.237728] raid6: avx2x2 gen() 23742 MB/s
[ 2.254709] raid6: avx2x2 xor() 20414 MB/s
[ 2.271710] raid6: avx2x1 gen() 26589 MB/s
[ 2.288709] raid6: avx2x1 xor() 17480 MB/s
[ 2.305738] raid6: sse2x4 gen() 15476 MB/s
[ 2.322715] raid6: sse2x4 xor() 9425 MB/s
[ 2.328766] NVRM: loading NVIDIA UNIX x86_64 Kernel Module 450.57 Sun Jul 5 14:42:25 UTC 2020
[ 2.332964] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms 450.57 Sun Jul 5 14:52:29 UTC 2020
[ 2.334269] [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
[ 2.339709] raid6: sse2x2 gen() 12531 MB/s
[ 2.353120] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20190816/nsarguments-59)
[ 2.356712] raid6: sse2x2 xor() 9044 MB/s
[ 2.373739] raid6: sse2x1 gen() 11972 MB/s
[ 2.390712] raid6: sse2x1 xor() 6683 MB/s
[ 2.390712] raid6: using algorithm avx2x1 gen() 26589 MB/s
[ 2.390713] raid6: .... xor() 17480 MB/s, rmw enabled
[ 2.390713] raid6: using avx2x2 recovery algorithm
[ 2.393043] xor: automatically using best checksumming function avx
[ 2.397713] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[ 2.410148] Btrfs loaded, crc32c=crc32c-intel
[ 2.410726] BTRFS: device label CLDX-20.6 devid 1 transid 2199 /dev/sda2
[ 2.411973] BTRFS: device label Calculate devid 1 transid 4863 /dev/sda5
[ 2.529600] usb 1-1: New USB device found, idVendor=1038, idProduct=1729, bcdDevice= 0.34
[ 2.529600] usb 1-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.529601] usb 1-1: Product: SteelSeries Rival 110 Gaming Mouse
[ 2.529602] usb 1-1: Manufacturer: SteelSeries
[ 2.532635] hid-generic 0003:1038:1729.0001: hiddev96,hidraw0: USB HID v1.11 Device [SteelSeries SteelSeries Rival 110 Gaming Mouse] on usb-0000:00:14.0-1/input0
[ 2.535184] input: SteelSeries SteelSeries Rival 110 Gaming Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1038:1729.0002/input/input9
[ 2.535381] hid-generic 0003:1038:1729.0002: input,hidraw1: USB HID v1.11 Mouse [SteelSeries SteelSeries Rival 110 Gaming Mouse] on usb-0000:00:14.0-1/input1
[ 2.648704] usb 1-7: new high-speed USB device number 3 using xhci_hcd
[ 2.806001] usb 1-7: New USB device found, idVendor=13d3, idProduct=5666, bcdDevice= 3.22
[ 2.806002] usb 1-7: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[ 2.806002] usb 1-7: Product: USB2.0 HD UVC WebCam
[ 2.806003] usb 1-7: Manufacturer: Azurewave
[ 2.806003] usb 1-7: SerialNumber: NULL
[ 2.922793] usb 1-8: new full-speed USB device number 4 using xhci_hcd
[ 3.053162] usb 1-8: New USB device found, idVendor=0b05, idProduct=1869, bcdDevice= 0.03
[ 3.053165] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.053168] usb 1-8: Product: ITE Device(8910)
[ 3.053170] usb 1-8: Manufacturer: ITE Tech. Inc.
[ 3.058498] input: ITE Tech. Inc. ITE Device(8910) as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:0B05:1869.0003/input/input10
[ 3.058726] input: ITE Tech. Inc. ITE Device(8910) Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:0B05:1869.0003/input/input11
[ 3.111112] input: ITE Tech. Inc. ITE Device(8910) as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:0B05:1869.0003/input/input12
[ 3.111305] input: ITE Tech. Inc. ITE Device(8910) as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:0B05:1869.0003/input/input13
[ 3.111582] input: ITE Tech. Inc. ITE Device(8910) Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:0B05:1869.0003/input/input14
[ 3.111722] input: ITE Tech. Inc. ITE Device(8910) System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:0B05:1869.0003/input/input15
[ 3.112032] hid-generic 0003:0B05:1869.0003: input,hiddev97,hidraw2: USB HID v1.10 Keyboard [ITE Tech. Inc. ITE Device(8910)] on usb-0000:00:14.0-8/input0
[ 3.118944] asus_wmi: ASUS WMI generic driver loaded
[ 3.120371] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 3.120371] [drm] No driver support for vblank timestamp query.
[ 3.120373] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 1
[ 3.215543] input: ITE Tech. Inc. ITE Device(8910) as /devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:0B05:1869.0003/input/input16
[ 3.225777] usb 1-14: new full-speed USB device number 5 using xhci_hcd
[ 3.267321] asus 0003:0B05:1869.0003: input,hiddev97,hidraw2: USB HID v1.10 Keyboard [ITE Tech. Inc. ITE Device(8910)] on usb-0000:00:14.0-8/input0
[ 3.294460] PM: Image not found (code -22)
[ 3.306809] dracut: TuxOnIce lvmfix started
[ 3.310374] dracut: TuxOnIce udev should be now fully settled
[ 3.343545] BTRFS info (device sda2): disk space caching is enabled
[ 3.343548] BTRFS info (device sda2): has skinny extents
[ 3.355505] usb 1-14: New USB device found, idVendor=8087, idProduct=0aaa, bcdDevice= 0.02
[ 3.355509] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.492856] dracut: Mounted root filesystem /dev/sda2
[ 3.510041] BTRFS info (device sda2): disk space caching is enabled
[ 3.688848] BTRFS info (device sda2): disk space caching is enabled
[ 3.890349] dracut: Switching root
[ 6.051297] udevd[4028]: starting version 3.2.9
[ 6.077975] udevd[4028]: starting eudev-3.2.9
[ 6.111638] ACPI: AC Adapter [ACAD] (on-line)
[ 6.112898] proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
[ 6.113827] proc_thermal 0000:00:04.0: Creating sysfs group for PROC_THERMAL_PCI
[ 6.114343] input: Asus Wireless Radio Control as /devices/LNXSYSTM:00/LNXSYBUS:00/ATK4002:00/input/input17
[ 6.152996] ACPI: Invalid active0 threshold
[ 6.153200] thermal LNXTHERM:00: registered as thermal_zone3
[ 6.153201] ACPI: Thermal Zone [THRM] (54 C)
[ 6.153425] ACPI: Invalid passive threshold
[ 6.153704] thermal LNXTHERM:01: registered as thermal_zone4
[ 6.153704] ACPI: Thermal Zone [TZ00] (28 C)
[ 6.164919] intel-lpss 0000:00:15.0: enabling device (0000 -> 0002)
[ 6.165223] idma64 idma64.0: Found Intel integrated DMA 64-bit
[ 6.173986] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 6.176837] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 6.193463] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 6.196071] mc: Linux media interface: v0.10
[ 6.284106] EFI Variables Facility v0.08 2004-May-17
[ 6.286788] videodev: Linux video capture interface: v2.00
[ 6.287937] asus_wmi: Initialization: 0x1
[ 6.287943] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 6.288034] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 6.288035] asus_wmi: BIOS WMI version: 8.1
[ 6.288261] asus_wmi: SFUN value: 0x4a0061
[ 6.288395] asus-nb-wmi asus-nb-wmi: Detected ATK, not ASUSWMI, use DSTS
[ 6.288397] asus-nb-wmi asus-nb-wmi: Detected ATK, enable event queue
[ 6.291628] Intel(R) Wireless WiFi driver for Linux
[ 6.291628] Copyright(c) 2003- 2015 Intel Corporation
[ 6.291682] iwlwifi 0000:00:14.3: enabling device (0000 -> 0002)
[ 6.292684] cryptd: max_cpu_qlen set to 1000
[ 6.293500] input: Asus WMI hotkeys as /devices/platform/asus-nb-wmi/input/input18
[ 6.304440] battery: extension failed to load: ASUS Battery Extension
[ 6.304441] battery: extension unregistered: ASUS Battery Extension
[ 6.315786] iwlwifi 0000:00:14.3: Found debug destination: EXTERNAL_DRAM
[ 6.315787] iwlwifi 0000:00:14.3: Found debug configuration: 0
[ 6.315974] iwlwifi 0000:00:14.3: loaded firmware version 46.8902351f.0 op_mode iwlmvm
[ 6.339891] AVX2 version of gcm_enc/dec engaged.
[ 6.339892] AES CTR mode by8 optimization enabled
[ 6.340863] r8169 0000:02:00.0: can't disable ASPM; OS doesn't have ASPM control
[ 6.344653] libphy: r8169: probed
[ 6.344791] r8169 0000:02:00.0 eth0: RTL8168h/8111h, 0c:9d:92:a6:56:22, XID 541, IRQ 145
[ 6.344793] r8169 0000:02:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
[ 6.345438] Bluetooth: Core ver 2.22
[ 6.345451] NET: Registered protocol family 31
[ 6.345451] Bluetooth: HCI device and connection manager initialized
[ 6.345455] Bluetooth: HCI socket layer initialized
[ 6.345456] Bluetooth: L2CAP socket layer initialized
[ 6.345458] Bluetooth: SCO socket layer initialized
[ 6.350129] uvcvideo: Found UVC 1.00 device USB2.0 HD UVC WebCam (13d3:5666)
[ 6.357881] uvcvideo 1-7:1.0: Entity type for entity Realtek Extended Controls Unit was not initialized!
[ 6.357883] uvcvideo 1-7:1.0: Entity type for entity Extension 4 was not initialized!
[ 6.357883] uvcvideo 1-7:1.0: Entity type for entity Processing 2 was not initialized!
[ 6.357884] uvcvideo 1-7:1.0: Entity type for entity Camera 1 was not initialized!
[ 6.357972] input: USB2.0 HD UVC WebCam: USB2.0 HD as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/input/input19
[ 6.358052] usbcore: registered new interface driver uvcvideo
[ 6.358053] USB Video Class driver (1.1.1)
[ 6.387879] iwlwifi 0000:00:14.3: Detected Intel(R) Dual Band Wireless AC 9560, REV=0x318
[ 6.389140] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 6.389304] usbcore: registered new interface driver btusb
[ 6.389741] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_globals_exit [i915])
[ 6.391384] Bluetooth: hci0: Firmware revision 0.1 build 164 week 20 2020
[ 6.396167] iwlwifi 0000:00:14.3: Applying debug destination EXTERNAL_DRAM
[ 6.396413] iwlwifi 0000:00:14.3: Allocated 0x00400000 bytes for firmware monitor.
[ 6.432140] iTCO_vendor_support: vendor-support=0
[ 6.433740] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[ 6.434011] iTCO_wdt: Found a Intel PCH TCO device (Version=6, TCOBASE=0x0400)
[ 6.434174] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[ 6.437031] iwlwifi 0000:00:14.3: base HW address: 34:e1:2d:e4:25:9b
[ 6.437255] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC295: line_outs=1 (0x17/0x0/0x0/0x0/0x0) type:speaker
[ 6.437256] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 6.437257] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 6.437257] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 6.437258] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 6.437259] snd_hda_codec_realtek hdaudioC0D0: Headset Mic=0x19
[ 6.437260] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 6.487106] BTRFS info (device sda2): disk space caching is enabled
[ 6.505121] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[ 6.505368] thermal thermal_zone6: failed to read out thermal zone (-61)
[ 6.510245] input: HDA Intel PCH Headset Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
[ 6.510335] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input21
[ 6.510403] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input22
[ 6.510470] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input23
[ 6.510509] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input24
[ 6.510549] input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input25
[ 6.510595] input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input26
[ 6.544714] Adding 25599996k swap on /dev/sda1. Priority:-2 extents:1 across:25599996k FS
[ 6.642074] zram: Added device: zram0
[ 6.699528] zram0: detected capacity change from 0 to 33427398656
[ 6.738774] Adding 32643940k swap on /dev/zram0. Priority:100 extents:1 across:32643940k SSFS
[ 6.868634] FAT-fs (sda4): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[ 6.880000] BTRFS info (device sda5): disk space caching is enabled
[ 6.880003] BTRFS info (device sda5): has skinny extents
[ 7.735036] fuse: init (API version 7.31)
[ 7.775769] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 7.775772] Bluetooth: BNEP filters: protocol multicast
[ 7.775783] Bluetooth: BNEP socket layer initialized
[ 7.784646] NET: Registered protocol family 38
[ 7.817224] NET: Registered protocol family 10
[ 7.833218] Segment Routing with IPv6
[ 7.846923] Generic FE-GE Realtek PHY r8169-200:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-200:00, irq=IGNORE)
[ 7.937513] r8169 0000:02:00.0 eth0: Link is Down
[ 7.953555] iwlwifi 0000:00:14.3: Applying debug destination EXTERNAL_DRAM
[ 8.069634] iwlwifi 0000:00:14.3: Applying debug destination EXTERNAL_DRAM
[ 8.135303] iwlwifi 0000:00:14.3: FW already configured (0) - re-configuring
[ 8.151433] iwlwifi 0000:00:14.3: BIOS contains WGDS but no WRDS
[ 8.173962] iwlwifi 0000:00:14.3: Applying debug destination EXTERNAL_DRAM
[ 8.291019] iwlwifi 0000:00:14.3: Applying debug destination EXTERNAL_DRAM
[ 8.356573] iwlwifi 0000:00:14.3: FW already configured (0) - re-configuring
[ 8.371359] iwlwifi 0000:00:14.3: BIOS contains WGDS but no WRDS
[ 9.460674] r8169 0000:02:00.0 eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 9.460680] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 13.607939] Key type encrypted registered
[ 15.777097] Bluetooth: RFCOMM TTY layer initialized
[ 15.777101] Bluetooth: RFCOMM socket layer initialized
[ 15.777104] Bluetooth: RFCOMM ver 1.11
[ 353.083172] iwlwifi 0000:00:14.3: Applying debug destination EXTERNAL_DRAM
[ 353.198818] iwlwifi 0000:00:14.3: Applying debug destination EXTERNAL_DRAM
[ 353.264333] iwlwifi 0000:00:14.3: FW already configured (0) - re-configuring
[ 353.281769] iwlwifi 0000:00:14.3: BIOS contains WGDS but no WRDS
[ 669.057952] iwlwifi 0000:00:14.3: Applying debug destination EXTERNAL_DRAM
[ 669.175074] iwlwifi 0000:00:14.3: Applying debug destination EXTERNAL_DRAM
[ 669.240557] iwlwifi 0000:00:14.3: FW already configured (0) - re-configuring
[ 669.255498] iwlwifi 0000:00:14.3: BIOS contains WGDS but no WRDS
|