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
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886 | [ 0.000000] Linux version 5.15.82-calculate (root@localhost) (gcc (Gentoo 11.3.0 p4) 11.3.0, GNU ld (Gentoo 2.38 p4) 2.38) #1 SMP PREEMPT Tue Dec 13 09:40:40 UTC 2022
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate root=UUID=d0f93a56-0ed9-4b12-8c76-fa80e1cf2be0 ro video=1920x1080 resume=PARTUUID=78df620f-a3c0-3049-8645-2e93c249a97a rd.retry=40 calculate=video:amdgpu splash quiet
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
[ 0.000000] signal: max sigframe size: 1776
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000000a0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000009d81fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000009d82000-0x0000000009ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000a000000-0x000000000a1fffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000000a20b000-0x000000000affffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000b000000-0x000000000b01ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000000b020000-0x000000004b346fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000004b347000-0x000000004b6a3fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000004b6a4000-0x000000004b707fff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000004b708000-0x000000004ce06fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000004ce07000-0x000000004dd56fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000004dd57000-0x000000004ddfefff] type 20
[ 0.000000] BIOS-e820: [mem 0x000000004ddff000-0x000000004effffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000004f000000-0x00000000cfffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f7ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fd100000-0x00000000fd1fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000042f33ffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000042f340000-0x000000042fffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] efi: EFI v2.70 by American Megatrends
[ 0.000000] efi: ACPI=0x4cdf0000 ACPI 2.0=0x4cdf0014 SMBIOS=0x4dc07000 MEMATTR=0x47245698
[ 0.000000] SMBIOS 2.8 present.
[ 0.000000] DMI: Micro-Star International Co., Ltd. MS-7C52/B450M-A PRO MAX (MS-7C52), BIOS 3.A0 12/07/2020
[ 0.000000] tsc: Fast TSC calibration failed
[ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000000] last_pfn = 0x42f340 max_arch_pfn = 0x400000000
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.000000] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
[ 0.000000] last_pfn = 0x4f000 max_arch_pfn = 0x400000000
[ 0.000000] Using GB pages for direct mapping
[ 0.000000] Secure boot could not be determined
[ 0.000000] RAMDISK: [mem 0x33dba000-0x35506fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x000000004CDF0014 000024 (v02 ALASKA)
[ 0.000000] ACPI: XSDT 0x000000004CDEF728 0000C4 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.000000] ACPI: FACP 0x000000004B6FC000 000114 (v06 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 0x000000004B6F5000 006E3B (v02 ALASKA A M I 01072009 INTL 20120913)
[ 0.000000] ACPI: FACS 0x000000004CDEA000 000040
[ 0.000000] ACPI: SSDT 0x000000004B702000 005419 (v02 AMD MYRTLE 00000002 MSFT 04000000)
[ 0.000000] ACPI: SSDT 0x000000004B6FE000 003BA2 (v01 AMD AMD AOD 00000001 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x000000004B6FD000 000060 (v02 ALASKA CPUSSDT 01072009 AMI 01072009)
[ 0.000000] ACPI: FIDT 0x000000004B6F4000 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: MCFG 0x000000004B6F3000 00003C (v01 ALASKA A M I 01072009 MSFT 00010013)
[ 0.000000] ACPI: HPET 0x000000004B6F2000 000038 (v01 ALASKA A M I 01072009 AMI 00000005)
[ 0.000000] ACPI: IVRS 0x000000004B6F1000 0000D0 (v02 AMD AmdTable 00000001 AMD 00000000)
[ 0.000000] ACPI: SSDT 0x000000004B6F0000 000854 (v02 AMD AmdTable 00000001 AMD 00000001)
[ 0.000000] ACPI: CRAT 0x000000004B6EF000 000810 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.000000] ACPI: CDIT 0x000000004B6EE000 000029 (v01 AMD AmdTable 00000001 AMD 00000001)
[ 0.000000] ACPI: BGRT 0x000000004B6ED000 000038 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: SSDT 0x000000004B6EC000 000D53 (v01 AMD MYRTLEG2 00000001 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x000000004B6EA000 0010A5 (v01 AMD MYRTLEPX 00000001 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x000000004B6E6000 0034A4 (v01 AMD MYRTLE 00000001 INTL 20120913)
[ 0.000000] ACPI: SSDT 0x000000004B6E5000 0000BF (v01 AMD AmdTable 00001000 INTL 20120913)
[ 0.000000] ACPI: WSMT 0x000000004B6E4000 000028 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: APIC 0x000000004B6E3000 00015E (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: SSDT 0x000000004B6E1000 0010AF (v01 AMD MYRTLE 00000001 INTL 20120913)
[ 0.000000] ACPI: FPDT 0x000000004B6E0000 000044 (v01 ALASKA A M I 01072009 AMI 01000013)
[ 0.000000] ACPI: Reserving FACP table memory at [mem 0x4b6fc000-0x4b6fc113]
[ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x4b6f5000-0x4b6fbe3a]
[ 0.000000] ACPI: Reserving FACS table memory at [mem 0x4cdea000-0x4cdea03f]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x4b702000-0x4b707418]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x4b6fe000-0x4b701ba1]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x4b6fd000-0x4b6fd05f]
[ 0.000000] ACPI: Reserving FIDT table memory at [mem 0x4b6f4000-0x4b6f409b]
[ 0.000000] ACPI: Reserving MCFG table memory at [mem 0x4b6f3000-0x4b6f303b]
[ 0.000000] ACPI: Reserving HPET table memory at [mem 0x4b6f2000-0x4b6f2037]
[ 0.000000] ACPI: Reserving IVRS table memory at [mem 0x4b6f1000-0x4b6f10cf]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x4b6f0000-0x4b6f0853]
[ 0.000000] ACPI: Reserving CRAT table memory at [mem 0x4b6ef000-0x4b6ef80f]
[ 0.000000] ACPI: Reserving CDIT table memory at [mem 0x4b6ee000-0x4b6ee028]
[ 0.000000] ACPI: Reserving BGRT table memory at [mem 0x4b6ed000-0x4b6ed037]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x4b6ec000-0x4b6ecd52]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x4b6ea000-0x4b6eb0a4]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x4b6e6000-0x4b6e94a3]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x4b6e5000-0x4b6e50be]
[ 0.000000] ACPI: Reserving WSMT table memory at [mem 0x4b6e4000-0x4b6e4027]
[ 0.000000] ACPI: Reserving APIC table memory at [mem 0x4b6e3000-0x4b6e315d]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x4b6e1000-0x4b6e20ae]
[ 0.000000] ACPI: Reserving FPDT table memory at [mem 0x4b6e0000-0x4b6e0043]
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000042f33ffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x42f33b000-0x42f33ffff]
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.000000] Normal [mem 0x0000000100000000-0x000000042f33ffff]
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009ffff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x0000000009d81fff]
[ 0.000000] node 0: [mem 0x000000000a000000-0x000000000a1fffff]
[ 0.000000] node 0: [mem 0x000000000a20b000-0x000000000affffff]
[ 0.000000] node 0: [mem 0x000000000b020000-0x000000004b346fff]
[ 0.000000] node 0: [mem 0x000000004ddff000-0x000000004effffff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x000000042f33ffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000042f33ffff]
[ 0.000000] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.000000] On node 0, zone DMA: 96 pages in unavailable ranges
[ 0.000000] On node 0, zone DMA32: 638 pages in unavailable ranges
[ 0.000000] On node 0, zone DMA32: 11 pages in unavailable ranges
[ 0.000000] On node 0, zone DMA32: 32 pages in unavailable ranges
[ 0.000000] On node 0, zone DMA32: 10936 pages in unavailable ranges
[ 0.000000] On node 0, zone Normal: 4096 pages in unavailable ranges
[ 0.000000] On node 0, zone Normal: 3264 pages in unavailable ranges
[ 0.000000] ACPI: PM-Timer IO Port: 0x808
[ 0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[ 0.000000] IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23
[ 0.000000] IOAPIC[1]: apic_id 6, version 33, address 0xfec01000, GSI 24-55
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.000000] ACPI: HPET id: 0x10228201 base: 0xfed00000
[ 0.000000] smpboot: Allowing 32 CPUs, 28 hotplug CPUs
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x09d82000-0x09ffffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x4b347000-0x4b6a3fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x4b6a4000-0x4b707fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x4b708000-0x4ce06fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x4ce07000-0x4dd56fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x4dd57000-0x4ddfefff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0x4f000000-0xcfffffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xefffffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf7ffffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfd0fffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfd100000-0xfd1fffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfd200000-0xfe9fffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xfedd6000-0xfeffffff]
[ 0.000000] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[ 0.000000] [mem 0xd0000000-0xefffffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on bare hardware
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:32 nr_node_ids:1
[ 0.000000] percpu: Embedded 45 pages/cpu s145048 r8192 d31080 u262144
[ 0.000000] pcpu-alloc: s145048 r8192 d31080 u262144 alloc=1*2097152
[ 0.000000] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15
[ 0.000000] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 3593735
[ 0.000000] Policy zone: Normal
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate root=UUID=d0f93a56-0ed9-4b12-8c76-fa80e1cf2be0 ro video=1920x1080 resume=PARTUUID=78df620f-a3c0-3049-8645-2e93c249a97a rd.retry=40 calculate=video:amdgpu splash quiet
[ 0.000000] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate calculate=video:amdgpu", will be passed to user space.
[ 0.000000] printk: log_buf_len individual max cpu contribution: 4096 bytes
[ 0.000000] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[ 0.000000] printk: log_buf_len min size: 32768 bytes
[ 0.000000] printk: log_buf_len: 262144 bytes
[ 0.000000] printk: early log buf free: 18808(57%)
[ 0.000000] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.000000] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[ 0.000000] Memory: 14140916K/14603768K available (12290K kernel code, 806K rwdata, 3236K rodata, 1292K init, 468K bss, 462596K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=32.
[ 0.000000] Trampoline variant of Tasks RCU enabled.
[ 0.000000] Tracing variant of Tasks RCU enabled.
[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[ 0.000000] NR_IRQS: 4352, nr_irqs: 1224, preallocated irqs: 16
[ 0.000000] random: crng init done
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] printk: console [tty0] enabled
[ 0.000000] ACPI: Core revision 20210730
[ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[ 0.000000] APIC: Switch to symmetric I/O mode setup
[ 0.001000] Switched APIC routing to physical flat.
[ 0.002000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.010000] tsc: Unable to calibrate against PIT
[ 0.010000] tsc: using HPET reference calibration
[ 0.010000] tsc: Detected 3499.952 MHz processor
[ 0.000002] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3273237e830, max_idle_ns: 440795231912 ns
[ 0.000004] Calibrating delay loop (skipped), value calculated using timer frequency.. 6999.90 BogoMIPS (lpj=3499952)
[ 0.000006] pid_max: default: 32768 minimum: 301
[ 0.002783] ---[ User Space ]---
[ 0.002785] 0x0000000000000000-0x0000000000001000 4K RW NX pte
[ 0.002790] 0x0000000000001000-0x0000000000008000 28K RW x pte
[ 0.002796] 0x0000000000008000-0x000000000003d000 212K pte
[ 0.002798] 0x000000000003d000-0x000000000003f000 8K pte
[ 0.002804] 0x000000000003f000-0x000000000009f000 384K RW x pte
[ 0.002807] 0x000000000009f000-0x00000000000a0000 4K RW NX pte
[ 0.002822] 0x00000000000a0000-0x0000000000200000 1408K pte
[ 0.002825] 0x0000000000200000-0x0000000001000000 14M pmd
[ 0.002831] 0x0000000001000000-0x0000000001080000 512K pte
[ 0.002847] 0x0000000001080000-0x0000000001200000 1536K pte
[ 0.002851] 0x0000000001200000-0x0000000010000000 238M pmd
[ 0.002853] 0x0000000010000000-0x000000001000b000 44K pte
[ 0.002873] 0x000000001000b000-0x0000000010200000 2004K pte
[ 0.002886] 0x0000000010200000-0x0000000047000000 878M pmd
[ 0.002892] 0x0000000047000000-0x000000004707a000 488K pte
[ 0.002908] 0x000000004707a000-0x0000000047216000 1648K pte
[ 0.002910] 0x0000000047216000-0x0000000047219000 12K pte
[ 0.002913] 0x0000000047219000-0x000000004722e000 84K pte
[ 0.002915] 0x000000004722e000-0x000000004723c000 56K pte
[ 0.002920] 0x000000004723c000-0x00000000472a5000 420K RW NX pte
[ 0.002923] 0x00000000472a5000-0x00000000472a7000 8K pte
[ 0.002927] 0x00000000472a7000-0x00000000472eb000 272K pte
[ 0.002929] 0x00000000472eb000-0x00000000472f8000 52K pte
[ 0.002932] 0x00000000472f8000-0x0000000047305000 52K pte
[ 0.002933] 0x0000000047305000-0x000000004730c000 28K pte
[ 0.002935] 0x000000004730c000-0x0000000047313000 28K pte
[ 0.002937] 0x0000000047313000-0x0000000047315000 8K pte
[ 0.002939] 0x0000000047315000-0x0000000047319000 16K pte
[ 0.002952] 0x0000000047319000-0x0000000047468000 1340K pte
[ 0.002976] 0x0000000047468000-0x00000000480d3000 12716K pte
[ 0.002999] 0x00000000480d3000-0x000000004891e000 8492K pte
[ 0.003014] 0x000000004891e000-0x0000000048a5f000 1284K pte
[ 0.003016] 0x0000000048a5f000-0x0000000048a62000 12K pte
[ 0.003018] 0x0000000048a62000-0x0000000048a63000 4K pte
[ 0.003019] 0x0000000048a63000-0x0000000048a64000 4K pte
[ 0.003022] 0x0000000048a64000-0x0000000048a86000 136K pte
[ 0.003024] 0x0000000048a86000-0x0000000048a89000 12K pte
[ 0.003025] 0x0000000048a89000-0x0000000048a8a000 4K pte
[ 0.003027] 0x0000000048a8a000-0x0000000048a91000 28K pte
[ 0.003029] 0x0000000048a91000-0x0000000048a94000 12K pte
[ 0.003030] 0x0000000048a94000-0x0000000048a95000 4K pte
[ 0.003034] 0x0000000048a95000-0x0000000048abf000 168K pte
[ 0.003035] 0x0000000048abf000-0x0000000048ac4000 20K pte
[ 0.003037] 0x0000000048ac4000-0x0000000048ac9000 20K pte
[ 0.003039] 0x0000000048ac9000-0x0000000048ad9000 64K pte
[ 0.003041] 0x0000000048ad9000-0x0000000048adf000 24K pte
[ 0.003043] 0x0000000048adf000-0x0000000048ae0000 4K pte
[ 0.003056] 0x0000000048ae0000-0x0000000048c2c000 1328K pte
[ 0.003059] 0x0000000048c2c000-0x0000000048c4c000 128K pte
[ 0.003062] 0x0000000048c4c000-0x0000000048c6c000 128K pte
[ 0.003064] 0x0000000048c6c000-0x0000000048c77000 44K pte
[ 0.003066] 0x0000000048c77000-0x0000000048c82000 44K pte
[ 0.003068] 0x0000000048c82000-0x0000000048c8c000 40K pte
[ 0.003070] 0x0000000048c8c000-0x0000000048c96000 40K pte
[ 0.003071] 0x0000000048c96000-0x0000000048c9c000 24K pte
[ 0.003098] 0x0000000048c9c000-0x000000004915a000 4856K pte
[ 0.003100] 0x000000004915a000-0x000000004915e000 16K pte
[ 0.003102] 0x000000004915e000-0x0000000049163000 20K pte
[ 0.003104] 0x0000000049163000-0x0000000049166000 12K pte
[ 0.003105] 0x0000000049166000-0x0000000049169000 12K pte
[ 0.003107] 0x0000000049169000-0x0000000049173000 40K pte
[ 0.003109] 0x0000000049173000-0x000000004917d000 40K pte
[ 0.003111] 0x000000004917d000-0x000000004918b000 56K pte
[ 0.003113] 0x000000004918b000-0x000000004918f000 16K pte
[ 0.003116] 0x000000004918f000-0x00000000491ac000 116K pte
[ 0.003117] 0x00000000491ac000-0x00000000491b2000 24K pte
[ 0.003119] 0x00000000491b2000-0x00000000491b5000 12K pte
[ 0.003121] 0x00000000491b5000-0x00000000491b6000 4K pte
[ 0.003122] 0x00000000491b6000-0x00000000491b7000 4K pte
[ 0.003124] 0x00000000491b7000-0x00000000491b8000 4K pte
[ 0.003126] 0x00000000491b8000-0x00000000491c8000 64K pte
[ 0.003128] 0x00000000491c8000-0x00000000491da000 72K pte
[ 0.003130] 0x00000000491da000-0x00000000491db000 4K pte
[ 0.003131] 0x00000000491db000-0x00000000491dc000 4K pte
[ 0.003133] 0x00000000491dc000-0x00000000491e3000 28K pte
[ 0.003135] 0x00000000491e3000-0x00000000491e4000 4K pte
[ 0.003137] 0x00000000491e4000-0x00000000491ea000 24K pte
[ 0.003138] 0x00000000491ea000-0x00000000491eb000 4K pte
[ 0.003140] 0x00000000491eb000-0x00000000491f2000 28K pte
[ 0.003142] 0x00000000491f2000-0x00000000491f4000 8K pte
[ 0.003143] 0x00000000491f4000-0x00000000491f6000 8K pte
[ 0.003145] 0x00000000491f6000-0x00000000491f8000 8K pte
[ 0.003147] 0x00000000491f8000-0x00000000491fe000 24K pte
[ 0.003149] 0x00000000491fe000-0x0000000049210000 72K pte
[ 0.003151] 0x0000000049210000-0x0000000049222000 72K pte
[ 0.003153] 0x0000000049222000-0x0000000049224000 8K pte
[ 0.003155] 0x0000000049224000-0x000000004922c000 32K pte
[ 0.003156] 0x000000004922c000-0x000000004922d000 4K pte
[ 0.003159] 0x000000004922d000-0x0000000049245000 96K pte
[ 0.003161] 0x0000000049245000-0x0000000049248000 12K pte
[ 0.003163] 0x0000000049248000-0x0000000049250000 32K pte
[ 0.003164] 0x0000000049250000-0x0000000049256000 24K pte
[ 0.003166] 0x0000000049256000-0x000000004925e000 32K pte
[ 0.003168] 0x000000004925e000-0x000000004925f000 4K pte
[ 0.003169] 0x000000004925f000-0x0000000049261000 8K pte
[ 0.003171] 0x0000000049261000-0x0000000049262000 4K pte
[ 0.003173] 0x0000000049262000-0x0000000049263000 4K pte
[ 0.003174] 0x0000000049263000-0x0000000049266000 12K pte
[ 0.003176] 0x0000000049266000-0x000000004926f000 36K pte
[ 0.003178] 0x000000004926f000-0x0000000049274000 20K pte
[ 0.003180] 0x0000000049274000-0x0000000049277000 12K pte
[ 0.003181] 0x0000000049277000-0x0000000049278000 4K pte
[ 0.003183] 0x0000000049278000-0x0000000049279000 4K pte
[ 0.003185] 0x0000000049279000-0x000000004927a000 4K pte
[ 0.003186] 0x000000004927a000-0x000000004927b000 4K pte
[ 0.003204] 0x000000004927b000-0x0000000049638000 3828K pte
[ 0.003206] 0x0000000049638000-0x0000000049645000 52K pte
[ 0.003208] 0x0000000049645000-0x000000004965d000 96K pte
[ 0.003210] 0x000000004965d000-0x0000000049667000 40K pte
[ 0.003212] 0x0000000049667000-0x0000000049668000 4K pte
[ 0.003214] 0x0000000049668000-0x000000004967d000 84K pte
[ 0.003216] 0x000000004967d000-0x000000004967f000 8K pte
[ 0.003218] 0x000000004967f000-0x0000000049680000 4K pte
[ 0.003219] 0x0000000049680000-0x0000000049682000 8K pte
[ 0.003221] 0x0000000049682000-0x0000000049683000 4K pte
[ 0.003222] 0x0000000049683000-0x0000000049685000 8K pte
[ 0.003226] 0x0000000049685000-0x00000000496b1000 176K pte
[ 0.003227] 0x00000000496b1000-0x00000000496b5000 16K pte
[ 0.003229] 0x00000000496b5000-0x00000000496b6000 4K pte
[ 0.003231] 0x00000000496b6000-0x00000000496b9000 12K pte
[ 0.003232] 0x00000000496b9000-0x00000000496bb000 8K pte
[ 0.003234] 0x00000000496bb000-0x00000000496be000 12K pte
[ 0.003236] 0x00000000496be000-0x00000000496cc000 56K pte
[ 0.003238] 0x00000000496cc000-0x00000000496ce000 8K pte
[ 0.003240] 0x00000000496ce000-0x00000000496e5000 92K pte
[ 0.003243] 0x00000000496e5000-0x0000000049707000 136K pte
[ 0.003256] 0x0000000049707000-0x000000004983b000 1232K pte
[ 0.003257] 0x000000004983b000-0x000000004983d000 8K pte
[ 0.003259] 0x000000004983d000-0x000000004983f000 8K pte
[ 0.003261] 0x000000004983f000-0x0000000049842000 12K pte
[ 0.003262] 0x0000000049842000-0x0000000049845000 12K pte
[ 0.003264] 0x0000000049845000-0x0000000049847000 8K pte
[ 0.003266] 0x0000000049847000-0x000000004984c000 20K pte
[ 0.003267] 0x000000004984c000-0x000000004984e000 8K pte
[ 0.003269] 0x000000004984e000-0x000000004984f000 4K pte
[ 0.003271] 0x000000004984f000-0x0000000049850000 4K pte
[ 0.003273] 0x0000000049850000-0x0000000049861000 68K pte
[ 0.003274] 0x0000000049861000-0x0000000049862000 4K pte
[ 0.003276] 0x0000000049862000-0x0000000049863000 4K pte
[ 0.003278] 0x0000000049863000-0x0000000049866000 12K pte
[ 0.003279] 0x0000000049866000-0x0000000049867000 4K pte
[ 0.003281] 0x0000000049867000-0x0000000049868000 4K pte
[ 0.003282] 0x0000000049868000-0x0000000049869000 4K pte
[ 0.003285] 0x0000000049869000-0x000000004987a000 68K pte
[ 0.003287] 0x000000004987a000-0x0000000049898000 120K pte
[ 0.003289] 0x0000000049898000-0x000000004989f000 28K pte
[ 0.003291] 0x000000004989f000-0x00000000498ab000 48K pte
[ 0.003293] 0x00000000498ab000-0x00000000498b0000 20K pte
[ 0.003295] 0x00000000498b0000-0x00000000498bd000 52K pte
[ 0.003298] 0x00000000498bd000-0x00000000498dd000 128K pte
[ 0.003300] 0x00000000498dd000-0x00000000498fb000 120K pte
[ 0.003302] 0x00000000498fb000-0x00000000498ff000 16K pte
[ 0.003304] 0x00000000498ff000-0x000000004990d000 56K pte
[ 0.003306] 0x000000004990d000-0x0000000049919000 48K pte
[ 0.003308] 0x0000000049919000-0x000000004992a000 68K pte
[ 0.003310] 0x000000004992a000-0x000000004992c000 8K pte
[ 0.003312] 0x000000004992c000-0x0000000049932000 24K pte
[ 0.003313] 0x0000000049932000-0x0000000049935000 12K pte
[ 0.003316] 0x0000000049935000-0x0000000049949000 80K pte
[ 0.003318] 0x0000000049949000-0x000000004995c000 76K pte
[ 0.003320] 0x000000004995c000-0x000000004995f000 12K pte
[ 0.003321] 0x000000004995f000-0x0000000049962000 12K pte
[ 0.003323] 0x0000000049962000-0x0000000049968000 24K pte
[ 0.003325] 0x0000000049968000-0x000000004996a000 8K pte
[ 0.003326] 0x000000004996a000-0x000000004996c000 8K pte
[ 0.003328] 0x000000004996c000-0x000000004996f000 12K pte
[ 0.003331] 0x000000004996f000-0x000000004998f000 128K pte
[ 0.003333] 0x000000004998f000-0x0000000049994000 20K pte
[ 0.003335] 0x0000000049994000-0x00000000499a7000 76K pte
[ 0.003336] 0x00000000499a7000-0x00000000499aa000 12K pte
[ 0.003338] 0x00000000499aa000-0x00000000499ab000 4K pte
[ 0.003340] 0x00000000499ab000-0x00000000499ae000 12K pte
[ 0.003341] 0x00000000499ae000-0x00000000499b3000 20K pte
[ 0.003343] 0x00000000499b3000-0x00000000499b7000 16K pte
[ 0.003345] 0x00000000499b7000-0x00000000499b8000 4K pte
[ 0.003346] 0x00000000499b8000-0x00000000499b9000 4K pte
[ 0.003349] 0x00000000499b9000-0x00000000499ca000 68K pte
[ 0.003350] 0x00000000499ca000-0x00000000499cb000 4K pte
[ 0.003352] 0x00000000499cb000-0x00000000499d9000 56K pte
[ 0.003354] 0x00000000499d9000-0x00000000499dd000 16K pte
[ 0.003356] 0x00000000499dd000-0x00000000499de000 4K pte
[ 0.003357] 0x00000000499de000-0x00000000499df000 4K pte
[ 0.003360] 0x00000000499df000-0x00000000499f8000 100K pte
[ 0.003361] 0x00000000499f8000-0x00000000499f9000 4K pte
[ 0.003363] 0x00000000499f9000-0x00000000499fb000 8K pte
[ 0.003365] 0x00000000499fb000-0x00000000499fd000 8K pte
[ 0.003366] 0x00000000499fd000-0x00000000499fe000 4K pte
[ 0.003368] 0x00000000499fe000-0x00000000499ff000 4K pte
[ 0.003370] 0x00000000499ff000-0x0000000049a1b000 112K pte
[ 0.003372] 0x0000000049a1b000-0x0000000049a1c000 4K pte
[ 0.003374] 0x0000000049a1c000-0x0000000049a1d000 4K pte
[ 0.003375] 0x0000000049a1d000-0x0000000049a1e000 4K pte
[ 0.003377] 0x0000000049a1e000-0x0000000049a1f000 4K pte
[ 0.003378] 0x0000000049a1f000-0x0000000049a21000 8K pte
[ 0.003380] 0x0000000049a21000-0x0000000049a28000 28K pte
[ 0.003382] 0x0000000049a28000-0x0000000049a2c000 16K pte
[ 0.003384] 0x0000000049a2c000-0x0000000049a2f000 12K pte
[ 0.003386] 0x0000000049a2f000-0x0000000049a35000 24K pte
[ 0.003387] 0x0000000049a35000-0x0000000049a3d000 32K pte
[ 0.003389] 0x0000000049a3d000-0x0000000049a3f000 8K pte
[ 0.003391] 0x0000000049a3f000-0x0000000049a40000 4K pte
[ 0.003392] 0x0000000049a40000-0x0000000049a41000 4K pte
[ 0.003394] 0x0000000049a41000-0x0000000049a42000 4K pte
[ 0.003395] 0x0000000049a42000-0x0000000049a43000 4K pte
[ 0.003397] 0x0000000049a43000-0x0000000049a46000 12K pte
[ 0.003400] 0x0000000049a46000-0x0000000049a69000 140K pte
[ 0.003402] 0x0000000049a69000-0x0000000049a6d000 16K pte
[ 0.003404] 0x0000000049a6d000-0x0000000049a81000 80K pte
[ 0.003406] 0x0000000049a81000-0x0000000049a94000 76K pte
[ 0.003408] 0x0000000049a94000-0x0000000049a97000 12K pte
[ 0.003409] 0x0000000049a97000-0x0000000049a98000 4K pte
[ 0.003411] 0x0000000049a98000-0x0000000049a9d000 20K pte
[ 0.003413] 0x0000000049a9d000-0x0000000049a9e000 4K pte
[ 0.003414] 0x0000000049a9e000-0x0000000049aa0000 8K pte
[ 0.003416] 0x0000000049aa0000-0x0000000049aa1000 4K pte
[ 0.003418] 0x0000000049aa1000-0x0000000049aa3000 8K pte
[ 0.003419] 0x0000000049aa3000-0x0000000049aa6000 12K pte
[ 0.003421] 0x0000000049aa6000-0x0000000049aa7000 4K pte
[ 0.003423] 0x0000000049aa7000-0x0000000049aa9000 8K pte
[ 0.003424] 0x0000000049aa9000-0x0000000049aaa000 4K pte
[ 0.003426] 0x0000000049aaa000-0x0000000049abb000 68K pte
[ 0.003428] 0x0000000049abb000-0x0000000049abc000 4K pte
[ 0.003430] 0x0000000049abc000-0x0000000049ac6000 40K pte
[ 0.003432] 0x0000000049ac6000-0x0000000049aca000 16K pte
[ 0.003433] 0x0000000049aca000-0x0000000049acc000 8K pte
[ 0.003435] 0x0000000049acc000-0x0000000049ace000 8K pte
[ 0.003437] 0x0000000049ace000-0x0000000049acf000 4K pte
[ 0.003438] 0x0000000049acf000-0x0000000049ad0000 4K pte
[ 0.003440] 0x0000000049ad0000-0x0000000049ad2000 8K pte
[ 0.003441] 0x0000000049ad2000-0x0000000049ad3000 4K pte
[ 0.003443] 0x0000000049ad3000-0x0000000049ad7000 16K pte
[ 0.003445] 0x0000000049ad7000-0x0000000049ad9000 8K pte
[ 0.003447] 0x0000000049ad9000-0x0000000049adc000 12K pte
[ 0.003448] 0x0000000049adc000-0x0000000049add000 4K pte
[ 0.003450] 0x0000000049add000-0x0000000049ade000 4K pte
[ 0.003451] 0x0000000049ade000-0x0000000049adf000 4K pte
[ 0.003453] 0x0000000049adf000-0x0000000049ae2000 12K pte
[ 0.003455] 0x0000000049ae2000-0x0000000049ae9000 28K pte
[ 0.003457] 0x0000000049ae9000-0x0000000049aeb000 8K pte
[ 0.003458] 0x0000000049aeb000-0x0000000049aed000 8K pte
[ 0.003460] 0x0000000049aed000-0x0000000049af0000 12K pte
[ 0.003461] 0x0000000049af0000-0x0000000049af1000 4K pte
[ 0.003464] 0x0000000049af1000-0x0000000049b11000 128K pte
[ 0.003466] 0x0000000049b11000-0x0000000049b13000 8K pte
[ 0.003467] 0x0000000049b13000-0x0000000049b14000 4K pte
[ 0.003469] 0x0000000049b14000-0x0000000049b15000 4K pte
[ 0.003471] 0x0000000049b15000-0x0000000049b20000 44K pte
[ 0.003473] 0x0000000049b20000-0x0000000049b21000 4K pte
[ 0.003474] 0x0000000049b21000-0x0000000049b24000 12K pte
[ 0.003476] 0x0000000049b24000-0x0000000049b25000 4K pte
[ 0.003477] 0x0000000049b25000-0x0000000049b26000 4K pte
[ 0.003479] 0x0000000049b26000-0x0000000049b27000 4K pte
[ 0.003481] 0x0000000049b27000-0x0000000049b28000 4K pte
[ 0.003501] 0x0000000049b28000-0x0000000049f29000 4100K pte
[ 0.003503] 0x0000000049f29000-0x0000000049f35000 48K pte
[ 0.003504] 0x0000000049f35000-0x0000000049f37000 8K pte
[ 0.003506] 0x0000000049f37000-0x0000000049f3c000 20K pte
[ 0.003510] 0x0000000049f3c000-0x0000000049f82000 280K pte
[ 0.003512] 0x0000000049f82000-0x0000000049f83000 4K pte
[ 0.003514] 0x0000000049f83000-0x0000000049f84000 4K pte
[ 0.003515] 0x0000000049f84000-0x0000000049f85000 4K pte
[ 0.003534] 0x0000000049f85000-0x000000004a15b000 1880K pte
[ 0.003535] 0x000000004a15b000-0x000000004a15f000 16K pte
[ 0.003537] 0x000000004a15f000-0x000000004a160000 4K pte
[ 0.003539] 0x000000004a160000-0x000000004a161000 4K pte
[ 0.003540] 0x000000004a161000-0x000000004a162000 4K pte
[ 0.003542] 0x000000004a162000-0x000000004a168000 24K pte
[ 0.003565] 0x000000004a168000-0x000000004a9ba000 8520K pte
[ 0.003567] 0x000000004a9ba000-0x000000004a9bb000 4K pte
[ 0.003569] 0x000000004a9bb000-0x000000004a9c2000 28K pte
[ 0.003570] 0x000000004a9c2000-0x000000004a9c5000 12K pte
[ 0.003586] 0x000000004a9c5000-0x000000004b347000 9736K pte
[ 0.003594] 0x000000004b347000-0x000000004b400000 740K pte
[ 0.003596] 0x000000004b400000-0x000000004ce00000 26M pmd
[ 0.003598] 0x000000004ce00000-0x000000004ce07000 28K pte
[ 0.003618] 0x000000004ce07000-0x000000004d000000 2020K RW NX pte
[ 0.003621] 0x000000004d000000-0x000000004dc00000 12M RW PSE NX pmd
[ 0.003638] 0x000000004dc00000-0x000000004dd7b000 1516K RW NX pte
[ 0.003641] 0x000000004dd7b000-0x000000004dd7f000 16K ro x pte
[ 0.003644] 0x000000004dd7f000-0x000000004dd85000 24K RW NX pte
[ 0.003647] 0x000000004dd85000-0x000000004dd88000 12K ro x pte
[ 0.003650] 0x000000004dd88000-0x000000004dd8d000 20K RW NX pte
[ 0.003653] 0x000000004dd8d000-0x000000004dd8e000 4K ro x pte
[ 0.003656] 0x000000004dd8e000-0x000000004dd93000 20K RW NX pte
[ 0.003659] 0x000000004dd93000-0x000000004dd97000 16K ro x pte
[ 0.003662] 0x000000004dd97000-0x000000004dd9d000 24K RW NX pte
[ 0.003665] 0x000000004dd9d000-0x000000004dda1000 16K ro x pte
[ 0.003668] 0x000000004dda1000-0x000000004dda6000 20K RW NX pte
[ 0.003671] 0x000000004dda6000-0x000000004dda7000 4K ro x pte
[ 0.003674] 0x000000004dda7000-0x000000004ddab000 16K RW NX pte
[ 0.003678] 0x000000004ddab000-0x000000004ddb8000 52K ro x pte
[ 0.003681] 0x000000004ddb8000-0x000000004ddbd000 20K RW NX pte
[ 0.003684] 0x000000004ddbd000-0x000000004ddc0000 12K ro x pte
[ 0.003687] 0x000000004ddc0000-0x000000004ddc5000 20K RW NX pte
[ 0.003690] 0x000000004ddc5000-0x000000004ddc6000 4K ro x pte
[ 0.003693] 0x000000004ddc6000-0x000000004ddcb000 20K RW NX pte
[ 0.003696] 0x000000004ddcb000-0x000000004ddcc000 4K ro x pte
[ 0.003699] 0x000000004ddcc000-0x000000004ddd1000 20K RW NX pte
[ 0.003702] 0x000000004ddd1000-0x000000004ddd2000 4K ro x pte
[ 0.003705] 0x000000004ddd2000-0x000000004ddd6000 16K RW NX pte
[ 0.003708] 0x000000004ddd6000-0x000000004dde5000 60K ro x pte
[ 0.003711] 0x000000004dde5000-0x000000004dded000 32K RW NX pte
[ 0.003714] 0x000000004dded000-0x000000004ddf2000 20K ro x pte
[ 0.003717] 0x000000004ddf2000-0x000000004ddf7000 20K RW NX pte
[ 0.003720] 0x000000004ddf7000-0x000000004ddfa000 12K ro x pte
[ 0.003724] 0x000000004ddfa000-0x000000004ddff000 20K RW NX pte
[ 0.003727] 0x000000004ddff000-0x000000004e200000 4100K pte
[ 0.003734] 0x000000004e200000-0x000000004e2ab000 684K pte
[ 0.003745] 0x000000004e2ab000-0x000000004e3ab000 1M pte
[ 0.003748] 0x000000004e3ab000-0x000000004e3c6000 108K pte
[ 0.003751] 0x000000004e3c6000-0x000000004e3f2000 176K pte
[ 0.003753] 0x000000004e3f2000-0x000000004e40b000 100K pte
[ 0.003756] 0x000000004e40b000-0x000000004e425000 104K pte
[ 0.003758] 0x000000004e425000-0x000000004e438000 76K pte
[ 0.003793] 0x000000004e438000-0x000000004efc6000 11832K pte
[ 0.003794] 0x000000004efc6000-0x000000004efc9000 12K pte
[ 0.003797] 0x000000004efc9000-0x000000004efdc000 76K pte
[ 0.003798] 0x000000004efdc000-0x000000004efde000 8K pte
[ 0.003800] 0x000000004efde000-0x000000004efef000 68K pte
[ 0.003803] 0x000000004efef000-0x000000004f000000 68K pte
[ 0.003814] 0x000000004f000000-0x0000000080000000 784M pmd
[ 0.003816] 0x0000000080000000-0x00000000c0000000 1G pud
[ 0.003827] 0x00000000c0000000-0x00000000f0000000 768M pmd
[ 0.003831] 0x00000000f0000000-0x00000000f8000000 128M RW PSE NX pmd
[ 0.003835] 0x00000000f8000000-0x00000000fd000000 80M pmd
[ 0.003846] 0x00000000fd000000-0x00000000fd100000 1M pte
[ 0.003857] 0x00000000fd100000-0x00000000fd200000 1M RW PCD NX pte
[ 0.003860] 0x00000000fd200000-0x00000000fea00000 24M pmd
[ 0.003862] 0x00000000fea00000-0x00000000fea10000 64K RW PCD NX pte
[ 0.003879] 0x00000000fea10000-0x00000000feb80000 1472K pte
[ 0.003885] 0x00000000feb80000-0x00000000fec02000 520K RW PCD NX pte
[ 0.003888] 0x00000000fec02000-0x00000000fec10000 56K pte
[ 0.003890] 0x00000000fec10000-0x00000000fec11000 4K RW PCD NX pte
[ 0.003894] 0x00000000fec11000-0x00000000fec30000 124K pte
[ 0.003896] 0x00000000fec30000-0x00000000fec31000 4K RW PCD NX pte
[ 0.003906] 0x00000000fec31000-0x00000000fed00000 828K pte
[ 0.003908] 0x00000000fed00000-0x00000000fed01000 4K RW PCD NX pte
[ 0.003913] 0x00000000fed01000-0x00000000fed40000 252K pte
[ 0.003915] 0x00000000fed40000-0x00000000fed45000 20K RW PCD NX pte
[ 0.003920] 0x00000000fed45000-0x00000000fed80000 236K pte
[ 0.003922] 0x00000000fed80000-0x00000000fed90000 64K RW PCD NX pte
[ 0.003927] 0x00000000fed90000-0x00000000fedc2000 200K pte
[ 0.003929] 0x00000000fedc2000-0x00000000fedd0000 56K RW PCD NX pte
[ 0.003932] 0x00000000fedd0000-0x00000000fedd4000 16K pte
[ 0.003933] 0x00000000fedd4000-0x00000000fedd6000 8K RW PCD NX pte
[ 0.003938] 0x00000000fedd6000-0x00000000fee00000 168K pte
[ 0.003939] 0x00000000fee00000-0x00000000ff000000 2M pmd
[ 0.003942] 0x00000000ff000000-0x0000000100000000 16M RW PCD PSE NX pmd
[ 0.003953] 0x0000000100000000-0x00000001000f8000 992K pte
[ 0.003955] 0x00000001000f8000-0x0000000100100000 32K RW NX pte
[ 0.003968] 0x0000000100100000-0x0000000100200000 1M pte
[ 0.003982] 0x0000000100200000-0x0000000140000000 1022M pmd
[ 0.003997] 0x0000000140000000-0x0000008000000000 507G pud
[ 0.004012] 0x0000008000000000-0xffff880000000000 17179745792G pgd
[ 0.004014] ---[ Kernel Space ]---
[ 0.004015] 0xffff880000000000-0xffff888000000000 512G pgd
[ 0.004016] ---[ LDT remap ]---
[ 0.004017] 0xffff888000000000-0xffff888000001000 4K RW GLB NX pte
[ 0.004020] ---[ Low Kernel Mapping ]---
[ 0.004021] 0xffff888000001000-0xffff888000002000 4K RW GLB NX pte
[ 0.004024] ---[ vmalloc() Area ]---
[ 0.004024] 0xffff888000002000-0xffff888000003000 4K RW GLB NX pte
[ 0.004027] ---[ Vmemmap ]---
[ 0.004046] 0xffff888000003000-0xffff888000200000 2036K RW GLB NX pte
[ 0.004050] 0xffff888000200000-0xffff888004600000 68M RW PSE GLB NX pmd
[ 0.004067] 0xffff888004600000-0xffff88800478c000 1584K RW GLB NX pte
[ 0.004070] 0xffff88800478c000-0xffff88800478d000 4K ro GLB NX pte
[ 0.004077] 0xffff88800478d000-0xffff888004800000 460K RW GLB NX pte
[ 0.004082] 0xffff888004800000-0xffff888009c00000 84M RW PSE GLB NX pmd
[ 0.004099] 0xffff888009c00000-0xffff888009d82000 1544K RW GLB NX pte
[ 0.004106] 0xffff888009d82000-0xffff888009e00000 504K pte
[ 0.004108] 0xffff888009e00000-0xffff88800a000000 2M pmd
[ 0.004110] 0xffff88800a000000-0xffff88800a200000 2M RW PSE GLB NX pmd
[ 0.004113] 0xffff88800a200000-0xffff88800a20b000 44K pte
[ 0.004133] 0xffff88800a20b000-0xffff88800a400000 2004K RW GLB NX pte
[ 0.004136] 0xffff88800a400000-0xffff88800b000000 12M RW PSE GLB NX pmd
[ 0.004140] 0xffff88800b000000-0xffff88800b020000 128K pte
[ 0.004159] 0xffff88800b020000-0xffff88800b200000 1920K RW GLB NX pte
[ 0.004182] 0xffff88800b200000-0xffff88804b200000 1G RW PSE GLB NX pmd
[ 0.004197] 0xffff88804b200000-0xffff88804b347000 1308K RW GLB NX pte
[ 0.004207] 0xffff88804b347000-0xffff88804b400000 740K pte
[ 0.004209] 0xffff88804b400000-0xffff88804dc00000 40M pmd
[ 0.004229] 0xffff88804dc00000-0xffff88804ddff000 2044K pte
[ 0.004231] 0xffff88804ddff000-0xffff88804de00000 4K RW GLB NX pte
[ 0.004234] 0xffff88804de00000-0xffff88804f000000 18M RW PSE GLB NX pmd
[ 0.004247] 0xffff88804f000000-0xffff888080000000 784M pmd
[ 0.004248] 0xffff888080000000-0xffff888100000000 2G pud
[ 0.004251] 0xffff888100000000-0xffff888400000000 12G RW PSE GLB NX pud
[ 0.004269] 0xffff888400000000-0xffff88842f200000 754M RW PSE GLB NX pmd
[ 0.004283] 0xffff88842f200000-0xffff88842f340000 1280K RW GLB NX pte
[ 0.004293] 0xffff88842f340000-0xffff88842f400000 768K pte
[ 0.004298] 0xffff88842f400000-0xffff888440000000 268M pmd
[ 0.004312] 0xffff888440000000-0xffff890000000000 495G pud
[ 0.004320] 0xffff890000000000-0xffffc90000000000 64T pgd
[ 0.004322] 0xffffc90000000000-0xffffc90000004000 16K RW GLB NX pte
[ 0.004325] 0xffffc90000004000-0xffffc90000005000 4K pte
[ 0.004327] 0xffffc90000005000-0xffffc90000006000 4K RW GLB NX pte
[ 0.004330] 0xffffc90000006000-0xffffc90000008000 8K pte
[ 0.004331] 0xffffc90000008000-0xffffc9000000f000 28K RW GLB NX pte
[ 0.004334] 0xffffc9000000f000-0xffffc90000010000 4K pte
[ 0.004336] 0xffffc90000010000-0xffffc90000011000 4K RW GLB NX pte
[ 0.004339] 0xffffc90000011000-0xffffc90000012000 4K pte
[ 0.004341] 0xffffc90000012000-0xffffc90000013000 4K RW GLB NX pte
[ 0.004344] 0xffffc90000013000-0xffffc90000014000 4K pte
[ 0.004345] 0xffffc90000014000-0xffffc90000015000 4K RW GLB NX pte
[ 0.004348] 0xffffc90000015000-0xffffc90000018000 12K pte
[ 0.004350] 0xffffc90000018000-0xffffc9000001e000 24K RW GLB NX pte
[ 0.004353] 0xffffc9000001e000-0xffffc90000020000 8K pte
[ 0.004355] 0xffffc90000020000-0xffffc90000024000 16K RW GLB NX pte
[ 0.004358] 0xffffc90000024000-0xffffc90000025000 4K pte
[ 0.004360] 0xffffc90000025000-0xffffc90000026000 4K RW GLB NX pte
[ 0.004362] 0xffffc90000026000-0xffffc90000027000 4K pte
[ 0.004364] 0xffffc90000027000-0xffffc90000028000 4K RW GLB NX pte
[ 0.004367] 0xffffc90000028000-0xffffc90000029000 4K pte
[ 0.004369] 0xffffc90000029000-0xffffc9000002a000 4K RW GLB NX pte
[ 0.004372] 0xffffc9000002a000-0xffffc9000002b000 4K pte
[ 0.004373] 0xffffc9000002b000-0xffffc9000002c000 4K RW GLB NX pte
[ 0.004376] 0xffffc9000002c000-0xffffc9000002d000 4K pte
[ 0.004378] 0xffffc9000002d000-0xffffc9000002e000 4K RW GLB NX pte
[ 0.004381] 0xffffc9000002e000-0xffffc9000002f000 4K pte
[ 0.004382] 0xffffc9000002f000-0xffffc90000030000 4K RW GLB NX pte
[ 0.004385] 0xffffc90000030000-0xffffc90000031000 4K pte
[ 0.004387] 0xffffc90000031000-0xffffc90000032000 4K RW GLB NX pte
[ 0.004390] 0xffffc90000032000-0xffffc90000033000 4K pte
[ 0.004392] 0xffffc90000033000-0xffffc90000034000 4K RW GLB NX pte
[ 0.004395] 0xffffc90000034000-0xffffc90000036000 8K pte
[ 0.004396] 0xffffc90000036000-0xffffc90000038000 8K RW GLB NX pte
[ 0.004399] 0xffffc90000038000-0xffffc90000039000 4K pte
[ 0.004401] 0xffffc90000039000-0xffffc9000003a000 4K RW GLB NX pte
[ 0.004404] 0xffffc9000003a000-0xffffc9000003c000 8K pte
[ 0.004406] 0xffffc9000003c000-0xffffc90000040000 16K RW GLB NX pte
[ 0.004409] 0xffffc90000040000-0xffffc90000041000 4K pte
[ 0.004410] 0xffffc90000041000-0xffffc90000042000 4K RW GLB NX pte
[ 0.004413] 0xffffc90000042000-0xffffc90000043000 4K pte
[ 0.004415] 0xffffc90000043000-0xffffc90000044000 4K RW GLB NX pte
[ 0.004418] 0xffffc90000044000-0xffffc90000046000 8K pte
[ 0.004420] 0xffffc90000046000-0xffffc90000048000 8K RW GLB NX pte
[ 0.004422] 0xffffc90000048000-0xffffc90000049000 4K pte
[ 0.004424] 0xffffc90000049000-0xffffc9000004a000 4K RW GLB NX pte
[ 0.004427] 0xffffc9000004a000-0xffffc9000004b000 4K pte
[ 0.004429] 0xffffc9000004b000-0xffffc9000004c000 4K RW PCD GLB NX pte
[ 0.004434] 0xffffc9000004c000-0xffffc90000080000 208K pte
[ 0.004440] 0xffffc90000080000-0xffffc90000100000 512K RW PCD GLB NX pte
[ 0.004452] 0xffffc90000100000-0xffffc90000200000 1M pte
[ 0.004466] 0xffffc90000200000-0xffffc90040000000 1022M pmd
[ 0.005297] 0xffffc90040000000-0xffffe90000000000 32767G pud
[ 0.005299] 0xffffe90000000000-0xffffea0000000000 1T pgd
[ 0.005301] 0xffffea0000000000-0xffffea0001400000 20M RW PSE GLB NX pmd
[ 0.005304] 0xffffea0001400000-0xffffea0004000000 44M pmd
[ 0.005310] 0xffffea0004000000-0xffffea0010c00000 204M RW PSE GLB NX pmd
[ 0.005322] 0xffffea0010c00000-0xffffea0040000000 756M pmd
[ 0.005337] 0xffffea0040000000-0xffffea8000000000 511G pud
[ 0.005341] 0xffffea8000000000-0xfffffe0000000000 19968G pgd
[ 0.005342] ---[ CPU entry Area ]---
[ 0.005343] 0xfffffe0000000000-0xfffffe0000002000 8K ro GLB NX pte
[ 0.005346] 0xfffffe0000002000-0xfffffe0000003000 4K RW GLB NX pte
[ 0.005349] 0xfffffe0000003000-0xfffffe0000008000 20K ro GLB NX pte
[ 0.005352] 0xfffffe0000008000-0xfffffe0000009000 4K pte
[ 0.005354] 0xfffffe0000009000-0xfffffe000000b000 8K RW GLB NX pte
[ 0.005357] 0xfffffe000000b000-0xfffffe000000c000 4K pte
[ 0.005358] 0xfffffe000000c000-0xfffffe000000e000 8K RW GLB NX pte
[ 0.005361] 0xfffffe000000e000-0xfffffe000000f000 4K pte
[ 0.005363] 0xfffffe000000f000-0xfffffe0000011000 8K RW GLB NX pte
[ 0.005366] 0xfffffe0000011000-0xfffffe0000012000 4K pte
[ 0.005368] 0xfffffe0000012000-0xfffffe0000014000 8K RW GLB NX pte
[ 0.005372] 0xfffffe0000014000-0xfffffe000003c000 160K pte
[ 0.005374] 0xfffffe000003c000-0xfffffe000003d000 4K ro GLB NX pte
[ 0.005377] 0xfffffe000003d000-0xfffffe000003e000 4K RW GLB NX pte
[ 0.005380] 0xfffffe000003e000-0xfffffe0000043000 20K ro GLB NX pte
[ 0.005383] 0xfffffe0000043000-0xfffffe0000044000 4K pte
[ 0.005384] 0xfffffe0000044000-0xfffffe0000046000 8K RW GLB NX pte
[ 0.005387] 0xfffffe0000046000-0xfffffe0000047000 4K pte
[ 0.005389] 0xfffffe0000047000-0xfffffe0000049000 8K RW GLB NX pte
[ 0.005392] 0xfffffe0000049000-0xfffffe000004a000 4K pte
[ 0.005394] 0xfffffe000004a000-0xfffffe000004c000 8K RW GLB NX pte
[ 0.005397] 0xfffffe000004c000-0xfffffe000004d000 4K pte
[ 0.005398] 0xfffffe000004d000-0xfffffe000004f000 8K RW GLB NX pte
[ 0.005403] 0xfffffe000004f000-0xfffffe0000077000 160K pte
[ 0.005404] 0xfffffe0000077000-0xfffffe0000078000 4K ro GLB NX pte
[ 0.005407] 0xfffffe0000078000-0xfffffe0000079000 4K RW GLB NX pte
[ 0.005410] 0xfffffe0000079000-0xfffffe000007e000 20K ro GLB NX pte
[ 0.005413] 0xfffffe000007e000-0xfffffe000007f000 4K pte
[ 0.005415] 0xfffffe000007f000-0xfffffe0000081000 8K RW GLB NX pte
[ 0.005418] 0xfffffe0000081000-0xfffffe0000082000 4K pte
[ 0.005420] 0xfffffe0000082000-0xfffffe0000084000 8K RW GLB NX pte
[ 0.005423] 0xfffffe0000084000-0xfffffe0000085000 4K pte
[ 0.005425] 0xfffffe0000085000-0xfffffe0000087000 8K RW GLB NX pte
[ 0.005428] 0xfffffe0000087000-0xfffffe0000088000 4K pte
[ 0.005429] 0xfffffe0000088000-0xfffffe000008a000 8K RW GLB NX pte
[ 0.005434] 0xfffffe000008a000-0xfffffe00000b2000 160K pte
[ 0.005435] 0xfffffe00000b2000-0xfffffe00000b3000 4K ro GLB NX pte
[ 0.005438] 0xfffffe00000b3000-0xfffffe00000b4000 4K RW GLB NX pte
[ 0.005441] 0xfffffe00000b4000-0xfffffe00000b9000 20K ro GLB NX pte
[ 0.005444] 0xfffffe00000b9000-0xfffffe00000ba000 4K pte
[ 0.005446] 0xfffffe00000ba000-0xfffffe00000bc000 8K RW GLB NX pte
[ 0.005449] 0xfffffe00000bc000-0xfffffe00000bd000 4K pte
[ 0.005451] 0xfffffe00000bd000-0xfffffe00000bf000 8K RW GLB NX pte
[ 0.005454] 0xfffffe00000bf000-0xfffffe00000c0000 4K pte
[ 0.005455] 0xfffffe00000c0000-0xfffffe00000c2000 8K RW GLB NX pte
[ 0.005458] 0xfffffe00000c2000-0xfffffe00000c3000 4K pte
[ 0.005460] 0xfffffe00000c3000-0xfffffe00000c5000 8K RW GLB NX pte
[ 0.005464] 0xfffffe00000c5000-0xfffffe00000ed000 160K pte
[ 0.005466] 0xfffffe00000ed000-0xfffffe00000ee000 4K ro GLB NX pte
[ 0.005469] 0xfffffe00000ee000-0xfffffe00000ef000 4K RW GLB NX pte
[ 0.005472] 0xfffffe00000ef000-0xfffffe00000f4000 20K ro GLB NX pte
[ 0.005475] 0xfffffe00000f4000-0xfffffe00000f5000 4K pte
[ 0.005477] 0xfffffe00000f5000-0xfffffe00000f7000 8K RW GLB NX pte
[ 0.005480] 0xfffffe00000f7000-0xfffffe00000f8000 4K pte
[ 0.005481] 0xfffffe00000f8000-0xfffffe00000fa000 8K RW GLB NX pte
[ 0.005484] 0xfffffe00000fa000-0xfffffe00000fb000 4K pte
[ 0.005486] 0xfffffe00000fb000-0xfffffe00000fd000 8K RW GLB NX pte
[ 0.005489] 0xfffffe00000fd000-0xfffffe00000fe000 4K pte
[ 0.005491] 0xfffffe00000fe000-0xfffffe0000100000 8K RW GLB NX pte
[ 0.005495] 0xfffffe0000100000-0xfffffe0000128000 160K pte
[ 0.005497] 0xfffffe0000128000-0xfffffe0000129000 4K ro GLB NX pte
[ 0.005500] 0xfffffe0000129000-0xfffffe000012a000 4K RW GLB NX pte
[ 0.005503] 0xfffffe000012a000-0xfffffe000012f000 20K ro GLB NX pte
[ 0.005506] 0xfffffe000012f000-0xfffffe0000130000 4K pte
[ 0.005507] 0xfffffe0000130000-0xfffffe0000132000 8K RW GLB NX pte
[ 0.005510] 0xfffffe0000132000-0xfffffe0000133000 4K pte
[ 0.005512] 0xfffffe0000133000-0xfffffe0000135000 8K RW GLB NX pte
[ 0.005515] 0xfffffe0000135000-0xfffffe0000136000 4K pte
[ 0.005517] 0xfffffe0000136000-0xfffffe0000138000 8K RW GLB NX pte
[ 0.005520] 0xfffffe0000138000-0xfffffe0000139000 4K pte
[ 0.005521] 0xfffffe0000139000-0xfffffe000013b000 8K RW GLB NX pte
[ 0.005526] 0xfffffe000013b000-0xfffffe0000163000 160K pte
[ 0.005528] 0xfffffe0000163000-0xfffffe0000164000 4K ro GLB NX pte
[ 0.005531] 0xfffffe0000164000-0xfffffe0000165000 4K RW GLB NX pte
[ 0.005534] 0xfffffe0000165000-0xfffffe000016a000 20K ro GLB NX pte
[ 0.005537] 0xfffffe000016a000-0xfffffe000016b000 4K pte
[ 0.005538] 0xfffffe000016b000-0xfffffe000016d000 8K RW GLB NX pte
[ 0.005541] 0xfffffe000016d000-0xfffffe000016e000 4K pte
[ 0.005543] 0xfffffe000016e000-0xfffffe0000170000 8K RW GLB NX pte
[ 0.005546] 0xfffffe0000170000-0xfffffe0000171000 4K pte
[ 0.005548] 0xfffffe0000171000-0xfffffe0000173000 8K RW GLB NX pte
[ 0.005551] 0xfffffe0000173000-0xfffffe0000174000 4K pte
[ 0.005552] 0xfffffe0000174000-0xfffffe0000176000 8K RW GLB NX pte
[ 0.005557] 0xfffffe0000176000-0xfffffe000019e000 160K pte
[ 0.005559] 0xfffffe000019e000-0xfffffe000019f000 4K ro GLB NX pte
[ 0.005562] 0xfffffe000019f000-0xfffffe00001a0000 4K RW GLB NX pte
[ 0.005565] 0xfffffe00001a0000-0xfffffe00001a5000 20K ro GLB NX pte
[ 0.005568] 0xfffffe00001a5000-0xfffffe00001a6000 4K pte
[ 0.005569] 0xfffffe00001a6000-0xfffffe00001a8000 8K RW GLB NX pte
[ 0.005572] 0xfffffe00001a8000-0xfffffe00001a9000 4K pte
[ 0.005574] 0xfffffe00001a9000-0xfffffe00001ab000 8K RW GLB NX pte
[ 0.005577] 0xfffffe00001ab000-0xfffffe00001ac000 4K pte
[ 0.005579] 0xfffffe00001ac000-0xfffffe00001ae000 8K RW GLB NX pte
[ 0.005582] 0xfffffe00001ae000-0xfffffe00001af000 4K pte
[ 0.005584] 0xfffffe00001af000-0xfffffe00001b1000 8K RW GLB NX pte
[ 0.005588] 0xfffffe00001b1000-0xfffffe00001d9000 160K pte
[ 0.005590] 0xfffffe00001d9000-0xfffffe00001da000 4K ro GLB NX pte
[ 0.005593] 0xfffffe00001da000-0xfffffe00001db000 4K RW GLB NX pte
[ 0.005596] 0xfffffe00001db000-0xfffffe00001e0000 20K ro GLB NX pte
[ 0.005599] 0xfffffe00001e0000-0xfffffe00001e1000 4K pte
[ 0.005601] 0xfffffe00001e1000-0xfffffe00001e3000 8K RW GLB NX pte
[ 0.005604] 0xfffffe00001e3000-0xfffffe00001e4000 4K pte
[ 0.005605] 0xfffffe00001e4000-0xfffffe00001e6000 8K RW GLB NX pte
[ 0.005608] 0xfffffe00001e6000-0xfffffe00001e7000 4K pte
[ 0.005610] 0xfffffe00001e7000-0xfffffe00001e9000 8K RW GLB NX pte
[ 0.005613] 0xfffffe00001e9000-0xfffffe00001ea000 4K pte
[ 0.005614] 0xfffffe00001ea000-0xfffffe00001ec000 8K RW GLB NX pte
[ 0.005619] 0xfffffe00001ec000-0xfffffe0000214000 160K pte
[ 0.005621] 0xfffffe0000214000-0xfffffe0000215000 4K ro GLB NX pte
[ 0.005624] 0xfffffe0000215000-0xfffffe0000216000 4K RW GLB NX pte
[ 0.005627] 0xfffffe0000216000-0xfffffe000021b000 20K ro GLB NX pte
[ 0.005630] 0xfffffe000021b000-0xfffffe000021c000 4K pte
[ 0.005632] 0xfffffe000021c000-0xfffffe000021e000 8K RW GLB NX pte
[ 0.005635] 0xfffffe000021e000-0xfffffe000021f000 4K pte
[ 0.005636] 0xfffffe000021f000-0xfffffe0000221000 8K RW GLB NX pte
[ 0.005639] 0xfffffe0000221000-0xfffffe0000222000 4K pte
[ 0.005641] 0xfffffe0000222000-0xfffffe0000224000 8K RW GLB NX pte
[ 0.005644] 0xfffffe0000224000-0xfffffe0000225000 4K pte
[ 0.005646] 0xfffffe0000225000-0xfffffe0000227000 8K RW GLB NX pte
[ 0.005650] 0xfffffe0000227000-0xfffffe000024f000 160K pte
[ 0.005652] 0xfffffe000024f000-0xfffffe0000250000 4K ro GLB NX pte
[ 0.005655] 0xfffffe0000250000-0xfffffe0000251000 4K RW GLB NX pte
[ 0.005658] 0xfffffe0000251000-0xfffffe0000256000 20K ro GLB NX pte
[ 0.005661] 0xfffffe0000256000-0xfffffe0000257000 4K pte
[ 0.005663] 0xfffffe0000257000-0xfffffe0000259000 8K RW GLB NX pte
[ 0.005666] 0xfffffe0000259000-0xfffffe000025a000 4K pte
[ 0.005667] 0xfffffe000025a000-0xfffffe000025c000 8K RW GLB NX pte
[ 0.005670] 0xfffffe000025c000-0xfffffe000025d000 4K pte
[ 0.005672] 0xfffffe000025d000-0xfffffe000025f000 8K RW GLB NX pte
[ 0.005675] 0xfffffe000025f000-0xfffffe0000260000 4K pte
[ 0.005677] 0xfffffe0000260000-0xfffffe0000262000 8K RW GLB NX pte
[ 0.005681] 0xfffffe0000262000-0xfffffe000028a000 160K pte
[ 0.005683] 0xfffffe000028a000-0xfffffe000028b000 4K ro GLB NX pte
[ 0.005685] 0xfffffe000028b000-0xfffffe000028c000 4K RW GLB NX pte
[ 0.005689] 0xfffffe000028c000-0xfffffe0000291000 20K ro GLB NX pte
[ 0.005692] 0xfffffe0000291000-0xfffffe0000292000 4K pte
[ 0.005693] 0xfffffe0000292000-0xfffffe0000294000 8K RW GLB NX pte
[ 0.005696] 0xfffffe0000294000-0xfffffe0000295000 4K pte
[ 0.005698] 0xfffffe0000295000-0xfffffe0000297000 8K RW GLB NX pte
[ 0.005701] 0xfffffe0000297000-0xfffffe0000298000 4K pte
[ 0.005702] 0xfffffe0000298000-0xfffffe000029a000 8K RW GLB NX pte
[ 0.005705] 0xfffffe000029a000-0xfffffe000029b000 4K pte
[ 0.005707] 0xfffffe000029b000-0xfffffe000029d000 8K RW GLB NX pte
[ 0.005711] 0xfffffe000029d000-0xfffffe00002c5000 160K pte
[ 0.005713] 0xfffffe00002c5000-0xfffffe00002c6000 4K ro GLB NX pte
[ 0.005716] 0xfffffe00002c6000-0xfffffe00002c7000 4K RW GLB NX pte
[ 0.005719] 0xfffffe00002c7000-0xfffffe00002cc000 20K ro GLB NX pte
[ 0.005722] 0xfffffe00002cc000-0xfffffe00002cd000 4K pte
[ 0.005724] 0xfffffe00002cd000-0xfffffe00002cf000 8K RW GLB NX pte
[ 0.005727] 0xfffffe00002cf000-0xfffffe00002d0000 4K pte
[ 0.005728] 0xfffffe00002d0000-0xfffffe00002d2000 8K RW GLB NX pte
[ 0.005731] 0xfffffe00002d2000-0xfffffe00002d3000 4K pte
[ 0.005733] 0xfffffe00002d3000-0xfffffe00002d5000 8K RW GLB NX pte
[ 0.005736] 0xfffffe00002d5000-0xfffffe00002d6000 4K pte
[ 0.005738] 0xfffffe00002d6000-0xfffffe00002d8000 8K RW GLB NX pte
[ 0.005742] 0xfffffe00002d8000-0xfffffe0000300000 160K pte
[ 0.005744] 0xfffffe0000300000-0xfffffe0000301000 4K ro GLB NX pte
[ 0.005747] 0xfffffe0000301000-0xfffffe0000302000 4K RW GLB NX pte
[ 0.005750] 0xfffffe0000302000-0xfffffe0000307000 20K ro GLB NX pte
[ 0.005753] 0xfffffe0000307000-0xfffffe0000308000 4K pte
[ 0.005754] 0xfffffe0000308000-0xfffffe000030a000 8K RW GLB NX pte
[ 0.005757] 0xfffffe000030a000-0xfffffe000030b000 4K pte
[ 0.005759] 0xfffffe000030b000-0xfffffe000030d000 8K RW GLB NX pte
[ 0.005762] 0xfffffe000030d000-0xfffffe000030e000 4K pte
[ 0.005763] 0xfffffe000030e000-0xfffffe0000310000 8K RW GLB NX pte
[ 0.005766] 0xfffffe0000310000-0xfffffe0000311000 4K pte
[ 0.005768] 0xfffffe0000311000-0xfffffe0000313000 8K RW GLB NX pte
[ 0.005772] 0xfffffe0000313000-0xfffffe000033b000 160K pte
[ 0.005774] 0xfffffe000033b000-0xfffffe000033c000 4K ro GLB NX pte
[ 0.005777] 0xfffffe000033c000-0xfffffe000033d000 4K RW GLB NX pte
[ 0.005780] 0xfffffe000033d000-0xfffffe0000342000 20K ro GLB NX pte
[ 0.005783] 0xfffffe0000342000-0xfffffe0000343000 4K pte
[ 0.005785] 0xfffffe0000343000-0xfffffe0000345000 8K RW GLB NX pte
[ 0.005788] 0xfffffe0000345000-0xfffffe0000346000 4K pte
[ 0.005789] 0xfffffe0000346000-0xfffffe0000348000 8K RW GLB NX pte
[ 0.005792] 0xfffffe0000348000-0xfffffe0000349000 4K pte
[ 0.005794] 0xfffffe0000349000-0xfffffe000034b000 8K RW GLB NX pte
[ 0.005797] 0xfffffe000034b000-0xfffffe000034c000 4K pte
[ 0.005799] 0xfffffe000034c000-0xfffffe000034e000 8K RW GLB NX pte
[ 0.005803] 0xfffffe000034e000-0xfffffe0000376000 160K pte
[ 0.005805] 0xfffffe0000376000-0xfffffe0000377000 4K ro GLB NX pte
[ 0.005808] 0xfffffe0000377000-0xfffffe0000378000 4K RW GLB NX pte
[ 0.005811] 0xfffffe0000378000-0xfffffe000037d000 20K ro GLB NX pte
[ 0.005814] 0xfffffe000037d000-0xfffffe000037e000 4K pte
[ 0.005815] 0xfffffe000037e000-0xfffffe0000380000 8K RW GLB NX pte
[ 0.005818] 0xfffffe0000380000-0xfffffe0000381000 4K pte
[ 0.005820] 0xfffffe0000381000-0xfffffe0000383000 8K RW GLB NX pte
[ 0.005823] 0xfffffe0000383000-0xfffffe0000384000 4K pte
[ 0.005824] 0xfffffe0000384000-0xfffffe0000386000 8K RW GLB NX pte
[ 0.005827] 0xfffffe0000386000-0xfffffe0000387000 4K pte
[ 0.005829] 0xfffffe0000387000-0xfffffe0000389000 8K RW GLB NX pte
[ 0.005833] 0xfffffe0000389000-0xfffffe00003b1000 160K pte
[ 0.005835] 0xfffffe00003b1000-0xfffffe00003b2000 4K ro GLB NX pte
[ 0.005838] 0xfffffe00003b2000-0xfffffe00003b3000 4K RW GLB NX pte
[ 0.005841] 0xfffffe00003b3000-0xfffffe00003b8000 20K ro GLB NX pte
[ 0.005844] 0xfffffe00003b8000-0xfffffe00003b9000 4K pte
[ 0.005846] 0xfffffe00003b9000-0xfffffe00003bb000 8K RW GLB NX pte
[ 0.005849] 0xfffffe00003bb000-0xfffffe00003bc000 4K pte
[ 0.005851] 0xfffffe00003bc000-0xfffffe00003be000 8K RW GLB NX pte
[ 0.005854] 0xfffffe00003be000-0xfffffe00003bf000 4K pte
[ 0.005855] 0xfffffe00003bf000-0xfffffe00003c1000 8K RW GLB NX pte
[ 0.005858] 0xfffffe00003c1000-0xfffffe00003c2000 4K pte
[ 0.005860] 0xfffffe00003c2000-0xfffffe00003c4000 8K RW GLB NX pte
[ 0.005864] 0xfffffe00003c4000-0xfffffe00003ec000 160K pte
[ 0.005866] 0xfffffe00003ec000-0xfffffe00003ed000 4K ro GLB NX pte
[ 0.005869] 0xfffffe00003ed000-0xfffffe00003ee000 4K RW GLB NX pte
[ 0.005872] 0xfffffe00003ee000-0xfffffe00003f3000 20K ro GLB NX pte
[ 0.005875] 0xfffffe00003f3000-0xfffffe00003f4000 4K pte
[ 0.005877] 0xfffffe00003f4000-0xfffffe00003f6000 8K RW GLB NX pte
[ 0.005880] 0xfffffe00003f6000-0xfffffe00003f7000 4K pte
[ 0.005881] 0xfffffe00003f7000-0xfffffe00003f9000 8K RW GLB NX pte
[ 0.005884] 0xfffffe00003f9000-0xfffffe00003fa000 4K pte
[ 0.005886] 0xfffffe00003fa000-0xfffffe00003fc000 8K RW GLB NX pte
[ 0.005889] 0xfffffe00003fc000-0xfffffe00003fd000 4K pte
[ 0.005891] 0xfffffe00003fd000-0xfffffe00003ff000 8K RW GLB NX pte
[ 0.005895] 0xfffffe00003ff000-0xfffffe0000427000 160K pte
[ 0.005897] 0xfffffe0000427000-0xfffffe0000428000 4K ro GLB NX pte
[ 0.005900] 0xfffffe0000428000-0xfffffe0000429000 4K RW GLB NX pte
[ 0.005903] 0xfffffe0000429000-0xfffffe000042e000 20K ro GLB NX pte
[ 0.005906] 0xfffffe000042e000-0xfffffe000042f000 4K pte
[ 0.005908] 0xfffffe000042f000-0xfffffe0000431000 8K RW GLB NX pte
[ 0.005910] 0xfffffe0000431000-0xfffffe0000432000 4K pte
[ 0.005912] 0xfffffe0000432000-0xfffffe0000434000 8K RW GLB NX pte
[ 0.005915] 0xfffffe0000434000-0xfffffe0000435000 4K pte
[ 0.005917] 0xfffffe0000435000-0xfffffe0000437000 8K RW GLB NX pte
[ 0.005920] 0xfffffe0000437000-0xfffffe0000438000 4K pte
[ 0.005921] 0xfffffe0000438000-0xfffffe000043a000 8K RW GLB NX pte
[ 0.005926] 0xfffffe000043a000-0xfffffe0000462000 160K pte
[ 0.005927] 0xfffffe0000462000-0xfffffe0000463000 4K ro GLB NX pte
[ 0.005930] 0xfffffe0000463000-0xfffffe0000464000 4K RW GLB NX pte
[ 0.005933] 0xfffffe0000464000-0xfffffe0000469000 20K ro GLB NX pte
[ 0.005936] 0xfffffe0000469000-0xfffffe000046a000 4K pte
[ 0.005938] 0xfffffe000046a000-0xfffffe000046c000 8K RW GLB NX pte
[ 0.005941] 0xfffffe000046c000-0xfffffe000046d000 4K pte
[ 0.005943] 0xfffffe000046d000-0xfffffe000046f000 8K RW GLB NX pte
[ 0.005946] 0xfffffe000046f000-0xfffffe0000470000 4K pte
[ 0.005947] 0xfffffe0000470000-0xfffffe0000472000 8K RW GLB NX pte
[ 0.005950] 0xfffffe0000472000-0xfffffe0000473000 4K pte
[ 0.005952] 0xfffffe0000473000-0xfffffe0000475000 8K RW GLB NX pte
[ 0.005956] 0xfffffe0000475000-0xfffffe000049d000 160K pte
[ 0.005958] 0xfffffe000049d000-0xfffffe000049e000 4K ro GLB NX pte
[ 0.005961] 0xfffffe000049e000-0xfffffe000049f000 4K RW GLB NX pte
[ 0.005964] 0xfffffe000049f000-0xfffffe00004a4000 20K ro GLB NX pte
[ 0.005967] 0xfffffe00004a4000-0xfffffe00004a5000 4K pte
[ 0.005969] 0xfffffe00004a5000-0xfffffe00004a7000 8K RW GLB NX pte
[ 0.005972] 0xfffffe00004a7000-0xfffffe00004a8000 4K pte
[ 0.005973] 0xfffffe00004a8000-0xfffffe00004aa000 8K RW GLB NX pte
[ 0.005976] 0xfffffe00004aa000-0xfffffe00004ab000 4K pte
[ 0.005978] 0xfffffe00004ab000-0xfffffe00004ad000 8K RW GLB NX pte
[ 0.005981] 0xfffffe00004ad000-0xfffffe00004ae000 4K pte
[ 0.005983] 0xfffffe00004ae000-0xfffffe00004b0000 8K RW GLB NX pte
[ 0.005987] 0xfffffe00004b0000-0xfffffe00004d8000 160K pte
[ 0.005989] 0xfffffe00004d8000-0xfffffe00004d9000 4K ro GLB NX pte
[ 0.005992] 0xfffffe00004d9000-0xfffffe00004da000 4K RW GLB NX pte
[ 0.005995] 0xfffffe00004da000-0xfffffe00004df000 20K ro GLB NX pte
[ 0.005998] 0xfffffe00004df000-0xfffffe00004e0000 4K pte
[ 0.005999] 0xfffffe00004e0000-0xfffffe00004e2000 8K RW GLB NX pte
[ 0.006002] 0xfffffe00004e2000-0xfffffe00004e3000 4K pte
[ 0.006005] 0xfffffe00004e3000-0xfffffe00004e5000 8K RW GLB NX pte
[ 0.006008] 0xfffffe00004e5000-0xfffffe00004e6000 4K pte
[ 0.006009] 0xfffffe00004e6000-0xfffffe00004e8000 8K RW GLB NX pte
[ 0.006012] 0xfffffe00004e8000-0xfffffe00004e9000 4K pte
[ 0.006014] 0xfffffe00004e9000-0xfffffe00004eb000 8K RW GLB NX pte
[ 0.006018] 0xfffffe00004eb000-0xfffffe0000513000 160K pte
[ 0.006020] 0xfffffe0000513000-0xfffffe0000514000 4K ro GLB NX pte
[ 0.006023] 0xfffffe0000514000-0xfffffe0000515000 4K RW GLB NX pte
[ 0.006026] 0xfffffe0000515000-0xfffffe000051a000 20K ro GLB NX pte
[ 0.006029] 0xfffffe000051a000-0xfffffe000051b000 4K pte
[ 0.006031] 0xfffffe000051b000-0xfffffe000051d000 8K RW GLB NX pte
[ 0.006034] 0xfffffe000051d000-0xfffffe000051e000 4K pte
[ 0.006035] 0xfffffe000051e000-0xfffffe0000520000 8K RW GLB NX pte
[ 0.006038] 0xfffffe0000520000-0xfffffe0000521000 4K pte
[ 0.006040] 0xfffffe0000521000-0xfffffe0000523000 8K RW GLB NX pte
[ 0.006043] 0xfffffe0000523000-0xfffffe0000524000 4K pte
[ 0.006045] 0xfffffe0000524000-0xfffffe0000526000 8K RW GLB NX pte
[ 0.006049] 0xfffffe0000526000-0xfffffe000054e000 160K pte
[ 0.006051] 0xfffffe000054e000-0xfffffe000054f000 4K ro GLB NX pte
[ 0.006054] 0xfffffe000054f000-0xfffffe0000550000 4K RW GLB NX pte
[ 0.006057] 0xfffffe0000550000-0xfffffe0000555000 20K ro GLB NX pte
[ 0.006060] 0xfffffe0000555000-0xfffffe0000556000 4K pte
[ 0.006062] 0xfffffe0000556000-0xfffffe0000558000 8K RW GLB NX pte
[ 0.006065] 0xfffffe0000558000-0xfffffe0000559000 4K pte
[ 0.006066] 0xfffffe0000559000-0xfffffe000055b000 8K RW GLB NX pte
[ 0.006069] 0xfffffe000055b000-0xfffffe000055c000 4K pte
[ 0.006071] 0xfffffe000055c000-0xfffffe000055e000 8K RW GLB NX pte
[ 0.006074] 0xfffffe000055e000-0xfffffe000055f000 4K pte
[ 0.006076] 0xfffffe000055f000-0xfffffe0000561000 8K RW GLB NX pte
[ 0.006080] 0xfffffe0000561000-0xfffffe0000589000 160K pte
[ 0.006082] 0xfffffe0000589000-0xfffffe000058a000 4K ro GLB NX pte
[ 0.006084] 0xfffffe000058a000-0xfffffe000058b000 4K RW GLB NX pte
[ 0.006088] 0xfffffe000058b000-0xfffffe0000590000 20K ro GLB NX pte
[ 0.006091] 0xfffffe0000590000-0xfffffe0000591000 4K pte
[ 0.006092] 0xfffffe0000591000-0xfffffe0000593000 8K RW GLB NX pte
[ 0.006095] 0xfffffe0000593000-0xfffffe0000594000 4K pte
[ 0.006097] 0xfffffe0000594000-0xfffffe0000596000 8K RW GLB NX pte
[ 0.006100] 0xfffffe0000596000-0xfffffe0000597000 4K pte
[ 0.006101] 0xfffffe0000597000-0xfffffe0000599000 8K RW GLB NX pte
[ 0.006104] 0xfffffe0000599000-0xfffffe000059a000 4K pte
[ 0.006106] 0xfffffe000059a000-0xfffffe000059c000 8K RW GLB NX pte
[ 0.006110] 0xfffffe000059c000-0xfffffe00005c4000 160K pte
[ 0.006112] 0xfffffe00005c4000-0xfffffe00005c5000 4K ro GLB NX pte
[ 0.006115] 0xfffffe00005c5000-0xfffffe00005c6000 4K RW GLB NX pte
[ 0.006118] 0xfffffe00005c6000-0xfffffe00005cb000 20K ro GLB NX pte
[ 0.006121] 0xfffffe00005cb000-0xfffffe00005cc000 4K pte
[ 0.006123] 0xfffffe00005cc000-0xfffffe00005ce000 8K RW GLB NX pte
[ 0.006126] 0xfffffe00005ce000-0xfffffe00005cf000 4K pte
[ 0.006127] 0xfffffe00005cf000-0xfffffe00005d1000 8K RW GLB NX pte
[ 0.006130] 0xfffffe00005d1000-0xfffffe00005d2000 4K pte
[ 0.006132] 0xfffffe00005d2000-0xfffffe00005d4000 8K RW GLB NX pte
[ 0.006135] 0xfffffe00005d4000-0xfffffe00005d5000 4K pte
[ 0.006137] 0xfffffe00005d5000-0xfffffe00005d7000 8K RW GLB NX pte
[ 0.006141] 0xfffffe00005d7000-0xfffffe00005ff000 160K pte
[ 0.006143] 0xfffffe00005ff000-0xfffffe0000600000 4K ro GLB NX pte
[ 0.006146] 0xfffffe0000600000-0xfffffe0000601000 4K RW GLB NX pte
[ 0.006149] 0xfffffe0000601000-0xfffffe0000606000 20K ro GLB NX pte
[ 0.006152] 0xfffffe0000606000-0xfffffe0000607000 4K pte
[ 0.006153] 0xfffffe0000607000-0xfffffe0000609000 8K RW GLB NX pte
[ 0.006156] 0xfffffe0000609000-0xfffffe000060a000 4K pte
[ 0.006158] 0xfffffe000060a000-0xfffffe000060c000 8K RW GLB NX pte
[ 0.006161] 0xfffffe000060c000-0xfffffe000060d000 4K pte
[ 0.006163] 0xfffffe000060d000-0xfffffe000060f000 8K RW GLB NX pte
[ 0.006166] 0xfffffe000060f000-0xfffffe0000610000 4K pte
[ 0.006167] 0xfffffe0000610000-0xfffffe0000612000 8K RW GLB NX pte
[ 0.006172] 0xfffffe0000612000-0xfffffe000063a000 160K pte
[ 0.006174] 0xfffffe000063a000-0xfffffe000063b000 4K ro GLB NX pte
[ 0.006177] 0xfffffe000063b000-0xfffffe000063c000 4K RW GLB NX pte
[ 0.006180] 0xfffffe000063c000-0xfffffe0000641000 20K ro GLB NX pte
[ 0.006183] 0xfffffe0000641000-0xfffffe0000642000 4K pte
[ 0.006185] 0xfffffe0000642000-0xfffffe0000644000 8K RW GLB NX pte
[ 0.006187] 0xfffffe0000644000-0xfffffe0000645000 4K pte
[ 0.006189] 0xfffffe0000645000-0xfffffe0000647000 8K RW GLB NX pte
[ 0.006192] 0xfffffe0000647000-0xfffffe0000648000 4K pte
[ 0.006194] 0xfffffe0000648000-0xfffffe000064a000 8K RW GLB NX pte
[ 0.006197] 0xfffffe000064a000-0xfffffe000064b000 4K pte
[ 0.006198] 0xfffffe000064b000-0xfffffe000064d000 8K RW GLB NX pte
[ 0.006203] 0xfffffe000064d000-0xfffffe0000675000 160K pte
[ 0.006204] 0xfffffe0000675000-0xfffffe0000676000 4K ro GLB NX pte
[ 0.006207] 0xfffffe0000676000-0xfffffe0000677000 4K RW GLB NX pte
[ 0.006211] 0xfffffe0000677000-0xfffffe000067c000 20K ro GLB NX pte
[ 0.006214] 0xfffffe000067c000-0xfffffe000067d000 4K pte
[ 0.006215] 0xfffffe000067d000-0xfffffe000067f000 8K RW GLB NX pte
[ 0.006218] 0xfffffe000067f000-0xfffffe0000680000 4K pte
[ 0.006220] 0xfffffe0000680000-0xfffffe0000682000 8K RW GLB NX pte
[ 0.006223] 0xfffffe0000682000-0xfffffe0000683000 4K pte
[ 0.006225] 0xfffffe0000683000-0xfffffe0000685000 8K RW GLB NX pte
[ 0.006227] 0xfffffe0000685000-0xfffffe0000686000 4K pte
[ 0.006229] 0xfffffe0000686000-0xfffffe0000688000 8K RW GLB NX pte
[ 0.006233] 0xfffffe0000688000-0xfffffe00006b0000 160K pte
[ 0.006235] 0xfffffe00006b0000-0xfffffe00006b1000 4K ro GLB NX pte
[ 0.006238] 0xfffffe00006b1000-0xfffffe00006b2000 4K RW GLB NX pte
[ 0.006241] 0xfffffe00006b2000-0xfffffe00006b7000 20K ro GLB NX pte
[ 0.006244] 0xfffffe00006b7000-0xfffffe00006b8000 4K pte
[ 0.006246] 0xfffffe00006b8000-0xfffffe00006ba000 8K RW GLB NX pte
[ 0.006249] 0xfffffe00006ba000-0xfffffe00006bb000 4K pte
[ 0.006251] 0xfffffe00006bb000-0xfffffe00006bd000 8K RW GLB NX pte
[ 0.006253] 0xfffffe00006bd000-0xfffffe00006be000 4K pte
[ 0.006255] 0xfffffe00006be000-0xfffffe00006c0000 8K RW GLB NX pte
[ 0.006258] 0xfffffe00006c0000-0xfffffe00006c1000 4K pte
[ 0.006260] 0xfffffe00006c1000-0xfffffe00006c3000 8K RW GLB NX pte
[ 0.006264] 0xfffffe00006c3000-0xfffffe00006eb000 160K pte
[ 0.006266] 0xfffffe00006eb000-0xfffffe00006ec000 4K ro GLB NX pte
[ 0.006269] 0xfffffe00006ec000-0xfffffe00006ed000 4K RW GLB NX pte
[ 0.006272] 0xfffffe00006ed000-0xfffffe00006f2000 20K ro GLB NX pte
[ 0.006275] 0xfffffe00006f2000-0xfffffe00006f3000 4K pte
[ 0.006276] 0xfffffe00006f3000-0xfffffe00006f5000 8K RW GLB NX pte
[ 0.006279] 0xfffffe00006f5000-0xfffffe00006f6000 4K pte
[ 0.006281] 0xfffffe00006f6000-0xfffffe00006f8000 8K RW GLB NX pte
[ 0.006284] 0xfffffe00006f8000-0xfffffe00006f9000 4K pte
[ 0.006286] 0xfffffe00006f9000-0xfffffe00006fb000 8K RW GLB NX pte
[ 0.006289] 0xfffffe00006fb000-0xfffffe00006fc000 4K pte
[ 0.006291] 0xfffffe00006fc000-0xfffffe00006fe000 8K RW GLB NX pte
[ 0.006295] 0xfffffe00006fe000-0xfffffe0000726000 160K pte
[ 0.006297] 0xfffffe0000726000-0xfffffe0000727000 4K ro GLB NX pte
[ 0.006299] 0xfffffe0000727000-0xfffffe0000728000 4K RW GLB NX pte
[ 0.006303] 0xfffffe0000728000-0xfffffe000072d000 20K ro GLB NX pte
[ 0.006306] 0xfffffe000072d000-0xfffffe000072e000 4K pte
[ 0.006307] 0xfffffe000072e000-0xfffffe0000730000 8K RW GLB NX pte
[ 0.006310] 0xfffffe0000730000-0xfffffe0000731000 4K pte
[ 0.006312] 0xfffffe0000731000-0xfffffe0000733000 8K RW GLB NX pte
[ 0.006315] 0xfffffe0000733000-0xfffffe0000734000 4K pte
[ 0.006317] 0xfffffe0000734000-0xfffffe0000736000 8K RW GLB NX pte
[ 0.006319] 0xfffffe0000736000-0xfffffe0000737000 4K pte
[ 0.006321] 0xfffffe0000737000-0xfffffe0000739000 8K RW GLB NX pte
[ 0.006331] 0xfffffe0000739000-0xfffffe0000800000 796K pte
[ 0.006346] 0xfffffe0000800000-0xfffffe0040000000 1016M pmd
[ 0.006360] 0xfffffe0040000000-0xfffffe8000000000 511G pud
[ 0.006362] 0xfffffe8000000000-0xffffff0000000000 512G pgd
[ 0.006364] ---[ ESPfix Area ]---
[ 0.006365] 0xffffff0000000000-0xffffff0300000000 12G pud
[ 0.006366] 0xffffff0300000000-0xffffff0300003000 12K pte
[ 0.006368] 0xffffff0300003000-0xffffff0300004000 4K ro GLB NX pte
[ 0.006372] 0xffffff0300004000-0xffffff0300013000 60K pte
[ 0.006373] 0xffffff0300013000-0xffffff0300014000 4K ro GLB NX pte
[ 0.006377] 0xffffff0300014000-0xffffff0300023000 60K pte
[ 0.006378] 0xffffff0300023000-0xffffff0300024000 4K ro GLB NX pte
[ 0.006382] 0xffffff0300024000-0xffffff0300033000 60K pte
[ 0.006384] 0xffffff0300033000-0xffffff0300034000 4K ro GLB NX pte
[ 0.006387] 0xffffff0300034000-0xffffff0300043000 60K pte
[ 0.006389] 0xffffff0300043000-0xffffff0300044000 4K ro GLB NX pte
[ 0.006392] 0xffffff0300044000-0xffffff0300053000 60K pte
[ 0.006394] 0xffffff0300053000-0xffffff0300054000 4K ro GLB NX pte
[ 0.006397] 0xffffff0300054000-0xffffff0300063000 60K pte
[ 0.006399] 0xffffff0300063000-0xffffff0300064000 4K ro GLB NX pte
[ 0.006403] 0xffffff0300064000-0xffffff0300073000 60K pte
[ 0.045197] ... 131059 entries skipped ...
[ 0.045198] ---[ EFI Runtime Services ]---
[ 0.045200] 0xffffffef00000000-0xfffffffec0000000 63G pud
[ 0.045211] 0xfffffffec0000000-0xfffffffef0000000 768M pmd
[ 0.045213] 0xfffffffef0000000-0xfffffffef0008000 32K RW x pte
[ 0.045218] 0xfffffffef0008000-0xfffffffef003d000 212K pte
[ 0.045220] 0xfffffffef003d000-0xfffffffef003f000 8K pte
[ 0.045225] 0xfffffffef003f000-0xfffffffef009f000 384K RW x pte
[ 0.045228] 0xfffffffef009f000-0xfffffffef00a0000 4K RW NX pte
[ 0.045244] 0xfffffffef00a0000-0xfffffffef0200000 1408K pte
[ 0.045250] 0xfffffffef0200000-0xfffffffef0280000 512K pte
[ 0.045265] 0xfffffffef0280000-0xfffffffef0400000 1536K pte
[ 0.045267] 0xfffffffef0400000-0xfffffffef040b000 44K pte
[ 0.045273] 0xfffffffef040b000-0xfffffffef047a000 444K pte
[ 0.045289] 0xfffffffef047a000-0xfffffffef0616000 1648K pte
[ 0.045291] 0xfffffffef0616000-0xfffffffef0619000 12K pte
[ 0.045294] 0xfffffffef0619000-0xfffffffef062e000 84K pte
[ 0.045296] 0xfffffffef062e000-0xfffffffef063c000 56K pte
[ 0.045301] 0xfffffffef063c000-0xfffffffef06a5000 420K RW NX pte
[ 0.045304] 0xfffffffef06a5000-0xfffffffef06a7000 8K pte
[ 0.045308] 0xfffffffef06a7000-0xfffffffef06eb000 272K pte
[ 0.045310] 0xfffffffef06eb000-0xfffffffef06f8000 52K pte
[ 0.045312] 0xfffffffef06f8000-0xfffffffef0705000 52K pte
[ 0.045314] 0xfffffffef0705000-0xfffffffef070c000 28K pte
[ 0.045316] 0xfffffffef070c000-0xfffffffef0713000 28K pte
[ 0.045318] 0xfffffffef0713000-0xfffffffef0715000 8K pte
[ 0.045320] 0xfffffffef0715000-0xfffffffef0719000 16K pte
[ 0.045333] 0xfffffffef0719000-0xfffffffef0868000 1340K pte
[ 0.045357] 0xfffffffef0868000-0xfffffffef14d3000 12716K pte
[ 0.045380] 0xfffffffef14d3000-0xfffffffef1d1e000 8492K pte
[ 0.045394] 0xfffffffef1d1e000-0xfffffffef1e5f000 1284K pte
[ 0.045395] 0xfffffffef1e5f000-0xfffffffef1e62000 12K pte
[ 0.045397] 0xfffffffef1e62000-0xfffffffef1e63000 4K pte
[ 0.045399] 0xfffffffef1e63000-0xfffffffef1e64000 4K pte
[ 0.045401] 0xfffffffef1e64000-0xfffffffef1e86000 136K pte
[ 0.045403] 0xfffffffef1e86000-0xfffffffef1e89000 12K pte
[ 0.045405] 0xfffffffef1e89000-0xfffffffef1e8a000 4K pte
[ 0.045407] 0xfffffffef1e8a000-0xfffffffef1e91000 28K pte
[ 0.045409] 0xfffffffef1e91000-0xfffffffef1e94000 12K pte
[ 0.045410] 0xfffffffef1e94000-0xfffffffef1e95000 4K pte
[ 0.045413] 0xfffffffef1e95000-0xfffffffef1ebf000 168K pte
[ 0.045415] 0xfffffffef1ebf000-0xfffffffef1ec4000 20K pte
[ 0.045417] 0xfffffffef1ec4000-0xfffffffef1ec9000 20K pte
[ 0.045419] 0xfffffffef1ec9000-0xfffffffef1ed9000 64K pte
[ 0.045421] 0xfffffffef1ed9000-0xfffffffef1edf000 24K pte
[ 0.045423] 0xfffffffef1edf000-0xfffffffef1ee0000 4K pte
[ 0.045436] 0xfffffffef1ee0000-0xfffffffef202c000 1328K pte
[ 0.045439] 0xfffffffef202c000-0xfffffffef204c000 128K pte
[ 0.045442] 0xfffffffef204c000-0xfffffffef206c000 128K pte
[ 0.045444] 0xfffffffef206c000-0xfffffffef2077000 44K pte
[ 0.045446] 0xfffffffef2077000-0xfffffffef2082000 44K pte
[ 0.045448] 0xfffffffef2082000-0xfffffffef208c000 40K pte
[ 0.045450] 0xfffffffef208c000-0xfffffffef2096000 40K pte
[ 0.045452] 0xfffffffef2096000-0xfffffffef209c000 24K pte
[ 0.045479] 0xfffffffef209c000-0xfffffffef255a000 4856K pte
[ 0.045481] 0xfffffffef255a000-0xfffffffef255e000 16K pte
[ 0.045482] 0xfffffffef255e000-0xfffffffef2563000 20K pte
[ 0.045484] 0xfffffffef2563000-0xfffffffef2566000 12K pte
[ 0.045486] 0xfffffffef2566000-0xfffffffef2569000 12K pte
[ 0.045488] 0xfffffffef2569000-0xfffffffef2573000 40K pte
[ 0.045490] 0xfffffffef2573000-0xfffffffef257d000 40K pte
[ 0.045492] 0xfffffffef257d000-0xfffffffef258b000 56K pte
[ 0.045494] 0xfffffffef258b000-0xfffffffef258f000 16K pte
[ 0.045496] 0xfffffffef258f000-0xfffffffef25ac000 116K pte
[ 0.045498] 0xfffffffef25ac000-0xfffffffef25b2000 24K pte
[ 0.045500] 0xfffffffef25b2000-0xfffffffef25b5000 12K pte
[ 0.045502] 0xfffffffef25b5000-0xfffffffef25b6000 4K pte
[ 0.045503] 0xfffffffef25b6000-0xfffffffef25b7000 4K pte
[ 0.045505] 0xfffffffef25b7000-0xfffffffef25b8000 4K pte
[ 0.045507] 0xfffffffef25b8000-0xfffffffef25c8000 64K pte
[ 0.045509] 0xfffffffef25c8000-0xfffffffef25da000 72K pte
[ 0.045511] 0xfffffffef25da000-0xfffffffef25db000 4K pte
[ 0.045513] 0xfffffffef25db000-0xfffffffef25dc000 4K pte
[ 0.045514] 0xfffffffef25dc000-0xfffffffef25e3000 28K pte
[ 0.045516] 0xfffffffef25e3000-0xfffffffef25e4000 4K pte
[ 0.045518] 0xfffffffef25e4000-0xfffffffef25ea000 24K pte
[ 0.045520] 0xfffffffef25ea000-0xfffffffef25eb000 4K pte
[ 0.045522] 0xfffffffef25eb000-0xfffffffef25f2000 28K pte
[ 0.045523] 0xfffffffef25f2000-0xfffffffef25f4000 8K pte
[ 0.045525] 0xfffffffef25f4000-0xfffffffef25f6000 8K pte
[ 0.045527] 0xfffffffef25f6000-0xfffffffef25f8000 8K pte
[ 0.045528] 0xfffffffef25f8000-0xfffffffef25fe000 24K pte
[ 0.045531] 0xfffffffef25fe000-0xfffffffef2610000 72K pte
[ 0.045533] 0xfffffffef2610000-0xfffffffef2622000 72K pte
[ 0.045535] 0xfffffffef2622000-0xfffffffef2624000 8K pte
[ 0.045537] 0xfffffffef2624000-0xfffffffef262c000 32K pte
[ 0.045538] 0xfffffffef262c000-0xfffffffef262d000 4K pte
[ 0.045541] 0xfffffffef262d000-0xfffffffef2645000 96K pte
[ 0.045542] 0xfffffffef2645000-0xfffffffef2648000 12K pte
[ 0.045544] 0xfffffffef2648000-0xfffffffef2650000 32K pte
[ 0.045546] 0xfffffffef2650000-0xfffffffef2656000 24K pte
[ 0.045548] 0xfffffffef2656000-0xfffffffef265e000 32K pte
[ 0.045550] 0xfffffffef265e000-0xfffffffef265f000 4K pte
[ 0.045552] 0xfffffffef265f000-0xfffffffef2661000 8K pte
[ 0.045553] 0xfffffffef2661000-0xfffffffef2662000 4K pte
[ 0.045555] 0xfffffffef2662000-0xfffffffef2663000 4K pte
[ 0.045557] 0xfffffffef2663000-0xfffffffef2666000 12K pte
[ 0.045558] 0xfffffffef2666000-0xfffffffef266f000 36K pte
[ 0.045560] 0xfffffffef266f000-0xfffffffef2674000 20K pte
[ 0.045562] 0xfffffffef2674000-0xfffffffef2677000 12K pte
[ 0.045564] 0xfffffffef2677000-0xfffffffef2678000 4K pte
[ 0.045565] 0xfffffffef2678000-0xfffffffef2679000 4K pte
[ 0.045567] 0xfffffffef2679000-0xfffffffef267a000 4K pte
[ 0.045569] 0xfffffffef267a000-0xfffffffef267b000 4K pte
[ 0.045586] 0xfffffffef267b000-0xfffffffef2a38000 3828K pte
[ 0.045588] 0xfffffffef2a38000-0xfffffffef2a45000 52K pte
[ 0.045591] 0xfffffffef2a45000-0xfffffffef2a5d000 96K pte
[ 0.045593] 0xfffffffef2a5d000-0xfffffffef2a67000 40K pte
[ 0.045595] 0xfffffffef2a67000-0xfffffffef2a68000 4K pte
[ 0.045597] 0xfffffffef2a68000-0xfffffffef2a7d000 84K pte
[ 0.045599] 0xfffffffef2a7d000-0xfffffffef2a7f000 8K pte
[ 0.045600] 0xfffffffef2a7f000-0xfffffffef2a80000 4K pte
[ 0.045602] 0xfffffffef2a80000-0xfffffffef2a82000 8K pte
[ 0.045604] 0xfffffffef2a82000-0xfffffffef2a83000 4K pte
[ 0.045605] 0xfffffffef2a83000-0xfffffffef2a85000 8K pte
[ 0.045609] 0xfffffffef2a85000-0xfffffffef2ab1000 176K pte
[ 0.045610] 0xfffffffef2ab1000-0xfffffffef2ab5000 16K pte
[ 0.045612] 0xfffffffef2ab5000-0xfffffffef2ab6000 4K pte
[ 0.045614] 0xfffffffef2ab6000-0xfffffffef2ab9000 12K pte
[ 0.045615] 0xfffffffef2ab9000-0xfffffffef2abb000 8K pte
[ 0.045617] 0xfffffffef2abb000-0xfffffffef2abe000 12K pte
[ 0.045619] 0xfffffffef2abe000-0xfffffffef2acc000 56K pte
[ 0.045621] 0xfffffffef2acc000-0xfffffffef2ace000 8K pte
[ 0.045623] 0xfffffffef2ace000-0xfffffffef2ae5000 92K pte
[ 0.045626] 0xfffffffef2ae5000-0xfffffffef2b07000 136K pte
[ 0.045639] 0xfffffffef2b07000-0xfffffffef2c3b000 1232K pte
[ 0.045641] 0xfffffffef2c3b000-0xfffffffef2c3d000 8K pte
[ 0.045642] 0xfffffffef2c3d000-0xfffffffef2c3f000 8K pte
[ 0.045644] 0xfffffffef2c3f000-0xfffffffef2c42000 12K pte
[ 0.045646] 0xfffffffef2c42000-0xfffffffef2c45000 12K pte
[ 0.045648] 0xfffffffef2c45000-0xfffffffef2c47000 8K pte
[ 0.045649] 0xfffffffef2c47000-0xfffffffef2c4c000 20K pte
[ 0.045651] 0xfffffffef2c4c000-0xfffffffef2c4e000 8K pte
[ 0.045653] 0xfffffffef2c4e000-0xfffffffef2c4f000 4K pte
[ 0.045654] 0xfffffffef2c4f000-0xfffffffef2c50000 4K pte
[ 0.045657] 0xfffffffef2c50000-0xfffffffef2c61000 68K pte
[ 0.045658] 0xfffffffef2c61000-0xfffffffef2c62000 4K pte
[ 0.045660] 0xfffffffef2c62000-0xfffffffef2c63000 4K pte
[ 0.045662] 0xfffffffef2c63000-0xfffffffef2c66000 12K pte
[ 0.045663] 0xfffffffef2c66000-0xfffffffef2c67000 4K pte
[ 0.045665] 0xfffffffef2c67000-0xfffffffef2c68000 4K pte
[ 0.045667] 0xfffffffef2c68000-0xfffffffef2c69000 4K pte
[ 0.045669] 0xfffffffef2c69000-0xfffffffef2c7a000 68K pte
[ 0.045671] 0xfffffffef2c7a000-0xfffffffef2c98000 120K pte
[ 0.045673] 0xfffffffef2c98000-0xfffffffef2c9f000 28K pte
[ 0.045675] 0xfffffffef2c9f000-0xfffffffef2cab000 48K pte
[ 0.045677] 0xfffffffef2cab000-0xfffffffef2cb0000 20K pte
[ 0.045679] 0xfffffffef2cb0000-0xfffffffef2cbd000 52K pte
[ 0.045682] 0xfffffffef2cbd000-0xfffffffef2cdd000 128K pte
[ 0.045685] 0xfffffffef2cdd000-0xfffffffef2cfb000 120K pte
[ 0.045687] 0xfffffffef2cfb000-0xfffffffef2cff000 16K pte
[ 0.045689] 0xfffffffef2cff000-0xfffffffef2d0d000 56K pte
[ 0.045691] 0xfffffffef2d0d000-0xfffffffef2d19000 48K pte
[ 0.045693] 0xfffffffef2d19000-0xfffffffef2d2a000 68K pte
[ 0.045695] 0xfffffffef2d2a000-0xfffffffef2d2c000 8K pte
[ 0.045697] 0xfffffffef2d2c000-0xfffffffef2d32000 24K pte
[ 0.045698] 0xfffffffef2d32000-0xfffffffef2d35000 12K pte
[ 0.045701] 0xfffffffef2d35000-0xfffffffef2d49000 80K pte
[ 0.045703] 0xfffffffef2d49000-0xfffffffef2d5c000 76K pte
[ 0.045705] 0xfffffffef2d5c000-0xfffffffef2d5f000 12K pte
[ 0.045706] 0xfffffffef2d5f000-0xfffffffef2d62000 12K pte
[ 0.045708] 0xfffffffef2d62000-0xfffffffef2d68000 24K pte
[ 0.045710] 0xfffffffef2d68000-0xfffffffef2d6a000 8K pte
[ 0.045712] 0xfffffffef2d6a000-0xfffffffef2d6c000 8K pte
[ 0.045713] 0xfffffffef2d6c000-0xfffffffef2d6f000 12K pte
[ 0.045716] 0xfffffffef2d6f000-0xfffffffef2d8f000 128K pte
[ 0.045718] 0xfffffffef2d8f000-0xfffffffef2d94000 20K pte
[ 0.045720] 0xfffffffef2d94000-0xfffffffef2da7000 76K pte
[ 0.045722] 0xfffffffef2da7000-0xfffffffef2daa000 12K pte
[ 0.045724] 0xfffffffef2daa000-0xfffffffef2dab000 4K pte
[ 0.045725] 0xfffffffef2dab000-0xfffffffef2dae000 12K pte
[ 0.045727] 0xfffffffef2dae000-0xfffffffef2db3000 20K pte
[ 0.045729] 0xfffffffef2db3000-0xfffffffef2db7000 16K pte
[ 0.045731] 0xfffffffef2db7000-0xfffffffef2db8000 4K pte
[ 0.045732] 0xfffffffef2db8000-0xfffffffef2db9000 4K pte
[ 0.045734] 0xfffffffef2db9000-0xfffffffef2dca000 68K pte
[ 0.045736] 0xfffffffef2dca000-0xfffffffef2dcb000 4K pte
[ 0.045738] 0xfffffffef2dcb000-0xfffffffef2dd9000 56K pte
[ 0.045740] 0xfffffffef2dd9000-0xfffffffef2ddd000 16K pte
[ 0.045742] 0xfffffffef2ddd000-0xfffffffef2dde000 4K pte
[ 0.045743] 0xfffffffef2dde000-0xfffffffef2ddf000 4K pte
[ 0.045746] 0xfffffffef2ddf000-0xfffffffef2df8000 100K pte
[ 0.045747] 0xfffffffef2df8000-0xfffffffef2df9000 4K pte
[ 0.045749] 0xfffffffef2df9000-0xfffffffef2dfb000 8K pte
[ 0.045751] 0xfffffffef2dfb000-0xfffffffef2dfd000 8K pte
[ 0.045752] 0xfffffffef2dfd000-0xfffffffef2dfe000 4K pte
[ 0.045754] 0xfffffffef2dfe000-0xfffffffef2dff000 4K pte
[ 0.045757] 0xfffffffef2dff000-0xfffffffef2e1b000 112K pte
[ 0.045758] 0xfffffffef2e1b000-0xfffffffef2e1c000 4K pte
[ 0.045760] 0xfffffffef2e1c000-0xfffffffef2e1d000 4K pte
[ 0.045762] 0xfffffffef2e1d000-0xfffffffef2e1e000 4K pte
[ 0.045763] 0xfffffffef2e1e000-0xfffffffef2e1f000 4K pte
[ 0.045765] 0xfffffffef2e1f000-0xfffffffef2e21000 8K pte
[ 0.045767] 0xfffffffef2e21000-0xfffffffef2e28000 28K pte
[ 0.045769] 0xfffffffef2e28000-0xfffffffef2e2c000 16K pte
[ 0.045770] 0xfffffffef2e2c000-0xfffffffef2e2f000 12K pte
[ 0.045772] 0xfffffffef2e2f000-0xfffffffef2e35000 24K pte
[ 0.045774] 0xfffffffef2e35000-0xfffffffef2e3d000 32K pte
[ 0.045776] 0xfffffffef2e3d000-0xfffffffef2e3f000 8K pte
[ 0.045778] 0xfffffffef2e3f000-0xfffffffef2e40000 4K pte
[ 0.045779] 0xfffffffef2e40000-0xfffffffef2e41000 4K pte
[ 0.045781] 0xfffffffef2e41000-0xfffffffef2e42000 4K pte
[ 0.045782] 0xfffffffef2e42000-0xfffffffef2e43000 4K pte
[ 0.045784] 0xfffffffef2e43000-0xfffffffef2e46000 12K pte
[ 0.045787] 0xfffffffef2e46000-0xfffffffef2e69000 140K pte
[ 0.045789] 0xfffffffef2e69000-0xfffffffef2e6d000 16K pte
[ 0.045791] 0xfffffffef2e6d000-0xfffffffef2e81000 80K pte
[ 0.045794] 0xfffffffef2e81000-0xfffffffef2e94000 76K pte
[ 0.045795] 0xfffffffef2e94000-0xfffffffef2e97000 12K pte
[ 0.045797] 0xfffffffef2e97000-0xfffffffef2e98000 4K pte
[ 0.045799] 0xfffffffef2e98000-0xfffffffef2e9d000 20K pte
[ 0.045800] 0xfffffffef2e9d000-0xfffffffef2e9e000 4K pte
[ 0.045802] 0xfffffffef2e9e000-0xfffffffef2ea0000 8K pte
[ 0.045804] 0xfffffffef2ea0000-0xfffffffef2ea1000 4K pte
[ 0.045805] 0xfffffffef2ea1000-0xfffffffef2ea3000 8K pte
[ 0.045807] 0xfffffffef2ea3000-0xfffffffef2ea6000 12K pte
[ 0.045809] 0xfffffffef2ea6000-0xfffffffef2ea7000 4K pte
[ 0.045811] 0xfffffffef2ea7000-0xfffffffef2ea9000 8K pte
[ 0.045812] 0xfffffffef2ea9000-0xfffffffef2eaa000 4K pte
[ 0.045814] 0xfffffffef2eaa000-0xfffffffef2ebb000 68K pte
[ 0.045816] 0xfffffffef2ebb000-0xfffffffef2ebc000 4K pte
[ 0.045818] 0xfffffffef2ebc000-0xfffffffef2ec6000 40K pte
[ 0.045820] 0xfffffffef2ec6000-0xfffffffef2eca000 16K pte
[ 0.045822] 0xfffffffef2eca000-0xfffffffef2ecc000 8K pte
[ 0.045823] 0xfffffffef2ecc000-0xfffffffef2ece000 8K pte
[ 0.045825] 0xfffffffef2ece000-0xfffffffef2ecf000 4K pte
[ 0.045827] 0xfffffffef2ecf000-0xfffffffef2ed0000 4K pte
[ 0.045828] 0xfffffffef2ed0000-0xfffffffef2ed2000 8K pte
[ 0.045830] 0xfffffffef2ed2000-0xfffffffef2ed3000 4K pte
[ 0.045832] 0xfffffffef2ed3000-0xfffffffef2ed7000 16K pte
[ 0.045833] 0xfffffffef2ed7000-0xfffffffef2ed9000 8K pte
[ 0.045835] 0xfffffffef2ed9000-0xfffffffef2edc000 12K pte
[ 0.045837] 0xfffffffef2edc000-0xfffffffef2edd000 4K pte
[ 0.045838] 0xfffffffef2edd000-0xfffffffef2ede000 4K pte
[ 0.045840] 0xfffffffef2ede000-0xfffffffef2edf000 4K pte
[ 0.045842] 0xfffffffef2edf000-0xfffffffef2ee2000 12K pte
[ 0.045844] 0xfffffffef2ee2000-0xfffffffef2ee9000 28K pte
[ 0.045845] 0xfffffffef2ee9000-0xfffffffef2eeb000 8K pte
[ 0.045847] 0xfffffffef2eeb000-0xfffffffef2eed000 8K pte
[ 0.045849] 0xfffffffef2eed000-0xfffffffef2ef0000 12K pte
[ 0.045850] 0xfffffffef2ef0000-0xfffffffef2ef1000 4K pte
[ 0.045853] 0xfffffffef2ef1000-0xfffffffef2f11000 128K pte
[ 0.045855] 0xfffffffef2f11000-0xfffffffef2f13000 8K pte
[ 0.045857] 0xfffffffef2f13000-0xfffffffef2f14000 4K pte
[ 0.045858] 0xfffffffef2f14000-0xfffffffef2f15000 4K pte
[ 0.045860] 0xfffffffef2f15000-0xfffffffef2f20000 44K pte
[ 0.045862] 0xfffffffef2f20000-0xfffffffef2f21000 4K pte
[ 0.045864] 0xfffffffef2f21000-0xfffffffef2f24000 12K pte
[ 0.045865] 0xfffffffef2f24000-0xfffffffef2f25000 4K pte
[ 0.045867] 0xfffffffef2f25000-0xfffffffef2f26000 4K pte
[ 0.045869] 0xfffffffef2f26000-0xfffffffef2f27000 4K pte
[ 0.045870] 0xfffffffef2f27000-0xfffffffef2f28000 4K pte
[ 0.045890] 0xfffffffef2f28000-0xfffffffef3329000 4100K pte
[ 0.045892] 0xfffffffef3329000-0xfffffffef3335000 48K pte
[ 0.045894] 0xfffffffef3335000-0xfffffffef3337000 8K pte
[ 0.045896] 0xfffffffef3337000-0xfffffffef333c000 20K pte
[ 0.045900] 0xfffffffef333c000-0xfffffffef3382000 280K pte
[ 0.045902] 0xfffffffef3382000-0xfffffffef3383000 4K pte
[ 0.045903] 0xfffffffef3383000-0xfffffffef3384000 4K pte
[ 0.045905] 0xfffffffef3384000-0xfffffffef3385000 4K pte
[ 0.045924] 0xfffffffef3385000-0xfffffffef355b000 1880K pte
[ 0.045926] 0xfffffffef355b000-0xfffffffef355f000 16K pte
[ 0.045927] 0xfffffffef355f000-0xfffffffef3560000 4K pte
[ 0.045929] 0xfffffffef3560000-0xfffffffef3561000 4K pte
[ 0.045930] 0xfffffffef3561000-0xfffffffef3562000 4K pte
[ 0.045932] 0xfffffffef3562000-0xfffffffef3568000 24K pte
[ 0.045955] 0xfffffffef3568000-0xfffffffef3dba000 8520K pte
[ 0.045957] 0xfffffffef3dba000-0xfffffffef3dbb000 4K pte
[ 0.045959] 0xfffffffef3dbb000-0xfffffffef3dc2000 28K pte
[ 0.045961] 0xfffffffef3dc2000-0xfffffffef3dc5000 12K pte
[ 0.045976] 0xfffffffef3dc5000-0xfffffffef4747000 9736K pte
[ 0.045985] 0xfffffffef4747000-0xfffffffef4807000 768K pte
[ 0.046006] 0xfffffffef4807000-0xfffffffef4a00000 2020K RW NX pte
[ 0.046009] 0xfffffffef4a00000-0xfffffffef5600000 12M RW PSE NX pmd
[ 0.046026] 0xfffffffef5600000-0xfffffffef577b000 1516K RW NX pte
[ 0.046029] 0xfffffffef577b000-0xfffffffef577f000 16K ro x pte
[ 0.046032] 0xfffffffef577f000-0xfffffffef5785000 24K RW NX pte
[ 0.046035] 0xfffffffef5785000-0xfffffffef5788000 12K ro x pte
[ 0.046038] 0xfffffffef5788000-0xfffffffef578d000 20K RW NX pte
[ 0.046041] 0xfffffffef578d000-0xfffffffef578e000 4K ro x pte
[ 0.046044] 0xfffffffef578e000-0xfffffffef5793000 20K RW NX pte
[ 0.046047] 0xfffffffef5793000-0xfffffffef5797000 16K ro x pte
[ 0.046051] 0xfffffffef5797000-0xfffffffef579d000 24K RW NX pte
[ 0.046054] 0xfffffffef579d000-0xfffffffef57a1000 16K ro x pte
[ 0.046057] 0xfffffffef57a1000-0xfffffffef57a6000 20K RW NX pte
[ 0.046060] 0xfffffffef57a6000-0xfffffffef57a7000 4K ro x pte
[ 0.046063] 0xfffffffef57a7000-0xfffffffef57ab000 16K RW NX pte
[ 0.046066] 0xfffffffef57ab000-0xfffffffef57b8000 52K ro x pte
[ 0.046069] 0xfffffffef57b8000-0xfffffffef57bd000 20K RW NX pte
[ 0.046072] 0xfffffffef57bd000-0xfffffffef57c0000 12K ro x pte
[ 0.046075] 0xfffffffef57c0000-0xfffffffef57c5000 20K RW NX pte
[ 0.046078] 0xfffffffef57c5000-0xfffffffef57c6000 4K ro x pte
[ 0.046081] 0xfffffffef57c6000-0xfffffffef57cb000 20K RW NX pte
[ 0.046084] 0xfffffffef57cb000-0xfffffffef57cc000 4K ro x pte
[ 0.046088] 0xfffffffef57cc000-0xfffffffef57d1000 20K RW NX pte
[ 0.046090] 0xfffffffef57d1000-0xfffffffef57d2000 4K ro x pte
[ 0.046094] 0xfffffffef57d2000-0xfffffffef57d6000 16K RW NX pte
[ 0.046097] 0xfffffffef57d6000-0xfffffffef57e5000 60K ro x pte
[ 0.046100] 0xfffffffef57e5000-0xfffffffef57ed000 32K RW NX pte
[ 0.046103] 0xfffffffef57ed000-0xfffffffef57f2000 20K ro x pte
[ 0.046106] 0xfffffffef57f2000-0xfffffffef57f7000 20K RW NX pte
[ 0.046109] 0xfffffffef57f7000-0xfffffffef57fa000 12K ro x pte
[ 0.046113] 0xfffffffef57fa000-0xfffffffef57ff000 20K RW NX pte
[ 0.046116] 0xfffffffef57ff000-0xfffffffef5c00000 4100K pte
[ 0.046124] 0xfffffffef5c00000-0xfffffffef5cab000 684K pte
[ 0.046135] 0xfffffffef5cab000-0xfffffffef5dab000 1M pte
[ 0.046137] 0xfffffffef5dab000-0xfffffffef5dc6000 108K pte
[ 0.046140] 0xfffffffef5dc6000-0xfffffffef5df2000 176K pte
[ 0.046143] 0xfffffffef5df2000-0xfffffffef5e0b000 100K pte
[ 0.046146] 0xfffffffef5e0b000-0xfffffffef5e25000 104K pte
[ 0.046148] 0xfffffffef5e25000-0xfffffffef5e38000 76K pte
[ 0.046182] 0xfffffffef5e38000-0xfffffffef69c6000 11832K pte
[ 0.046184] 0xfffffffef69c6000-0xfffffffef69c9000 12K pte
[ 0.046186] 0xfffffffef69c9000-0xfffffffef69dc000 76K pte
[ 0.046188] 0xfffffffef69dc000-0xfffffffef69de000 8K pte
[ 0.046190] 0xfffffffef69de000-0xfffffffef69ef000 68K pte
[ 0.046193] 0xfffffffef69ef000-0xfffffffef6a00000 68K pte
[ 0.046197] 0xfffffffef6a00000-0xfffffffefea00000 128M RW PSE NX pmd
[ 0.046209] 0xfffffffefea00000-0xfffffffefeb00000 1M pte
[ 0.046221] 0xfffffffefeb00000-0xfffffffefec10000 1088K RW PCD NX pte
[ 0.046237] 0xfffffffefec10000-0xfffffffefed80000 1472K pte
[ 0.046244] 0xfffffffefed80000-0xfffffffefee02000 520K RW PCD NX pte
[ 0.046247] 0xfffffffefee02000-0xfffffffefee10000 56K pte
[ 0.046249] 0xfffffffefee10000-0xfffffffefee11000 4K RW PCD NX pte
[ 0.046253] 0xfffffffefee11000-0xfffffffefee30000 124K pte
[ 0.046255] 0xfffffffefee30000-0xfffffffefee31000 4K RW PCD NX pte
[ 0.046265] 0xfffffffefee31000-0xfffffffefef00000 828K pte
[ 0.046267] 0xfffffffefef00000-0xfffffffefef01000 4K RW PCD NX pte
[ 0.046272] 0xfffffffefef01000-0xfffffffefef40000 252K pte
[ 0.046274] 0xfffffffefef40000-0xfffffffefef45000 20K RW PCD NX pte
[ 0.046279] 0xfffffffefef45000-0xfffffffefef80000 236K pte
[ 0.046281] 0xfffffffefef80000-0xfffffffefef90000 64K RW PCD NX pte
[ 0.046286] 0xfffffffefef90000-0xfffffffefefc2000 200K pte
[ 0.046288] 0xfffffffefefc2000-0xfffffffefefd0000 56K RW PCD NX pte
[ 0.046291] 0xfffffffefefd0000-0xfffffffefefd4000 16K pte
[ 0.046293] 0xfffffffefefd4000-0xfffffffefefd6000 8K RW PCD NX pte
[ 0.046297] 0xfffffffefefd6000-0xfffffffeff000000 168K pte
[ 0.046299] 0xfffffffeff000000-0xffffffff00000000 16M RW PCD PSE NX pmd
[ 0.046303] 0xffffffff00000000-0xffffffff80000000 2G pud
[ 0.046304] ---[ High Kernel Mapping ]---
[ 0.046305] 0xffffffff80000000-0xffffffff81000000 16M pmd
[ 0.046307] 0xffffffff81000000-0xffffffff82600000 22M RW PSE GLB x pmd
[ 0.046324] 0xffffffff82600000-0xffffffff8278c000 1584K RW GLB x pte
[ 0.046327] 0xffffffff8278c000-0xffffffff8278d000 4K ro GLB x pte
[ 0.046334] 0xffffffff8278d000-0xffffffff82800000 460K RW GLB x pte
[ 0.046337] 0xffffffff82800000-0xffffffff82a00000 2M RW PSE GLB x pmd
[ 0.046346] 0xffffffff82a00000-0xffffffffa0000000 470M pmd
[ 0.046348] ---[ Modules ]---
[ 0.046367] 0xffffffffa0000000-0xffffffffff000000 1520M pmd
[ 0.046369] ---[ End Modules ]---
[ 0.046370] 0xffffffffff000000-0xffffffffff200000 2M pmd
[ 0.046403] 0xffffffffff200000-0xffffffffff57c000 3568K pte
[ 0.046405] ---[ Fixmap Area ]---
[ 0.046410] 0xffffffffff57c000-0xffffffffff5fb000 508K pte
[ 0.046411] 0xffffffffff5fb000-0xffffffffff5fe000 12K RW PWT PCD GLB NX pte
[ 0.046415] 0xffffffffff5fe000-0xffffffffff600000 8K pte
[ 0.046416] 0xffffffffff600000-0xffffffffff601000 4K USR ro GLB NX pte
[ 0.046438] 0xffffffffff601000-0xffffffffff800000 2044K pte
[ 0.046439] 0xffffffffff800000-0x0000000000000000 8M pmd
[ 0.046495] LSM: Security Framework initializing
[ 0.046605] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.046658] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.047282] LVT offset 1 assigned for vector 0xf9
[ 0.047363] LVT offset 2 assigned for vector 0xf4
[ 0.047385] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[ 0.047386] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[ 0.047388] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.047391] Spectre V2 : Mitigation: Retpolines
[ 0.047391] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.047392] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.047393] Spectre V2 : Enabling Speculation Barrier for firmware calls
[ 0.047393] RETBleed: Mitigation: untrained return thunk
[ 0.047394] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.047396] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.051723] Freeing SMP alternatives memory: 32K
[ 0.155014] smpboot: CPU0: AMD Ryzen 3 2200G with Radeon Vega Graphics (family: 0x17, model: 0x11, stepping: 0x0)
[ 0.155125] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[ 0.155129] ... version: 0
[ 0.155129] ... bit width: 48
[ 0.155130] ... generic registers: 6
[ 0.155130] ... value mask: 0000ffffffffffff
[ 0.155131] ... max period: 00007fffffffffff
[ 0.155132] ... fixed-purpose events: 0
[ 0.155132] ... event mask: 000000000000003f
[ 0.155188] rcu: Hierarchical SRCU implementation.
[ 0.155393] smp: Bringing up secondary CPUs ...
[ 0.155444] x86: Booting SMP configuration:
[ 0.155445] .... node #0, CPUs: #1
[ 0.000000] __common_interrupt: 1.55 No irq handler for vector
[ 0.156056] #2
[ 0.000000] __common_interrupt: 2.55 No irq handler for vector
[ 0.158053] #3
[ 0.000000] __common_interrupt: 3.55 No irq handler for vector
[ 0.159020] smp: Brought up 1 node, 4 CPUs
[ 0.159020] smpboot: Max logical packages: 8
[ 0.159020] smpboot: Total of 4 processors activated (27999.61 BogoMIPS)
[ 0.160392] devtmpfs: initialized
[ 0.160392] x86/mm: Memory block size: 128MB
[ 0.161164] ACPI: PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
[ 0.161164] ACPI: PM: Registering ACPI NVS region [mem 0x4b708000-0x4ce06fff] (24113152 bytes)
[ 0.161238] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.161241] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[ 0.161359] pinctrl core: initialized pinctrl subsystem
[ 0.161531] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.161585] audit: initializing netlink subsys (disabled)
[ 0.161598] audit: type=2000 audit(1685163148.171:1): state=initialized audit_enabled=0 res=1
[ 0.161598] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.161598] thermal_sys: Registered thermal governor 'step_wise'
[ 0.161598] thermal_sys: Registered thermal governor 'user_space'
[ 0.161598] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.161598] cpuidle: using governor ladder
[ 0.161598] cpuidle: using governor menu
[ 0.161598] ACPI: bus type PCI registered
[ 0.161598] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.162005] PCI: MMCONFIG for domain 0000 [bus 00-7f] at [mem 0xf0000000-0xf7ffffff] (base 0xf0000000)
[ 0.162009] PCI: MMCONFIG at [mem 0xf0000000-0xf7ffffff] reserved in E820
[ 0.162020] PCI: Using configuration type 1 for base access
[ 0.163032] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.163032] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.163049] ACPI: Added _OSI(Module Device)
[ 0.163050] ACPI: Added _OSI(Processor Device)
[ 0.163051] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.163051] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.163052] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.163053] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.163054] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.170347] ACPI: 10 ACPI AML tables successfully acquired and loaded
[ 0.171208] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.172525] ACPI: Interpreter enabled
[ 0.172539] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.172540] ACPI: Using IOAPIC for interrupt routing
[ 0.172834] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.173122] ACPI: Enabled 2 GPEs in block 00 to 1F
[ 0.178639] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.178644] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[ 0.178759] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME LTR]
[ 0.178867] acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
[ 0.178875] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-7f] only partially covers this bridge
[ 0.179082] PCI host bridge to bus 0000:00
[ 0.179083] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
[ 0.179085] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
[ 0.179087] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
[ 0.179088] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.179089] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.179090] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[ 0.179091] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfec2ffff window]
[ 0.179092] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[ 0.179093] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.179128] pci 0000:00:00.0: [1022:15d0] type 00 class 0x060000
[ 0.179266] pci 0000:00:00.2: [1022:15d1] type 00 class 0x080600
[ 0.179415] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[ 0.179542] pci 0000:00:01.2: [1022:15d3] type 01 class 0x060400
[ 0.179589] pci 0000:00:01.2: enabling Extended Tags
[ 0.179649] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[ 0.179774] pci 0000:00:01.6: [1022:15d3] type 01 class 0x060400
[ 0.179821] pci 0000:00:01.6: enabling Extended Tags
[ 0.179880] pci 0000:00:01.6: PME# supported from D0 D3hot D3cold
[ 0.179986] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[ 0.180115] pci 0000:00:08.1: [1022:15db] type 01 class 0x060400
[ 0.180166] pci 0000:00:08.1: enabling Extended Tags
[ 0.180224] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[ 0.180360] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[ 0.180532] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[ 0.180704] pci 0000:00:18.0: [1022:15e8] type 00 class 0x060000
[ 0.180753] pci 0000:00:18.1: [1022:15e9] type 00 class 0x060000
[ 0.180804] pci 0000:00:18.2: [1022:15ea] type 00 class 0x060000
[ 0.180853] pci 0000:00:18.3: [1022:15eb] type 00 class 0x060000
[ 0.180901] pci 0000:00:18.4: [1022:15ec] type 00 class 0x060000
[ 0.180950] pci 0000:00:18.5: [1022:15ed] type 00 class 0x060000
[ 0.180999] pci 0000:00:18.6: [1022:15ee] type 00 class 0x060000
[ 0.181050] pci 0000:00:18.7: [1022:15ef] type 00 class 0x060000
[ 0.181172] pci 0000:12:00.0: [1022:43d5] type 00 class 0x0c0330
[ 0.181194] pci 0000:12:00.0: reg 0x10: [mem 0xfcea0000-0xfcea7fff 64bit]
[ 0.181245] pci 0000:12:00.0: enabling Extended Tags
[ 0.181312] pci 0000:12:00.0: PME# supported from D3hot D3cold
[ 0.181428] pci 0000:12:00.1: [1022:43c8] type 00 class 0x010601
[ 0.181487] pci 0000:12:00.1: reg 0x24: [mem 0xfce80000-0xfce9ffff]
[ 0.181497] pci 0000:12:00.1: reg 0x30: [mem 0xfce00000-0xfce7ffff pref]
[ 0.181505] pci 0000:12:00.1: enabling Extended Tags
[ 0.181554] pci 0000:12:00.1: PME# supported from D3hot D3cold
[ 0.181637] pci 0000:12:00.2: [1022:43c6] type 01 class 0x060400
[ 0.181693] pci 0000:12:00.2: enabling Extended Tags
[ 0.181749] pci 0000:12:00.2: PME# supported from D3hot D3cold
[ 0.181860] pci 0000:00:01.2: PCI bridge to [bus 12-28]
[ 0.181865] pci 0000:00:01.2: bridge window [io 0xf000-0xffff]
[ 0.181868] pci 0000:00:01.2: bridge window [mem 0xfcc00000-0xfcefffff]
[ 0.181967] pci 0000:20:00.0: [1022:43c7] type 01 class 0x060400
[ 0.182027] pci 0000:20:00.0: enabling Extended Tags
[ 0.182099] pci 0000:20:00.0: PME# supported from D3hot D3cold
[ 0.182208] pci 0000:20:01.0: [1022:43c7] type 01 class 0x060400
[ 0.182267] pci 0000:20:01.0: enabling Extended Tags
[ 0.182338] pci 0000:20:01.0: PME# supported from D3hot D3cold
[ 0.182448] pci 0000:20:04.0: [1022:43c7] type 01 class 0x060400
[ 0.182506] pci 0000:20:04.0: enabling Extended Tags
[ 0.182577] pci 0000:20:04.0: PME# supported from D3hot D3cold
[ 0.182693] pci 0000:20:05.0: [1022:43c7] type 01 class 0x060400
[ 0.182752] pci 0000:20:05.0: enabling Extended Tags
[ 0.182823] pci 0000:20:05.0: PME# supported from D3hot D3cold
[ 0.182933] pci 0000:20:06.0: [1022:43c7] type 01 class 0x060400
[ 0.182992] pci 0000:20:06.0: enabling Extended Tags
[ 0.183064] pci 0000:20:06.0: PME# supported from D3hot D3cold
[ 0.183177] pci 0000:20:07.0: [1022:43c7] type 01 class 0x060400
[ 0.183235] pci 0000:20:07.0: enabling Extended Tags
[ 0.183307] pci 0000:20:07.0: PME# supported from D3hot D3cold
[ 0.183415] pci 0000:12:00.2: PCI bridge to [bus 20-28]
[ 0.183422] pci 0000:12:00.2: bridge window [io 0xf000-0xffff]
[ 0.183425] pci 0000:12:00.2: bridge window [mem 0xfcc00000-0xfcdfffff]
[ 0.183472] pci 0000:20:00.0: PCI bridge to [bus 21]
[ 0.183527] pci 0000:20:01.0: PCI bridge to [bus 22]
[ 0.183623] pci 0000:25:00.0: [10ec:8168] type 00 class 0x020000
[ 0.183654] pci 0000:25:00.0: reg 0x10: [io 0xf000-0xf0ff]
[ 0.183695] pci 0000:25:00.0: reg 0x18: [mem 0xfcd04000-0xfcd04fff 64bit]
[ 0.183722] pci 0000:25:00.0: reg 0x20: [mem 0xfcd00000-0xfcd03fff 64bit]
[ 0.183889] pci 0000:25:00.0: supports D1 D2
[ 0.183890] pci 0000:25:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.184082] pci 0000:20:04.0: PCI bridge to [bus 25]
[ 0.184089] pci 0000:20:04.0: bridge window [io 0xf000-0xffff]
[ 0.184092] pci 0000:20:04.0: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.184194] pci 0000:26:00.0: [8086:08b1] type 00 class 0x028000
[ 0.184241] pci 0000:26:00.0: reg 0x10: [mem 0xfcc00000-0xfcc01fff 64bit]
[ 0.184495] pci 0000:26:00.0: PME# supported from D0 D3hot D3cold
[ 0.184692] pci 0000:20:05.0: PCI bridge to [bus 26]
[ 0.184700] pci 0000:20:05.0: bridge window [mem 0xfcc00000-0xfccfffff]
[ 0.184745] pci 0000:20:06.0: PCI bridge to [bus 27]
[ 0.184796] pci 0000:20:07.0: PCI bridge to [bus 28]
[ 0.184913] pci 0000:29:00.0: [126f:2263] type 00 class 0x010802
[ 0.184937] pci 0000:29:00.0: reg 0x10: [mem 0xfcf00000-0xfcf03fff 64bit]
[ 0.185170] pci 0000:00:01.6: PCI bridge to [bus 29]
[ 0.185177] pci 0000:00:01.6: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.185294] pci 0000:2a:00.0: [1002:15dd] type 00 class 0x030000
[ 0.185322] pci 0000:2a:00.0: reg 0x10: [mem 0xd0000000-0xdfffffff 64bit pref]
[ 0.185340] pci 0000:2a:00.0: reg 0x18: [mem 0xe0000000-0xe01fffff 64bit pref]
[ 0.185352] pci 0000:2a:00.0: reg 0x20: [io 0xe000-0xe0ff]
[ 0.185364] pci 0000:2a:00.0: reg 0x24: [mem 0xfcb00000-0xfcb7ffff]
[ 0.185385] pci 0000:2a:00.0: enabling Extended Tags
[ 0.185408] pci 0000:2a:00.0: BAR 0: assigned to efifb
[ 0.185415] pci 0000:2a:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.185513] pci 0000:2a:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.185668] pci 0000:2a:00.1: [1002:15de] type 00 class 0x040300
[ 0.185689] pci 0000:2a:00.1: reg 0x10: [mem 0xfcb88000-0xfcb8bfff]
[ 0.185762] pci 0000:2a:00.1: enabling Extended Tags
[ 0.185832] pci 0000:2a:00.1: PME# supported from D1 D2 D3hot D3cold
[ 0.185933] pci 0000:2a:00.2: [1022:15df] type 00 class 0x108000
[ 0.185975] pci 0000:2a:00.2: reg 0x18: [mem 0xfca00000-0xfcafffff]
[ 0.186009] pci 0000:2a:00.2: reg 0x24: [mem 0xfcb8c000-0xfcb8dfff]
[ 0.186029] pci 0000:2a:00.2: enabling Extended Tags
[ 0.186206] pci 0000:2a:00.3: [1022:15e0] type 00 class 0x0c0330
[ 0.186232] pci 0000:2a:00.3: reg 0x10: [mem 0xfc900000-0xfc9fffff 64bit]
[ 0.186294] pci 0000:2a:00.3: enabling Extended Tags
[ 0.186370] pci 0000:2a:00.3: PME# supported from D0 D3hot D3cold
[ 0.186475] pci 0000:2a:00.4: [1022:15e1] type 00 class 0x0c0330
[ 0.186501] pci 0000:2a:00.4: reg 0x10: [mem 0xfc800000-0xfc8fffff 64bit]
[ 0.186563] pci 0000:2a:00.4: enabling Extended Tags
[ 0.186638] pci 0000:2a:00.4: PME# supported from D0 D3hot D3cold
[ 0.186745] pci 0000:2a:00.6: [1022:15e3] type 00 class 0x040300
[ 0.186766] pci 0000:2a:00.6: reg 0x10: [mem 0xfcb80000-0xfcb87fff]
[ 0.186838] pci 0000:2a:00.6: enabling Extended Tags
[ 0.186908] pci 0000:2a:00.6: PME# supported from D0 D3hot D3cold
[ 0.187025] pci 0000:00:08.1: PCI bridge to [bus 2a]
[ 0.187030] pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
[ 0.187034] pci 0000:00:08.1: bridge window [mem 0xfc800000-0xfcbfffff]
[ 0.187039] pci 0000:00:08.1: bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.187432] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.187476] ACPI: PCI: Interrupt link LNKB configured for IRQ 0
[ 0.187513] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.187562] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.187603] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.187638] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.187672] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.187706] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 0.189424] iommu: Default domain type: Translated
[ 0.189425] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.189435] pci 0000:2a:00.0: vgaarb: setting as boot VGA device
[ 0.189435] pci 0000:2a:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.189435] pci 0000:2a:00.0: vgaarb: bridge control possible
[ 0.189435] vgaarb: loaded
[ 0.189435] SCSI subsystem initialized
[ 0.189435] libata version 3.00 loaded.
[ 0.189435] ACPI: bus type USB registered
[ 0.189435] usbcore: registered new interface driver usbfs
[ 0.189435] usbcore: registered new interface driver hub
[ 0.189435] usbcore: registered new device driver usb
[ 0.189435] pps_core: LinuxPPS API ver. 1 registered
[ 0.189435] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.189435] PTP clock support registered
[ 0.189435] Registered efivars operations
[ 0.189435] PCI: Using ACPI for IRQ routing
[ 0.196110] PCI: pci_cache_line_size set to 64 bytes
[ 0.196216] e820: reserve RAM buffer [mem 0x09d82000-0x0bffffff]
[ 0.196217] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[ 0.196218] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[ 0.196219] e820: reserve RAM buffer [mem 0x4b347000-0x4bffffff]
[ 0.196220] e820: reserve RAM buffer [mem 0x4f000000-0x4fffffff]
[ 0.196221] e820: reserve RAM buffer [mem 0x42f340000-0x42fffffff]
[ 0.196362] clocksource: Switched to clocksource tsc-early
[ 0.196417] VFS: Disk quotas dquot_6.6.0
[ 0.196437] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.196477] pnp: PnP ACPI init
[ 0.196537] system 00:00: [mem 0xf0000000-0xf7ffffff] has been reserved
[ 0.196580] system 00:01: [mem 0x50000000-0xcfffffff window] has been reserved
[ 0.196580] system 00:03: [io 0x0a00-0x0a0f] has been reserved
[ 0.196580] system 00:03: [io 0x0a10-0x0a1f] has been reserved
[ 0.196580] system 00:03: [io 0x0a20-0x0a2f] has been reserved
[ 0.196580] system 00:03: [io 0x0a40-0x0a4f] has been reserved
[ 0.196650] pnp 00:04: [dma 0 disabled]
[ 0.196823] system 00:05: [io 0x04d0-0x04d1] has been reserved
[ 0.196825] system 00:05: [io 0x040b] has been reserved
[ 0.196826] system 00:05: [io 0x04d6] has been reserved
[ 0.196827] system 00:05: [io 0x0c00-0x0c01] has been reserved
[ 0.196828] system 00:05: [io 0x0c14] has been reserved
[ 0.196830] system 00:05: [io 0x0c50-0x0c51] has been reserved
[ 0.196831] system 00:05: [io 0x0c52] has been reserved
[ 0.196832] system 00:05: [io 0x0c6c] has been reserved
[ 0.196833] system 00:05: [io 0x0c6f] has been reserved
[ 0.196833] system 00:05: [io 0x0cd0-0x0cd1] has been reserved
[ 0.196834] system 00:05: [io 0x0cd2-0x0cd3] has been reserved
[ 0.196835] system 00:05: [io 0x0cd4-0x0cd5] has been reserved
[ 0.196836] system 00:05: [io 0x0cd6-0x0cd7] has been reserved
[ 0.196837] system 00:05: [io 0x0cd8-0x0cdf] has been reserved
[ 0.196838] system 00:05: [io 0x0800-0x089f] has been reserved
[ 0.196839] system 00:05: [io 0x0b00-0x0b0f] has been reserved
[ 0.196840] system 00:05: [io 0x0b20-0x0b3f] has been reserved
[ 0.196841] system 00:05: [io 0x0900-0x090f] has been reserved
[ 0.196842] system 00:05: [io 0x0910-0x091f] has been reserved
[ 0.196843] system 00:05: [mem 0xfec00000-0xfec00fff] could not be reserved
[ 0.196845] system 00:05: [mem 0xfec01000-0xfec01fff] could not be reserved
[ 0.196846] system 00:05: [mem 0xfedc0000-0xfedc0fff] has been reserved
[ 0.196847] system 00:05: [mem 0xfee00000-0xfee00fff] has been reserved
[ 0.196848] system 00:05: [mem 0xfed80000-0xfed8ffff] could not be reserved
[ 0.196850] system 00:05: [mem 0xfec10000-0xfec10fff] has been reserved
[ 0.196851] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[ 0.197237] pnp: PnP ACPI: found 6 devices
[ 0.202819] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.202856] NET: Registered PF_INET protocol family
[ 0.203071] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.204696] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.204713] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.204718] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.204851] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.204988] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.205119] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.205148] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.205182] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.205262] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.205284] pci 0000:20:00.0: PCI bridge to [bus 21]
[ 0.205300] pci 0000:20:01.0: PCI bridge to [bus 22]
[ 0.205312] pci 0000:20:04.0: PCI bridge to [bus 25]
[ 0.205315] pci 0000:20:04.0: bridge window [io 0xf000-0xffff]
[ 0.205320] pci 0000:20:04.0: bridge window [mem 0xfcd00000-0xfcdfffff]
[ 0.205342] pci 0000:20:05.0: PCI bridge to [bus 26]
[ 0.205347] pci 0000:20:05.0: bridge window [mem 0xfcc00000-0xfccfffff]
[ 0.205356] pci 0000:20:06.0: PCI bridge to [bus 27]
[ 0.205368] pci 0000:20:07.0: PCI bridge to [bus 28]
[ 0.205380] pci 0000:12:00.2: PCI bridge to [bus 20-28]
[ 0.205382] pci 0000:12:00.2: bridge window [io 0xf000-0xffff]
[ 0.205387] pci 0000:12:00.2: bridge window [mem 0xfcc00000-0xfcdfffff]
[ 0.205396] pci 0000:00:01.2: PCI bridge to [bus 12-28]
[ 0.205398] pci 0000:00:01.2: bridge window [io 0xf000-0xffff]
[ 0.205403] pci 0000:00:01.2: bridge window [mem 0xfcc00000-0xfcefffff]
[ 0.205418] pci 0000:00:01.6: PCI bridge to [bus 29]
[ 0.205422] pci 0000:00:01.6: bridge window [mem 0xfcf00000-0xfcffffff]
[ 0.205434] pci 0000:00:08.1: PCI bridge to [bus 2a]
[ 0.205441] pci 0000:00:08.1: bridge window [io 0xe000-0xefff]
[ 0.205445] pci 0000:00:08.1: bridge window [mem 0xfc800000-0xfcbfffff]
[ 0.205449] pci 0000:00:08.1: bridge window [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.205456] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
[ 0.205458] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
[ 0.205459] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
[ 0.205460] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window]
[ 0.205461] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[ 0.205462] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[ 0.205463] pci_bus 0000:00: resource 10 [mem 0xd0000000-0xfec2ffff window]
[ 0.205464] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[ 0.205465] pci_bus 0000:12: resource 0 [io 0xf000-0xffff]
[ 0.205466] pci_bus 0000:12: resource 1 [mem 0xfcc00000-0xfcefffff]
[ 0.205467] pci_bus 0000:20: resource 0 [io 0xf000-0xffff]
[ 0.205468] pci_bus 0000:20: resource 1 [mem 0xfcc00000-0xfcdfffff]
[ 0.205470] pci_bus 0000:25: resource 0 [io 0xf000-0xffff]
[ 0.205471] pci_bus 0000:25: resource 1 [mem 0xfcd00000-0xfcdfffff]
[ 0.205472] pci_bus 0000:26: resource 1 [mem 0xfcc00000-0xfccfffff]
[ 0.205473] pci_bus 0000:29: resource 1 [mem 0xfcf00000-0xfcffffff]
[ 0.205474] pci_bus 0000:2a: resource 0 [io 0xe000-0xefff]
[ 0.205475] pci_bus 0000:2a: resource 1 [mem 0xfc800000-0xfcbfffff]
[ 0.205476] pci_bus 0000:2a: resource 2 [mem 0xd0000000-0xe01fffff 64bit pref]
[ 0.205752] pci 0000:2a:00.1: D0 power state depends on 0000:2a:00.0
[ 0.205816] pci 0000:2a:00.3: extending delay after power-on from D3hot to 20 msec
[ 0.205936] pci 0000:2a:00.4: extending delay after power-on from D3hot to 20 msec
[ 0.206016] PCI: CLS 64 bytes, default 64
[ 0.206027] pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
[ 0.206064] pci 0000:00:00.2: can't derive routing for PCI INT A
[ 0.206065] pci 0000:00:00.2: PCI INT A: not connected
[ 0.206088] pci 0000:00:01.0: Adding to iommu group 0
[ 0.206095] pci 0000:00:01.2: Adding to iommu group 0
[ 0.206103] pci 0000:00:01.6: Adding to iommu group 0
[ 0.206117] pci 0000:00:08.0: Adding to iommu group 1
[ 0.206124] pci 0000:00:08.1: Adding to iommu group 1
[ 0.206137] pci 0000:00:14.0: Adding to iommu group 2
[ 0.206144] pci 0000:00:14.3: Adding to iommu group 2
[ 0.206176] pci 0000:00:18.0: Adding to iommu group 3
[ 0.206178] Trying to unpack rootfs image as initramfs...
[ 0.206184] pci 0000:00:18.1: Adding to iommu group 3
[ 0.206192] pci 0000:00:18.2: Adding to iommu group 3
[ 0.206199] pci 0000:00:18.3: Adding to iommu group 3
[ 0.206207] pci 0000:00:18.4: Adding to iommu group 3
[ 0.206214] pci 0000:00:18.5: Adding to iommu group 3
[ 0.206220] pci 0000:00:18.6: Adding to iommu group 3
[ 0.206227] pci 0000:00:18.7: Adding to iommu group 3
[ 0.206231] pci 0000:12:00.0: Adding to iommu group 0
[ 0.206234] pci 0000:12:00.1: Adding to iommu group 0
[ 0.206237] pci 0000:12:00.2: Adding to iommu group 0
[ 0.206241] pci 0000:20:00.0: Adding to iommu group 0
[ 0.206244] pci 0000:20:01.0: Adding to iommu group 0
[ 0.206247] pci 0000:20:04.0: Adding to iommu group 0
[ 0.206250] pci 0000:20:05.0: Adding to iommu group 0
[ 0.206254] pci 0000:20:06.0: Adding to iommu group 0
[ 0.206257] pci 0000:20:07.0: Adding to iommu group 0
[ 0.206260] pci 0000:25:00.0: Adding to iommu group 0
[ 0.206263] pci 0000:26:00.0: Adding to iommu group 0
[ 0.206266] pci 0000:29:00.0: Adding to iommu group 0
[ 0.206290] pci 0000:2a:00.0: Adding to iommu group 1
[ 0.206292] pci 0000:2a:00.1: Adding to iommu group 1
[ 0.206295] pci 0000:2a:00.2: Adding to iommu group 1
[ 0.206299] pci 0000:2a:00.3: Adding to iommu group 1
[ 0.206302] pci 0000:2a:00.4: Adding to iommu group 1
[ 0.206305] pci 0000:2a:00.6: Adding to iommu group 1
[ 0.207585] pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
[ 0.207588] AMD-Vi: Extended features (0x4f77ef22294ada): PPR NX GT IA GA PC GA_vAPIC
[ 0.207593] AMD-Vi: Interrupt remapping enabled
[ 0.207593] AMD-Vi: Virtual APIC enabled
[ 0.207794] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.207795] software IO TLB: mapped [mem 0x000000004307a000-0x000000004707a000] (64MB)
[ 0.212649] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[ 0.212652] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 0.212668] amd_uncore: 4 amd_df counters detected
[ 0.212681] amd_uncore: 6 amd_l3 counters detected
[ 0.212903] perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
[ 0.213411] Initialise system trusted keyrings
[ 0.213442] workingset: timestamp_bits=40 max_order=22 bucket_order=0
[ 0.214441] zbud: loaded
[ 0.223089] Key type asymmetric registered
[ 0.223093] Asymmetric key parser 'x509' registered
[ 0.223119] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 0.223181] io scheduler mq-deadline registered
[ 0.223184] io scheduler kyber registered
[ 0.223236] io scheduler bfq registered
[ 0.225162] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.225290] Monitor-Mwait will be used to enter C-1 state
[ 0.225299] ACPI: \_PR_.C000: Found 2 idle states
[ 0.225446] ACPI: \_PR_.C001: Found 2 idle states
[ 0.225585] ACPI: \_PR_.C002: Found 2 idle states
[ 0.225679] ACPI: \_PR_.C003: Found 2 idle states
[ 0.225824] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[ 0.225906] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.315386] Freeing initrd memory: 23860K
[ 0.316840] lp: driver loaded but no devices found
[ 0.316843] Linux agpgart interface v0.103
[ 0.319932] loop: module loaded
[ 0.320170] nvme nvme0: pci function 0000:29:00.0
[ 0.320197] ahci 0000:12:00.1: version 3.0
[ 0.320388] ahci 0000:12:00.1: SSS flag set, parallel bus scan disabled
[ 0.320444] ahci 0000:12:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
[ 0.320447] ahci 0000:12:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst
[ 0.320897] scsi host0: ahci
[ 0.320993] scsi host1: ahci
[ 0.321059] scsi host2: ahci
[ 0.321133] scsi host3: ahci
[ 0.321200] scsi host4: ahci
[ 0.321270] scsi host5: ahci
[ 0.321330] scsi host6: ahci
[ 0.321401] scsi host7: ahci
[ 0.321436] ata1: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80100 irq 42
[ 0.321440] ata2: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80180 irq 42
[ 0.321442] ata3: DUMMY
[ 0.321443] ata4: DUMMY
[ 0.321444] ata5: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80300 irq 42
[ 0.321447] ata6: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80380 irq 42
[ 0.321448] ata7: DUMMY
[ 0.321449] ata8: DUMMY
[ 0.321505] PPP generic driver version 2.4.2
[ 0.321569] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.321571] ehci-pci: EHCI PCI platform driver
[ 0.321580] ehci-platform: EHCI generic platform driver
[ 0.321605] usbcore: registered new interface driver usb-storage
[ 0.321656] i8042: PNP: No PS/2 controller found.
[ 0.321700] mousedev: PS/2 mouse device common for all mice
[ 0.321759] rtc_cmos 00:02: RTC can wake from S4
[ 0.322042] rtc_cmos 00:02: registered as rtc0
[ 0.322092] rtc_cmos 00:02: setting system clock to 2023-05-27T04:52:29 UTC (1685163149)
[ 0.322108] rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[ 0.322153] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.322185] efifb: probing for efifb
[ 0.322197] efifb: framebuffer at 0xd0000000, using 8128k, total 8128k
[ 0.322199] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[ 0.322201] efifb: scrolling: redraw
[ 0.322201] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.322277] Console: switching to colour frame buffer device 240x67
[ 0.325757] nvme nvme0: missing or invalid SUBNQN field.
[ 0.326826] fb0: EFI VGA frame buffer device
[ 0.326841] hid: raw HID events driver (C) Jiri Kosina
[ 0.326944] usbcore: registered new interface driver usbhid
[ 0.326945] usbhid: USB HID core driver
[ 0.327184] NET: Registered PF_INET6 protocol family
[ 0.334283] Segment Routing with IPv6
[ 0.334287] RPL Segment Routing with IPv6
[ 0.334304] In-situ OAM (IOAM) with IPv6
[ 0.334340] NET: Registered PF_PACKET protocol family
[ 0.334379] Key type dns_resolver registered
[ 0.334715] microcode: CPU0: patch_level=0x08101016
[ 0.334721] microcode: CPU1: patch_level=0x08101016
[ 0.334734] microcode: CPU2: patch_level=0x08101016
[ 0.334739] microcode: CPU3: patch_level=0x08101016
[ 0.334782] microcode: Microcode Update Driver: v2.2.
[ 0.334786] IPI shorthand broadcast: enabled
[ 0.334799] sched_clock: Marking stable (344772531, -9995740)->(352371942, -17595151)
[ 0.334833] registered taskstats version 1
[ 0.334838] Loading compiled-in X.509 certificates
[ 0.335948] zswap: loaded using pool zstd/zbud
[ 0.340199] nvme nvme0: allocated 64 MiB host memory buffer.
[ 0.369186] nvme nvme0: 15/0/0 default/read/poll queues
[ 0.376494] nvme0n1: p1 p2 p3
[ 0.635218] ata1: SATA link down (SStatus 0 SControl 330)
[ 0.950259] ata2: SATA link down (SStatus 0 SControl 330)
[ 1.238644] tsc: Refined TSC clocksource calibration: 3499.983 MHz
[ 1.238661] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x327340b30a0, max_idle_ns: 440795302655 ns
[ 1.238709] clocksource: Switched to clocksource tsc
[ 1.260820] ata5: SATA link down (SStatus 0 SControl 330)
[ 1.734353] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.735865] ata6.00: ATA-8: TOSHIBA HDWD110, MS2OA8R0, max UDMA/133
[ 1.736165] ata6.00: ATA Identify Device Log not supported
[ 1.736168] ata6.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.737401] ata6.00: ATA Identify Device Log not supported
[ 1.737405] ata6.00: configured for UDMA/133
[ 1.737532] scsi 5:0:0:0: Direct-Access ATA TOSHIBA HDWD110 A8R0 PQ: 0 ANSI: 5
[ 1.737807] sd 5:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 1.737810] sd 5:0:0:0: [sda] 4096-byte physical blocks
[ 1.737829] sd 5:0:0:0: [sda] Write Protect is off
[ 1.737831] sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.737843] sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.761881] sd 5:0:0:0: [sda] Attached SCSI disk
[ 1.762064] PM: Image not found (code -22)
[ 1.762472] Freeing unused kernel image (initmem) memory: 1292K
[ 1.767041] Write protecting the kernel read-only data: 18432k
[ 1.767979] Freeing unused kernel image (text/rodata gap) memory: 2044K
[ 1.768195] Freeing unused kernel image (rodata/data gap) memory: 860K
[ 1.768200] rodata_test: all tests were successful
[ 1.768206] Run /init as init process
[ 1.768206] with arguments:
[ 1.768207] /init
[ 1.768207] splash
[ 1.768208] with environment:
[ 1.768208] HOME=/
[ 1.768209] TERM=linux
[ 1.768209] BOOT_IMAGE=/boot/vmlinuz-5.15.82-calculate
[ 1.768210] calculate=video:amdgpu
[ 1.800456] dracut: Calculate-23
[ 1.844021] dracut: TuxOnIce premodule started
[ 1.844072] dracut: Kernel has no tuxonice support, aborting
[ 1.890651] AMD-Vi: AMD IOMMUv2 loaded and initialized
[ 1.904069] acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01)
[ 1.908938] ACPI: video: Video Device [VGA1] (multi-head: yes rom: no post: no)
[ 1.910071] acpi device:10: registered as cooling_device4
[ 1.910372] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/LNXVIDEO:01/input/input0
[ 1.974299] [drm] amdgpu kernel modesetting enabled.
[ 1.979041] amdgpu: Topology: Add APU node [0x0:0x0]
[ 1.979092] checking generic (d0000000 7f0000) vs hw (d0000000 10000000)
[ 1.979184] Console: switching to colour dummy device 80x25
[ 1.979219] amdgpu 0000:2a:00.0: vgaarb: deactivate vga console
[ 1.979342] [drm] initializing kernel modesetting (RAVEN 0x1002:0x15DD 0x1002:0x15DD 0xC8).
[ 1.979346] amdgpu 0000:2a:00.0: amdgpu: Trusted Memory Zone (TMZ) feature enabled
[ 1.979356] [drm] register mmio base: 0xFCB00000
[ 1.979357] [drm] register mmio size: 524288
[ 1.979371] [drm] add ip block number 0 <soc15_common>
[ 1.979373] [drm] add ip block number 1 <gmc_v9_0>
[ 1.979374] [drm] add ip block number 2 <vega10_ih>
[ 1.979375] [drm] add ip block number 3 <psp>
[ 1.979376] [drm] add ip block number 4 <gfx_v9_0>
[ 1.979377] [drm] add ip block number 5 <sdma_v4_0>
[ 1.979379] [drm] add ip block number 6 <powerplay>
[ 1.979380] [drm] add ip block number 7 <dm>
[ 1.979381] [drm] add ip block number 8 <vcn_v1_0>
[ 2.004373] [drm] BIOS signature incorrect 0 0
[ 2.004394] amdgpu 0000:2a:00.0: amdgpu: Fetched VBIOS from ROM BAR
[ 2.004395] amdgpu: ATOM BIOS: 113-RAVEN-116
[ 2.004415] [drm] VCN decode is enabled in VM mode
[ 2.004415] [drm] VCN encode is enabled in VM mode
[ 2.004416] [drm] JPEG decode is enabled in VM mode
[ 2.004439] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[ 2.004444] amdgpu 0000:2a:00.0: amdgpu: VRAM: 2048M 0x000000F400000000 - 0x000000F47FFFFFFF (2048M used)
[ 2.004447] amdgpu 0000:2a:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[ 2.004448] amdgpu 0000:2a:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[ 2.004453] [drm] Detected VRAM RAM=2048M, BAR=2048M
[ 2.004453] [drm] RAM width 128bits DDR4
[ 2.004508] [drm] amdgpu: 2048M of VRAM memory ready
[ 2.004508] [drm] amdgpu: 3072M of GTT memory ready.
[ 2.004511] [drm] GART: num cpu pages 262144, num gpu pages 262144
[ 2.004637] [drm] PCIE GART of 1024M enabled.
[ 2.004639] [drm] PTB located at 0x000000F400900000
[ 2.004788] amdgpu 0000:2a:00.0: amdgpu: PSP runtime database doesn't exist
[ 2.005640] amdgpu: hwmgr_sw_init smu backed is smu10_smu
[ 2.005711] [drm] Found VCN firmware Version ENC: 1.13 DEC: 2 VEP: 0 Revision: 4
[ 2.005715] amdgpu 0000:2a:00.0: amdgpu: Will use PSP to load VCN firmware
[ 2.026338] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[ 2.086825] amdgpu 0000:2a:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 2.091825] amdgpu 0000:2a:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 2.091827] amdgpu 0000:2a:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 2.093228] [drm] kiq ring mec 2 pipe 1 q 0
[ 2.093607] [drm] DM_PPLIB: values for F clock
[ 2.093608] [drm] DM_PPLIB: 400000 in kHz, 3649 in mV
[ 2.093609] [drm] DM_PPLIB: 933000 in kHz, 4074 in mV
[ 2.093610] [drm] DM_PPLIB: 1200000 in kHz, 4399 in mV
[ 2.093611] [drm] DM_PPLIB: 1333000 in kHz, 4399 in mV
[ 2.093612] [drm] DM_PPLIB: values for DCF clock
[ 2.093613] [drm] DM_PPLIB: 300000 in kHz, 3649 in mV
[ 2.093613] [drm] DM_PPLIB: 600000 in kHz, 4074 in mV
[ 2.093614] [drm] DM_PPLIB: 626000 in kHz, 4250 in mV
[ 2.093615] [drm] DM_PPLIB: 654000 in kHz, 4399 in mV
[ 2.093871] [drm] Display Core initialized with v3.2.149!
[ 2.196811] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[ 2.197675] kfd kfd: amdgpu: Allocated 3969056 bytes on gart
[ 2.198031] amdgpu: Topology: Add APU node [0x15dd:0x1002]
[ 2.198033] kfd kfd: amdgpu: added device 1002:15dd
[ 2.198043] amdgpu 0000:2a:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 11, active_cu_number 8
[ 2.199520] [drm] fb mappable at 0x50BCA000
[ 2.199522] [drm] vram apper at 0x50000000
[ 2.199523] [drm] size 8294400
[ 2.199523] [drm] fb depth is 24
[ 2.199524] [drm] pitch is 7680
[ 2.199586] fbcon: amdgpudrmfb (fb0) is primary device
[ 2.270929] Console: switching to colour frame buffer device 240x67
[ 2.290588] amdgpu 0000:2a:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[ 2.296067] amdgpu 0000:2a:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[ 2.296069] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 2.296071] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 2.296073] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[ 2.296074] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[ 2.296076] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[ 2.296077] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[ 2.296078] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[ 2.296079] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[ 2.296081] amdgpu 0000:2a:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[ 2.296082] amdgpu 0000:2a:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[ 2.296084] amdgpu 0000:2a:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[ 2.296085] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[ 2.296086] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[ 2.296088] amdgpu 0000:2a:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[ 2.300085] [drm] Initialized amdgpu 3.42.0 20150101 for 0000:2a:00.0 on minor 0
[ 2.306495] dracut: Starting plymouth daemon
[ 2.438406] xhci_hcd 0000:12:00.0: xHCI Host Controller
[ 2.438532] xhci_hcd 0000:12:00.0: new USB bus registered, assigned bus number 1
[ 2.443916] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[ 2.443994] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[ 2.444298] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[ 2.447216] ccp 0000:2a:00.2: ccp enabled
[ 2.450372] cryptd: max_cpu_qlen set to 1000
[ 2.451852] AVX2 version of gcm_enc/dec engaged.
[ 2.451864] AES CTR mode by8 optimization enabled
[ 2.457385] ccp 0000:2a:00.2: tee enabled
[ 2.457389] ccp 0000:2a:00.2: psp enabled
[ 2.493864] xhci_hcd 0000:12:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000000000410
[ 2.494109] xhci_hcd 0000:12:00.0: xHCI Host Controller
[ 2.494145] xhci_hcd 0000:12:00.0: new USB bus registered, assigned bus number 2
[ 2.494150] xhci_hcd 0000:12:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 2.494211] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 2.494213] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.494214] usb usb1: Product: xHCI Host Controller
[ 2.494215] usb usb1: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 2.494216] usb usb1: SerialNumber: 0000:12:00.0
[ 2.494370] hub 1-0:1.0: USB hub found
[ 2.494386] hub 1-0:1.0: 10 ports detected
[ 2.494636] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[ 2.494649] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 2.494650] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.494651] usb usb2: Product: xHCI Host Controller
[ 2.494652] usb usb2: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 2.494653] usb usb2: SerialNumber: 0000:12:00.0
[ 2.494707] hub 2-0:1.0: USB hub found
[ 2.494715] hub 2-0:1.0: 4 ports detected
[ 2.494920] xhci_hcd 0000:2a:00.3: xHCI Host Controller
[ 2.494944] xhci_hcd 0000:2a:00.3: new USB bus registered, assigned bus number 3
[ 2.495133] xhci_hcd 0000:2a:00.3: hcc params 0x0270ffe5 hci version 0x110 quirks 0x0000000840000410
[ 2.495510] xhci_hcd 0000:2a:00.3: xHCI Host Controller
[ 2.495666] xhci_hcd 0000:2a:00.3: new USB bus registered, assigned bus number 4
[ 2.495668] xhci_hcd 0000:2a:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[ 2.495706] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 2.495708] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.495709] usb usb3: Product: xHCI Host Controller
[ 2.495710] usb usb3: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 2.495711] usb usb3: SerialNumber: 0000:2a:00.3
[ 2.495767] hub 3-0:1.0: USB hub found
[ 2.495780] hub 3-0:1.0: 4 ports detected
[ 2.495937] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[ 2.495949] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 2.495950] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.495951] usb usb4: Product: xHCI Host Controller
[ 2.495952] usb usb4: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 2.495953] usb usb4: SerialNumber: 0000:2a:00.3
[ 2.496012] hub 4-0:1.0: USB hub found
[ 2.496025] hub 4-0:1.0: 4 ports detected
[ 2.496392] xhci_hcd 0000:2a:00.4: xHCI Host Controller
[ 2.496419] xhci_hcd 0000:2a:00.4: new USB bus registered, assigned bus number 5
[ 2.496579] xhci_hcd 0000:2a:00.4: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000840000410
[ 2.496938] xhci_hcd 0000:2a:00.4: xHCI Host Controller
[ 2.496963] xhci_hcd 0000:2a:00.4: new USB bus registered, assigned bus number 6
[ 2.496965] xhci_hcd 0000:2a:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[ 2.497008] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 2.497009] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.497010] usb usb5: Product: xHCI Host Controller
[ 2.497011] usb usb5: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 2.497012] usb usb5: SerialNumber: 0000:2a:00.4
[ 2.497071] hub 5-0:1.0: USB hub found
[ 2.497083] hub 5-0:1.0: 1 port detected
[ 2.497158] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[ 2.497173] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 2.497175] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.497176] usb usb6: Product: xHCI Host Controller
[ 2.497176] usb usb6: Manufacturer: Linux 5.15.82-calculate xhci-hcd
[ 2.497177] usb usb6: SerialNumber: 0000:2a:00.4
[ 2.497226] hub 6-0:1.0: USB hub found
[ 2.497235] hub 6-0:1.0: 1 port detected
[ 2.703987] PM: Image not found (code -22)
[ 2.706458] dracut: TuxOnIce lvmfix started
[ 2.707735] dracut: TuxOnIce udev should be now fully settled
[ 2.731301] EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 2.736049] usb 3-2: new full-speed USB device number 2 using xhci_hcd
[ 2.764364] dracut: Mounted root filesystem /dev/nvme0n1p3
[ 2.770820] EXT4-fs (nvme0n1p3): re-mounted. Opts: (null). Quota mode: none.
[ 2.776211] EXT4-fs (nvme0n1p3): re-mounted. Opts: (null). Quota mode: none.
[ 2.798014] usb 1-5: new full-speed USB device number 2 using xhci_hcd
[ 2.805011] dracut: Switching root
[ 2.879767] usb 3-2: New USB device found, idVendor=0763, idProduct=3109, bcdDevice= 1.05
[ 2.879772] usb 3-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.879774] usb 3-2: Product: Keystation 61 MK3
[ 2.879776] usb 3-2: Manufacturer: M-Audio
[ 2.995012] usb 3-4: new full-speed USB device number 3 using xhci_hcd
[ 3.140769] usb 3-4: New USB device found, idVendor=17a0, idProduct=0303, bcdDevice= 2.01
[ 3.140773] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.140775] usb 3-4: Product: Samson C01U Pro Mic
[ 3.140776] usb 3-4: Manufacturer: Samson Technologies
[ 3.152931] input: Samson Technologies Samson C01U Pro Mic as /devices/pci0000:00/0000:00:08.1/0000:2a:00.3/usb3/3-4/3-4:1.3/0003:17A0:0303.0001/input/input1
[ 3.181602] usb 1-5: New USB device found, idVendor=046d, idProduct=c52f, bcdDevice=22.00
[ 3.181607] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.181608] usb 1-5: Product: USB Receiver
[ 3.181610] usb 1-5: Manufacturer: Logitech
[ 3.204071] hid-generic 0003:17A0:0303.0001: input,hidraw0: USB HID v1.00 Device [Samson Technologies Samson C01U Pro Mic] on usb-0000:2a:00.3-4/input3
[ 3.208668] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-5/1-5:1.0/0003:046D:C52F.0002/input/input2
[ 3.208724] hid-generic 0003:046D:C52F.0002: input,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:12:00.0-5/input0
[ 3.222559] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-5/1-5:1.1/0003:046D:C52F.0003/input/input3
[ 3.274116] hid-generic 0003:046D:C52F.0003: input,hiddev96,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:12:00.0-5/input1
[ 3.450166] usb 1-6: new low-speed USB device number 3 using xhci_hcd
[ 3.506915] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
[ 3.507312] ACPI: button: Power Button [PWRB]
[ 3.507364] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
[ 3.511543] acpi_cpufreq: overriding BIOS provided _PSD data
[ 3.521722] ACPI: button: Power Button [PWRF]
[ 3.583546] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[ 3.583549] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[ 3.612777] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[ 3.636048] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 3.638256] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 3.639379] r8169 0000:25:00.0 eth0: RTL8168h/8111h, 2c:f0:5d:e1:23:25, XID 541, IRQ 75
[ 3.639383] r8169 0000:25:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 3.650443] input: PC Speaker as /devices/platform/pcspkr/input/input8
[ 3.656087] Intel(R) Wireless WiFi driver for Linux
[ 3.656140] iwlwifi 0000:26:00.0: enabling device (0000 -> 0002)
[ 3.657302] snd_hda_intel 0000:2a:00.1: Handle vga_switcheroo audio client
[ 3.660751] iwlwifi 0000:26:00.0: loaded firmware version 17.3216344376.0 7260-17.ucode op_mode iwlmvm
[ 3.663267] snd_hda_intel 0000:2a:00.6: no codecs found!
[ 3.666740] snd_hda_intel 0000:2a:00.1: bound 0000:2a:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
[ 3.667246] mc: Linux media interface: v0.10
[ 3.674574] wl: loading out-of-tree module taints kernel.
[ 3.674579] wl: module license 'MIXED/Proprietary' taints kernel.
[ 3.674579] Disabling lock debugging due to kernel taint
[ 3.678399] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:2a:00.1/sound/card0/input9
[ 3.678441] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:2a:00.1/sound/card0/input10
[ 3.693870] iwlwifi 0000:26:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
[ 3.704168] kvm: disabled by bios
[ 3.711407] vboxdrv: Found 4 processor cores/threads
[ 3.712310] iwlwifi 0000:26:00.0: base HW address: 5c:c5:d4:27:90:d4
[ 3.723511] kvm: disabled by bios
[ 3.736232] vboxdrv: TSC mode is Invariant, tentative frequency 3499984907 Hz
[ 3.736236] vboxdrv: Successfully loaded version 7.0.6 r155176 (interface 0x00330004)
[ 3.751653] usb 1-6: New USB device found, idVendor=0458, idProduct=003a, bcdDevice= 1.00
[ 3.751658] usb 1-6: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 3.751660] usb 1-6: Product: Optical Mouse
[ 3.751661] usb 1-6: Manufacturer: Genius
[ 3.760055] VBoxNetFlt: Successfully started.
[ 3.765170] VBoxNetAdp: Successfully started.
[ 3.765229] kvm: disabled by bios
[ 3.776511] EDAC MC: Ver: 3.0.0
[ 3.779756] kvm: disabled by bios
[ 3.782781] input: Genius Optical Mouse as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-6/1-6:1.0/0003:0458:003A.0004/input/input11
[ 3.782832] hid-generic 0003:0458:003A.0004: input,hidraw3: USB HID v1.11 Mouse [Genius Optical Mouse] on usb-0000:12:00.0-6/input0
[ 3.792045] MCE: In-kernel MCE decoding enabled.
[ 3.861915] usbcore: registered new interface driver snd-usb-audio
[ 3.927130] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[ 3.929470] iwlwifi 0000:26:00.0 wlan2: renamed from wlan0
[ 3.960017] usb 1-9: new full-speed USB device number 4 using xhci_hcd
[ 4.328712] usb 1-9: New USB device found, idVendor=8087, idProduct=07dc, bcdDevice= 0.01
[ 4.328717] usb 1-9: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4.347198] EXT4-fs (nvme0n1p3): re-mounted. Opts: (null). Quota mode: none.
[ 4.351866] EXT4-fs (nvme0n1p3): re-mounted. Opts: (null). Quota mode: none.
[ 4.398967] Adding 5242876k swap on /dev/nvme0n1p2. Priority:-2 extents:1 across:5242876k SSFS
[ 4.417866] zram: Added device: zram0
[ 4.469654] FAT-fs (nvme0n1p1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[ 4.523014] usb 1-10: new full-speed USB device number 5 using xhci_hcd
[ 4.549879] EXT4-fs (sda): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 4.908521] usb 1-10: New USB device found, idVendor=046d, idProduct=c534, bcdDevice=29.00
[ 4.908525] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 4.908527] usb 1-10: Product: USB Receiver
[ 4.908528] usb 1-10: Manufacturer: Logitech
[ 4.937739] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-10/1-10:1.0/0003:046D:C534.0005/input/input12
[ 4.989316] hid-generic 0003:046D:C534.0005: input,hidraw4: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:12:00.0-10/input0
[ 4.994970] fuse: init (API version 7.34)
[ 5.013462] Bluetooth: Core ver 2.22
[ 5.013495] NET: Registered PF_BLUETOOTH protocol family
[ 5.013496] Bluetooth: HCI device and connection manager initialized
[ 5.013500] Bluetooth: HCI socket layer initialized
[ 5.013502] Bluetooth: L2CAP socket layer initialized
[ 5.013505] Bluetooth: SCO socket layer initialized
[ 5.014881] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-10/1-10:1.1/0003:046D:C534.0006/input/input13
[ 5.014944] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-10/1-10:1.1/0003:046D:C534.0006/input/input14
[ 5.021434] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 5.021437] Bluetooth: BNEP filters: protocol multicast
[ 5.021441] Bluetooth: BNEP socket layer initialized
[ 5.067086] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-10/1-10:1.1/0003:046D:C534.0006/input/input15
[ 5.067279] hid-generic 0003:046D:C534.0006: input,hiddev97,hidraw5: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:12:00.0-10/input1
[ 5.089022] Generic FE-GE Realtek PHY r8169-0-2500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2500:00, irq=MAC)
[ 5.093630] usbcore: registered new interface driver btusb
[ 5.095202] logitech-djreceiver 0003:046D:C52F.0002: hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:12:00.0-5/input0
[ 5.111549] Bluetooth: hci0: Legacy ROM 2.5 revision 8.0 build 2 week 3 2013
[ 5.112852] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
[ 5.164995] logitech-djreceiver 0003:046D:C52F.0003: hiddev96,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:12:00.0-5/input1
[ 5.220593] logitech-djreceiver 0003:046D:C52F.0003: device of type eQUAD step 4 DJ (0x04) connected on slot 1
[ 5.221211] input: Logitech Wireless Mouse PID:1020 Mouse as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-5/1-5:1.1/0003:046D:C52F.0003/0003:046D:1020.0007/input/input18
[ 5.249193] input: Logitech Wireless Mouse PID:1020 Consumer Control as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-5/1-5:1.1/0003:046D:C52F.0003/0003:046D:1020.0007/input/input19
[ 5.249273] hid-generic 0003:046D:1020.0007: input,hidraw4: USB HID v1.11 Mouse [Logitech Wireless Mouse PID:1020] on usb-0000:12:00.0-5/input1:1
[ 5.250120] logitech-djreceiver 0003:046D:C534.0005: hidraw6: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:12:00.0-10/input0
[ 5.252906] r8169 0000:25:00.0 eth0: Link is Down
[ 5.354543] logitech-djreceiver 0003:046D:C534.0006: hiddev97,hidraw5: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:12:00.0-10/input1
[ 5.412589] logitech-djreceiver 0003:046D:C534.0006: device of type eQUAD nano Lite (0x0a) connected on slot 1
[ 5.414595] logitech-djreceiver 0003:046D:C534.0006: device of type eQUAD nano Lite (0x0a) connected on slot 2
[ 5.418471] input: Logitech Wireless Keyboard PID:4023 Keyboard as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-10/1-10:1.1/0003:046D:C534.0006/0003:046D:4023.0008/input/input23
[ 5.433817] hid-generic 0003:046D:4023.0008: input,hidraw7: USB HID v1.11 Keyboard [Logitech Wireless Keyboard PID:4023] on usb-0000:12:00.0-10/input1:1
[ 5.435590] input: Logitech Wireless Mouse PID:4022 Mouse as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-10/1-10:1.1/0003:046D:C534.0006/0003:046D:4022.0009/input/input28
[ 5.435690] hid-generic 0003:046D:4022.0009: input,hidraw8: USB HID v1.11 Mouse [Logitech Wireless Mouse PID:4022] on usb-0000:12:00.0-10/input1:2
[ 5.499433] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5.499440] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5.499443] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5.499445] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5.502768] input: Logitech M215 as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-5/1-5:1.1/0003:046D:C52F.0003/0003:046D:1020.0007/input/input32
[ 5.502862] logitech-hidpp-device 0003:046D:1020.0007: input,hidraw4: USB HID v1.11 Mouse [Logitech M215] on usb-0000:12:00.0-5/input1:1
[ 5.544820] input: Logitech Wireless Keyboard PID:4023 as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-10/1-10:1.1/0003:046D:C534.0006/0003:046D:4023.0008/input/input33
[ 5.545014] logitech-hidpp-device 0003:046D:4023.0008: input,hidraw7: USB HID v1.11 Keyboard [Logitech Wireless Keyboard PID:4023] on usb-0000:12:00.0-10/input1:1
[ 5.568654] input: Logitech Wireless Mouse PID:4022 as /devices/pci0000:00/0000:00:01.2/0000:12:00.0/usb1/1-10/1-10:1.1/0003:046D:C534.0006/0003:046D:4022.0009/input/input34
[ 5.568733] logitech-hidpp-device 0003:046D:4022.0009: input,hidraw8: USB HID v1.11 Mouse [Logitech Wireless Mouse PID:4022] on usb-0000:12:00.0-10/input1:2
[ 5.756969] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5.756977] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5.756979] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5.756982] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5.813844] NET: Registered PF_QIPCRTR protocol family
[ 5.968646] Bluetooth: hci0: unexpected event for opcode 0xfc2f
[ 5.999675] Bluetooth: hci0: Intel BT fw patch 0x57 completed & activated
[ 6.191993] NET: Registered PF_ALG protocol family
[ 9.039267] wlan2: authenticate with 40:b0:76:9c:f9:6c
[ 9.039277] wlan2: No basic rates, using min rate instead
[ 9.042114] wlan2: send auth to 40:b0:76:9c:f9:6c (try 1/3)
[ 9.042790] wlan2: authenticated
[ 9.043021] wlan2: associate with 40:b0:76:9c:f9:6c (try 1/3)
[ 9.055184] wlan2: RX AssocResp from 40:b0:76:9c:f9:6c (capab=0x931 status=0 aid=1)
[ 9.056624] wlan2: associated
[ 9.110666] wlan2: Limiting TX power to 20 (20 - 0) dBm as advertised by 40:b0:76:9c:f9:6c
[ 9.287139] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
[ 9.310591] 8021q: 802.1Q VLAN Support v1.8
[ 14.696010] logitech-hidpp-device 0003:046D:4023.0008: HID++ 2.0 device connected.
[ 25.201969] Key type encrypted registered
[ 30.429021] Bluetooth: RFCOMM TTY layer initialized
[ 30.429028] Bluetooth: RFCOMM socket layer initialized
[ 30.429032] Bluetooth: RFCOMM ver 1.11
[ 43.079935] snd_hda_intel 0000:2a:00.1: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
[ 5464.088596] wlan2: deauthenticating from 40:b0:76:9c:f9:6c by local choice (Reason: 3=DEAUTH_LEAVING)
[ 5464.166517] PM: suspend entry (deep)
[ 5464.265032] Filesystems sync: 0.098 seconds
[ 5464.371076] Freezing user space processes ... (elapsed 0.001 seconds) done.
[ 5464.372587] OOM killer disabled.
[ 5464.372588] Freezing remaining freezable tasks ... (elapsed 0.000 seconds) done.
[ 5464.373568] printk: Suspending console(s) (use no_console_suspend to debug)
[ 5464.374446] serial 00:04: disabled
[ 5464.377509] sd 5:0:0:0: [sda] Synchronizing SCSI cache
[ 5464.377641] sd 5:0:0:0: [sda] Stopping disk
[ 5464.460110] [drm] free PSP TMR buffer
[ 5465.039899] ACPI: PM: Preparing to enter system sleep state S3
[ 5465.342270] ACPI: PM: Saving platform NVS memory
[ 5465.342554] Disabling non-boot CPUs ...
[ 5465.344132] smpboot: CPU 1 is now offline
[ 5465.346892] smpboot: CPU 2 is now offline
[ 5465.349553] smpboot: CPU 3 is now offline
[ 5465.351472] ACPI: PM: Low-level resume complete
[ 5465.351508] ACPI: PM: Restoring platform NVS memory
[ 5465.449463] Enabling non-boot CPUs ...
[ 5465.449674] x86: Booting SMP configuration:
[ 5465.449675] smpboot: Booting Node 0 Processor 1 APIC 0x1
[ 5465.450054] microcode: CPU1: patch_level=0x08101016
[ 5465.452269] ACPI: \_PR_.C001: Found 2 idle states
[ 5465.452464] CPU1 is up
[ 5465.452645] smpboot: Booting Node 0 Processor 2 APIC 0x2
[ 5465.453264] microcode: CPU2: patch_level=0x08101016
[ 5465.455443] ACPI: \_PR_.C002: Found 2 idle states
[ 5465.455636] CPU2 is up
[ 5465.455883] smpboot: Booting Node 0 Processor 3 APIC 0x3
[ 5465.456277] microcode: CPU3: patch_level=0x08101016
[ 5465.458446] ACPI: \_PR_.C003: Found 2 idle states
[ 5465.458610] CPU3 is up
[ 5465.459032] ACPI: PM: Waking up from system sleep state S3
[ 5465.509368] xhci_hcd 0000:12:00.0: xHC error in resume, USBSTS 0x401, Reinit
[ 5465.509375] usb usb1: root hub lost power or was reset
[ 5465.509378] usb usb2: root hub lost power or was reset
[ 5465.510451] serial 00:04: activated
[ 5465.510562] sd 5:0:0:0: [sda] Starting disk
[ 5465.510872] [drm] PCIE GART of 1024M enabled.
[ 5465.510877] [drm] PTB located at 0x000000F400900000
[ 5465.510903] [drm] PSP is resuming...
[ 5465.530942] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[ 5465.594712] amdgpu 0000:2a:00.0: amdgpu: RAS: optional ras ta ucode is not available
[ 5465.597016] nvme nvme0: 15/0/0 default/read/poll queues
[ 5465.599710] amdgpu 0000:2a:00.0: amdgpu: RAP: optional rap ta ucode is not available
[ 5465.599712] amdgpu 0000:2a:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[ 5465.601487] [drm] kiq ring mec 2 pipe 1 q 0
[ 5465.601717] amdgpu: restore the fine grain parameters
[ 5465.743063] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5465.743069] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5465.743072] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5465.743074] ACPI: \: failed to evaluate _DSM (0x1001)
[ 5465.803917] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[ 5465.803938] amdgpu 0000:2a:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[ 5465.803941] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[ 5465.803943] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[ 5465.803944] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[ 5465.803945] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[ 5465.803947] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[ 5465.803948] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[ 5465.803949] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[ 5465.803950] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[ 5465.803952] amdgpu 0000:2a:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[ 5465.803953] amdgpu 0000:2a:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[ 5465.803954] amdgpu 0000:2a:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[ 5465.803955] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[ 5465.803957] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[ 5465.803958] amdgpu 0000:2a:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[ 5465.814281] ata1: SATA link down (SStatus 0 SControl 330)
[ 5465.814757] ata2: SATA link down (SStatus 0 SControl 330)
[ 5465.815755] ata5: SATA link down (SStatus 0 SControl 330)
[ 5465.892364] usb 1-10: reset full-speed USB device number 5 using xhci_hcd
[ 5466.341318] usb 1-5: reset full-speed USB device number 2 using xhci_hcd
[ 5466.789348] usb 1-9: reset full-speed USB device number 4 using xhci_hcd
[ 5467.324349] usb 1-6: reset low-speed USB device number 3 using xhci_hcd
[ 5469.352120] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 5469.355790] ata6.00: ATA Identify Device Log not supported
[ 5469.357003] ata6.00: ATA Identify Device Log not supported
[ 5469.357007] ata6.00: configured for UDMA/133
[ 5469.375210] OOM killer enabled.
[ 5469.375214] Restarting tasks ... done.
[ 5469.381243] video LNXVIDEO:01: Restoring backlight state
[ 5469.381348] PM: suspend exit
[ 5469.399633] Bluetooth: hci0: Legacy ROM 2.5 revision 8.0 build 2 week 3 2013
[ 5469.399642] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
[ 5469.412132] Generic FE-GE Realtek PHY r8169-0-2500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2500:00, irq=MAC)
[ 5469.578352] r8169 0000:25:00.0 eth0: Link is Down
[ 5470.222735] Bluetooth: hci0: unexpected event for opcode 0xfc2f
[ 5470.253963] Bluetooth: hci0: Intel BT fw patch 0x57 completed & activated
[ 5472.897313] wlan2: authenticate with 40:b0:76:9c:f9:6c
[ 5472.897325] wlan2: No basic rates, using min rate instead
[ 5472.900120] wlan2: send auth to 40:b0:76:9c:f9:6c (try 1/3)
[ 5472.900794] wlan2: authenticated
[ 5472.901110] wlan2: associate with 40:b0:76:9c:f9:6c (try 1/3)
[ 5472.914847] wlan2: RX AssocResp from 40:b0:76:9c:f9:6c (capab=0x931 status=0 aid=1)
[ 5472.916167] wlan2: associated
[ 5472.967232] wlan2: Limiting TX power to 20 (20 - 0) dBm as advertised by 40:b0:76:9c:f9:6c
[ 5473.133260] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
[14114.339782] wlan2: deauthenticating from 40:b0:76:9c:f9:6c by local choice (Reason: 3=DEAUTH_LEAVING)
[14114.415487] PM: suspend entry (deep)
[14114.756783] Filesystems sync: 0.341 seconds
[14114.864194] Freezing user space processes ... (elapsed 0.002 seconds) done.
[14114.866258] OOM killer disabled.
[14114.866259] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[14114.867590] printk: Suspending console(s) (use no_console_suspend to debug)
[14114.868602] serial 00:04: disabled
[14114.874463] sd 5:0:0:0: [sda] Synchronizing SCSI cache
[14114.887821] sd 5:0:0:0: [sda] Stopping disk
[14114.947644] [drm] free PSP TMR buffer
[14115.517833] ACPI: PM: Preparing to enter system sleep state S3
[14115.824193] ACPI: PM: Saving platform NVS memory
[14115.824490] Disabling non-boot CPUs ...
[14115.825925] smpboot: CPU 1 is now offline
[14115.827954] smpboot: CPU 2 is now offline
[14115.830082] smpboot: CPU 3 is now offline
[14115.831130] ACPI: PM: Low-level resume complete
[14115.831166] ACPI: PM: Restoring platform NVS memory
[14118.421976] Enabling non-boot CPUs ...
[14118.422212] x86: Booting SMP configuration:
[14118.422213] smpboot: Booting Node 0 Processor 1 APIC 0x1
[14118.422591] microcode: CPU1: patch_level=0x08101016
[14118.424809] ACPI: \_PR_.C001: Found 2 idle states
[14118.424981] CPU1 is up
[14118.425131] smpboot: Booting Node 0 Processor 2 APIC 0x2
[14118.425755] microcode: CPU2: patch_level=0x08101016
[14118.427943] ACPI: \_PR_.C002: Found 2 idle states
[14118.428101] CPU2 is up
[14118.428306] smpboot: Booting Node 0 Processor 3 APIC 0x3
[14118.428709] microcode: CPU3: patch_level=0x08101016
[14118.430907] ACPI: \_PR_.C003: Found 2 idle states
[14118.431121] CPU3 is up
[14118.431548] ACPI: PM: Waking up from system sleep state S3
[14118.480757] xhci_hcd 0000:12:00.0: xHC error in resume, USBSTS 0x401, Reinit
[14118.480765] usb usb1: root hub lost power or was reset
[14118.480769] usb usb2: root hub lost power or was reset
[14118.482173] [drm] PCIE GART of 1024M enabled.
[14118.482178] [drm] PTB located at 0x000000F400900000
[14118.482217] [drm] PSP is resuming...
[14118.482275] serial 00:04: activated
[14118.502257] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[14118.519310] sd 5:0:0:0: [sda] Starting disk
[14118.566651] amdgpu 0000:2a:00.0: amdgpu: RAS: optional ras ta ucode is not available
[14118.568563] nvme nvme0: 15/0/0 default/read/poll queues
[14118.571651] amdgpu 0000:2a:00.0: amdgpu: RAP: optional rap ta ucode is not available
[14118.571653] amdgpu 0000:2a:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[14118.573018] [drm] kiq ring mec 2 pipe 1 q 0
[14118.573249] amdgpu: restore the fine grain parameters
[14118.768893] ACPI: \: failed to evaluate _DSM (0x1001)
[14118.768897] ACPI: \: failed to evaluate _DSM (0x1001)
[14118.768899] ACPI: \: failed to evaluate _DSM (0x1001)
[14118.768900] ACPI: \: failed to evaluate _DSM (0x1001)
[14118.773885] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[14118.773905] amdgpu 0000:2a:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[14118.773907] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[14118.773909] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[14118.773910] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[14118.773911] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[14118.773912] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[14118.773914] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[14118.773915] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[14118.773916] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[14118.773917] amdgpu 0000:2a:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[14118.773919] amdgpu 0000:2a:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[14118.773920] amdgpu 0000:2a:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[14118.773921] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[14118.773922] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[14118.773923] amdgpu 0000:2a:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[14118.787719] ata5: SATA link down (SStatus 0 SControl 330)
[14118.788717] ata1: SATA link down (SStatus 0 SControl 330)
[14118.790517] ata2: SATA link down (SStatus 0 SControl 330)
[14118.938848] usb 1-6: reset low-speed USB device number 3 using xhci_hcd
[14119.470871] usb 1-9: reset full-speed USB device number 4 using xhci_hcd
[14119.830682] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[14119.835305] ata6.00: ATA Identify Device Log not supported
[14119.836581] ata6.00: ATA Identify Device Log not supported
[14119.836585] ata6.00: configured for UDMA/133
[14119.919260] usb 1-5: reset full-speed USB device number 2 using xhci_hcd
[14120.369231] usb 1-10: reset full-speed USB device number 5 using xhci_hcd
[14120.702748] OOM killer enabled.
[14120.702750] Restarting tasks ... done.
[14120.710392] video LNXVIDEO:01: Restoring backlight state
[14120.710520] PM: suspend exit
[14120.728148] Bluetooth: hci0: Legacy ROM 2.5 revision 8.0 build 2 week 3 2013
[14120.728183] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
[14120.738682] Generic FE-GE Realtek PHY r8169-0-2500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2500:00, irq=MAC)
[14120.906758] r8169 0000:25:00.0 eth0: Link is Down
[14121.176695] ACPI: \: failed to evaluate _DSM (0x1001)
[14121.176702] ACPI: \: failed to evaluate _DSM (0x1001)
[14121.176705] ACPI: \: failed to evaluate _DSM (0x1001)
[14121.176707] ACPI: \: failed to evaluate _DSM (0x1001)
[14121.551216] Bluetooth: hci0: unexpected event for opcode 0xfc2f
[14121.582233] Bluetooth: hci0: Intel BT fw patch 0x57 completed & activated
[14124.420417] wlan2: authenticate with 40:b0:76:9c:f9:6c
[14124.420430] wlan2: No basic rates, using min rate instead
[14124.423182] wlan2: send auth to 40:b0:76:9c:f9:6c (try 1/3)
[14124.423818] wlan2: authenticated
[14124.424660] wlan2: associate with 40:b0:76:9c:f9:6c (try 1/3)
[14124.436824] wlan2: RX AssocResp from 40:b0:76:9c:f9:6c (capab=0x931 status=0 aid=1)
[14124.438139] wlan2: associated
[14124.481683] wlan2: Limiting TX power to 20 (20 - 0) dBm as advertised by 40:b0:76:9c:f9:6c
[14124.653804] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
[31476.921494] wlan2: deauthenticating from 40:b0:76:9c:f9:6c by local choice (Reason: 3=DEAUTH_LEAVING)
[31476.986178] PM: suspend entry (deep)
[31477.259129] Filesystems sync: 0.272 seconds
[31477.367488] Freezing user space processes ... (elapsed 0.002 seconds) done.
[31477.369604] OOM killer disabled.
[31477.369605] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[31477.370683] printk: Suspending console(s) (use no_console_suspend to debug)
[31477.371662] serial 00:04: disabled
[31477.377536] sd 5:0:0:0: [sda] Synchronizing SCSI cache
[31477.395778] sd 5:0:0:0: [sda] Stopping disk
[31477.437025] [drm] free PSP TMR buffer
[31478.056941] ACPI: PM: Preparing to enter system sleep state S3
[31478.363183] ACPI: PM: Saving platform NVS memory
[31478.363448] Disabling non-boot CPUs ...
[31478.364945] smpboot: CPU 1 is now offline
[31478.367449] smpboot: CPU 2 is now offline
[31478.369680] smpboot: CPU 3 is now offline
[31478.371684] ACPI: PM: Low-level resume complete
[31478.371729] ACPI: PM: Restoring platform NVS memory
[31483.448957] Enabling non-boot CPUs ...
[31483.449186] x86: Booting SMP configuration:
[31483.449187] smpboot: Booting Node 0 Processor 1 APIC 0x1
[31483.449564] microcode: CPU1: patch_level=0x08101016
[31483.451749] ACPI: \_PR_.C001: Found 2 idle states
[31483.451944] CPU1 is up
[31483.452197] smpboot: Booting Node 0 Processor 2 APIC 0x2
[31483.452812] microcode: CPU2: patch_level=0x08101016
[31483.455012] ACPI: \_PR_.C002: Found 2 idle states
[31483.455216] CPU2 is up
[31483.455452] smpboot: Booting Node 0 Processor 3 APIC 0x3
[31483.455840] microcode: CPU3: patch_level=0x08101016
[31483.458044] ACPI: \_PR_.C003: Found 2 idle states
[31483.458217] CPU3 is up
[31483.458642] ACPI: PM: Waking up from system sleep state S3
[31483.507569] xhci_hcd 0000:12:00.0: xHC error in resume, USBSTS 0x401, Reinit
[31483.507574] usb usb1: root hub lost power or was reset
[31483.507576] usb usb2: root hub lost power or was reset
[31483.508435] serial 00:04: activated
[31483.509118] [drm] PCIE GART of 1024M enabled.
[31483.509128] [drm] PTB located at 0x000000F400900000
[31483.509155] [drm] PSP is resuming...
[31483.529193] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[31483.563517] sd 5:0:0:0: [sda] Starting disk
[31483.592904] amdgpu 0000:2a:00.0: amdgpu: RAS: optional ras ta ucode is not available
[31483.596838] nvme nvme0: 15/0/0 default/read/poll queues
[31483.597904] amdgpu 0000:2a:00.0: amdgpu: RAP: optional rap ta ucode is not available
[31483.597905] amdgpu 0000:2a:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[31483.599267] [drm] kiq ring mec 2 pipe 1 q 0
[31483.599498] amdgpu: restore the fine grain parameters
[31483.800751] ACPI: \: failed to evaluate _DSM (0x1001)
[31483.800755] ACPI: \: failed to evaluate _DSM (0x1001)
[31483.800756] ACPI: \: failed to evaluate _DSM (0x1001)
[31483.800758] ACPI: \: failed to evaluate _DSM (0x1001)
[31483.801415] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[31483.801426] amdgpu 0000:2a:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[31483.801429] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[31483.801430] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[31483.801432] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[31483.801433] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[31483.801434] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[31483.801436] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[31483.801437] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[31483.801438] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[31483.801440] amdgpu 0000:2a:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[31483.801441] amdgpu 0000:2a:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[31483.801442] amdgpu 0000:2a:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[31483.801444] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[31483.801445] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[31483.801446] amdgpu 0000:2a:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[31483.814089] ata5: SATA link down (SStatus 0 SControl 330)
[31483.814921] ata2: SATA link down (SStatus 0 SControl 330)
[31483.815319] ata1: SATA link down (SStatus 0 SControl 330)
[31483.968416] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[31483.969859] ata6.00: ATA Identify Device Log not supported
[31483.971177] ata6.00: ATA Identify Device Log not supported
[31483.971182] ata6.00: configured for UDMA/133
[31483.972553] usb 1-6: reset low-speed USB device number 3 using xhci_hcd
[31484.506014] usb 1-9: reset full-speed USB device number 4 using xhci_hcd
[31484.957972] usb 1-5: reset full-speed USB device number 2 using xhci_hcd
[31485.408002] usb 1-10: reset full-speed USB device number 5 using xhci_hcd
[31485.743403] OOM killer enabled.
[31485.743406] Restarting tasks ... done.
[31485.752105] video LNXVIDEO:01: Restoring backlight state
[31485.752182] PM: suspend exit
[31485.781414] Generic FE-GE Realtek PHY r8169-0-2500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2500:00, irq=MAC)
[31485.782700] Bluetooth: hci0: Legacy ROM 2.5 revision 8.0 build 2 week 3 2013
[31485.782707] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
[31485.948088] r8169 0000:25:00.0 eth0: Link is Down
[31486.205364] ACPI: \: failed to evaluate _DSM (0x1001)
[31486.205372] ACPI: \: failed to evaluate _DSM (0x1001)
[31486.205374] ACPI: \: failed to evaluate _DSM (0x1001)
[31486.205377] ACPI: \: failed to evaluate _DSM (0x1001)
[31486.605790] Bluetooth: hci0: unexpected event for opcode 0xfc2f
[31486.636792] Bluetooth: hci0: Intel BT fw patch 0x57 completed & activated
[31489.503583] wlan2: authenticate with 40:b0:76:9c:f9:6c
[31489.503590] wlan2: No basic rates, using min rate instead
[31489.506132] wlan2: send auth to 40:b0:76:9c:f9:6c (try 1/3)
[31489.506894] wlan2: authenticated
[31489.507404] wlan2: associate with 40:b0:76:9c:f9:6c (try 1/3)
[31489.519581] wlan2: RX AssocResp from 40:b0:76:9c:f9:6c (capab=0x931 status=0 aid=1)
[31489.521013] wlan2: associated
[31489.545557] wlan2: Limiting TX power to 20 (20 - 0) dBm as advertised by 40:b0:76:9c:f9:6c
[31489.732549] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
[42566.615984] wlan2: deauthenticating from 40:b0:76:9c:f9:6c by local choice (Reason: 3=DEAUTH_LEAVING)
[42566.707104] PM: suspend entry (deep)
[42566.859866] Filesystems sync: 0.152 seconds
[42566.966707] Freezing user space processes ... (elapsed 0.002 seconds) done.
[42566.968846] OOM killer disabled.
[42566.968847] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[42566.969954] printk: Suspending console(s) (use no_console_suspend to debug)
[42566.970856] serial 00:04: disabled
[42566.971100] queueing ieee80211 work while going to suspend
[42566.976831] sd 5:0:0:0: [sda] Synchronizing SCSI cache
[42566.976967] sd 5:0:0:0: [sda] Stopping disk
[42567.051801] [drm] free PSP TMR buffer
[42567.613206] ACPI: PM: Preparing to enter system sleep state S3
[42567.919564] ACPI: PM: Saving platform NVS memory
[42567.919854] Disabling non-boot CPUs ...
[42567.921291] smpboot: CPU 1 is now offline
[42567.923685] smpboot: CPU 2 is now offline
[42567.926247] smpboot: CPU 3 is now offline
[42567.927859] ACPI: PM: Low-level resume complete
[42567.927905] ACPI: PM: Restoring platform NVS memory
[42571.866618] Enabling non-boot CPUs ...
[42571.866862] x86: Booting SMP configuration:
[42571.866863] smpboot: Booting Node 0 Processor 1 APIC 0x1
[42571.867241] microcode: CPU1: patch_level=0x08101016
[42571.869420] ACPI: \_PR_.C001: Found 2 idle states
[42571.869621] CPU1 is up
[42571.869841] smpboot: Booting Node 0 Processor 2 APIC 0x2
[42571.870458] microcode: CPU2: patch_level=0x08101016
[42571.872631] ACPI: \_PR_.C002: Found 2 idle states
[42571.872810] CPU2 is up
[42571.872994] smpboot: Booting Node 0 Processor 3 APIC 0x3
[42571.873388] microcode: CPU3: patch_level=0x08101016
[42571.875563] ACPI: \_PR_.C003: Found 2 idle states
[42571.875734] CPU3 is up
[42571.876154] ACPI: PM: Waking up from system sleep state S3
[42571.925455] xhci_hcd 0000:12:00.0: xHC error in resume, USBSTS 0x401, Reinit
[42571.925460] usb usb1: root hub lost power or was reset
[42571.925462] usb usb2: root hub lost power or was reset
[42571.926577] serial 00:04: activated
[42571.926947] [drm] PCIE GART of 1024M enabled.
[42571.926951] [drm] PTB located at 0x000000F400900000
[42571.926978] [drm] PSP is resuming...
[42571.947016] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[42571.947524] sd 5:0:0:0: [sda] Starting disk
[42572.011270] amdgpu 0000:2a:00.0: amdgpu: RAS: optional ras ta ucode is not available
[42572.013038] nvme nvme0: 15/0/0 default/read/poll queues
[42572.016371] amdgpu 0000:2a:00.0: amdgpu: RAP: optional rap ta ucode is not available
[42572.016373] amdgpu 0000:2a:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[42572.017892] [drm] kiq ring mec 2 pipe 1 q 0
[42572.018114] amdgpu: restore the fine grain parameters
[42572.210360] ACPI: \: failed to evaluate _DSM (0x1001)
[42572.210365] ACPI: \: failed to evaluate _DSM (0x1001)
[42572.210366] ACPI: \: failed to evaluate _DSM (0x1001)
[42572.210368] ACPI: \: failed to evaluate _DSM (0x1001)
[42572.221855] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[42572.221866] amdgpu 0000:2a:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[42572.221869] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[42572.221870] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[42572.221872] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[42572.221873] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[42572.221874] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[42572.221875] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[42572.221877] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[42572.221878] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[42572.221879] amdgpu 0000:2a:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[42572.221881] amdgpu 0000:2a:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[42572.221882] amdgpu 0000:2a:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[42572.221883] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[42572.221884] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[42572.221885] amdgpu 0000:2a:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[42572.231720] ata1: SATA link down (SStatus 0 SControl 330)
[42572.232027] ata2: SATA link down (SStatus 0 SControl 330)
[42572.233690] ata5: SATA link down (SStatus 0 SControl 330)
[42572.310420] usb 1-10: reset full-speed USB device number 5 using xhci_hcd
[42572.394196] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[42572.395816] ata6.00: ATA Identify Device Log not supported
[42572.397105] ata6.00: ATA Identify Device Log not supported
[42572.397110] ata6.00: configured for UDMA/133
[42572.760732] usb 1-5: reset full-speed USB device number 2 using xhci_hcd
[42573.294777] usb 1-6: reset low-speed USB device number 3 using xhci_hcd
[42573.828190] usb 1-9: reset full-speed USB device number 4 using xhci_hcd
[42574.118773] OOM killer enabled.
[42574.118776] Restarting tasks ... done.
[42574.126075] video LNXVIDEO:01: Restoring backlight state
[42574.126155] PM: suspend exit
[42574.160735] Bluetooth: hci0: Legacy ROM 2.5 revision 8.0 build 2 week 3 2013
[42574.160767] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
[42574.162198] Generic FE-GE Realtek PHY r8169-0-2500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2500:00, irq=MAC)
[42574.329788] r8169 0000:25:00.0 eth0: Link is Down
[42574.586058] ACPI: \: failed to evaluate _DSM (0x1001)
[42574.586065] ACPI: \: failed to evaluate _DSM (0x1001)
[42574.586068] ACPI: \: failed to evaluate _DSM (0x1001)
[42574.586070] ACPI: \: failed to evaluate _DSM (0x1001)
[42574.983832] Bluetooth: hci0: unexpected event for opcode 0xfc2f
[42575.014864] Bluetooth: hci0: Intel BT fw patch 0x57 completed & activated
[42577.892808] wlan2: authenticate with 40:b0:76:9c:f9:6c
[42577.892816] wlan2: No basic rates, using min rate instead
[42577.895536] wlan2: send auth to 40:b0:76:9c:f9:6c (try 1/3)
[42577.896259] wlan2: authenticated
[42577.897175] wlan2: associate with 40:b0:76:9c:f9:6c (try 1/3)
[42577.909319] wlan2: RX AssocResp from 40:b0:76:9c:f9:6c (capab=0x931 status=0 aid=1)
[42577.910650] wlan2: associated
[42577.974523] wlan2: Limiting TX power to 20 (20 - 0) dBm as advertised by 40:b0:76:9c:f9:6c
[42578.124298] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
[47576.049540] wlan2: deauthenticating from 40:b0:76:9c:f9:6c by local choice (Reason: 3=DEAUTH_LEAVING)
[47576.111132] PM: suspend entry (deep)
[47576.258681] Filesystems sync: 0.147 seconds
[47576.366548] Freezing user space processes ... (elapsed 0.001 seconds) done.
[47576.368456] OOM killer disabled.
[47576.368458] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[47576.369865] printk: Suspending console(s) (use no_console_suspend to debug)
[47576.370771] serial 00:04: disabled
[47576.378747] sd 5:0:0:0: [sda] Synchronizing SCSI cache
[47576.378889] sd 5:0:0:0: [sda] Stopping disk
[47576.454822] [drm] free PSP TMR buffer
[47577.055798] ACPI: PM: Preparing to enter system sleep state S3
[47577.362469] ACPI: PM: Saving platform NVS memory
[47577.362751] Disabling non-boot CPUs ...
[47577.364164] smpboot: CPU 1 is now offline
[47577.366493] smpboot: CPU 2 is now offline
[47577.369158] smpboot: CPU 3 is now offline
[47577.370902] ACPI: PM: Low-level resume complete
[47577.370948] ACPI: PM: Restoring platform NVS memory
[47578.389445] Enabling non-boot CPUs ...
[47578.389676] x86: Booting SMP configuration:
[47578.389677] smpboot: Booting Node 0 Processor 1 APIC 0x1
[47578.390054] microcode: CPU1: patch_level=0x08101016
[47578.392242] ACPI: \_PR_.C001: Found 2 idle states
[47578.392410] CPU1 is up
[47578.392639] smpboot: Booting Node 0 Processor 2 APIC 0x2
[47578.393257] microcode: CPU2: patch_level=0x08101016
[47578.395512] ACPI: \_PR_.C002: Found 2 idle states
[47578.395694] CPU2 is up
[47578.395950] smpboot: Booting Node 0 Processor 3 APIC 0x3
[47578.396343] microcode: CPU3: patch_level=0x08101016
[47578.398518] ACPI: \_PR_.C003: Found 2 idle states
[47578.398719] CPU3 is up
[47578.399161] ACPI: PM: Waking up from system sleep state S3
[47578.449499] xhci_hcd 0000:12:00.0: xHC error in resume, USBSTS 0x401, Reinit
[47578.449504] usb usb1: root hub lost power or was reset
[47578.449506] usb usb2: root hub lost power or was reset
[47578.450923] [drm] PCIE GART of 1024M enabled.
[47578.450928] [drm] PTB located at 0x000000F400900000
[47578.450958] [drm] PSP is resuming...
[47578.453641] serial 00:04: activated
[47578.453883] sd 5:0:0:0: [sda] Starting disk
[47578.471101] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[47578.534546] amdgpu 0000:2a:00.0: amdgpu: RAS: optional ras ta ucode is not available
[47578.538252] nvme nvme0: 15/0/0 default/read/poll queues
[47578.539648] amdgpu 0000:2a:00.0: amdgpu: RAP: optional rap ta ucode is not available
[47578.539650] amdgpu 0000:2a:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[47578.541019] [drm] kiq ring mec 2 pipe 1 q 0
[47578.541247] amdgpu: restore the fine grain parameters
[47578.686162] ACPI: \: failed to evaluate _DSM (0x1001)
[47578.686166] ACPI: \: failed to evaluate _DSM (0x1001)
[47578.686167] ACPI: \: failed to evaluate _DSM (0x1001)
[47578.686168] ACPI: \: failed to evaluate _DSM (0x1001)
[47578.745237] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[47578.745263] amdgpu 0000:2a:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[47578.745266] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[47578.745268] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[47578.745269] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[47578.745270] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[47578.745272] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[47578.745273] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[47578.745274] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[47578.745275] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[47578.745277] amdgpu 0000:2a:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[47578.745278] amdgpu 0000:2a:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[47578.745280] amdgpu 0000:2a:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[47578.745281] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[47578.745282] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[47578.745283] amdgpu 0000:2a:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[47578.754997] ata5: SATA link down (SStatus 0 SControl 330)
[47578.756613] ata1: SATA link down (SStatus 0 SControl 330)
[47578.756656] ata2: SATA link down (SStatus 0 SControl 330)
[47578.913003] usb 1-6: reset low-speed USB device number 3 using xhci_hcd
[47579.444991] usb 1-10: reset full-speed USB device number 5 using xhci_hcd
[47579.893076] usb 1-5: reset full-speed USB device number 2 using xhci_hcd
[47580.342027] usb 1-9: reset full-speed USB device number 4 using xhci_hcd
[47581.404854] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[47581.406759] ata6.00: ATA Identify Device Log not supported
[47581.408040] ata6.00: ATA Identify Device Log not supported
[47581.408046] ata6.00: configured for UDMA/133
[47581.428427] OOM killer enabled.
[47581.428431] Restarting tasks ... done.
[47581.441814] video LNXVIDEO:01: Restoring backlight state
[47581.441983] PM: suspend exit
[47581.459483] Bluetooth: hci0: Legacy ROM 2.5 revision 8.0 build 2 week 3 2013
[47581.459491] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
[47581.466866] Generic FE-GE Realtek PHY r8169-0-2500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2500:00, irq=MAC)
[47581.631582] r8169 0000:25:00.0 eth0: Link is Down
[47581.886652] ACPI: \: failed to evaluate _DSM (0x1001)
[47581.886660] ACPI: \: failed to evaluate _DSM (0x1001)
[47581.886663] ACPI: \: failed to evaluate _DSM (0x1001)
[47581.886665] ACPI: \: failed to evaluate _DSM (0x1001)
[47582.282548] Bluetooth: hci0: unexpected event for opcode 0xfc2f
[47582.313588] Bluetooth: hci0: Intel BT fw patch 0x57 completed & activated
[47585.134126] wlan2: authenticate with 40:b0:76:9c:f9:6c
[47585.134133] wlan2: No basic rates, using min rate instead
[47585.136833] wlan2: send auth to 40:b0:76:9c:f9:6c (try 1/3)
[47585.137472] wlan2: authenticated
[47585.137839] wlan2: associate with 40:b0:76:9c:f9:6c (try 1/3)
[47585.150039] wlan2: RX AssocResp from 40:b0:76:9c:f9:6c (capab=0x931 status=0 aid=1)
[47585.151330] wlan2: associated
[47585.196447] wlan2: Limiting TX power to 20 (20 - 0) dBm as advertised by 40:b0:76:9c:f9:6c
[47585.366017] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
[60894.437650] wlan2: deauthenticating from 40:b0:76:9c:f9:6c by local choice (Reason: 3=DEAUTH_LEAVING)
[60894.506376] PM: suspend entry (deep)
[60894.858460] Filesystems sync: 0.352 seconds
[60894.967237] Freezing user space processes ... (elapsed 0.002 seconds) done.
[60894.969359] OOM killer disabled.
[60894.969360] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[60894.970658] printk: Suspending console(s) (use no_console_suspend to debug)
[60894.971545] serial 00:04: disabled
[60894.979491] sd 5:0:0:0: [sda] Synchronizing SCSI cache
[60894.979623] sd 5:0:0:0: [sda] Stopping disk
[60895.050185] [drm] free PSP TMR buffer
[60895.658888] ACPI: PM: Preparing to enter system sleep state S3
[60895.968239] ACPI: PM: Saving platform NVS memory
[60895.968536] Disabling non-boot CPUs ...
[60895.969968] smpboot: CPU 1 is now offline
[60895.972644] smpboot: CPU 2 is now offline
[60895.974744] smpboot: CPU 3 is now offline
[60895.976357] ACPI: PM: Low-level resume complete
[60895.976402] ACPI: PM: Restoring platform NVS memory
[60898.847197] Enabling non-boot CPUs ...
[60898.847441] x86: Booting SMP configuration:
[60898.847442] smpboot: Booting Node 0 Processor 1 APIC 0x1
[60898.847821] microcode: CPU1: patch_level=0x08101016
[60898.850036] ACPI: \_PR_.C001: Found 2 idle states
[60898.850216] CPU1 is up
[60898.850618] smpboot: Booting Node 0 Processor 2 APIC 0x2
[60898.851420] microcode: CPU2: patch_level=0x08101016
[60898.853587] ACPI: \_PR_.C002: Found 2 idle states
[60898.853767] CPU2 is up
[60898.853970] smpboot: Booting Node 0 Processor 3 APIC 0x3
[60898.854358] microcode: CPU3: patch_level=0x08101016
[60898.856539] ACPI: \_PR_.C003: Found 2 idle states
[60898.856741] CPU3 is up
[60898.857177] ACPI: PM: Waking up from system sleep state S3
[60898.906200] xhci_hcd 0000:12:00.0: xHC error in resume, USBSTS 0x401, Reinit
[60898.906206] usb usb1: root hub lost power or was reset
[60898.906208] usb usb2: root hub lost power or was reset
[60898.907349] serial 00:04: activated
[60898.907673] [drm] PCIE GART of 1024M enabled.
[60898.907678] [drm] PTB located at 0x000000F400900000
[60898.907704] [drm] PSP is resuming...
[60898.913686] sd 5:0:0:0: [sda] Starting disk
[60898.929957] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[60898.993191] amdgpu 0000:2a:00.0: amdgpu: RAS: optional ras ta ucode is not available
[60898.994751] nvme nvme0: 15/0/0 default/read/poll queues
[60898.998190] amdgpu 0000:2a:00.0: amdgpu: RAP: optional rap ta ucode is not available
[60898.998191] amdgpu 0000:2a:00.0: amdgpu: SECUREDISPLAY: securedisplay ta ucode is not available
[60899.000120] [drm] kiq ring mec 2 pipe 1 q 0
[60899.000351] amdgpu: restore the fine grain parameters
[60899.182953] ACPI: \: failed to evaluate _DSM (0x1001)
[60899.182956] ACPI: \: failed to evaluate _DSM (0x1001)
[60899.182958] ACPI: \: failed to evaluate _DSM (0x1001)
[60899.182959] ACPI: \: failed to evaluate _DSM (0x1001)
[60899.202626] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[60899.202647] amdgpu 0000:2a:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[60899.202650] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[60899.202651] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[60899.202653] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[60899.202654] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[60899.202655] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[60899.202657] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[60899.202658] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[60899.202659] amdgpu 0000:2a:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[60899.202661] amdgpu 0000:2a:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[60899.202662] amdgpu 0000:2a:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[60899.202664] amdgpu 0000:2a:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[60899.202665] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[60899.202666] amdgpu 0000:2a:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[60899.202667] amdgpu 0000:2a:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[60899.211956] ata5: SATA link down (SStatus 0 SControl 330)
[60899.212678] ata1: SATA link down (SStatus 0 SControl 330)
[60899.213741] ata2: SATA link down (SStatus 0 SControl 330)
[60899.293302] usb 1-5: reset full-speed USB device number 2 using xhci_hcd
[60899.743123] usb 1-10: reset full-speed USB device number 5 using xhci_hcd
[60900.046919] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[60900.055588] ata6.00: ATA Identify Device Log not supported
[60900.056853] ata6.00: ATA Identify Device Log not supported
[60900.056857] ata6.00: configured for UDMA/133
[60900.275184] usb 1-6: reset low-speed USB device number 3 using xhci_hcd
[60900.808849] usb 1-9: reset full-speed USB device number 4 using xhci_hcd
[60901.100546] OOM killer enabled.
[60901.100548] Restarting tasks ... done.
[60901.109312] video LNXVIDEO:01: Restoring backlight state
[60901.109405] PM: suspend exit
[60901.130199] Bluetooth: hci0: Legacy ROM 2.5 revision 8.0 build 2 week 3 2013
[60901.130238] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
[60901.141908] Generic FE-GE Realtek PHY r8169-0-2500:00: attached PHY driver (mii_bus:phy_addr=r8169-0-2500:00, irq=MAC)
[60901.309519] r8169 0000:25:00.0 eth0: Link is Down
[60901.564951] ACPI: \: failed to evaluate _DSM (0x1001)
[60901.564959] ACPI: \: failed to evaluate _DSM (0x1001)
[60901.564962] ACPI: \: failed to evaluate _DSM (0x1001)
[60901.564964] ACPI: \: failed to evaluate _DSM (0x1001)
[60901.953262] Bluetooth: hci0: unexpected event for opcode 0xfc2f
[60901.984300] Bluetooth: hci0: Intel BT fw patch 0x57 completed & activated
[60904.860291] wlan2: authenticate with 40:b0:76:9c:f9:6c
[60904.860300] wlan2: No basic rates, using min rate instead
[60904.863035] wlan2: send auth to 40:b0:76:9c:f9:6c (try 1/3)
[60904.863696] wlan2: authenticated
[60904.863979] wlan2: associate with 40:b0:76:9c:f9:6c (try 1/3)
[60904.876114] wlan2: RX AssocResp from 40:b0:76:9c:f9:6c (capab=0x931 status=0 aid=1)
[60904.877398] wlan2: associated
[60904.927365] wlan2: Limiting TX power to 20 (20 - 0) dBm as advertised by 40:b0:76:9c:f9:6c
[60905.096087] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
[65717.333851] wlan2: deauthenticating from 40:b0:76:9c:f9:6c by local choice (Reason: 3=DEAUTH_LEAVING)
[65717.427249] wlan2: authenticate with 40:b0:76:9c:f9:6c
[65717.427259] wlan2: No basic rates, using min rate instead
[65717.430277] wlan2: send auth to 40:b0:76:9c:f9:6c (try 1/3)
[65717.431353] wlan2: authenticated
[65717.432470] wlan2: associate with 40:b0:76:9c:f9:6c (try 1/3)
[65717.444758] wlan2: RX AssocResp from 40:b0:76:9c:f9:6c (capab=0x931 status=0 aid=1)
[65717.446043] wlan2: associated
[65717.474300] wlan2: Limiting TX power to 20 (20 - 0) dBm as advertised by 40:b0:76:9c:f9:6c
[65717.660564] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
[65726.939635] wlan2: deauthenticating from 40:b0:76:9c:f9:6c by local choice (Reason: 3=DEAUTH_LEAVING)
[65727.116595] wlan2: authenticate with 40:b0:76:9c:f9:68
[65727.120560] wlan2: send auth to 40:b0:76:9c:f9:68 (try 1/3)
[65727.123139] wlan2: authenticated
[65727.123283] wlan2: associating with AP with corrupt probe response
[65727.123460] wlan2: associate with 40:b0:76:9c:f9:68 (try 1/3)
[65727.128950] wlan2: RX AssocResp from 40:b0:76:9c:f9:68 (capab=0xc31 status=0 aid=2)
[65727.156875] wlan2: associated
[65727.307579] IPv6: ADDRCONF(NETDEV_CHANGE): wlan2: link becomes ready
|