Paste #163878

   
pasted on 17.02.2021 15:42
  • Edit to this paste
  • Print
  • Raw
  • The following pastes replied to this paste:  # 173439 # 272891
  • Show paste tree
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 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
[    0.000000] Linux version 5.10.9-calculate (root@localhost) (gcc (Gentoo 9.3.0-r2 p4) 9.3.0, GNU ld (Gentoo 2.34 p6) 2.34.0) #1 SMP PREEMPT Thu Jan 21 08:15:38 UTC 2021
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.10.9-calculate root=UUID=aab76ced-099b-4f05-9f5c-ac4804cf5dad ro video=1366x768 rd.retry=40 calculate=video:modesetting 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] 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-0x0000000009cfffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000009d00000-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-0x000000005a4b3fff] usable
[    0.000000] BIOS-e820: [mem 0x000000005a4b4000-0x000000005b980fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005b981000-0x000000005bafffff] usable
[    0.000000] BIOS-e820: [mem 0x000000005bb00000-0x000000005bf09fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000005bf0a000-0x000000005cc72fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000005cc73000-0x000000005cd01fff] type 20
[    0.000000] BIOS-e820: [mem 0x000000005cd02000-0x000000005effffff] usable
[    0.000000] BIOS-e820: [mem 0x000000005f000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fd000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000021f33ffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.70 by American Megatrends
[    0.000000] efi: ACPI 2.0=0x5be87000 ACPI=0x5be87000 SMBIOS=0x5cb38000 SMBIOS 3.0=0x5cb37000 MEMATTR=0x58f35698 ESRT=0x593d9018 
[    0.000000] SMBIOS 3.2.1 present.
[    0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./A320M-DVS R4.0, BIOS P4.00 07/16/2020
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3493.805 MHz processor
[    0.000331] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000333] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000337] last_pfn = 0x21f340 max_arch_pfn = 0x400000000
[    0.000340] MTRR default type: uncachable
[    0.000341] MTRR fixed ranges enabled:
[    0.000342]   00000-9FFFF write-back
[    0.000342]   A0000-BFFFF write-through
[    0.000343]   C0000-FFFFF write-protect
[    0.000343] MTRR variable ranges enabled:
[    0.000344]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000345]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000346]   2 base 0000C0000000 mask FFFFE0000000 write-back
[    0.000346]   3 disabled
[    0.000347]   4 disabled
[    0.000347]   5 disabled
[    0.000347]   6 disabled
[    0.000347]   7 disabled
[    0.000348] TOM2: 0000000220000000 aka 8704M
[    0.000829] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.000929] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved
[    0.000933] last_pfn = 0x5f000 max_arch_pfn = 0x400000000
[    0.004252] esrt: Reserving ESRT space from 0x00000000593d9018 to 0x00000000593d9050.
[    0.004262] e820: update [mem 0x593d9000-0x593d9fff] usable ==> reserved
[    0.004318] Using GB pages for direct mapping
[    0.005027] Secure boot could not be determined
[    0.005028] RAMDISK: [mem 0x35de5000-0x36ee9fff]
[    0.005039] ACPI: Early table checksum verification disabled
[    0.005042] ACPI: RSDP 0x000000005BE87000 000024 (v02 ALASKA)
[    0.005045] ACPI: XSDT 0x000000005BE87098 0000B4 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.005050] ACPI: FACP 0x000000005BE8DBC0 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
[    0.005054] ACPI: DSDT 0x000000005BE871E8 0069D7 (v02 ALASKA A M I    01072009 INTL 20120913)
[    0.005056] ACPI: FACS 0x000000005BEF3E00 000040
[    0.005058] ACPI: APIC 0x000000005BE8DCD8 00015E (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.005060] ACPI: FPDT 0x000000005BE8DE38 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.005062] ACPI: FIDT 0x000000005BE8DE80 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.005064] ACPI: SSDT 0x000000005BE8DF20 000060 (v02 ALASKA CPUSSDT  01072009 AMI  01072009)
[    0.005066] ACPI: SSDT 0x000000005BE8DF80 005419 (v02 AMD    AmdTable 00000002 MSFT 04000000)
[    0.005068] ACPI: SSDT 0x000000005BE933A0 00378A (v01 AMD    AMD AOD  00000001 INTL 20120913)
[    0.005070] ACPI: MCFG 0x000000005BE96B30 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
[    0.005072] ACPI: AAFT 0x000000005BE96B70 0000A7 (v01 ALASKA OEMAAFT  01072009 MSFT 00000097)
[    0.005074] ACPI: HPET 0x000000005BE96C18 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
[    0.005076] ACPI: UEFI 0x000000005BE96C50 000042 (v01 ALASKA A M I    00000002      01000013)
[    0.005078] ACPI: BGRT 0x000000005BE96C98 000038 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.005080] ACPI: SSDT 0x000000005BE96CD0 000718 (v01 AMD    AMD CPU  00000001 AMD  00000001)
[    0.005082] ACPI: CRAT 0x000000005BE973E8 000810 (v01 AMD    AMD CRAT 00000001 AMD  00000001)
[    0.005084] ACPI: CDIT 0x000000005BE97BF8 000029 (v01 AMD    AMD CDIT 00000001 AMD  00000001)
[    0.005086] ACPI: SSDT 0x000000005BE97C28 001D34 (v01 AMD    AmdTable 00000001 INTL 20120913)
[    0.005088] ACPI: SSDT 0x000000005BE99960 0000BF (v01 AMD    AMD PT   00001000 INTL 20120913)
[    0.005090] ACPI: WSMT 0x000000005BE99A20 000028 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.005095] ACPI: Local APIC address 0xfee00000
[    0.005136] No NUMA configuration found
[    0.005137] Faking a node at [mem 0x0000000000000000-0x000000021f33ffff]
[    0.005140] NODE_DATA(0) allocated [mem 0x21f33c000-0x21f33ffff]
[    0.005154] Zone ranges:
[    0.005154]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.005155]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.005156]   Normal   [mem 0x0000000100000000-0x000000021f33ffff]
[    0.005157] Movable zone start for each node
[    0.005158] Early memory node ranges
[    0.005158]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.005159]   node   0: [mem 0x0000000000100000-0x0000000009cfffff]
[    0.005160]   node   0: [mem 0x000000000a000000-0x000000000a1fffff]
[    0.005160]   node   0: [mem 0x000000000a20b000-0x000000000affffff]
[    0.005161]   node   0: [mem 0x000000000b020000-0x000000005a4b3fff]
[    0.005161]   node   0: [mem 0x000000005b981000-0x000000005bafffff]
[    0.005162]   node   0: [mem 0x000000005cd02000-0x000000005effffff]
[    0.005162]   node   0: [mem 0x0000000100000000-0x000000021f33ffff]
[    0.005262] Zeroed struct page in unavailable ranges: 18203 pages
[    0.005262] Initmem setup node 0 [mem 0x0000000000001000-0x000000021f33ffff]
[    0.005264] On node 0 totalpages: 1554661
[    0.005264]   DMA zone: 64 pages used for memmap
[    0.005265]   DMA zone: 34 pages reserved
[    0.005266]   DMA zone: 3999 pages, LIFO batch:0
[    0.005286]   DMA32 zone: 5849 pages used for memmap
[    0.005286]   DMA32 zone: 374278 pages, LIFO batch:63
[    0.009227]   Normal zone: 18381 pages used for memmap
[    0.009229]   Normal zone: 1176384 pages, LIFO batch:63
[    0.021045] ACPI: PM-Timer IO Port: 0x808
[    0.021048] ACPI: Local APIC address 0xfee00000
[    0.021054] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.021073] IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23
[    0.021083] IOAPIC[1]: apic_id 6, version 33, address 0xfec01000, GSI 24-55
[    0.021084] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.021086] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.021087] ACPI: IRQ0 used by override.
[    0.021087] ACPI: IRQ9 used by override.
[    0.021089] Using ACPI (MADT) for SMP configuration information
[    0.021090] ACPI: HPET id: 0x10228201 base: 0xfed00000
[    0.021094] smpboot: Allowing 32 CPUs, 28 hotplug CPUs
[    0.021112] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.021113] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.021115] PM: hibernation: Registered nosave memory: [mem 0x09d00000-0x09ffffff]
[    0.021116] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20afff]
[    0.021117] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff]
[    0.021118] PM: hibernation: Registered nosave memory: [mem 0x593d9000-0x593d9fff]
[    0.021119] PM: hibernation: Registered nosave memory: [mem 0x5a4b4000-0x5b980fff]
[    0.021120] PM: hibernation: Registered nosave memory: [mem 0x5bb00000-0x5bf09fff]
[    0.021121] PM: hibernation: Registered nosave memory: [mem 0x5bf0a000-0x5cc72fff]
[    0.021121] PM: hibernation: Registered nosave memory: [mem 0x5cc73000-0x5cd01fff]
[    0.021122] PM: hibernation: Registered nosave memory: [mem 0x5f000000-0xdfffffff]
[    0.021123] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
[    0.021123] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.021123] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfcffffff]
[    0.021124] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff]
[    0.021126] [mem 0xe0000000-0xf7ffffff] available for PCI devices
[    0.021129] Booting paravirtualized kernel on bare hardware
[    0.021132] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.023949] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:32 nr_node_ids:1
[    0.025459] percpu: Embedded 44 pages/cpu s141272 r8192 d30760 u262144
[    0.025468] pcpu-alloc: s141272 r8192 d30760 u262144 alloc=1*2097152
[    0.025470] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.025475] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 
[    0.025503] Built 1 zonelists, mobility grouping on.  Total pages: 1530333
[    0.025503] Policy zone: Normal
[    0.025505] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.10.9-calculate root=UUID=aab76ced-099b-4f05-9f5c-ac4804cf5dad ro video=1366x768 rd.retry=40 calculate=video:modesetting splash quiet
[    0.025570] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.025571] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.025571] printk: log_buf_len min size: 32768 bytes
[    0.025770] printk: log_buf_len: 262144 bytes
[    0.025771] printk: early log buf free: 22280(67%)
[    0.026799] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.027311] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.027384] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.048399] Memory: 5899244K/6218644K available (10243K kernel code, 762K rwdata, 2256K rodata, 1060K init, 1224K bss, 319144K reserved, 0K cma-reserved)
[    0.048484] random: get_random_u64 called from cache_random_seq_create+0x7b/0x170 with crng_init=0
[    0.048635] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.048807] rcu: Preemptible hierarchical RCU implementation.
[    0.048807] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=32.
[    0.048808] 	Trampoline variant of Tasks RCU enabled.
[    0.048809] 	Tracing variant of Tasks RCU enabled.
[    0.048809] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.048810] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.048841] NR_IRQS: 4352, nr_irqs: 1224, preallocated irqs: 16
[    0.050739] random: crng done (trusting CPU's manufacturer)
[    0.050809] Console: colour dummy device 80x25
[    0.050818] printk: console [tty0] enabled
[    0.050860] ACPI: Core revision 20200925
[    0.050986] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
[    0.051019] APIC: Switch to symmetric I/O mode setup
[    0.051023] Switched APIC routing to physical flat.
[    0.052372] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.057023] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x325c74f5487, max_idle_ns: 440795369379 ns
[    0.057026] Calibrating delay loop (skipped), value calculated using timer frequency.. 6987.61 BogoMIPS (lpj=3493805)
[    0.057028] pid_max: default: 32768 minimum: 301
[    0.059524] ---[ User Space ]---
[    0.059525] 0x0000000000000000-0x0000000000001000           4K     RW                     NX pte
[    0.059529] 0x0000000000001000-0x0000000000008000          28K     RW                     x  pte
[    0.059532] 0x0000000000008000-0x000000000003e000         216K                               pte
[    0.059534] 0x000000000003e000-0x0000000000040000           8K                               pte
[    0.059536] 0x0000000000040000-0x00000000000a0000         384K     RW                     x  pte
[    0.059542] 0x00000000000a0000-0x0000000000200000        1408K                               pte
[    0.059544] 0x0000000000200000-0x0000000001000000          14M                               pmd
[    0.059545] 0x0000000001000000-0x0000000001020000         128K                               pte
[    0.059551] 0x0000000001020000-0x0000000001200000        1920K                               pte
[    0.059557] 0x0000000001200000-0x0000000056a00000        1368M                               pmd
[    0.059559] 0x0000000056a00000-0x0000000056a49000         292K                               pte
[    0.059561] 0x0000000056a49000-0x0000000056a6d000         144K                               pte
[    0.059563] 0x0000000056a6d000-0x0000000056ae6000         484K                               pte
[    0.059564] 0x0000000056ae6000-0x0000000056b00000         104K                               pte
[    0.059566] 0x0000000056b00000-0x0000000056b0b000          44K                               pte
[    0.059567] 0x0000000056b0b000-0x0000000056b12000          28K                               pte
[    0.059568] 0x0000000056b12000-0x0000000056b29000          92K                               pte
[    0.059569] 0x0000000056b29000-0x0000000056b2d000          16K                               pte
[    0.059571] 0x0000000056b2d000-0x0000000056b40000          76K                               pte
[    0.059572] 0x0000000056b40000-0x0000000056b41000           4K                               pte
[    0.059573] 0x0000000056b41000-0x0000000056b5f000         120K                               pte
[    0.059574] 0x0000000056b5f000-0x0000000056b6a000          44K                               pte
[    0.059576] 0x0000000056b6a000-0x0000000056b71000          28K                               pte
[    0.059577] 0x0000000056b71000-0x0000000056b72000           4K                               pte
[    0.059581] 0x0000000056b72000-0x0000000058c79000       33820K                               pte
[    0.059587] 0x0000000058c79000-0x0000000058e6d000        2000K                               pte
[    0.059589] 0x0000000058e6d000-0x0000000058f13000         664K                               pte
[    0.059591] 0x0000000058f13000-0x0000000058f17000          16K                               pte
[    0.059592] 0x0000000058f17000-0x0000000058f23000          48K                               pte
[    0.059593] 0x0000000058f23000-0x0000000058f26000          12K                               pte
[    0.059594] 0x0000000058f26000-0x0000000058f34000          56K                               pte
[    0.059595] 0x0000000058f34000-0x0000000058f35000           4K                               pte
[    0.059596] 0x0000000058f35000-0x0000000058f37000           8K     RW                     NX pte
[    0.059599] 0x0000000058f37000-0x0000000058f44000          52K                               pte
[    0.059600] 0x0000000058f44000-0x0000000058f4c000          32K                               pte
[    0.059602] 0x0000000058f4c000-0x0000000058f66000         104K                               pte
[    0.059603] 0x0000000058f66000-0x0000000058f69000          12K                               pte
[    0.059605] 0x0000000058f69000-0x0000000058fa3000         232K                               pte
[    0.059606] 0x0000000058fa3000-0x0000000058fa5000           8K                               pte
[    0.059607] 0x0000000058fa5000-0x0000000058fd4000         188K                               pte
[    0.059608] 0x0000000058fd4000-0x0000000058fd6000           8K                               pte
[    0.059610] 0x0000000058fd6000-0x0000000058fef000         100K                               pte
[    0.059611] 0x0000000058fef000-0x0000000058ff2000          12K                               pte
[    0.059612] 0x0000000058ff2000-0x0000000058ff7000          20K                               pte
[    0.059613] 0x0000000058ff7000-0x0000000058ffc000          20K                               pte
[    0.059615] 0x0000000058ffc000-0x0000000059016000         104K                               pte
[    0.059616] 0x0000000059016000-0x000000005901f000          36K                               pte
[    0.059617] 0x000000005901f000-0x0000000059032000          76K                               pte
[    0.059618] 0x0000000059032000-0x0000000059035000          12K                               pte
[    0.059620] 0x0000000059035000-0x0000000059042000          52K                               pte
[    0.059621] 0x0000000059042000-0x0000000059048000          24K                               pte
[    0.059622] 0x0000000059048000-0x000000005904d000          20K                               pte
[    0.059623] 0x000000005904d000-0x000000005904f000           8K                               pte
[    0.059624] 0x000000005904f000-0x0000000059051000           8K                               pte
[    0.059625] 0x0000000059051000-0x0000000059056000          20K                               pte
[    0.059626] 0x0000000059056000-0x0000000059058000           8K                               pte
[    0.059628] 0x0000000059058000-0x000000005905a000           8K                               pte
[    0.059629] 0x000000005905a000-0x0000000059074000         104K                               pte
[    0.059630] 0x0000000059074000-0x000000005907a000          24K                               pte
[    0.059631] 0x000000005907a000-0x0000000059083000          36K                               pte
[    0.059632] 0x0000000059083000-0x0000000059086000          12K                               pte
[    0.059634] 0x0000000059086000-0x0000000059089000          12K                               pte
[    0.059635] 0x0000000059089000-0x000000005908c000          12K                               pte
[    0.059636] 0x000000005908c000-0x000000005908d000           4K                               pte
[    0.059637] 0x000000005908d000-0x000000005908e000           4K                               pte
[    0.059638] 0x000000005908e000-0x000000005908f000           4K                               pte
[    0.059644] 0x000000005908f000-0x000000005926b000        1904K                               pte
[    0.059645] 0x000000005926b000-0x0000000059277000          48K                               pte
[    0.059646] 0x0000000059277000-0x000000005928c000          84K                               pte
[    0.059648] 0x000000005928c000-0x0000000059294000          32K                               pte
[    0.059649] 0x0000000059294000-0x0000000059295000           4K                               pte
[    0.059650] 0x0000000059295000-0x00000000592ad000          96K                               pte
[    0.059651] 0x00000000592ad000-0x00000000592b3000          24K                               pte
[    0.059652] 0x00000000592b3000-0x00000000592b4000           4K                               pte
[    0.059653] 0x00000000592b4000-0x00000000592b5000           4K                               pte
[    0.059655] 0x00000000592b5000-0x00000000592b7000           8K                               pte
[    0.059656] 0x00000000592b7000-0x00000000592b8000           4K                               pte
[    0.059657] 0x00000000592b8000-0x00000000592bb000          12K                               pte
[    0.059658] 0x00000000592bb000-0x00000000592be000          12K                               pte
[    0.059659] 0x00000000592be000-0x00000000592ca000          48K                               pte
[    0.059660] 0x00000000592ca000-0x00000000592cb000           4K                               pte
[    0.059661] 0x00000000592cb000-0x00000000592d0000          20K                               pte
[    0.059663] 0x00000000592d0000-0x00000000592d3000          12K                               pte
[    0.059664] 0x00000000592d3000-0x00000000592e8000          84K                               pte
[    0.059665] 0x00000000592e8000-0x00000000592e9000           4K                               pte
[    0.059666] 0x00000000592e9000-0x00000000592ea000           4K                               pte
[    0.059667] 0x00000000592ea000-0x00000000592f4000          40K                               pte
[    0.059669] 0x00000000592f4000-0x00000000592f5000           4K                               pte
[    0.059670] 0x00000000592f5000-0x00000000592fc000          28K                               pte
[    0.059671] 0x00000000592fc000-0x0000000059301000          20K                               pte
[    0.059672] 0x0000000059301000-0x0000000059302000           4K                               pte
[    0.059673] 0x0000000059302000-0x0000000059306000          16K                               pte
[    0.059674] 0x0000000059306000-0x000000005930c000          24K                               pte
[    0.059676] 0x000000005930c000-0x000000005931d000          68K                               pte
[    0.059677] 0x000000005931d000-0x000000005931e000           4K                               pte
[    0.059678] 0x000000005931e000-0x000000005931f000           4K                               pte
[    0.059679] 0x000000005931f000-0x0000000059326000          28K                               pte
[    0.059680] 0x0000000059326000-0x000000005933f000         100K                               pte
[    0.059682] 0x000000005933f000-0x0000000059347000          32K                               pte
[    0.059683] 0x0000000059347000-0x0000000059350000          36K                               pte
[    0.059684] 0x0000000059350000-0x000000005937f000         188K                               pte
[    0.059685] 0x000000005937f000-0x0000000059380000           4K                               pte
[    0.059687] 0x0000000059380000-0x0000000059381000           4K                               pte
[    0.059688] 0x0000000059381000-0x0000000059382000           4K                               pte
[    0.059689] 0x0000000059382000-0x0000000059383000           4K                               pte
[    0.059691] 0x0000000059383000-0x00000000593d9000         344K                               pte
[    0.059692] 0x00000000593d9000-0x00000000593da000           4K     RW                     NX pte
[    0.059694] 0x00000000593da000-0x00000000593dc000           8K                               pte
[    0.059695] 0x00000000593dc000-0x00000000593de000           8K                               pte
[    0.059696] 0x00000000593de000-0x00000000593df000           4K                               pte
[    0.059698] 0x00000000593df000-0x00000000593eb000          48K                               pte
[    0.059699] 0x00000000593eb000-0x00000000593f6000          44K                               pte
[    0.059701] 0x00000000593f6000-0x000000005943e000         288K                               pte
[    0.059702] 0x000000005943e000-0x0000000059444000          24K                               pte
[    0.059703] 0x0000000059444000-0x000000005944f000          44K                               pte
[    0.059704] 0x000000005944f000-0x0000000059451000           8K                               pte
[    0.059705] 0x0000000059451000-0x0000000059452000           4K                               pte
[    0.059707] 0x0000000059452000-0x000000005945a000          32K                               pte
[    0.059708] 0x000000005945a000-0x0000000059461000          28K                               pte
[    0.059709] 0x0000000059461000-0x0000000059464000          12K                               pte
[    0.059710] 0x0000000059464000-0x0000000059475000          68K                               pte
[    0.059711] 0x0000000059475000-0x0000000059478000          12K                               pte
[    0.059713] 0x0000000059478000-0x00000000594a5000         180K                               pte
[    0.059714] 0x00000000594a5000-0x00000000594ae000          36K                               pte
[    0.059715] 0x00000000594ae000-0x00000000594b3000          20K                               pte
[    0.059716] 0x00000000594b3000-0x00000000594b5000           8K                               pte
[    0.059718] 0x00000000594b5000-0x00000000594bd000          32K                               pte
[    0.059719] 0x00000000594bd000-0x00000000594be000           4K                               pte
[    0.059720] 0x00000000594be000-0x00000000594c0000           8K                               pte
[    0.059721] 0x00000000594c0000-0x00000000594c4000          16K                               pte
[    0.059722] 0x00000000594c4000-0x00000000594d4000          64K                               pte
[    0.059723] 0x00000000594d4000-0x00000000594d5000           4K                               pte
[    0.059725] 0x00000000594d5000-0x00000000594d6000           4K                               pte
[    0.059726] 0x00000000594d6000-0x00000000594d7000           4K                               pte
[    0.059727] 0x00000000594d7000-0x00000000594e3000          48K                               pte
[    0.059728] 0x00000000594e3000-0x00000000594e6000          12K                               pte
[    0.059729] 0x00000000594e6000-0x00000000594e7000           4K                               pte
[    0.059730] 0x00000000594e7000-0x00000000594ea000          12K                               pte
[    0.059731] 0x00000000594ea000-0x00000000594ec000           8K                               pte
[    0.059732] 0x00000000594ec000-0x00000000594ed000           4K                               pte
[    0.059734] 0x00000000594ed000-0x00000000594ee000           4K                               pte
[    0.059735] 0x00000000594ee000-0x00000000594ef000           4K                               pte
[    0.059736] 0x00000000594ef000-0x00000000594f0000           4K                               pte
[    0.059737] 0x00000000594f0000-0x00000000594f2000           8K                               pte
[    0.059738] 0x00000000594f2000-0x00000000594f3000           4K                               pte
[    0.059739] 0x00000000594f3000-0x00000000594f6000          12K                               pte
[    0.059740] 0x00000000594f6000-0x0000000059507000          68K                               pte
[    0.059742] 0x0000000059507000-0x000000005950c000          20K                               pte
[    0.059743] 0x000000005950c000-0x000000005950e000           8K                               pte
[    0.059744] 0x000000005950e000-0x0000000059510000           8K                               pte
[    0.059745] 0x0000000059510000-0x0000000059515000          20K                               pte
[    0.059746] 0x0000000059515000-0x0000000059517000           8K                               pte
[    0.059747] 0x0000000059517000-0x0000000059518000           4K                               pte
[    0.059748] 0x0000000059518000-0x000000005951a000           8K                               pte
[    0.059749] 0x000000005951a000-0x000000005951d000          12K                               pte
[    0.059751] 0x000000005951d000-0x0000000059521000          16K                               pte
[    0.059752] 0x0000000059521000-0x0000000059526000          20K                               pte
[    0.059753] 0x0000000059526000-0x0000000059529000          12K                               pte
[    0.059754] 0x0000000059529000-0x0000000059536000          52K                               pte
[    0.059755] 0x0000000059536000-0x0000000059537000           4K                               pte
[    0.059756] 0x0000000059537000-0x0000000059538000           4K                               pte
[    0.059758] 0x0000000059538000-0x0000000059539000           4K                               pte
[    0.059759] 0x0000000059539000-0x000000005953f000          24K                               pte
[    0.059760] 0x000000005953f000-0x0000000059541000           8K                               pte
[    0.059761] 0x0000000059541000-0x0000000059542000           4K                               pte
[    0.059762] 0x0000000059542000-0x0000000059543000           4K                               pte
[    0.059763] 0x0000000059543000-0x0000000059549000          24K                               pte
[    0.059764] 0x0000000059549000-0x000000005954b000           8K                               pte
[    0.059765] 0x000000005954b000-0x000000005954c000           4K                               pte
[    0.059767] 0x000000005954c000-0x000000005954d000           4K                               pte
[    0.059768] 0x000000005954d000-0x000000005955a000          52K                               pte
[    0.059769] 0x000000005955a000-0x000000005955b000           4K                               pte
[    0.059770] 0x000000005955b000-0x0000000059560000          20K                               pte
[    0.059771] 0x0000000059560000-0x0000000059562000           8K                               pte
[    0.059772] 0x0000000059562000-0x0000000059563000           4K                               pte
[    0.059773] 0x0000000059563000-0x0000000059565000           8K                               pte
[    0.059775] 0x0000000059565000-0x0000000059573000          56K                               pte
[    0.059776] 0x0000000059573000-0x0000000059575000           8K                               pte
[    0.059777] 0x0000000059575000-0x0000000059579000          16K                               pte
[    0.059778] 0x0000000059579000-0x000000005959a000         132K                               pte
[    0.059780] 0x000000005959a000-0x000000005959c000           8K                               pte
[    0.059781] 0x000000005959c000-0x000000005959e000           8K                               pte
[    0.059782] 0x000000005959e000-0x00000000595a0000           8K                               pte
[    0.059783] 0x00000000595a0000-0x00000000595b4000          80K                               pte
[    0.059784] 0x00000000595b4000-0x00000000595c4000          64K                               pte
[    0.059786] 0x00000000595c4000-0x00000000595cd000          36K                               pte
[    0.059787] 0x00000000595cd000-0x00000000595ce000           4K                               pte
[    0.059788] 0x00000000595ce000-0x00000000595cf000           4K                               pte
[    0.059789] 0x00000000595cf000-0x00000000595d1000           8K                               pte
[    0.059790] 0x00000000595d1000-0x00000000595d4000          12K                               pte
[    0.059791] 0x00000000595d4000-0x00000000595d6000           8K                               pte
[    0.059792] 0x00000000595d6000-0x00000000595d7000           4K                               pte
[    0.059794] 0x00000000595d7000-0x00000000595d8000           4K                               pte
[    0.059795] 0x00000000595d8000-0x00000000595d9000           4K                               pte
[    0.059796] 0x00000000595d9000-0x00000000595e8000          60K                               pte
[    0.059797] 0x00000000595e8000-0x00000000595ea000           8K                               pte
[    0.059798] 0x00000000595ea000-0x00000000595eb000           4K                               pte
[    0.059799] 0x00000000595eb000-0x00000000595ed000           8K                               pte
[    0.059800] 0x00000000595ed000-0x00000000595ee000           4K                               pte
[    0.059801] 0x00000000595ee000-0x00000000595ef000           4K                               pte
[    0.059803] 0x00000000595ef000-0x00000000595f6000          28K                               pte
[    0.059804] 0x00000000595f6000-0x00000000595f7000           4K                               pte
[    0.059805] 0x00000000595f7000-0x00000000595fb000          16K                               pte
[    0.059806] 0x00000000595fb000-0x00000000595fe000          12K                               pte
[    0.059807] 0x00000000595fe000-0x0000000059601000          12K                               pte
[    0.059808] 0x0000000059601000-0x0000000059602000           4K                               pte
[    0.059809] 0x0000000059602000-0x0000000059604000           8K                               pte
[    0.059811] 0x0000000059604000-0x0000000059609000          20K                               pte
[    0.059812] 0x0000000059609000-0x000000005960c000          12K                               pte
[    0.059813] 0x000000005960c000-0x000000005960f000          12K                               pte
[    0.059814] 0x000000005960f000-0x0000000059612000          12K                               pte
[    0.059815] 0x0000000059612000-0x0000000059613000           4K                               pte
[    0.059817] 0x0000000059613000-0x0000000059635000         136K                               pte
[    0.059818] 0x0000000059635000-0x0000000059636000           4K                               pte
[    0.059819] 0x0000000059636000-0x0000000059637000           4K                               pte
[    0.059820] 0x0000000059637000-0x0000000059638000           4K                               pte
[    0.059821] 0x0000000059638000-0x0000000059643000          44K                               pte
[    0.059822] 0x0000000059643000-0x0000000059644000           4K                               pte
[    0.059823] 0x0000000059644000-0x0000000059647000          12K                               pte
[    0.059825] 0x0000000059647000-0x0000000059648000           4K                               pte
[    0.059826] 0x0000000059648000-0x0000000059649000           4K                               pte
[    0.059827] 0x0000000059649000-0x000000005964a000           4K                               pte
[    0.059828] 0x000000005964a000-0x000000005964d000          12K                               pte
[    0.059834] 0x000000005964d000-0x0000000059a4d000           4M                               pte
[    0.059836] 0x0000000059a4d000-0x0000000059a6c000         124K                               pte
[    0.059837] 0x0000000059a6c000-0x0000000059a6d000           4K                               pte
[    0.059838] 0x0000000059a6d000-0x0000000059a6e000           4K                               pte
[    0.059839] 0x0000000059a6e000-0x0000000059a6f000           4K                               pte
[    0.059840] 0x0000000059a6f000-0x0000000059a70000           4K                               pte
[    0.059841] 0x0000000059a70000-0x0000000059a71000           4K                               pte
[    0.059842] 0x0000000059a71000-0x0000000059a73000           8K                               pte
[    0.059843] 0x0000000059a73000-0x0000000059a74000           4K                               pte
[    0.059844] 0x0000000059a74000-0x0000000059a78000          16K                               pte
[    0.059846] 0x0000000059a78000-0x0000000059a7c000          16K                               pte
[    0.059847] 0x0000000059a7c000-0x0000000059a7d000           4K                               pte
[    0.059848] 0x0000000059a7d000-0x0000000059a7e000           4K                               pte
[    0.059849] 0x0000000059a7e000-0x0000000059a7f000           4K                               pte
[    0.059850] 0x0000000059a7f000-0x0000000059a80000           4K                               pte
[    0.059851] 0x0000000059a80000-0x0000000059a85000          20K                               pte
[    0.059852] 0x0000000059a85000-0x0000000059a88000          12K                               pte
[    0.059853] 0x0000000059a88000-0x0000000059a89000           4K                               pte
[    0.059855] 0x0000000059a89000-0x0000000059a8c000          12K                               pte
[    0.059856] 0x0000000059a8c000-0x0000000059a8d000           4K                               pte
[    0.059857] 0x0000000059a8d000-0x0000000059a93000          24K                               pte
[    0.059858] 0x0000000059a93000-0x0000000059a96000          12K                               pte
[    0.059864] 0x0000000059a96000-0x000000005a4b4000       10360K                               pte
[    0.059869] 0x000000005a4b4000-0x000000005a600000        1328K                               pte
[    0.059870] 0x000000005a600000-0x000000005be00000          24M                               pmd
[    0.059874] 0x000000005be00000-0x000000005bf0a000        1064K                               pte
[    0.059877] 0x000000005bf0a000-0x000000005c000000         984K     RW                     NX pte
[    0.059880] 0x000000005c000000-0x000000005cc00000          12M     RW         PSE         NX pmd
[    0.059884] 0x000000005cc00000-0x000000005cc90000         576K     RW                     NX pte
[    0.059886] 0x000000005cc90000-0x000000005cc93000          12K     ro                     x  pte
[    0.059889] 0x000000005cc93000-0x000000005cc98000          20K     RW                     NX pte
[    0.059891] 0x000000005cc98000-0x000000005cc99000           4K     ro                     x  pte
[    0.059894] 0x000000005cc99000-0x000000005cc9e000          20K     RW                     NX pte
[    0.059896] 0x000000005cc9e000-0x000000005cca1000          12K     ro                     x  pte
[    0.059899] 0x000000005cca1000-0x000000005cca6000          20K     RW                     NX pte
[    0.059901] 0x000000005cca6000-0x000000005cca7000           4K     ro                     x  pte
[    0.059903] 0x000000005cca7000-0x000000005ccab000          16K     RW                     NX pte
[    0.059906] 0x000000005ccab000-0x000000005ccb9000          56K     ro                     x  pte
[    0.059908] 0x000000005ccb9000-0x000000005ccc1000          32K     RW                     NX pte
[    0.059911] 0x000000005ccc1000-0x000000005ccc4000          12K     ro                     x  pte
[    0.059913] 0x000000005ccc4000-0x000000005ccc9000          20K     RW                     NX pte
[    0.059916] 0x000000005ccc9000-0x000000005ccca000           4K     ro                     x  pte
[    0.059918] 0x000000005ccca000-0x000000005cccf000          20K     RW                     NX pte
[    0.059920] 0x000000005cccf000-0x000000005ccd0000           4K     ro                     x  pte
[    0.059923] 0x000000005ccd0000-0x000000005ccd5000          20K     RW                     NX pte
[    0.059925] 0x000000005ccd5000-0x000000005ccd6000           4K     ro                     x  pte
[    0.059928] 0x000000005ccd6000-0x000000005ccdb000          20K     RW                     NX pte
[    0.059930] 0x000000005ccdb000-0x000000005ccdc000           4K     ro                     x  pte
[    0.059932] 0x000000005ccdc000-0x000000005cce0000          16K     RW                     NX pte
[    0.059935] 0x000000005cce0000-0x000000005ccea000          40K     ro                     x  pte
[    0.059937] 0x000000005ccea000-0x000000005ccf0000          24K     RW                     NX pte
[    0.059940] 0x000000005ccf0000-0x000000005ccf4000          16K     ro                     x  pte
[    0.059942] 0x000000005ccf4000-0x000000005ccf9000          20K     RW                     NX pte
[    0.059945] 0x000000005ccf9000-0x000000005ccfd000          16K     ro                     x  pte
[    0.059947] 0x000000005ccfd000-0x000000005cd02000          20K     RW                     NX pte
[    0.059952] 0x000000005cd02000-0x000000005d005000        3084K                               pte
[    0.059953] 0x000000005d005000-0x000000005d024000         124K                               pte
[    0.059955] 0x000000005d024000-0x000000005d054000         192K                               pte
[    0.059956] 0x000000005d054000-0x000000005d062000          56K                               pte
[    0.059967] 0x000000005d062000-0x000000005e5fe000       22128K                               pte
[    0.059968] 0x000000005e5fe000-0x000000005e5ff000           4K                               pte
[    0.059969] 0x000000005e5ff000-0x000000005e611000          72K                               pte
[    0.059970] 0x000000005e611000-0x000000005e619000          32K                               pte
[    0.059972] 0x000000005e619000-0x000000005e63e000         148K                               pte
[    0.059973] 0x000000005e63e000-0x000000005e64e000          64K                               pte
[    0.059974] 0x000000005e64e000-0x000000005e66f000         132K                               pte
[    0.059976] 0x000000005e66f000-0x000000005e688000         100K                               pte
[    0.059986] 0x000000005e688000-0x000000005eff9000        9668K                               pte
[    0.059988] 0x000000005eff9000-0x000000005f000000          28K                               pte
[    0.059991] 0x000000005f000000-0x0000000080000000         528M                               pmd
[    0.059992] 0x0000000080000000-0x00000000c0000000           1G                               pud
[    0.059997] 0x00000000c0000000-0x00000000f8000000         896M                               pmd
[    0.059999] 0x00000000f8000000-0x00000000fc000000          64M     RW         PSE         NX pmd
[    0.060001] 0x00000000fc000000-0x00000000fd000000          16M                               pmd
[    0.060003] 0x00000000fd000000-0x0000000100000000          48M     RW     PCD PSE         NX pmd
[    0.060007] 0x0000000100000000-0x00000001000b8000         736K                               pte
[    0.060008] 0x00000001000b8000-0x00000001000bc000          16K     RW                     NX pte
[    0.060014] 0x00000001000bc000-0x0000000100200000        1296K                               pte
[    0.060019] 0x0000000100200000-0x0000000140000000        1022M                               pmd
[    0.060026] 0x0000000140000000-0x0000008000000000         507G                               pud
[    0.060030] 0x0000008000000000-0xffff880000000000   17179745792G                               pgd
[    0.060032] ---[ Kernel Space ]---
[    0.060033] 0xffff880000000000-0xffff888000000000         512G                               pgd
[    0.060034] ---[ LDT remap ]---
[    0.060034] 0xffff888000000000-0xffff888000001000           4K     RW                 GLB NX pte
[    0.060037] ---[ Low Kernel Mapping ]---
[    0.060037] 0xffff888000001000-0xffff888000002000           4K     RW                 GLB NX pte
[    0.060040] ---[ vmalloc() Area ]---
[    0.060040] 0xffff888000002000-0xffff888000003000           4K     RW                 GLB NX pte
[    0.060042] ---[ Vmemmap ]---
[    0.060048] 0xffff888000003000-0xffff888000200000        2036K     RW                 GLB NX pte
[    0.060051] 0xffff888000200000-0xffff888004400000          66M     RW         PSE     GLB NX pmd
[    0.060056] 0xffff888004400000-0xffff8880044cf000         828K     RW                 GLB NX pte
[    0.060058] 0xffff8880044cf000-0xffff8880044d0000           4K     ro                 GLB NX pte
[    0.060064] 0xffff8880044d0000-0xffff888004600000        1216K     RW                 GLB NX pte
[    0.060067] 0xffff888004600000-0xffff888009c00000          86M     RW         PSE     GLB NX pmd
[    0.060072] 0xffff888009c00000-0xffff888009d00000           1M     RW                 GLB NX pte
[    0.060077] 0xffff888009d00000-0xffff888009e00000           1M                               pte
[    0.060078] 0xffff888009e00000-0xffff88800a000000           2M                               pmd
[    0.060079] 0xffff88800a000000-0xffff88800a200000           2M     RW         PSE     GLB NX pmd
[    0.060082] 0xffff88800a200000-0xffff88800a20b000          44K                               pte
[    0.060089] 0xffff88800a20b000-0xffff88800a400000        2004K     RW                 GLB NX pte
[    0.060091] 0xffff88800a400000-0xffff88800b000000          12M     RW         PSE     GLB NX pmd
[    0.060094] 0xffff88800b000000-0xffff88800b020000         128K                               pte
[    0.060100] 0xffff88800b020000-0xffff88800b200000        1920K     RW                 GLB NX pte
[    0.060111] 0xffff88800b200000-0xffff88805a400000        1266M     RW         PSE     GLB NX pmd
[    0.060116] 0xffff88805a400000-0xffff88805a4b4000         720K     RW                 GLB NX pte
[    0.060122] 0xffff88805a4b4000-0xffff88805a600000        1328K                               pte
[    0.060123] 0xffff88805a600000-0xffff88805b800000          18M                               pmd
[    0.060129] 0xffff88805b800000-0xffff88805b981000        1540K                               pte
[    0.060134] 0xffff88805b981000-0xffff88805bb00000        1532K     RW                 GLB NX pte
[    0.060140] 0xffff88805bb00000-0xffff88805bc00000           1M                               pte
[    0.060141] 0xffff88805bc00000-0xffff88805cc00000          16M                               pmd
[    0.060145] 0xffff88805cc00000-0xffff88805cd02000        1032K                               pte
[    0.060149] 0xffff88805cd02000-0xffff88805ce00000        1016K     RW                 GLB NX pte
[    0.060152] 0xffff88805ce00000-0xffff88805f000000          34M     RW         PSE     GLB NX pmd
[    0.060156] 0xffff88805f000000-0xffff888080000000         528M                               pmd
[    0.060157] 0xffff888080000000-0xffff888100000000           2G                               pud
[    0.060159] 0xffff888100000000-0xffff888200000000           4G     RW         PSE     GLB NX pud
[    0.060165] 0xffff888200000000-0xffff88821f200000         498M     RW         PSE     GLB NX pmd
[    0.060171] 0xffff88821f200000-0xffff88821f340000        1280K     RW                 GLB NX pte
[    0.060175] 0xffff88821f340000-0xffff88821f400000         768K                               pte
[    0.060178] 0xffff88821f400000-0xffff888240000000         524M                               pmd
[    0.060183] 0xffff888240000000-0xffff890000000000         503G                               pud
[    0.060186] 0xffff890000000000-0xffffc90000000000          64T                               pgd
[    0.060187] 0xffffc90000000000-0xffffc90000004000          16K     RW                 GLB NX pte
[    0.060190] 0xffffc90000004000-0xffffc90000005000           4K                               pte
[    0.060191] 0xffffc90000005000-0xffffc90000006000           4K     RW                 GLB NX pte
[    0.060193] 0xffffc90000006000-0xffffc90000008000           8K                               pte
[    0.060195] 0xffffc90000008000-0xffffc9000000f000          28K     RW                 GLB NX pte
[    0.060197] 0xffffc9000000f000-0xffffc90000010000           4K                               pte
[    0.060198] 0xffffc90000010000-0xffffc90000011000           4K     RW                 GLB NX pte
[    0.060201] 0xffffc90000011000-0xffffc90000012000           4K                               pte
[    0.060202] 0xffffc90000012000-0xffffc90000014000           8K     RW                 GLB NX pte
[    0.060204] 0xffffc90000014000-0xffffc90000015000           4K                               pte
[    0.060205] 0xffffc90000015000-0xffffc90000016000           4K     RW     PCD         GLB NX pte
[    0.060208] 0xffffc90000016000-0xffffc90000018000           8K                               pte
[    0.060209] 0xffffc90000018000-0xffffc9000001f000          28K     RW                 GLB NX pte
[    0.060211] 0xffffc9000001f000-0xffffc90000020000           4K                               pte
[    0.060213] 0xffffc90000020000-0xffffc90000024000          16K     RW                 GLB NX pte
[    0.060215] 0xffffc90000024000-0xffffc90000028000          16K                               pte
[    0.060216] 0xffffc90000028000-0xffffc9000002b000          12K     RW                 GLB NX pte
[    0.060223] 0xffffc9000002b000-0xffffc90000200000        1876K                               pte
[    0.060228] 0xffffc90000200000-0xffffc90040000000        1022M                               pmd
[    0.060471] 0xffffc90040000000-0xffffe90000000000       32767G                               pud
[    0.060472] 0xffffe90000000000-0xffffea0000000000           1T                               pgd
[    0.060473] 0xffffea0000000000-0xffffea0001800000          24M     RW         PSE     GLB NX pmd
[    0.060476] 0xffffea0001800000-0xffffea0004000000          40M                               pmd
[    0.060478] 0xffffea0004000000-0xffffea0008800000          72M     RW         PSE     GLB NX pmd
[    0.060483] 0xffffea0008800000-0xffffea0040000000         888M                               pmd
[    0.060488] 0xffffea0040000000-0xffffea8000000000         511G                               pud
[    0.060490] 0xffffea8000000000-0xfffffe0000000000       19968G                               pgd
[    0.060491] ---[ CPU entry Area ]---
[    0.060492] 0xfffffe0000000000-0xfffffe0000002000           8K     ro                 GLB NX pte
[    0.060494] 0xfffffe0000002000-0xfffffe0000003000           4K     RW                 GLB NX pte
[    0.060497] 0xfffffe0000003000-0xfffffe0000008000          20K     ro                 GLB NX pte
[    0.060499] 0xfffffe0000008000-0xfffffe0000009000           4K                               pte
[    0.060500] 0xfffffe0000009000-0xfffffe000000a000           4K     RW                 GLB NX pte
[    0.060503] 0xfffffe000000a000-0xfffffe000000b000           4K                               pte
[    0.060504] 0xfffffe000000b000-0xfffffe000000c000           4K     RW                 GLB NX pte
[    0.060506] 0xfffffe000000c000-0xfffffe000000d000           4K                               pte
[    0.060508] 0xfffffe000000d000-0xfffffe000000e000           4K     RW                 GLB NX pte
[    0.060510] 0xfffffe000000e000-0xfffffe000000f000           4K                               pte
[    0.060511] 0xfffffe000000f000-0xfffffe0000010000           4K     RW                 GLB NX pte
[    0.060514] 0xfffffe0000010000-0xfffffe0000036000         152K                               pte
[    0.060515] 0xfffffe0000036000-0xfffffe0000037000           4K     ro                 GLB NX pte
[    0.060518] 0xfffffe0000037000-0xfffffe0000038000           4K     RW                 GLB NX pte
[    0.060520] 0xfffffe0000038000-0xfffffe000003d000          20K     ro                 GLB NX pte
[    0.060522] 0xfffffe000003d000-0xfffffe000003e000           4K                               pte
[    0.060524] 0xfffffe000003e000-0xfffffe000003f000           4K     RW                 GLB NX pte
[    0.060526] 0xfffffe000003f000-0xfffffe0000040000           4K                               pte
[    0.060527] 0xfffffe0000040000-0xfffffe0000041000           4K     RW                 GLB NX pte
[    0.060529] 0xfffffe0000041000-0xfffffe0000042000           4K                               pte
[    0.060531] 0xfffffe0000042000-0xfffffe0000043000           4K     RW                 GLB NX pte
[    0.060533] 0xfffffe0000043000-0xfffffe0000044000           4K                               pte
[    0.060534] 0xfffffe0000044000-0xfffffe0000045000           4K     RW                 GLB NX pte
[    0.060537] 0xfffffe0000045000-0xfffffe000006b000         152K                               pte
[    0.060538] 0xfffffe000006b000-0xfffffe000006c000           4K     ro                 GLB NX pte
[    0.060540] 0xfffffe000006c000-0xfffffe000006d000           4K     RW                 GLB NX pte
[    0.060543] 0xfffffe000006d000-0xfffffe0000072000          20K     ro                 GLB NX pte
[    0.060545] 0xfffffe0000072000-0xfffffe0000073000           4K                               pte
[    0.060546] 0xfffffe0000073000-0xfffffe0000074000           4K     RW                 GLB NX pte
[    0.060549] 0xfffffe0000074000-0xfffffe0000075000           4K                               pte
[    0.060550] 0xfffffe0000075000-0xfffffe0000076000           4K     RW                 GLB NX pte
[    0.060552] 0xfffffe0000076000-0xfffffe0000077000           4K                               pte
[    0.060553] 0xfffffe0000077000-0xfffffe0000078000           4K     RW                 GLB NX pte
[    0.060556] 0xfffffe0000078000-0xfffffe0000079000           4K                               pte
[    0.060557] 0xfffffe0000079000-0xfffffe000007a000           4K     RW                 GLB NX pte
[    0.060560] 0xfffffe000007a000-0xfffffe00000a0000         152K                               pte
[    0.060561] 0xfffffe00000a0000-0xfffffe00000a1000           4K     ro                 GLB NX pte
[    0.060563] 0xfffffe00000a1000-0xfffffe00000a2000           4K     RW                 GLB NX pte
[    0.060566] 0xfffffe00000a2000-0xfffffe00000a7000          20K     ro                 GLB NX pte
[    0.060568] 0xfffffe00000a7000-0xfffffe00000a8000           4K                               pte
[    0.060569] 0xfffffe00000a8000-0xfffffe00000a9000           4K     RW                 GLB NX pte
[    0.060572] 0xfffffe00000a9000-0xfffffe00000aa000           4K                               pte
[    0.060573] 0xfffffe00000aa000-0xfffffe00000ab000           4K     RW                 GLB NX pte
[    0.060575] 0xfffffe00000ab000-0xfffffe00000ac000           4K                               pte
[    0.060576] 0xfffffe00000ac000-0xfffffe00000ad000           4K     RW                 GLB NX pte
[    0.060579] 0xfffffe00000ad000-0xfffffe00000ae000           4K                               pte
[    0.060580] 0xfffffe00000ae000-0xfffffe00000af000           4K     RW                 GLB NX pte
[    0.060583] 0xfffffe00000af000-0xfffffe00000d5000         152K                               pte
[    0.060584] 0xfffffe00000d5000-0xfffffe00000d6000           4K     ro                 GLB NX pte
[    0.060586] 0xfffffe00000d6000-0xfffffe00000d7000           4K     RW                 GLB NX pte
[    0.060589] 0xfffffe00000d7000-0xfffffe00000dc000          20K     ro                 GLB NX pte
[    0.060591] 0xfffffe00000dc000-0xfffffe00000dd000           4K                               pte
[    0.060592] 0xfffffe00000dd000-0xfffffe00000de000           4K     RW                 GLB NX pte
[    0.060595] 0xfffffe00000de000-0xfffffe00000df000           4K                               pte
[    0.060596] 0xfffffe00000df000-0xfffffe00000e0000           4K     RW                 GLB NX pte
[    0.060598] 0xfffffe00000e0000-0xfffffe00000e1000           4K                               pte
[    0.060599] 0xfffffe00000e1000-0xfffffe00000e2000           4K     RW                 GLB NX pte
[    0.060602] 0xfffffe00000e2000-0xfffffe00000e3000           4K                               pte
[    0.060603] 0xfffffe00000e3000-0xfffffe00000e4000           4K     RW                 GLB NX pte
[    0.060606] 0xfffffe00000e4000-0xfffffe000010a000         152K                               pte
[    0.060607] 0xfffffe000010a000-0xfffffe000010b000           4K     ro                 GLB NX pte
[    0.060609] 0xfffffe000010b000-0xfffffe000010c000           4K     RW                 GLB NX pte
[    0.060612] 0xfffffe000010c000-0xfffffe0000111000          20K     ro                 GLB NX pte
[    0.060614] 0xfffffe0000111000-0xfffffe0000112000           4K                               pte
[    0.060615] 0xfffffe0000112000-0xfffffe0000113000           4K     RW                 GLB NX pte
[    0.060618] 0xfffffe0000113000-0xfffffe0000114000           4K                               pte
[    0.060619] 0xfffffe0000114000-0xfffffe0000115000           4K     RW                 GLB NX pte
[    0.060621] 0xfffffe0000115000-0xfffffe0000116000           4K                               pte
[    0.060622] 0xfffffe0000116000-0xfffffe0000117000           4K     RW                 GLB NX pte
[    0.060625] 0xfffffe0000117000-0xfffffe0000118000           4K                               pte
[    0.060626] 0xfffffe0000118000-0xfffffe0000119000           4K     RW                 GLB NX pte
[    0.060629] 0xfffffe0000119000-0xfffffe000013f000         152K                               pte
[    0.060630] 0xfffffe000013f000-0xfffffe0000140000           4K     ro                 GLB NX pte
[    0.060632] 0xfffffe0000140000-0xfffffe0000141000           4K     RW                 GLB NX pte
[    0.060635] 0xfffffe0000141000-0xfffffe0000146000          20K     ro                 GLB NX pte
[    0.060637] 0xfffffe0000146000-0xfffffe0000147000           4K                               pte
[    0.060638] 0xfffffe0000147000-0xfffffe0000148000           4K     RW                 GLB NX pte
[    0.060640] 0xfffffe0000148000-0xfffffe0000149000           4K                               pte
[    0.060642] 0xfffffe0000149000-0xfffffe000014a000           4K     RW                 GLB NX pte
[    0.060644] 0xfffffe000014a000-0xfffffe000014b000           4K                               pte
[    0.060645] 0xfffffe000014b000-0xfffffe000014c000           4K     RW                 GLB NX pte
[    0.060648] 0xfffffe000014c000-0xfffffe000014d000           4K                               pte
[    0.060649] 0xfffffe000014d000-0xfffffe000014e000           4K     RW                 GLB NX pte
[    0.060651] 0xfffffe000014e000-0xfffffe0000174000         152K                               pte
[    0.060653] 0xfffffe0000174000-0xfffffe0000175000           4K     ro                 GLB NX pte
[    0.060655] 0xfffffe0000175000-0xfffffe0000176000           4K     RW                 GLB NX pte
[    0.060657] 0xfffffe0000176000-0xfffffe000017b000          20K     ro                 GLB NX pte
[    0.060660] 0xfffffe000017b000-0xfffffe000017c000           4K                               pte
[    0.060661] 0xfffffe000017c000-0xfffffe000017d000           4K     RW                 GLB NX pte
[    0.060663] 0xfffffe000017d000-0xfffffe000017e000           4K                               pte
[    0.060665] 0xfffffe000017e000-0xfffffe000017f000           4K     RW                 GLB NX pte
[    0.060667] 0xfffffe000017f000-0xfffffe0000180000           4K                               pte
[    0.060668] 0xfffffe0000180000-0xfffffe0000181000           4K     RW                 GLB NX pte
[    0.060670] 0xfffffe0000181000-0xfffffe0000182000           4K                               pte
[    0.060672] 0xfffffe0000182000-0xfffffe0000183000           4K     RW                 GLB NX pte
[    0.060674] 0xfffffe0000183000-0xfffffe00001a9000         152K                               pte
[    0.060676] 0xfffffe00001a9000-0xfffffe00001aa000           4K     ro                 GLB NX pte
[    0.060678] 0xfffffe00001aa000-0xfffffe00001ab000           4K     RW                 GLB NX pte
[    0.060680] 0xfffffe00001ab000-0xfffffe00001b0000          20K     ro                 GLB NX pte
[    0.060683] 0xfffffe00001b0000-0xfffffe00001b1000           4K                               pte
[    0.060684] 0xfffffe00001b1000-0xfffffe00001b2000           4K     RW                 GLB NX pte
[    0.060686] 0xfffffe00001b2000-0xfffffe00001b3000           4K                               pte
[    0.060687] 0xfffffe00001b3000-0xfffffe00001b4000           4K     RW                 GLB NX pte
[    0.060690] 0xfffffe00001b4000-0xfffffe00001b5000           4K                               pte
[    0.060691] 0xfffffe00001b5000-0xfffffe00001b6000           4K     RW                 GLB NX pte
[    0.060693] 0xfffffe00001b6000-0xfffffe00001b7000           4K                               pte
[    0.060695] 0xfffffe00001b7000-0xfffffe00001b8000           4K     RW                 GLB NX pte
[    0.060697] 0xfffffe00001b8000-0xfffffe00001de000         152K                               pte
[    0.060698] 0xfffffe00001de000-0xfffffe00001df000           4K     ro                 GLB NX pte
[    0.060701] 0xfffffe00001df000-0xfffffe00001e0000           4K     RW                 GLB NX pte
[    0.060703] 0xfffffe00001e0000-0xfffffe00001e5000          20K     ro                 GLB NX pte
[    0.060706] 0xfffffe00001e5000-0xfffffe00001e6000           4K                               pte
[    0.060707] 0xfffffe00001e6000-0xfffffe00001e7000           4K     RW                 GLB NX pte
[    0.060709] 0xfffffe00001e7000-0xfffffe00001e8000           4K                               pte
[    0.060710] 0xfffffe00001e8000-0xfffffe00001e9000           4K     RW                 GLB NX pte
[    0.060713] 0xfffffe00001e9000-0xfffffe00001ea000           4K                               pte
[    0.060714] 0xfffffe00001ea000-0xfffffe00001eb000           4K     RW                 GLB NX pte
[    0.060716] 0xfffffe00001eb000-0xfffffe00001ec000           4K                               pte
[    0.060717] 0xfffffe00001ec000-0xfffffe00001ed000           4K     RW                 GLB NX pte
[    0.060721] 0xfffffe00001ed000-0xfffffe0000213000         152K                               pte
[    0.060722] 0xfffffe0000213000-0xfffffe0000214000           4K     ro                 GLB NX pte
[    0.060724] 0xfffffe0000214000-0xfffffe0000215000           4K     RW                 GLB NX pte
[    0.060727] 0xfffffe0000215000-0xfffffe000021a000          20K     ro                 GLB NX pte
[    0.060729] 0xfffffe000021a000-0xfffffe000021b000           4K                               pte
[    0.060730] 0xfffffe000021b000-0xfffffe000021c000           4K     RW                 GLB NX pte
[    0.060733] 0xfffffe000021c000-0xfffffe000021d000           4K                               pte
[    0.060734] 0xfffffe000021d000-0xfffffe000021e000           4K     RW                 GLB NX pte
[    0.060736] 0xfffffe000021e000-0xfffffe000021f000           4K                               pte
[    0.060737] 0xfffffe000021f000-0xfffffe0000220000           4K     RW                 GLB NX pte
[    0.060740] 0xfffffe0000220000-0xfffffe0000221000           4K                               pte
[    0.060741] 0xfffffe0000221000-0xfffffe0000222000           4K     RW                 GLB NX pte
[    0.060744] 0xfffffe0000222000-0xfffffe0000248000         152K                               pte
[    0.060745] 0xfffffe0000248000-0xfffffe0000249000           4K     ro                 GLB NX pte
[    0.060747] 0xfffffe0000249000-0xfffffe000024a000           4K     RW                 GLB NX pte
[    0.060750] 0xfffffe000024a000-0xfffffe000024f000          20K     ro                 GLB NX pte
[    0.060752] 0xfffffe000024f000-0xfffffe0000250000           4K                               pte
[    0.060753] 0xfffffe0000250000-0xfffffe0000251000           4K     RW                 GLB NX pte
[    0.060756] 0xfffffe0000251000-0xfffffe0000252000           4K                               pte
[    0.060757] 0xfffffe0000252000-0xfffffe0000253000           4K     RW                 GLB NX pte
[    0.060759] 0xfffffe0000253000-0xfffffe0000254000           4K                               pte
[    0.060760] 0xfffffe0000254000-0xfffffe0000255000           4K     RW                 GLB NX pte
[    0.060763] 0xfffffe0000255000-0xfffffe0000256000           4K                               pte
[    0.060764] 0xfffffe0000256000-0xfffffe0000257000           4K     RW                 GLB NX pte
[    0.060767] 0xfffffe0000257000-0xfffffe000027d000         152K                               pte
[    0.060768] 0xfffffe000027d000-0xfffffe000027e000           4K     ro                 GLB NX pte
[    0.060770] 0xfffffe000027e000-0xfffffe000027f000           4K     RW                 GLB NX pte
[    0.060773] 0xfffffe000027f000-0xfffffe0000284000          20K     ro                 GLB NX pte
[    0.060775] 0xfffffe0000284000-0xfffffe0000285000           4K                               pte
[    0.060776] 0xfffffe0000285000-0xfffffe0000286000           4K     RW                 GLB NX pte
[    0.060778] 0xfffffe0000286000-0xfffffe0000287000           4K                               pte
[    0.060780] 0xfffffe0000287000-0xfffffe0000288000           4K     RW                 GLB NX pte
[    0.060782] 0xfffffe0000288000-0xfffffe0000289000           4K                               pte
[    0.060783] 0xfffffe0000289000-0xfffffe000028a000           4K     RW                 GLB NX pte
[    0.060786] 0xfffffe000028a000-0xfffffe000028b000           4K                               pte
[    0.060787] 0xfffffe000028b000-0xfffffe000028c000           4K     RW                 GLB NX pte
[    0.060789] 0xfffffe000028c000-0xfffffe00002b2000         152K                               pte
[    0.060791] 0xfffffe00002b2000-0xfffffe00002b3000           4K     ro                 GLB NX pte
[    0.060793] 0xfffffe00002b3000-0xfffffe00002b4000           4K     RW                 GLB NX pte
[    0.060795] 0xfffffe00002b4000-0xfffffe00002b9000          20K     ro                 GLB NX pte
[    0.060798] 0xfffffe00002b9000-0xfffffe00002ba000           4K                               pte
[    0.060799] 0xfffffe00002ba000-0xfffffe00002bb000           4K     RW                 GLB NX pte
[    0.060801] 0xfffffe00002bb000-0xfffffe00002bc000           4K                               pte
[    0.060803] 0xfffffe00002bc000-0xfffffe00002bd000           4K     RW                 GLB NX pte
[    0.060805] 0xfffffe00002bd000-0xfffffe00002be000           4K                               pte
[    0.060806] 0xfffffe00002be000-0xfffffe00002bf000           4K     RW                 GLB NX pte
[    0.060808] 0xfffffe00002bf000-0xfffffe00002c0000           4K                               pte
[    0.060810] 0xfffffe00002c0000-0xfffffe00002c1000           4K     RW                 GLB NX pte
[    0.060812] 0xfffffe00002c1000-0xfffffe00002e7000         152K                               pte
[    0.060814] 0xfffffe00002e7000-0xfffffe00002e8000           4K     ro                 GLB NX pte
[    0.060816] 0xfffffe00002e8000-0xfffffe00002e9000           4K     RW                 GLB NX pte
[    0.060818] 0xfffffe00002e9000-0xfffffe00002ee000          20K     ro                 GLB NX pte
[    0.060821] 0xfffffe00002ee000-0xfffffe00002ef000           4K                               pte
[    0.060822] 0xfffffe00002ef000-0xfffffe00002f0000           4K     RW                 GLB NX pte
[    0.060824] 0xfffffe00002f0000-0xfffffe00002f1000           4K                               pte
[    0.060825] 0xfffffe00002f1000-0xfffffe00002f2000           4K     RW                 GLB NX pte
[    0.060828] 0xfffffe00002f2000-0xfffffe00002f3000           4K                               pte
[    0.060829] 0xfffffe00002f3000-0xfffffe00002f4000           4K     RW                 GLB NX pte
[    0.060831] 0xfffffe00002f4000-0xfffffe00002f5000           4K                               pte
[    0.060832] 0xfffffe00002f5000-0xfffffe00002f6000           4K     RW                 GLB NX pte
[    0.060835] 0xfffffe00002f6000-0xfffffe000031c000         152K                               pte
[    0.060836] 0xfffffe000031c000-0xfffffe000031d000           4K     ro                 GLB NX pte
[    0.060839] 0xfffffe000031d000-0xfffffe000031e000           4K     RW                 GLB NX pte
[    0.060841] 0xfffffe000031e000-0xfffffe0000323000          20K     ro                 GLB NX pte
[    0.060844] 0xfffffe0000323000-0xfffffe0000324000           4K                               pte
[    0.060845] 0xfffffe0000324000-0xfffffe0000325000           4K     RW                 GLB NX pte
[    0.060847] 0xfffffe0000325000-0xfffffe0000326000           4K                               pte
[    0.060848] 0xfffffe0000326000-0xfffffe0000327000           4K     RW                 GLB NX pte
[    0.060851] 0xfffffe0000327000-0xfffffe0000328000           4K                               pte
[    0.060852] 0xfffffe0000328000-0xfffffe0000329000           4K     RW                 GLB NX pte
[    0.060854] 0xfffffe0000329000-0xfffffe000032a000           4K                               pte
[    0.060855] 0xfffffe000032a000-0xfffffe000032b000           4K     RW                 GLB NX pte
[    0.060858] 0xfffffe000032b000-0xfffffe0000351000         152K                               pte
[    0.060859] 0xfffffe0000351000-0xfffffe0000352000           4K     ro                 GLB NX pte
[    0.060862] 0xfffffe0000352000-0xfffffe0000353000           4K     RW                 GLB NX pte
[    0.060864] 0xfffffe0000353000-0xfffffe0000358000          20K     ro                 GLB NX pte
[    0.060867] 0xfffffe0000358000-0xfffffe0000359000           4K                               pte
[    0.060868] 0xfffffe0000359000-0xfffffe000035a000           4K     RW                 GLB NX pte
[    0.060870] 0xfffffe000035a000-0xfffffe000035b000           4K                               pte
[    0.060871] 0xfffffe000035b000-0xfffffe000035c000           4K     RW                 GLB NX pte
[    0.060874] 0xfffffe000035c000-0xfffffe000035d000           4K                               pte
[    0.060875] 0xfffffe000035d000-0xfffffe000035e000           4K     RW                 GLB NX pte
[    0.060877] 0xfffffe000035e000-0xfffffe000035f000           4K                               pte
[    0.060878] 0xfffffe000035f000-0xfffffe0000360000           4K     RW                 GLB NX pte
[    0.060881] 0xfffffe0000360000-0xfffffe0000386000         152K                               pte
[    0.060882] 0xfffffe0000386000-0xfffffe0000387000           4K     ro                 GLB NX pte
[    0.060885] 0xfffffe0000387000-0xfffffe0000388000           4K     RW                 GLB NX pte
[    0.060887] 0xfffffe0000388000-0xfffffe000038d000          20K     ro                 GLB NX pte
[    0.060890] 0xfffffe000038d000-0xfffffe000038e000           4K                               pte
[    0.060891] 0xfffffe000038e000-0xfffffe000038f000           4K     RW                 GLB NX pte
[    0.060893] 0xfffffe000038f000-0xfffffe0000390000           4K                               pte
[    0.060894] 0xfffffe0000390000-0xfffffe0000391000           4K     RW                 GLB NX pte
[    0.060897] 0xfffffe0000391000-0xfffffe0000392000           4K                               pte
[    0.060898] 0xfffffe0000392000-0xfffffe0000393000           4K     RW                 GLB NX pte
[    0.060900] 0xfffffe0000393000-0xfffffe0000394000           4K                               pte
[    0.060901] 0xfffffe0000394000-0xfffffe0000395000           4K     RW                 GLB NX pte
[    0.060904] 0xfffffe0000395000-0xfffffe00003bb000         152K                               pte
[    0.060905] 0xfffffe00003bb000-0xfffffe00003bc000           4K     ro                 GLB NX pte
[    0.060908] 0xfffffe00003bc000-0xfffffe00003bd000           4K     RW                 GLB NX pte
[    0.060910] 0xfffffe00003bd000-0xfffffe00003c2000          20K     ro                 GLB NX pte
[    0.060912] 0xfffffe00003c2000-0xfffffe00003c3000           4K                               pte
[    0.060914] 0xfffffe00003c3000-0xfffffe00003c4000           4K     RW                 GLB NX pte
[    0.060916] 0xfffffe00003c4000-0xfffffe00003c5000           4K                               pte
[    0.060917] 0xfffffe00003c5000-0xfffffe00003c6000           4K     RW                 GLB NX pte
[    0.060920] 0xfffffe00003c6000-0xfffffe00003c7000           4K                               pte
[    0.060921] 0xfffffe00003c7000-0xfffffe00003c8000           4K     RW                 GLB NX pte
[    0.060923] 0xfffffe00003c8000-0xfffffe00003c9000           4K                               pte
[    0.060924] 0xfffffe00003c9000-0xfffffe00003ca000           4K     RW                 GLB NX pte
[    0.060927] 0xfffffe00003ca000-0xfffffe00003f0000         152K                               pte
[    0.060928] 0xfffffe00003f0000-0xfffffe00003f1000           4K     ro                 GLB NX pte
[    0.060931] 0xfffffe00003f1000-0xfffffe00003f2000           4K     RW                 GLB NX pte
[    0.060933] 0xfffffe00003f2000-0xfffffe00003f7000          20K     ro                 GLB NX pte
[    0.060935] 0xfffffe00003f7000-0xfffffe00003f8000           4K                               pte
[    0.060937] 0xfffffe00003f8000-0xfffffe00003f9000           4K     RW                 GLB NX pte
[    0.060939] 0xfffffe00003f9000-0xfffffe00003fa000           4K                               pte
[    0.060940] 0xfffffe00003fa000-0xfffffe00003fb000           4K     RW                 GLB NX pte
[    0.060942] 0xfffffe00003fb000-0xfffffe00003fc000           4K                               pte
[    0.060944] 0xfffffe00003fc000-0xfffffe00003fd000           4K     RW                 GLB NX pte
[    0.060946] 0xfffffe00003fd000-0xfffffe00003fe000           4K                               pte
[    0.060947] 0xfffffe00003fe000-0xfffffe00003ff000           4K     RW                 GLB NX pte
[    0.060950] 0xfffffe00003ff000-0xfffffe0000425000         152K                               pte
[    0.060951] 0xfffffe0000425000-0xfffffe0000426000           4K     ro                 GLB NX pte
[    0.060954] 0xfffffe0000426000-0xfffffe0000427000           4K     RW                 GLB NX pte
[    0.060956] 0xfffffe0000427000-0xfffffe000042c000          20K     ro                 GLB NX pte
[    0.060958] 0xfffffe000042c000-0xfffffe000042d000           4K                               pte
[    0.060960] 0xfffffe000042d000-0xfffffe000042e000           4K     RW                 GLB NX pte
[    0.060962] 0xfffffe000042e000-0xfffffe000042f000           4K                               pte
[    0.060963] 0xfffffe000042f000-0xfffffe0000430000           4K     RW                 GLB NX pte
[    0.060966] 0xfffffe0000430000-0xfffffe0000431000           4K                               pte
[    0.060967] 0xfffffe0000431000-0xfffffe0000432000           4K     RW                 GLB NX pte
[    0.060969] 0xfffffe0000432000-0xfffffe0000433000           4K                               pte
[    0.060970] 0xfffffe0000433000-0xfffffe0000434000           4K     RW                 GLB NX pte
[    0.060973] 0xfffffe0000434000-0xfffffe000045a000         152K                               pte
[    0.060974] 0xfffffe000045a000-0xfffffe000045b000           4K     ro                 GLB NX pte
[    0.060977] 0xfffffe000045b000-0xfffffe000045c000           4K     RW                 GLB NX pte
[    0.060979] 0xfffffe000045c000-0xfffffe0000461000          20K     ro                 GLB NX pte
[    0.060981] 0xfffffe0000461000-0xfffffe0000462000           4K                               pte
[    0.060983] 0xfffffe0000462000-0xfffffe0000463000           4K     RW                 GLB NX pte
[    0.060985] 0xfffffe0000463000-0xfffffe0000464000           4K                               pte
[    0.060986] 0xfffffe0000464000-0xfffffe0000465000           4K     RW                 GLB NX pte
[    0.060988] 0xfffffe0000465000-0xfffffe0000466000           4K                               pte
[    0.060990] 0xfffffe0000466000-0xfffffe0000467000           4K     RW                 GLB NX pte
[    0.060992] 0xfffffe0000467000-0xfffffe0000468000           4K                               pte
[    0.060993] 0xfffffe0000468000-0xfffffe0000469000           4K     RW                 GLB NX pte
[    0.060996] 0xfffffe0000469000-0xfffffe000048f000         152K                               pte
[    0.060997] 0xfffffe000048f000-0xfffffe0000490000           4K     ro                 GLB NX pte
[    0.060999] 0xfffffe0000490000-0xfffffe0000491000           4K     RW                 GLB NX pte
[    0.061002] 0xfffffe0000491000-0xfffffe0000496000          20K     ro                 GLB NX pte
[    0.061004] 0xfffffe0000496000-0xfffffe0000497000           4K                               pte
[    0.061005] 0xfffffe0000497000-0xfffffe0000498000           4K     RW                 GLB NX pte
[    0.061008] 0xfffffe0000498000-0xfffffe0000499000           4K                               pte
[    0.061009] 0xfffffe0000499000-0xfffffe000049a000           4K     RW                 GLB NX pte
[    0.061011] 0xfffffe000049a000-0xfffffe000049b000           4K                               pte
[    0.061012] 0xfffffe000049b000-0xfffffe000049c000           4K     RW                 GLB NX pte
[    0.061015] 0xfffffe000049c000-0xfffffe000049d000           4K                               pte
[    0.061016] 0xfffffe000049d000-0xfffffe000049e000           4K     RW                 GLB NX pte
[    0.061019] 0xfffffe000049e000-0xfffffe00004c4000         152K                               pte
[    0.061020] 0xfffffe00004c4000-0xfffffe00004c5000           4K     ro                 GLB NX pte
[    0.061022] 0xfffffe00004c5000-0xfffffe00004c6000           4K     RW                 GLB NX pte
[    0.061026] 0xfffffe00004c6000-0xfffffe00004cb000          20K     ro                 GLB NX pte
[    0.061029] 0xfffffe00004cb000-0xfffffe00004cc000           4K                               pte
[    0.061030] 0xfffffe00004cc000-0xfffffe00004cd000           4K     RW                 GLB NX pte
[    0.061032] 0xfffffe00004cd000-0xfffffe00004ce000           4K                               pte
[    0.061034] 0xfffffe00004ce000-0xfffffe00004cf000           4K     RW                 GLB NX pte
[    0.061036] 0xfffffe00004cf000-0xfffffe00004d0000           4K                               pte
[    0.061037] 0xfffffe00004d0000-0xfffffe00004d1000           4K     RW                 GLB NX pte
[    0.061039] 0xfffffe00004d1000-0xfffffe00004d2000           4K                               pte
[    0.061041] 0xfffffe00004d2000-0xfffffe00004d3000           4K     RW                 GLB NX pte
[    0.061043] 0xfffffe00004d3000-0xfffffe00004f9000         152K                               pte
[    0.061045] 0xfffffe00004f9000-0xfffffe00004fa000           4K     ro                 GLB NX pte
[    0.061047] 0xfffffe00004fa000-0xfffffe00004fb000           4K     RW                 GLB NX pte
[    0.061049] 0xfffffe00004fb000-0xfffffe0000500000          20K     ro                 GLB NX pte
[    0.061052] 0xfffffe0000500000-0xfffffe0000501000           4K                               pte
[    0.061053] 0xfffffe0000501000-0xfffffe0000502000           4K     RW                 GLB NX pte
[    0.061055] 0xfffffe0000502000-0xfffffe0000503000           4K                               pte
[    0.061056] 0xfffffe0000503000-0xfffffe0000504000           4K     RW                 GLB NX pte
[    0.061059] 0xfffffe0000504000-0xfffffe0000505000           4K                               pte
[    0.061060] 0xfffffe0000505000-0xfffffe0000506000           4K     RW                 GLB NX pte
[    0.061062] 0xfffffe0000506000-0xfffffe0000507000           4K                               pte
[    0.061064] 0xfffffe0000507000-0xfffffe0000508000           4K     RW                 GLB NX pte
[    0.061066] 0xfffffe0000508000-0xfffffe000052e000         152K                               pte
[    0.061067] 0xfffffe000052e000-0xfffffe000052f000           4K     ro                 GLB NX pte
[    0.061070] 0xfffffe000052f000-0xfffffe0000530000           4K     RW                 GLB NX pte
[    0.061072] 0xfffffe0000530000-0xfffffe0000535000          20K     ro                 GLB NX pte
[    0.061075] 0xfffffe0000535000-0xfffffe0000536000           4K                               pte
[    0.061076] 0xfffffe0000536000-0xfffffe0000537000           4K     RW                 GLB NX pte
[    0.061078] 0xfffffe0000537000-0xfffffe0000538000           4K                               pte
[    0.061079] 0xfffffe0000538000-0xfffffe0000539000           4K     RW                 GLB NX pte
[    0.061082] 0xfffffe0000539000-0xfffffe000053a000           4K                               pte
[    0.061083] 0xfffffe000053a000-0xfffffe000053b000           4K     RW                 GLB NX pte
[    0.061085] 0xfffffe000053b000-0xfffffe000053c000           4K                               pte
[    0.061086] 0xfffffe000053c000-0xfffffe000053d000           4K     RW                 GLB NX pte
[    0.061089] 0xfffffe000053d000-0xfffffe0000563000         152K                               pte
[    0.061090] 0xfffffe0000563000-0xfffffe0000564000           4K     ro                 GLB NX pte
[    0.061093] 0xfffffe0000564000-0xfffffe0000565000           4K     RW                 GLB NX pte
[    0.061095] 0xfffffe0000565000-0xfffffe000056a000          20K     ro                 GLB NX pte
[    0.061098] 0xfffffe000056a000-0xfffffe000056b000           4K                               pte
[    0.061099] 0xfffffe000056b000-0xfffffe000056c000           4K     RW                 GLB NX pte
[    0.061101] 0xfffffe000056c000-0xfffffe000056d000           4K                               pte
[    0.061102] 0xfffffe000056d000-0xfffffe000056e000           4K     RW                 GLB NX pte
[    0.061105] 0xfffffe000056e000-0xfffffe000056f000           4K                               pte
[    0.061106] 0xfffffe000056f000-0xfffffe0000570000           4K     RW                 GLB NX pte
[    0.061108] 0xfffffe0000570000-0xfffffe0000571000           4K                               pte
[    0.061109] 0xfffffe0000571000-0xfffffe0000572000           4K     RW                 GLB NX pte
[    0.061112] 0xfffffe0000572000-0xfffffe0000598000         152K                               pte
[    0.061113] 0xfffffe0000598000-0xfffffe0000599000           4K     ro                 GLB NX pte
[    0.061116] 0xfffffe0000599000-0xfffffe000059a000           4K     RW                 GLB NX pte
[    0.061118] 0xfffffe000059a000-0xfffffe000059f000          20K     ro                 GLB NX pte
[    0.061121] 0xfffffe000059f000-0xfffffe00005a0000           4K                               pte
[    0.061122] 0xfffffe00005a0000-0xfffffe00005a1000           4K     RW                 GLB NX pte
[    0.061124] 0xfffffe00005a1000-0xfffffe00005a2000           4K                               pte
[    0.061125] 0xfffffe00005a2000-0xfffffe00005a3000           4K     RW                 GLB NX pte
[    0.061128] 0xfffffe00005a3000-0xfffffe00005a4000           4K                               pte
[    0.061129] 0xfffffe00005a4000-0xfffffe00005a5000           4K     RW                 GLB NX pte
[    0.061131] 0xfffffe00005a5000-0xfffffe00005a6000           4K                               pte
[    0.061132] 0xfffffe00005a6000-0xfffffe00005a7000           4K     RW                 GLB NX pte
[    0.061135] 0xfffffe00005a7000-0xfffffe00005cd000         152K                               pte
[    0.061136] 0xfffffe00005cd000-0xfffffe00005ce000           4K     ro                 GLB NX pte
[    0.061139] 0xfffffe00005ce000-0xfffffe00005cf000           4K     RW                 GLB NX pte
[    0.061141] 0xfffffe00005cf000-0xfffffe00005d4000          20K     ro                 GLB NX pte
[    0.061144] 0xfffffe00005d4000-0xfffffe00005d5000           4K                               pte
[    0.061145] 0xfffffe00005d5000-0xfffffe00005d6000           4K     RW                 GLB NX pte
[    0.061147] 0xfffffe00005d6000-0xfffffe00005d7000           4K                               pte
[    0.061148] 0xfffffe00005d7000-0xfffffe00005d8000           4K     RW                 GLB NX pte
[    0.061151] 0xfffffe00005d8000-0xfffffe00005d9000           4K                               pte
[    0.061152] 0xfffffe00005d9000-0xfffffe00005da000           4K     RW                 GLB NX pte
[    0.061154] 0xfffffe00005da000-0xfffffe00005db000           4K                               pte
[    0.061155] 0xfffffe00005db000-0xfffffe00005dc000           4K     RW                 GLB NX pte
[    0.061158] 0xfffffe00005dc000-0xfffffe0000602000         152K                               pte
[    0.061159] 0xfffffe0000602000-0xfffffe0000603000           4K     ro                 GLB NX pte
[    0.061162] 0xfffffe0000603000-0xfffffe0000604000           4K     RW                 GLB NX pte
[    0.061164] 0xfffffe0000604000-0xfffffe0000609000          20K     ro                 GLB NX pte
[    0.061167] 0xfffffe0000609000-0xfffffe000060a000           4K                               pte
[    0.061168] 0xfffffe000060a000-0xfffffe000060b000           4K     RW                 GLB NX pte
[    0.061170] 0xfffffe000060b000-0xfffffe000060c000           4K                               pte
[    0.061171] 0xfffffe000060c000-0xfffffe000060d000           4K     RW                 GLB NX pte
[    0.061174] 0xfffffe000060d000-0xfffffe000060e000           4K                               pte
[    0.061175] 0xfffffe000060e000-0xfffffe000060f000           4K     RW                 GLB NX pte
[    0.061177] 0xfffffe000060f000-0xfffffe0000610000           4K                               pte
[    0.061178] 0xfffffe0000610000-0xfffffe0000611000           4K     RW                 GLB NX pte
[    0.061181] 0xfffffe0000611000-0xfffffe0000637000         152K                               pte
[    0.061182] 0xfffffe0000637000-0xfffffe0000638000           4K     ro                 GLB NX pte
[    0.061185] 0xfffffe0000638000-0xfffffe0000639000           4K     RW                 GLB NX pte
[    0.061187] 0xfffffe0000639000-0xfffffe000063e000          20K     ro                 GLB NX pte
[    0.061190] 0xfffffe000063e000-0xfffffe000063f000           4K                               pte
[    0.061191] 0xfffffe000063f000-0xfffffe0000640000           4K     RW                 GLB NX pte
[    0.061193] 0xfffffe0000640000-0xfffffe0000641000           4K                               pte
[    0.061194] 0xfffffe0000641000-0xfffffe0000642000           4K     RW                 GLB NX pte
[    0.061197] 0xfffffe0000642000-0xfffffe0000643000           4K                               pte
[    0.061198] 0xfffffe0000643000-0xfffffe0000644000           4K     RW                 GLB NX pte
[    0.061200] 0xfffffe0000644000-0xfffffe0000645000           4K                               pte
[    0.061201] 0xfffffe0000645000-0xfffffe0000646000           4K     RW                 GLB NX pte
[    0.061204] 0xfffffe0000646000-0xfffffe000066c000         152K                               pte
[    0.061205] 0xfffffe000066c000-0xfffffe000066d000           4K     ro                 GLB NX pte
[    0.061208] 0xfffffe000066d000-0xfffffe000066e000           4K     RW                 GLB NX pte
[    0.061210] 0xfffffe000066e000-0xfffffe0000673000          20K     ro                 GLB NX pte
[    0.061213] 0xfffffe0000673000-0xfffffe0000674000           4K                               pte
[    0.061214] 0xfffffe0000674000-0xfffffe0000675000           4K     RW                 GLB NX pte
[    0.061216] 0xfffffe0000675000-0xfffffe0000676000           4K                               pte
[    0.061217] 0xfffffe0000676000-0xfffffe0000677000           4K     RW                 GLB NX pte
[    0.061220] 0xfffffe0000677000-0xfffffe0000678000           4K                               pte
[    0.061221] 0xfffffe0000678000-0xfffffe0000679000           4K     RW                 GLB NX pte
[    0.061223] 0xfffffe0000679000-0xfffffe000067a000           4K                               pte
[    0.061224] 0xfffffe000067a000-0xfffffe000067b000           4K     RW                 GLB NX pte
[    0.061231] 0xfffffe000067b000-0xfffffe0000800000        1556K                               pte
[    0.061236] 0xfffffe0000800000-0xfffffe0040000000        1016M                               pmd
[    0.061241] 0xfffffe0040000000-0xfffffe8000000000         511G                               pud
[    0.061242] 0xfffffe8000000000-0xffffff0000000000         512G                               pgd
[    0.061243] ---[ ESPfix Area ]---
[    0.061247] 0xffffff0000000000-0xffffff7a00000000         488G                               pud
[    0.061249] 0xffffff7a00000000-0xffffff7a00001000           4K                               pte
[    0.061250] 0xffffff7a00001000-0xffffff7a00002000           4K     ro                 GLB NX pte
[    0.061252] 0xffffff7a00002000-0xffffff7a00011000          60K                               pte
[    0.061254] 0xffffff7a00011000-0xffffff7a00012000           4K     ro                 GLB NX pte
[    0.061256] 0xffffff7a00012000-0xffffff7a00021000          60K                               pte
[    0.061257] 0xffffff7a00021000-0xffffff7a00022000           4K     ro                 GLB NX pte
[    0.061260] 0xffffff7a00022000-0xffffff7a00031000          60K                               pte
[    0.061261] 0xffffff7a00031000-0xffffff7a00032000           4K     ro                 GLB NX pte
[    0.061264] 0xffffff7a00032000-0xffffff7a00041000          60K                               pte
[    0.061265] 0xffffff7a00041000-0xffffff7a00042000           4K     ro                 GLB NX pte
[    0.061267] 0xffffff7a00042000-0xffffff7a00051000          60K                               pte
[    0.061268] 0xffffff7a00051000-0xffffff7a00052000           4K     ro                 GLB NX pte
[    0.061271] 0xffffff7a00052000-0xffffff7a00061000          60K                               pte
[    0.061272] 0xffffff7a00061000-0xffffff7a00062000           4K     ro                 GLB NX pte
[    0.061275] 0xffffff7a00062000-0xffffff7a00071000          60K                               pte
[    0.071756] ... 131059 entries skipped ... 
[    0.071757] ---[ EFI Runtime Services ]---
[    0.071758] 0xffffffef00000000-0xfffffffec0000000          63G                               pud
[    0.071762] 0xfffffffec0000000-0xfffffffef2200000         802M                               pmd
[    0.071763] 0xfffffffef2200000-0xfffffffef2208000          32K     RW                     x  pte
[    0.071766] 0xfffffffef2208000-0xfffffffef223e000         216K                               pte
[    0.071767] 0xfffffffef223e000-0xfffffffef2240000           8K                               pte
[    0.071769] 0xfffffffef2240000-0xfffffffef22a0000         384K     RW                     x  pte
[    0.071775] 0xfffffffef22a0000-0xfffffffef2400000        1408K                               pte
[    0.071777] 0xfffffffef2400000-0xfffffffef2420000         128K                               pte
[    0.071778] 0xfffffffef2420000-0xfffffffef2449000         164K                               pte
[    0.071780] 0xfffffffef2449000-0xfffffffef246d000         144K                               pte
[    0.071782] 0xfffffffef246d000-0xfffffffef24e6000         484K                               pte
[    0.071784] 0xfffffffef24e6000-0xfffffffef2500000         104K                               pte
[    0.071785] 0xfffffffef2500000-0xfffffffef250b000          44K                               pte
[    0.071786] 0xfffffffef250b000-0xfffffffef2512000          28K                               pte
[    0.071788] 0xfffffffef2512000-0xfffffffef2529000          92K                               pte
[    0.071789] 0xfffffffef2529000-0xfffffffef252d000          16K                               pte
[    0.071790] 0xfffffffef252d000-0xfffffffef2540000          76K                               pte
[    0.071791] 0xfffffffef2540000-0xfffffffef2541000           4K                               pte
[    0.071793] 0xfffffffef2541000-0xfffffffef255f000         120K                               pte
[    0.071794] 0xfffffffef255f000-0xfffffffef256a000          44K                               pte
[    0.071795] 0xfffffffef256a000-0xfffffffef2571000          28K                               pte
[    0.071796] 0xfffffffef2571000-0xfffffffef2572000           4K                               pte
[    0.071800] 0xfffffffef2572000-0xfffffffef4679000       33820K                               pte
[    0.071807] 0xfffffffef4679000-0xfffffffef486d000        2000K                               pte
[    0.071810] 0xfffffffef486d000-0xfffffffef4913000         664K                               pte
[    0.071811] 0xfffffffef4913000-0xfffffffef4917000          16K                               pte
[    0.071812] 0xfffffffef4917000-0xfffffffef4923000          48K                               pte
[    0.071813] 0xfffffffef4923000-0xfffffffef4926000          12K                               pte
[    0.071815] 0xfffffffef4926000-0xfffffffef4934000          56K                               pte
[    0.071816] 0xfffffffef4934000-0xfffffffef4935000           4K                               pte
[    0.071817] 0xfffffffef4935000-0xfffffffef4937000           8K     RW                     NX pte
[    0.071819] 0xfffffffef4937000-0xfffffffef4944000          52K                               pte
[    0.071821] 0xfffffffef4944000-0xfffffffef494c000          32K                               pte
[    0.071822] 0xfffffffef494c000-0xfffffffef4966000         104K                               pte
[    0.071823] 0xfffffffef4966000-0xfffffffef4969000          12K                               pte
[    0.071825] 0xfffffffef4969000-0xfffffffef49a3000         232K                               pte
[    0.071826] 0xfffffffef49a3000-0xfffffffef49a5000           8K                               pte
[    0.071828] 0xfffffffef49a5000-0xfffffffef49d4000         188K                               pte
[    0.071829] 0xfffffffef49d4000-0xfffffffef49d6000           8K                               pte
[    0.071830] 0xfffffffef49d6000-0xfffffffef49ef000         100K                               pte
[    0.071831] 0xfffffffef49ef000-0xfffffffef49f2000          12K                               pte
[    0.071833] 0xfffffffef49f2000-0xfffffffef49f7000          20K                               pte
[    0.071834] 0xfffffffef49f7000-0xfffffffef49fc000          20K                               pte
[    0.071835] 0xfffffffef49fc000-0xfffffffef4a16000         104K                               pte
[    0.071836] 0xfffffffef4a16000-0xfffffffef4a1f000          36K                               pte
[    0.071838] 0xfffffffef4a1f000-0xfffffffef4a32000          76K                               pte
[    0.071839] 0xfffffffef4a32000-0xfffffffef4a35000          12K                               pte
[    0.071840] 0xfffffffef4a35000-0xfffffffef4a42000          52K                               pte
[    0.071841] 0xfffffffef4a42000-0xfffffffef4a48000          24K                               pte
[    0.071843] 0xfffffffef4a48000-0xfffffffef4a4d000          20K                               pte
[    0.071844] 0xfffffffef4a4d000-0xfffffffef4a4f000           8K                               pte
[    0.071845] 0xfffffffef4a4f000-0xfffffffef4a51000           8K                               pte
[    0.071846] 0xfffffffef4a51000-0xfffffffef4a56000          20K                               pte
[    0.071847] 0xfffffffef4a56000-0xfffffffef4a58000           8K                               pte
[    0.071848] 0xfffffffef4a58000-0xfffffffef4a5a000           8K                               pte
[    0.071850] 0xfffffffef4a5a000-0xfffffffef4a74000         104K                               pte
[    0.071851] 0xfffffffef4a74000-0xfffffffef4a7a000          24K                               pte
[    0.071852] 0xfffffffef4a7a000-0xfffffffef4a83000          36K                               pte
[    0.071853] 0xfffffffef4a83000-0xfffffffef4a86000          12K                               pte
[    0.071855] 0xfffffffef4a86000-0xfffffffef4a89000          12K                               pte
[    0.071856] 0xfffffffef4a89000-0xfffffffef4a8c000          12K                               pte
[    0.071857] 0xfffffffef4a8c000-0xfffffffef4a8d000           4K                               pte
[    0.071858] 0xfffffffef4a8d000-0xfffffffef4a8e000           4K                               pte
[    0.071859] 0xfffffffef4a8e000-0xfffffffef4a8f000           4K                               pte
[    0.071865] 0xfffffffef4a8f000-0xfffffffef4c6b000        1904K                               pte
[    0.071867] 0xfffffffef4c6b000-0xfffffffef4c77000          48K                               pte
[    0.071868] 0xfffffffef4c77000-0xfffffffef4c8c000          84K                               pte
[    0.071869] 0xfffffffef4c8c000-0xfffffffef4c94000          32K                               pte
[    0.071870] 0xfffffffef4c94000-0xfffffffef4c95000           4K                               pte
[    0.071872] 0xfffffffef4c95000-0xfffffffef4cad000          96K                               pte
[    0.071873] 0xfffffffef4cad000-0xfffffffef4cb3000          24K                               pte
[    0.071874] 0xfffffffef4cb3000-0xfffffffef4cb4000           4K                               pte
[    0.071875] 0xfffffffef4cb4000-0xfffffffef4cb5000           4K                               pte
[    0.071876] 0xfffffffef4cb5000-0xfffffffef4cb7000           8K                               pte
[    0.071877] 0xfffffffef4cb7000-0xfffffffef4cb8000           4K                               pte
[    0.071878] 0xfffffffef4cb8000-0xfffffffef4cbb000          12K                               pte
[    0.071880] 0xfffffffef4cbb000-0xfffffffef4cbe000          12K                               pte
[    0.071881] 0xfffffffef4cbe000-0xfffffffef4cca000          48K                               pte
[    0.071882] 0xfffffffef4cca000-0xfffffffef4ccb000           4K                               pte
[    0.071883] 0xfffffffef4ccb000-0xfffffffef4cd0000          20K                               pte
[    0.071884] 0xfffffffef4cd0000-0xfffffffef4cd3000          12K                               pte
[    0.071886] 0xfffffffef4cd3000-0xfffffffef4ce8000          84K                               pte
[    0.071887] 0xfffffffef4ce8000-0xfffffffef4ce9000           4K                               pte
[    0.071888] 0xfffffffef4ce9000-0xfffffffef4cea000           4K                               pte
[    0.071889] 0xfffffffef4cea000-0xfffffffef4cf4000          40K                               pte
[    0.071890] 0xfffffffef4cf4000-0xfffffffef4cf5000           4K                               pte
[    0.071892] 0xfffffffef4cf5000-0xfffffffef4cfc000          28K                               pte
[    0.071893] 0xfffffffef4cfc000-0xfffffffef4d01000          20K                               pte
[    0.071894] 0xfffffffef4d01000-0xfffffffef4d02000           4K                               pte
[    0.071895] 0xfffffffef4d02000-0xfffffffef4d06000          16K                               pte
[    0.071896] 0xfffffffef4d06000-0xfffffffef4d0c000          24K                               pte
[    0.071897] 0xfffffffef4d0c000-0xfffffffef4d1d000          68K                               pte
[    0.071899] 0xfffffffef4d1d000-0xfffffffef4d1e000           4K                               pte
[    0.071900] 0xfffffffef4d1e000-0xfffffffef4d1f000           4K                               pte
[    0.071901] 0xfffffffef4d1f000-0xfffffffef4d26000          28K                               pte
[    0.071902] 0xfffffffef4d26000-0xfffffffef4d3f000         100K                               pte
[    0.071904] 0xfffffffef4d3f000-0xfffffffef4d47000          32K                               pte
[    0.071905] 0xfffffffef4d47000-0xfffffffef4d50000          36K                               pte
[    0.071906] 0xfffffffef4d50000-0xfffffffef4d7f000         188K                               pte
[    0.071907] 0xfffffffef4d7f000-0xfffffffef4d80000           4K                               pte
[    0.071909] 0xfffffffef4d80000-0xfffffffef4d81000           4K                               pte
[    0.071910] 0xfffffffef4d81000-0xfffffffef4d82000           4K                               pte
[    0.071911] 0xfffffffef4d82000-0xfffffffef4d83000           4K                               pte
[    0.071913] 0xfffffffef4d83000-0xfffffffef4dd9000         344K                               pte
[    0.071914] 0xfffffffef4dd9000-0xfffffffef4dda000           4K     RW                     NX pte
[    0.071916] 0xfffffffef4dda000-0xfffffffef4ddc000           8K                               pte
[    0.071918] 0xfffffffef4ddc000-0xfffffffef4dde000           8K                               pte
[    0.071919] 0xfffffffef4dde000-0xfffffffef4ddf000           4K                               pte
[    0.071920] 0xfffffffef4ddf000-0xfffffffef4deb000          48K                               pte
[    0.071921] 0xfffffffef4deb000-0xfffffffef4df6000          44K                               pte
[    0.071923] 0xfffffffef4df6000-0xfffffffef4e3e000         288K                               pte
[    0.071924] 0xfffffffef4e3e000-0xfffffffef4e44000          24K                               pte
[    0.071926] 0xfffffffef4e44000-0xfffffffef4e4f000          44K                               pte
[    0.071927] 0xfffffffef4e4f000-0xfffffffef4e51000           8K                               pte
[    0.071928] 0xfffffffef4e51000-0xfffffffef4e52000           4K                               pte
[    0.071929] 0xfffffffef4e52000-0xfffffffef4e5a000          32K                               pte
[    0.071930] 0xfffffffef4e5a000-0xfffffffef4e61000          28K                               pte
[    0.071931] 0xfffffffef4e61000-0xfffffffef4e64000          12K                               pte
[    0.071933] 0xfffffffef4e64000-0xfffffffef4e75000          68K                               pte
[    0.071934] 0xfffffffef4e75000-0xfffffffef4e78000          12K                               pte
[    0.071935] 0xfffffffef4e78000-0xfffffffef4ea5000         180K                               pte
[    0.071937] 0xfffffffef4ea5000-0xfffffffef4eae000          36K                               pte
[    0.071938] 0xfffffffef4eae000-0xfffffffef4eb3000          20K                               pte
[    0.071939] 0xfffffffef4eb3000-0xfffffffef4eb5000           8K                               pte
[    0.071940] 0xfffffffef4eb5000-0xfffffffef4ebd000          32K                               pte
[    0.071941] 0xfffffffef4ebd000-0xfffffffef4ebe000           4K                               pte
[    0.071942] 0xfffffffef4ebe000-0xfffffffef4ec0000           8K                               pte
[    0.071944] 0xfffffffef4ec0000-0xfffffffef4ec4000          16K                               pte
[    0.071945] 0xfffffffef4ec4000-0xfffffffef4ed4000          64K                               pte
[    0.071946] 0xfffffffef4ed4000-0xfffffffef4ed5000           4K                               pte
[    0.071947] 0xfffffffef4ed5000-0xfffffffef4ed6000           4K                               pte
[    0.071948] 0xfffffffef4ed6000-0xfffffffef4ed7000           4K                               pte
[    0.071950] 0xfffffffef4ed7000-0xfffffffef4ee3000          48K                               pte
[    0.071951] 0xfffffffef4ee3000-0xfffffffef4ee6000          12K                               pte
[    0.071952] 0xfffffffef4ee6000-0xfffffffef4ee7000           4K                               pte
[    0.071953] 0xfffffffef4ee7000-0xfffffffef4eea000          12K                               pte
[    0.071954] 0xfffffffef4eea000-0xfffffffef4eec000           8K                               pte
[    0.071955] 0xfffffffef4eec000-0xfffffffef4eed000           4K                               pte
[    0.071956] 0xfffffffef4eed000-0xfffffffef4eee000           4K                               pte
[    0.071957] 0xfffffffef4eee000-0xfffffffef4eef000           4K                               pte
[    0.071959] 0xfffffffef4eef000-0xfffffffef4ef0000           4K                               pte
[    0.071960] 0xfffffffef4ef0000-0xfffffffef4ef2000           8K                               pte
[    0.071961] 0xfffffffef4ef2000-0xfffffffef4ef3000           4K                               pte
[    0.071962] 0xfffffffef4ef3000-0xfffffffef4ef6000          12K                               pte
[    0.071963] 0xfffffffef4ef6000-0xfffffffef4f07000          68K                               pte
[    0.071965] 0xfffffffef4f07000-0xfffffffef4f0c000          20K                               pte
[    0.071966] 0xfffffffef4f0c000-0xfffffffef4f0e000           8K                               pte
[    0.071967] 0xfffffffef4f0e000-0xfffffffef4f10000           8K                               pte
[    0.071968] 0xfffffffef4f10000-0xfffffffef4f15000          20K                               pte
[    0.071969] 0xfffffffef4f15000-0xfffffffef4f17000           8K                               pte
[    0.071970] 0xfffffffef4f17000-0xfffffffef4f18000           4K                               pte
[    0.071971] 0xfffffffef4f18000-0xfffffffef4f1a000           8K                               pte
[    0.071973] 0xfffffffef4f1a000-0xfffffffef4f1d000          12K                               pte
[    0.071974] 0xfffffffef4f1d000-0xfffffffef4f21000          16K                               pte
[    0.071975] 0xfffffffef4f21000-0xfffffffef4f26000          20K                               pte
[    0.071976] 0xfffffffef4f26000-0xfffffffef4f29000          12K                               pte
[    0.071977] 0xfffffffef4f29000-0xfffffffef4f36000          52K                               pte
[    0.071978] 0xfffffffef4f36000-0xfffffffef4f37000           4K                               pte
[    0.071980] 0xfffffffef4f37000-0xfffffffef4f38000           4K                               pte
[    0.071981] 0xfffffffef4f38000-0xfffffffef4f39000           4K                               pte
[    0.071982] 0xfffffffef4f39000-0xfffffffef4f3f000          24K                               pte
[    0.071983] 0xfffffffef4f3f000-0xfffffffef4f41000           8K                               pte
[    0.071984] 0xfffffffef4f41000-0xfffffffef4f42000           4K                               pte
[    0.071985] 0xfffffffef4f42000-0xfffffffef4f43000           4K                               pte
[    0.071986] 0xfffffffef4f43000-0xfffffffef4f49000          24K                               pte
[    0.071988] 0xfffffffef4f49000-0xfffffffef4f4b000           8K                               pte
[    0.071989] 0xfffffffef4f4b000-0xfffffffef4f4c000           4K                               pte
[    0.071990] 0xfffffffef4f4c000-0xfffffffef4f4d000           4K                               pte
[    0.071991] 0xfffffffef4f4d000-0xfffffffef4f5a000          52K                               pte
[    0.071992] 0xfffffffef4f5a000-0xfffffffef4f5b000           4K                               pte
[    0.071993] 0xfffffffef4f5b000-0xfffffffef4f60000          20K                               pte
[    0.071995] 0xfffffffef4f60000-0xfffffffef4f62000           8K                               pte
[    0.071996] 0xfffffffef4f62000-0xfffffffef4f63000           4K                               pte
[    0.071997] 0xfffffffef4f63000-0xfffffffef4f65000           8K                               pte
[    0.071998] 0xfffffffef4f65000-0xfffffffef4f73000          56K                               pte
[    0.071999] 0xfffffffef4f73000-0xfffffffef4f75000           8K                               pte
[    0.072000] 0xfffffffef4f75000-0xfffffffef4f79000          16K                               pte
[    0.072002] 0xfffffffef4f79000-0xfffffffef4f9a000         132K                               pte
[    0.072003] 0xfffffffef4f9a000-0xfffffffef4f9c000           8K                               pte
[    0.072004] 0xfffffffef4f9c000-0xfffffffef4f9e000           8K                               pte
[    0.072005] 0xfffffffef4f9e000-0xfffffffef4fa0000           8K                               pte
[    0.072007] 0xfffffffef4fa0000-0xfffffffef4fb4000          80K                               pte
[    0.072008] 0xfffffffef4fb4000-0xfffffffef4fc4000          64K                               pte
[    0.072009] 0xfffffffef4fc4000-0xfffffffef4fcd000          36K                               pte
[    0.072010] 0xfffffffef4fcd000-0xfffffffef4fce000           4K                               pte
[    0.072011] 0xfffffffef4fce000-0xfffffffef4fcf000           4K                               pte
[    0.072013] 0xfffffffef4fcf000-0xfffffffef4fd1000           8K                               pte
[    0.072014] 0xfffffffef4fd1000-0xfffffffef4fd4000          12K                               pte
[    0.072015] 0xfffffffef4fd4000-0xfffffffef4fd6000           8K                               pte
[    0.072016] 0xfffffffef4fd6000-0xfffffffef4fd7000           4K                               pte
[    0.072017] 0xfffffffef4fd7000-0xfffffffef4fd8000           4K                               pte
[    0.072018] 0xfffffffef4fd8000-0xfffffffef4fd9000           4K                               pte
[    0.072019] 0xfffffffef4fd9000-0xfffffffef4fe8000          60K                               pte
[    0.072021] 0xfffffffef4fe8000-0xfffffffef4fea000           8K                               pte
[    0.072022] 0xfffffffef4fea000-0xfffffffef4feb000           4K                               pte
[    0.072023] 0xfffffffef4feb000-0xfffffffef4fed000           8K                               pte
[    0.072024] 0xfffffffef4fed000-0xfffffffef4fee000           4K                               pte
[    0.072026] 0xfffffffef4fee000-0xfffffffef4fef000           4K                               pte
[    0.072027] 0xfffffffef4fef000-0xfffffffef4ff6000          28K                               pte
[    0.072028] 0xfffffffef4ff6000-0xfffffffef4ff7000           4K                               pte
[    0.072030] 0xfffffffef4ff7000-0xfffffffef4ffb000          16K                               pte
[    0.072031] 0xfffffffef4ffb000-0xfffffffef4ffe000          12K                               pte
[    0.072032] 0xfffffffef4ffe000-0xfffffffef5001000          12K                               pte
[    0.072033] 0xfffffffef5001000-0xfffffffef5002000           4K                               pte
[    0.072034] 0xfffffffef5002000-0xfffffffef5004000           8K                               pte
[    0.072035] 0xfffffffef5004000-0xfffffffef5009000          20K                               pte
[    0.072037] 0xfffffffef5009000-0xfffffffef500c000          12K                               pte
[    0.072038] 0xfffffffef500c000-0xfffffffef500f000          12K                               pte
[    0.072039] 0xfffffffef500f000-0xfffffffef5012000          12K                               pte
[    0.072040] 0xfffffffef5012000-0xfffffffef5013000           4K                               pte
[    0.072042] 0xfffffffef5013000-0xfffffffef5035000         136K                               pte
[    0.072043] 0xfffffffef5035000-0xfffffffef5036000           4K                               pte
[    0.072044] 0xfffffffef5036000-0xfffffffef5037000           4K                               pte
[    0.072045] 0xfffffffef5037000-0xfffffffef5038000           4K                               pte
[    0.072046] 0xfffffffef5038000-0xfffffffef5043000          44K                               pte
[    0.072047] 0xfffffffef5043000-0xfffffffef5044000           4K                               pte
[    0.072048] 0xfffffffef5044000-0xfffffffef5047000          12K                               pte
[    0.072050] 0xfffffffef5047000-0xfffffffef5048000           4K                               pte
[    0.072051] 0xfffffffef5048000-0xfffffffef5049000           4K                               pte
[    0.072052] 0xfffffffef5049000-0xfffffffef504a000           4K                               pte
[    0.072053] 0xfffffffef504a000-0xfffffffef504d000          12K                               pte
[    0.072060] 0xfffffffef504d000-0xfffffffef544d000           4M                               pte
[    0.072061] 0xfffffffef544d000-0xfffffffef546c000         124K                               pte
[    0.072062] 0xfffffffef546c000-0xfffffffef546d000           4K                               pte
[    0.072063] 0xfffffffef546d000-0xfffffffef546e000           4K                               pte
[    0.072064] 0xfffffffef546e000-0xfffffffef546f000           4K                               pte
[    0.072066] 0xfffffffef546f000-0xfffffffef5470000           4K                               pte
[    0.072067] 0xfffffffef5470000-0xfffffffef5471000           4K                               pte
[    0.072068] 0xfffffffef5471000-0xfffffffef5473000           8K                               pte
[    0.072069] 0xfffffffef5473000-0xfffffffef5474000           4K                               pte
[    0.072070] 0xfffffffef5474000-0xfffffffef5478000          16K                               pte
[    0.072071] 0xfffffffef5478000-0xfffffffef547c000          16K                               pte
[    0.072072] 0xfffffffef547c000-0xfffffffef547d000           4K                               pte
[    0.072074] 0xfffffffef547d000-0xfffffffef547e000           4K                               pte
[    0.072075] 0xfffffffef547e000-0xfffffffef547f000           4K                               pte
[    0.072076] 0xfffffffef547f000-0xfffffffef5480000           4K                               pte
[    0.072077] 0xfffffffef5480000-0xfffffffef5485000          20K                               pte
[    0.072078] 0xfffffffef5485000-0xfffffffef5488000          12K                               pte
[    0.072079] 0xfffffffef5488000-0xfffffffef5489000           4K                               pte
[    0.072080] 0xfffffffef5489000-0xfffffffef548c000          12K                               pte
[    0.072081] 0xfffffffef548c000-0xfffffffef548d000           4K                               pte
[    0.072083] 0xfffffffef548d000-0xfffffffef5493000          24K                               pte
[    0.072084] 0xfffffffef5493000-0xfffffffef5496000          12K                               pte
[    0.072091] 0xfffffffef5496000-0xfffffffef5eb4000       10360K                               pte
[    0.072093] 0xfffffffef5eb4000-0xfffffffef5f0a000         344K                               pte
[    0.072097] 0xfffffffef5f0a000-0xfffffffef6000000         984K     RW                     NX pte
[    0.072099] 0xfffffffef6000000-0xfffffffef6c00000          12M     RW         PSE         NX pmd
[    0.072103] 0xfffffffef6c00000-0xfffffffef6c90000         576K     RW                     NX pte
[    0.072106] 0xfffffffef6c90000-0xfffffffef6c93000          12K     ro                     x  pte
[    0.072108] 0xfffffffef6c93000-0xfffffffef6c98000          20K     RW                     NX pte
[    0.072110] 0xfffffffef6c98000-0xfffffffef6c99000           4K     ro                     x  pte
[    0.072113] 0xfffffffef6c99000-0xfffffffef6c9e000          20K     RW                     NX pte
[    0.072115] 0xfffffffef6c9e000-0xfffffffef6ca1000          12K     ro                     x  pte
[    0.072118] 0xfffffffef6ca1000-0xfffffffef6ca6000          20K     RW                     NX pte
[    0.072120] 0xfffffffef6ca6000-0xfffffffef6ca7000           4K     ro                     x  pte
[    0.072123] 0xfffffffef6ca7000-0xfffffffef6cab000          16K     RW                     NX pte
[    0.072125] 0xfffffffef6cab000-0xfffffffef6cb9000          56K     ro                     x  pte
[    0.072128] 0xfffffffef6cb9000-0xfffffffef6cc1000          32K     RW                     NX pte
[    0.072130] 0xfffffffef6cc1000-0xfffffffef6cc4000          12K     ro                     x  pte
[    0.072132] 0xfffffffef6cc4000-0xfffffffef6cc9000          20K     RW                     NX pte
[    0.072135] 0xfffffffef6cc9000-0xfffffffef6cca000           4K     ro                     x  pte
[    0.072137] 0xfffffffef6cca000-0xfffffffef6ccf000          20K     RW                     NX pte
[    0.072140] 0xfffffffef6ccf000-0xfffffffef6cd0000           4K     ro                     x  pte
[    0.072142] 0xfffffffef6cd0000-0xfffffffef6cd5000          20K     RW                     NX pte
[    0.072144] 0xfffffffef6cd5000-0xfffffffef6cd6000           4K     ro                     x  pte
[    0.072147] 0xfffffffef6cd6000-0xfffffffef6cdb000          20K     RW                     NX pte
[    0.072149] 0xfffffffef6cdb000-0xfffffffef6cdc000           4K     ro                     x  pte
[    0.072152] 0xfffffffef6cdc000-0xfffffffef6ce0000          16K     RW                     NX pte
[    0.072154] 0xfffffffef6ce0000-0xfffffffef6cea000          40K     ro                     x  pte
[    0.072157] 0xfffffffef6cea000-0xfffffffef6cf0000          24K     RW                     NX pte
[    0.072159] 0xfffffffef6cf0000-0xfffffffef6cf4000          16K     ro                     x  pte
[    0.072162] 0xfffffffef6cf4000-0xfffffffef6cf9000          20K     RW                     NX pte
[    0.072164] 0xfffffffef6cf9000-0xfffffffef6cfd000          16K     ro                     x  pte
[    0.072166] 0xfffffffef6cfd000-0xfffffffef6d02000          20K     RW                     NX pte
[    0.072172] 0xfffffffef6d02000-0xfffffffef7005000        3084K                               pte
[    0.072173] 0xfffffffef7005000-0xfffffffef7024000         124K                               pte
[    0.072175] 0xfffffffef7024000-0xfffffffef7054000         192K                               pte
[    0.072176] 0xfffffffef7054000-0xfffffffef7062000          56K                               pte
[    0.072187] 0xfffffffef7062000-0xfffffffef85fe000       22128K                               pte
[    0.072188] 0xfffffffef85fe000-0xfffffffef85ff000           4K                               pte
[    0.072190] 0xfffffffef85ff000-0xfffffffef8611000          72K                               pte
[    0.072191] 0xfffffffef8611000-0xfffffffef8619000          32K                               pte
[    0.072192] 0xfffffffef8619000-0xfffffffef863e000         148K                               pte
[    0.072194] 0xfffffffef863e000-0xfffffffef864e000          64K                               pte
[    0.072195] 0xfffffffef864e000-0xfffffffef866f000         132K                               pte
[    0.072196] 0xfffffffef866f000-0xfffffffef8688000         100K                               pte
[    0.072207] 0xfffffffef8688000-0xfffffffef8ff9000        9668K                               pte
[    0.072208] 0xfffffffef8ff9000-0xfffffffef9000000          28K                               pte
[    0.072210] 0xfffffffef9000000-0xfffffffefd000000          64M     RW         PSE         NX pmd
[    0.072213] 0xfffffffefd000000-0xffffffff00000000          48M     RW     PCD PSE         NX pmd
[    0.072215] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.072217] ---[ High Kernel Mapping ]---
[    0.072217] 0xffffffff80000000-0xffffffff81000000          16M                               pmd
[    0.072218] 0xffffffff81000000-0xffffffff82400000          20M     RW         PSE     GLB x  pmd
[    0.072223] 0xffffffff82400000-0xffffffff824cf000         828K     RW                 GLB x  pte
[    0.072225] 0xffffffff824cf000-0xffffffff824d0000           4K     ro                 GLB x  pte
[    0.072231] 0xffffffff824d0000-0xffffffff82600000        1216K     RW                 GLB x  pte
[    0.072233] 0xffffffff82600000-0xffffffff82800000           2M     RW         PSE     GLB x  pmd
[    0.072237] 0xffffffff82800000-0xffffffffa0000000         472M                               pmd
[    0.072238] ---[ Modules ]---
[    0.072245] 0xffffffffa0000000-0xffffffffff000000        1520M                               pmd
[    0.072246] ---[ End Modules ]---
[    0.072246] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.072257] 0xffffffffff200000-0xffffffffff57c000        3568K                               pte
[    0.072258] ---[ Fixmap Area ]---
[    0.072260] 0xffffffffff57c000-0xffffffffff5fb000         508K                               pte
[    0.072261] 0xffffffffff5fb000-0xffffffffff5fe000          12K     RW PWT PCD         GLB NX pte
[    0.072264] 0xffffffffff5fe000-0xffffffffff600000           8K                               pte
[    0.072265] 0xffffffffff600000-0xffffffffff601000           4K USR ro                 GLB NX pte
[    0.072273] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.072274] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.072400] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.072426] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.073152] LVT offset 1 assigned for vector 0xf9
[    0.073234] LVT offset 2 assigned for vector 0xf4
[    0.073255] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
[    0.073256] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
[    0.073258] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.073259] Spectre V2 : Mitigation: Full AMD retpoline
[    0.073260] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.073261] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.073263] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.073448] Freeing SMP alternatives memory: 28K
[    0.176444] smpboot: CPU0: AMD Ryzen 3 2200G with Radeon Vega Graphics (family: 0x17, model: 0x11, stepping: 0x0)
[    0.176995] Performance Events: Fam17h+ core perfctr, AMD PMU driver.
[    0.177002] ... version:                0
[    0.177002] ... bit width:              48
[    0.177002] ... generic registers:      6
[    0.177003] ... value mask:             0000ffffffffffff
[    0.177003] ... max period:             00007fffffffffff
[    0.177004] ... fixed-purpose events:   0
[    0.177004] ... event mask:             000000000000003f
[    0.177025] rcu: Hierarchical SRCU implementation.
[    0.177076] smp: Bringing up secondary CPUs ...
[    0.177165] x86: Booting SMP configuration:
[    0.177167] .... node  #0, CPUs:        #1  #2  #3
[    0.181048] smp: Brought up 1 node, 4 CPUs
[    0.181048] smpboot: Max logical packages: 8
[    0.181048] smpboot: Total of 4 processors activated (27950.44 BogoMIPS)
[    0.182138] devtmpfs: initialized
[    0.182150] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
[    0.182150] PM: Registering ACPI NVS region [mem 0x5bb00000-0x5bf09fff] (4235264 bytes)
[    0.182167] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.182171] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.182300] pinctrl core: initialized pinctrl subsystem
[    0.182532] NET: Registered protocol family 16
[    0.182609] audit: initializing netlink subsys (disabled)
[    0.183030] audit: type=2000 audit(1613576351.132:1): state=initialized audit_enabled=0 res=1
[    0.183102] thermal_sys: Registered thermal governor 'bang_bang'
[    0.183103] thermal_sys: Registered thermal governor 'step_wise'
[    0.183103] thermal_sys: Registered thermal governor 'user_space'
[    0.183104] thermal_sys: Registered thermal governor 'power_allocator'
[    0.183146] cpuidle: using governor ladder
[    0.183146] cpuidle: using governor menu
[    0.183188] ACPI: bus type PCI registered
[    0.183188] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.183238] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.183240] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.183248] PCI: Using configuration type 1 for base access
[    0.185081] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.186105] ACPI: Added _OSI(Module Device)
[    0.186105] ACPI: Added _OSI(Processor Device)
[    0.186106] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.186107] ACPI: Added _OSI(Processor Aggregator Device)
[    0.186107] ACPI: Added _OSI(Linux-Dell-Video)
[    0.186108] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.186109] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.190883] ACPI: 7 ACPI AML tables successfully acquired and loaded
[    0.191641] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.192609] ACPI: Interpreter enabled
[    0.192621] ACPI: (supports S0 S3 S4 S5)
[    0.192622] ACPI: Using IOAPIC for interrupt routing
[    0.192914] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.193084] ACPI: Enabled 2 GPEs in block 00 to 1F
[    0.197887] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.197893] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    0.197995] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
[    0.198092] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[    0.198100] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
[    0.198283] PCI host bridge to bus 0000:00
[    0.198285] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.198286] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.198286] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.198287] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.198288] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.198289] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.198290] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
[    0.198291] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
[    0.198292] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.198306] pci 0000:00:00.0: [1022:15d0] type 00 class 0x060000
[    0.198438] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
[    0.198542] pci 0000:00:01.2: [1022:15d3] type 01 class 0x060400
[    0.198590] pci 0000:00:01.2: enabling Extended Tags
[    0.198650] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold
[    0.198782] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
[    0.198886] pci 0000:00:08.1: [1022:15db] type 01 class 0x060400
[    0.198936] pci 0000:00:08.1: enabling Extended Tags
[    0.198995] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
[    0.199103] pci 0000:00:08.2: [1022:15dc] type 01 class 0x060400
[    0.199153] pci 0000:00:08.2: enabling Extended Tags
[    0.199212] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold
[    0.199342] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
[    0.199512] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
[    0.199699] pci 0000:00:18.0: [1022:15e8] type 00 class 0x060000
[    0.199737] pci 0000:00:18.1: [1022:15e9] type 00 class 0x060000
[    0.199774] pci 0000:00:18.2: [1022:15ea] type 00 class 0x060000
[    0.199810] pci 0000:00:18.3: [1022:15eb] type 00 class 0x060000
[    0.199848] pci 0000:00:18.4: [1022:15ec] type 00 class 0x060000
[    0.199884] pci 0000:00:18.5: [1022:15ed] type 00 class 0x060000
[    0.199921] pci 0000:00:18.6: [1022:15ee] type 00 class 0x060000
[    0.199958] pci 0000:00:18.7: [1022:15ef] type 00 class 0x060000
[    0.200082] pci 0000:01:00.0: [1022:43bc] type 00 class 0x0c0330
[    0.200104] pci 0000:01:00.0: reg 0x10: [mem 0xfcea0000-0xfcea7fff 64bit]
[    0.200154] pci 0000:01:00.0: enabling Extended Tags
[    0.200221] pci 0000:01:00.0: PME# supported from D3hot D3cold
[    0.200329] pci 0000:01:00.1: [1022:43b8] type 00 class 0x010601
[    0.200386] pci 0000:01:00.1: reg 0x24: [mem 0xfce80000-0xfce9ffff]
[    0.200396] pci 0000:01:00.1: reg 0x30: [mem 0xfce00000-0xfce7ffff pref]
[    0.200403] pci 0000:01:00.1: enabling Extended Tags
[    0.200454] pci 0000:01:00.1: PME# supported from D3hot D3cold
[    0.200531] pci 0000:01:00.2: [1022:43b3] type 01 class 0x060400
[    0.200585] pci 0000:01:00.2: enabling Extended Tags
[    0.200642] pci 0000:01:00.2: PME# supported from D3hot D3cold
[    0.200765] pci 0000:00:01.2: PCI bridge to [bus 01-05]
[    0.200771] pci 0000:00:01.2:   bridge window [io  0xf000-0xffff]
[    0.200774] pci 0000:00:01.2:   bridge window [mem 0xfcd00000-0xfcefffff]
[    0.200864] pci 0000:02:04.0: [1022:43b4] type 01 class 0x060400
[    0.200921] pci 0000:02:04.0: enabling Extended Tags
[    0.200993] pci 0000:02:04.0: PME# supported from D3hot D3cold
[    0.201099] pci 0000:02:06.0: [1022:43b4] type 01 class 0x060400
[    0.201156] pci 0000:02:06.0: enabling Extended Tags
[    0.201228] pci 0000:02:06.0: PME# supported from D3hot D3cold
[    0.201331] pci 0000:02:07.0: [1022:43b4] type 01 class 0x060400
[    0.201388] pci 0000:02:07.0: enabling Extended Tags
[    0.201459] pci 0000:02:07.0: PME# supported from D3hot D3cold
[    0.201571] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[    0.201576] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    0.201580] pci 0000:01:00.2:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    0.201626] pci 0000:02:04.0: PCI bridge to [bus 03]
[    0.201677] pci 0000:02:06.0: PCI bridge to [bus 04]
[    0.201768] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000
[    0.201798] pci 0000:05:00.0: reg 0x10: [io  0xf000-0xf0ff]
[    0.201839] pci 0000:05:00.0: reg 0x18: [mem 0xfcd04000-0xfcd04fff 64bit]
[    0.201865] pci 0000:05:00.0: reg 0x20: [mem 0xfcd00000-0xfcd03fff 64bit]
[    0.202038] pci 0000:05:00.0: supports D1 D2
[    0.202038] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.202225] pci 0000:02:07.0: PCI bridge to [bus 05]
[    0.202231] pci 0000:02:07.0:   bridge window [io  0xf000-0xffff]
[    0.202235] pci 0000:02:07.0:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    0.202366] pci 0000:06:00.0: [1002:15dd] type 00 class 0x030000
[    0.202394] pci 0000:06:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.202411] pci 0000:06:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
[    0.202423] pci 0000:06:00.0: reg 0x20: [io  0xe000-0xe0ff]
[    0.202435] pci 0000:06:00.0: reg 0x24: [mem 0xfcc00000-0xfcc7ffff]
[    0.202455] pci 0000:06:00.0: enabling Extended Tags
[    0.202478] pci 0000:06:00.0: BAR 0: assigned to efifb
[    0.202579] pci 0000:06:00.0: PME# supported from D1 D2 D3hot D3cold
[    0.202739] pci 0000:06:00.1: [1002:15de] type 00 class 0x040300
[    0.202759] pci 0000:06:00.1: reg 0x10: [mem 0xfcc88000-0xfcc8bfff]
[    0.202831] pci 0000:06:00.1: enabling Extended Tags
[    0.202903] pci 0000:06:00.1: PME# supported from D1 D2 D3hot D3cold
[    0.202986] pci 0000:06:00.2: [1022:15df] type 00 class 0x108000
[    0.203028] pci 0000:06:00.2: reg 0x18: [mem 0xfcb00000-0xfcbfffff]
[    0.203060] pci 0000:06:00.2: reg 0x24: [mem 0xfcc8c000-0xfcc8dfff]
[    0.203080] pci 0000:06:00.2: enabling Extended Tags
[    0.203250] pci 0000:06:00.3: [1022:15e0] type 00 class 0x0c0330
[    0.203276] pci 0000:06:00.3: reg 0x10: [mem 0xfca00000-0xfcafffff 64bit]
[    0.203337] pci 0000:06:00.3: enabling Extended Tags
[    0.203416] pci 0000:06:00.3: PME# supported from D0 D3hot D3cold
[    0.203513] pci 0000:06:00.4: [1022:15e1] type 00 class 0x0c0330
[    0.203539] pci 0000:06:00.4: reg 0x10: [mem 0xfc900000-0xfc9fffff 64bit]
[    0.203600] pci 0000:06:00.4: enabling Extended Tags
[    0.203679] pci 0000:06:00.4: PME# supported from D0 D3hot D3cold
[    0.203781] pci 0000:06:00.6: [1022:15e3] type 00 class 0x040300
[    0.203802] pci 0000:06:00.6: reg 0x10: [mem 0xfcc80000-0xfcc87fff]
[    0.203874] pci 0000:06:00.6: enabling Extended Tags
[    0.203945] pci 0000:06:00.6: PME# supported from D0 D3hot D3cold
[    0.204066] pci 0000:00:08.1: PCI bridge to [bus 06]
[    0.204072] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    0.204075] pci 0000:00:08.1:   bridge window [mem 0xfc900000-0xfccfffff]
[    0.204080] pci 0000:00:08.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.204161] pci 0000:07:00.0: [1022:7901] type 00 class 0x010601
[    0.204234] pci 0000:07:00.0: reg 0x24: [mem 0xfcf00000-0xfcf007ff]
[    0.204253] pci 0000:07:00.0: enabling Extended Tags
[    0.204334] pci 0000:07:00.0: PME# supported from D3hot D3cold
[    0.204442] pci 0000:00:08.2: PCI bridge to [bus 07]
[    0.204449] pci 0000:00:08.2:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.204901] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
[    0.204945] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
[    0.204981] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
[    0.205035] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
[    0.205077] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
[    0.205110] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
[    0.205144] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
[    0.205178] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
[    0.205551] iommu: Default domain type: Translated 
[    0.205563] pci 0000:06:00.0: vgaarb: setting as boot VGA device
[    0.205563] pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.205563] pci 0000:06:00.0: vgaarb: bridge control possible
[    0.205563] vgaarb: loaded
[    0.205563] SCSI subsystem initialized
[    0.205563] libata version 3.00 loaded.
[    0.205563] ACPI: bus type USB registered
[    0.205563] usbcore: registered new interface driver usbfs
[    0.205563] usbcore: registered new interface driver hub
[    0.205563] usbcore: registered new device driver usb
[    0.205563] pps_core: LinuxPPS API ver. 1 registered
[    0.205563] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.205563] PTP clock support registered
[    0.205563] Registered efivars operations
[    0.206047] PCI: Using ACPI for IRQ routing
[    0.208503] PCI: pci_cache_line_size set to 64 bytes
[    0.208585] Expanded resource Reserved due to conflict with PCI Bus 0000:00
[    0.208586] e820: reserve RAM buffer [mem 0x09d00000-0x0bffffff]
[    0.208587] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff]
[    0.208588] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff]
[    0.208588] e820: reserve RAM buffer [mem 0x593d9000-0x5bffffff]
[    0.208589] e820: reserve RAM buffer [mem 0x5a4b4000-0x5bffffff]
[    0.208590] e820: reserve RAM buffer [mem 0x5bb00000-0x5bffffff]
[    0.208590] e820: reserve RAM buffer [mem 0x5f000000-0x5fffffff]
[    0.208591] e820: reserve RAM buffer [mem 0x21f340000-0x21fffffff]
[    0.209086] clocksource: Switched to clocksource tsc-early
[    0.209156] VFS: Disk quotas dquot_6.6.0
[    0.209174] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.209218] pnp: PnP ACPI init
[    0.209301] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.209306] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.209329] system 00:01: [mem 0xfeb80000-0xfebfffff] has been reserved
[    0.209332] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.209373] system 00:02: [mem 0x60000000-0xdfffffff window] has been reserved
[    0.209377] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.209437] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.209570] system 00:04: [io  0x0280-0x028f] has been reserved
[    0.209571] system 00:04: [io  0x0290-0x029f] has been reserved
[    0.209572] system 00:04: [io  0x02a0-0x02af] has been reserved
[    0.209573] system 00:04: [io  0x02b0-0x02bf] has been reserved
[    0.209576] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.209776] pnp 00:05: [dma 0 disabled]
[    0.209800] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.209957] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.209958] system 00:06: [io  0x040b] has been reserved
[    0.209959] system 00:06: [io  0x04d6] has been reserved
[    0.209960] system 00:06: [io  0x0c00-0x0c01] has been reserved
[    0.209961] system 00:06: [io  0x0c14] has been reserved
[    0.209962] system 00:06: [io  0x0c50-0x0c51] has been reserved
[    0.209963] system 00:06: [io  0x0c52] has been reserved
[    0.209963] system 00:06: [io  0x0c6c] has been reserved
[    0.209964] system 00:06: [io  0x0c6f] has been reserved
[    0.209965] system 00:06: [io  0x0cd0-0x0cd1] has been reserved
[    0.209966] system 00:06: [io  0x0cd2-0x0cd3] has been reserved
[    0.209967] system 00:06: [io  0x0cd4-0x0cd5] has been reserved
[    0.209968] system 00:06: [io  0x0cd6-0x0cd7] has been reserved
[    0.209968] system 00:06: [io  0x0cd8-0x0cdf] has been reserved
[    0.209969] system 00:06: [io  0x0800-0x089f] has been reserved
[    0.209970] system 00:06: [io  0x0b00-0x0b0f] has been reserved
[    0.209971] system 00:06: [io  0x0b20-0x0b3f] has been reserved
[    0.209972] system 00:06: [io  0x0900-0x090f] has been reserved
[    0.209973] system 00:06: [io  0x0910-0x091f] has been reserved
[    0.209974] system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.209975] system 00:06: [mem 0xfec01000-0xfec01fff] could not be reserved
[    0.209976] system 00:06: [mem 0xfedc0000-0xfedc0fff] has been reserved
[    0.209977] system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.209978] system 00:06: [mem 0xfed80000-0xfed8ffff] could not be reserved
[    0.209979] system 00:06: [mem 0xfec10000-0xfec10fff] has been reserved
[    0.209980] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[    0.209983] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.210297] pnp: PnP ACPI: found 7 devices
[    0.216124] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.216179] NET: Registered protocol family 2
[    0.216357] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.216368] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.216446] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.216593] TCP: Hash tables configured (established 65536 bind 65536)
[    0.216718] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.216739] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.216759] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.216871] NET: Registered protocol family 1
[    0.216892] pci 0000:02:04.0: PCI bridge to [bus 03]
[    0.216907] pci 0000:02:06.0: PCI bridge to [bus 04]
[    0.216921] pci 0000:02:07.0: PCI bridge to [bus 05]
[    0.216924] pci 0000:02:07.0:   bridge window [io  0xf000-0xffff]
[    0.216929] pci 0000:02:07.0:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    0.216937] pci 0000:01:00.2: PCI bridge to [bus 02-05]
[    0.216940] pci 0000:01:00.2:   bridge window [io  0xf000-0xffff]
[    0.216944] pci 0000:01:00.2:   bridge window [mem 0xfcd00000-0xfcdfffff]
[    0.216952] pci 0000:00:01.2: PCI bridge to [bus 01-05]
[    0.216954] pci 0000:00:01.2:   bridge window [io  0xf000-0xffff]
[    0.216959] pci 0000:00:01.2:   bridge window [mem 0xfcd00000-0xfcefffff]
[    0.216970] pci 0000:00:08.1: PCI bridge to [bus 06]
[    0.216977] pci 0000:00:08.1:   bridge window [io  0xe000-0xefff]
[    0.216981] pci 0000:00:08.1:   bridge window [mem 0xfc900000-0xfccfffff]
[    0.216985] pci 0000:00:08.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.216991] pci 0000:00:08.2: PCI bridge to [bus 07]
[    0.216996] pci 0000:00:08.2:   bridge window [mem 0xfcf00000-0xfcffffff]
[    0.217006] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.217007] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.217008] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.217009] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.217011] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.217012] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.217013] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window]
[    0.217014] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
[    0.217015] pci_bus 0000:01: resource 0 [io  0xf000-0xffff]
[    0.217016] pci_bus 0000:01: resource 1 [mem 0xfcd00000-0xfcefffff]
[    0.217017] pci_bus 0000:02: resource 0 [io  0xf000-0xffff]
[    0.217018] pci_bus 0000:02: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    0.217019] pci_bus 0000:05: resource 0 [io  0xf000-0xffff]
[    0.217020] pci_bus 0000:05: resource 1 [mem 0xfcd00000-0xfcdfffff]
[    0.217021] pci_bus 0000:06: resource 0 [io  0xe000-0xefff]
[    0.217022] pci_bus 0000:06: resource 1 [mem 0xfc900000-0xfccfffff]
[    0.217023] pci_bus 0000:06: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
[    0.217024] pci_bus 0000:07: resource 1 [mem 0xfcf00000-0xfcffffff]
[    0.217259] pci 0000:06:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.217284] pci 0000:06:00.1: D0 power state depends on 0000:06:00.0
[    0.217348] pci 0000:06:00.3: extending delay after power-on from D3hot to 20 msec
[    0.217476] pci 0000:06:00.4: extending delay after power-on from D3hot to 20 msec
[    0.217559] PCI: CLS 64 bytes, default 64
[    0.217588] Trying to unpack rootfs image as initramfs...
[    0.307773] Freeing initrd memory: 17428K
[    0.307777] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.307780] software IO TLB: mapped [mem 0x0000000052a49000-0x0000000056a49000] (64MB)
[    0.307858] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer
[    0.307858] RAPL PMU: hw unit of domain package 2^-16 Joules
[    0.307872] amd_uncore: 4  amd_df counters detected
[    0.307883] amd_uncore: 6  amd_l3 counters detected
[    0.308474] Initialise system trusted keyrings
[    0.308567] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.309680] zbud: loaded
[    0.319528] Key type asymmetric registered
[    0.319530] Asymmetric key parser 'x509' registered
[    0.319536] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    0.319573] io scheduler mq-deadline registered
[    0.319574] io scheduler kyber registered
[    0.319590] io scheduler bfq registered
[    0.319727] pcieport 0000:00:01.2: PME: Signaling with IRQ 25
[    0.319860] pcieport 0000:00:08.1: PME: Signaling with IRQ 26
[    0.320046] pcieport 0000:00:08.2: PME: Signaling with IRQ 27
[    0.320652] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.320667] efifb: probing for efifb
[    0.320683] efifb: framebuffer at 0xe0000000, using 4224k, total 4224k
[    0.320684] efifb: mode is 1366x768x32, linelength=5632, pages=1
[    0.320684] efifb: scrolling: redraw
[    0.320685] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.320763] Console: switching to colour frame buffer device 170x48
[    0.322489] fb0: EFI VGA frame buffer device
[    0.322772] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    0.322846] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.323834] lp: driver loaded but no devices found
[    0.323835] Linux agpgart interface v0.103
[    0.327171] loop: module loaded
[    0.327385] ahci 0000:01:00.1: version 3.0
[    0.327518] ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled
[    0.327573] ahci 0000:01:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
[    0.327574] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
[    0.328017] scsi host0: ahci
[    0.328111] scsi host1: ahci
[    0.328196] scsi host2: ahci
[    0.328284] scsi host3: ahci
[    0.328372] scsi host4: ahci
[    0.328444] scsi host5: ahci
[    0.328510] scsi host6: ahci
[    0.328579] scsi host7: ahci
[    0.328608] ata1: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80100 irq 36
[    0.328610] ata2: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80180 irq 36
[    0.328610] ata3: DUMMY
[    0.328611] ata4: DUMMY
[    0.328613] ata5: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80300 irq 36
[    0.328614] ata6: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80380 irq 36
[    0.328615] ata7: DUMMY
[    0.328615] ata8: DUMMY
[    0.339594] ahci 0000:07:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
[    0.339596] ahci 0000:07:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part 
[    0.339758] scsi host8: ahci
[    0.339803] ata9: SATA max UDMA/133 abar m2048@0xfcf00000 port 0xfcf00100 irq 38
[    0.339847] PPP generic driver version 2.4.2
[    0.339915] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.339916] ehci-pci: EHCI PCI platform driver
[    0.339928] ehci-platform: EHCI generic platform driver
[    0.339962] usbcore: registered new interface driver usb-storage
[    0.339983] i8042: PNP: No PS/2 controller found.
[    0.340029] mousedev: PS/2 mouse device common for all mice
[    0.340100] rtc_cmos 00:03: RTC can wake from S4
[    0.340368] rtc_cmos 00:03: registered as rtc0
[    0.340424] rtc_cmos 00:03: setting system clock to 2021-02-17T15:39:11 UTC (1613576351)
[    0.340437] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.340472] ledtrig-cpu: registered to indicate activity on CPUs
[    0.340497] hid: raw HID events driver (C) Jiri Kosina
[    0.340617] usbcore: registered new interface driver usbhid
[    0.340617] usbhid: USB HID core driver
[    0.340852] NET: Registered protocol family 10
[    0.343513] Segment Routing with IPv6
[    0.343514] RPL Segment Routing with IPv6
[    0.343530] NET: Registered protocol family 17
[    0.343590] Key type dns_resolver registered
[    0.343855] microcode: CPU0: patch_level=0x08101016
[    0.343861] microcode: CPU1: patch_level=0x08101016
[    0.343864] microcode: CPU2: patch_level=0x08101016
[    0.343870] microcode: CPU3: patch_level=0x08101016
[    0.343896] microcode: Microcode Update Driver: v2.2.
[    0.343900] IPI shorthand broadcast: enabled
[    0.343920] sched_clock: Marking stable (341958892, 1932952)->(347624616, -3732772)
[    0.343946] registered taskstats version 1
[    0.343949] Loading compiled-in X.509 certificates
[    0.344689] zswap: loaded using pool zstd/zbud
[    0.649588] ata9: SATA link down (SStatus 0 SControl 300)
[    0.802676] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    0.803456] ata1.00: ATA-8: TOSHIBA HDWD110, MS2OA8R0, max UDMA/133
[    0.803458] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    0.804287] ata1.00: configured for UDMA/133
[    0.804466] scsi 0:0:0:0: Direct-Access     ATA      TOSHIBA HDWD110  A8R0 PQ: 0 ANSI: 5
[    0.804770] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    0.804772] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    0.804778] sd 0:0:0:0: [sda] Write Protect is off
[    0.804779] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    0.804788] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.851277]  sda: sda1 sda2 sda3 sda4
[    0.851692] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.114530] ata2: SATA link down (SStatus 0 SControl 300)
[    1.363049] tsc: Refined TSC clocksource calibration: 3493.423 MHz
[    1.363059] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x325b0c00e96, max_idle_ns: 440795322907 ns
[    1.363076] clocksource: Switched to clocksource tsc
[    1.424105] ata5: SATA link down (SStatus 0 SControl 300)
[    1.728104] ata6: SATA link down (SStatus 0 SControl 300)
[    1.728486] Freeing unused kernel image (initmem) memory: 1060K
[    1.728491] Write protecting the kernel read-only data: 16384k
[    1.729096] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    1.729553] Freeing unused kernel image (rodata/data gap) memory: 1840K
[    1.729564] rodata_test: all tests were successful
[    1.729573] Run /init as init process
[    1.729573]   with arguments:
[    1.729574]     /init
[    1.729574]     splash
[    1.729575]   with environment:
[    1.729575]     HOME=/
[    1.729576]     TERM=linux
[    1.729576]     BOOT_IMAGE=/boot/vmlinuz-5.10.9-calculate
[    1.729577]     calculate=video:modesetting
[    1.803833] dracut: TuxOnIce premodule started
[    1.803912] dracut: Kernel has no tuxonice support, aborting
[    1.808324] systemd-udevd[1170]: starting version 3.2.10
[    1.809356] udevd[1171]: starting eudev-3.2.10
[    1.835395] ACPI: Video Device [VGA1] (multi-head: yes  rom: no  post: no)
[    1.835526] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GP17.VGA.LCD._BCM.AFN7], AE_NOT_FOUND (20200925/psargs-330)
[    1.835573] ACPI Error: Aborting method \_SB.PCI0.GP17.VGA.LCD._BCM due to previous error (AE_NOT_FOUND) (20200925/psparse-529)
[    1.835605] ACPI Error: Evaluating _BCM failed (20200925/video-357)
[    1.835662] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/LNXVIDEO:01/input/input0
[    1.836202] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.836204] AMD-Vi: AMD IOMMUv2 functionality not available on this system
[    1.891410] [drm] amdgpu kernel modesetting enabled.
[    1.891542] amdgpu: Topology: Add APU node [0x0:0x0]
[    1.891626] checking generic (e0000000 420000) vs hw (e0000000 10000000)
[    1.891627] fb0: switching to amdgpudrmfb from EFI VGA
[    1.891712] Console: switching to colour dummy device 80x25
[    1.891753] amdgpu 0000:06:00.0: vgaarb: deactivate vga console
[    1.891949] [drm] initializing kernel modesetting (RAVEN 0x1002:0x15DD 0x1002:0x15DD 0xC8).
[    1.891951] amdgpu 0000:06:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default)
[    1.891960] [drm] register mmio base: 0xFCC00000
[    1.891961] [drm] register mmio size: 524288
[    1.891975] [drm] add ip block number 0 <soc15_common>
[    1.891975] [drm] add ip block number 1 <gmc_v9_0>
[    1.891976] [drm] add ip block number 2 <vega10_ih>
[    1.891977] [drm] add ip block number 3 <psp>
[    1.891978] [drm] add ip block number 4 <gfx_v9_0>
[    1.891978] [drm] add ip block number 5 <sdma_v4_0>
[    1.891979] [drm] add ip block number 6 <powerplay>
[    1.891980] [drm] add ip block number 7 <dm>
[    1.891981] [drm] add ip block number 8 <vcn_v1_0>
[    1.916535] [drm] BIOS signature incorrect 0 0
[    1.916560] amdgpu 0000:06:00.0: amdgpu: Fetched VBIOS from ROM BAR
[    1.916561] amdgpu: ATOM BIOS: 113-RAVEN-114
[    1.916583] [drm] VCN decode is enabled in VM mode
[    1.916583] [drm] VCN encode is enabled in VM mode
[    1.916584] [drm] JPEG decode is enabled in VM mode
[    1.916606] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit
[    1.916612] amdgpu 0000:06:00.0: amdgpu: VRAM: 2048M 0x000000F400000000 - 0x000000F47FFFFFFF (2048M used)
[    1.916613] amdgpu 0000:06:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF
[    1.916614] amdgpu 0000:06:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF
[    1.916619] [drm] Detected VRAM RAM=2048M, BAR=2048M
[    1.916619] [drm] RAM width 64bits DDR4
[    1.916653] [TTM] Zone  kernel: Available graphics memory: 3008766 KiB
[    1.916653] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    1.916654] [TTM] Initializing pool allocator
[    1.916657] [TTM] Initializing DMA pool allocator
[    1.916710] [drm] amdgpu: 2048M of VRAM memory ready
[    1.916711] [drm] amdgpu: 3072M of GTT memory ready.
[    1.916713] [drm] GART: num cpu pages 262144, num gpu pages 262144
[    1.916850] [drm] PCIE GART of 1024M enabled (table at 0x000000F400900000).
[    1.918271] amdgpu: hwmgr_sw_init smu backed is smu10_smu
[    1.918365] [drm] Found VCN firmware Version ENC: 1.12 DEC: 2 VEP: 0 Revision: 1
[    1.918369] [drm] PSP loading VCN firmware
[    1.939240] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[    2.017048] amdgpu 0000:06:00.0: amdgpu: RAS: optional ras ta ucode is not available
[    2.023038] amdgpu 0000:06:00.0: amdgpu: RAP: optional rap ta ucode is not available
[    2.024433] [drm] kiq ring mec 2 pipe 1 q 0
[    2.024827] [drm] DM_PPLIB: values for F clock
[    2.024828] [drm] DM_PPLIB:	 400000 in kHz, 3649 in mV
[    2.024829] [drm] DM_PPLIB:	 933000 in kHz, 4074 in mV
[    2.024829] [drm] DM_PPLIB:	 1200000 in kHz, 4399 in mV
[    2.024830] [drm] DM_PPLIB:	 1333000 in kHz, 4399 in mV
[    2.024831] [drm] DM_PPLIB: values for DCF clock
[    2.024831] [drm] DM_PPLIB:	 300000 in kHz, 3649 in mV
[    2.024832] [drm] DM_PPLIB:	 600000 in kHz, 4074 in mV
[    2.024832] [drm] DM_PPLIB:	 626000 in kHz, 4250 in mV
[    2.024833] [drm] DM_PPLIB:	 654000 in kHz, 4399 in mV
[    2.025135] [drm] Display Core initialized with v3.2.104!
[    2.059102] [drm:dc_link_detect_helper [amdgpu]] *ERROR* No EDID read.
[    2.147207] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[    2.148218] kfd kfd: Allocated 3969056 bytes on gart
[    2.148706] kfd kfd: error getting iommu info. is the iommu enabled?
[    2.148709] kfd kfd: Error initializing iommuv2
[    2.148763] kfd kfd: device 1002:15dd NOT added due to errors
[    2.148766] amdgpu 0000:06:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 11, active_cu_number 8
[    2.150118] [drm] fb mappable at 0x60BCA000
[    2.150119] [drm] vram apper at 0x60000000
[    2.150120] [drm] size 4325376
[    2.150120] [drm] fb depth is 24
[    2.150121] [drm]    pitch is 5632
[    2.150165] fbcon: amdgpudrmfb (fb0) is primary device
[    2.192798] Console: switching to colour frame buffer device 170x48
[    2.211222] amdgpu 0000:06:00.0: [drm] fb0: amdgpudrmfb frame buffer device
[    2.217104] amdgpu 0000:06:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[    2.217106] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[    2.217107] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[    2.217109] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[    2.217110] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[    2.217111] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[    2.217112] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[    2.217113] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[    2.217114] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[    2.217115] amdgpu 0000:06:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[    2.217117] amdgpu 0000:06:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[    2.217118] amdgpu 0000:06:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[    2.217119] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[    2.217120] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[    2.217121] amdgpu 0000:06:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[    2.221989] [drm] Initialized amdgpu 3.40.0 20150101 for 0000:06:00.0 on minor 0
[    2.227491] dracut: Starting plymouth daemon
[    2.302119] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.302235] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1
[    2.357671] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000008000410
[    2.357831] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.357832] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.357832] usb usb1: Product: xHCI Host Controller
[    2.357833] usb usb1: Manufacturer: Linux 5.10.9-calculate xhci-hcd
[    2.357834] usb usb1: SerialNumber: 0000:01:00.0
[    2.357934] hub 1-0:1.0: USB hub found
[    2.357948] hub 1-0:1.0: 9 ports detected
[    2.358340] xhci_hcd 0000:01:00.0: xHCI Host Controller
[    2.358364] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2
[    2.358366] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed
[    2.358401] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.358412] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    2.358412] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.358413] usb usb2: Product: xHCI Host Controller
[    2.358414] usb usb2: Manufacturer: Linux 5.10.9-calculate xhci-hcd
[    2.358414] usb usb2: SerialNumber: 0000:01:00.0
[    2.358497] hub 2-0:1.0: USB hub found
[    2.358503] hub 2-0:1.0: 3 ports detected
[    2.358784] xhci_hcd 0000:06:00.3: xHCI Host Controller
[    2.358811] xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 3
[    2.358992] xhci_hcd 0000:06:00.3: hcc params 0x0270ffe5 hci version 0x110 quirks 0x0000000840000410
[    2.359233] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.359234] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.359234] usb usb3: Product: xHCI Host Controller
[    2.359235] usb usb3: Manufacturer: Linux 5.10.9-calculate xhci-hcd
[    2.359235] usb usb3: SerialNumber: 0000:06:00.3
[    2.359294] hub 3-0:1.0: USB hub found
[    2.359307] hub 3-0:1.0: 4 ports detected
[    2.359688] xhci_hcd 0000:06:00.3: xHCI Host Controller
[    2.359708] xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 4
[    2.359709] xhci_hcd 0000:06:00.3: Host supports USB 3.1 Enhanced SuperSpeed
[    2.359739] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.359750] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    2.359751] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.359751] usb usb4: Product: xHCI Host Controller
[    2.359752] usb usb4: Manufacturer: Linux 5.10.9-calculate xhci-hcd
[    2.359752] usb usb4: SerialNumber: 0000:06:00.3
[    2.359807] hub 4-0:1.0: USB hub found
[    2.359820] hub 4-0:1.0: 4 ports detected
[    2.360201] xhci_hcd 0000:06:00.4: xHCI Host Controller
[    2.360226] xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 5
[    2.360395] xhci_hcd 0000:06:00.4: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000840000410
[    2.360586] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.360587] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.360588] usb usb5: Product: xHCI Host Controller
[    2.360588] usb usb5: Manufacturer: Linux 5.10.9-calculate xhci-hcd
[    2.360589] usb usb5: SerialNumber: 0000:06:00.4
[    2.360641] hub 5-0:1.0: USB hub found
[    2.360651] hub 5-0:1.0: 1 port detected
[    2.360733] xhci_hcd 0000:06:00.4: xHCI Host Controller
[    2.360767] xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 6
[    2.360769] xhci_hcd 0000:06:00.4: Host supports USB 3.1 Enhanced SuperSpeed
[    2.360804] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.360814] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    2.360815] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.360816] usb usb6: Product: xHCI Host Controller
[    2.360816] usb usb6: Manufacturer: Linux 5.10.9-calculate xhci-hcd
[    2.360817] usb usb6: SerialNumber: 0000:06:00.4
[    2.360868] hub 6-0:1.0: USB hub found
[    2.360876] hub 6-0:1.0: 1 port detected
[    2.739042] usb 1-4: new low-speed USB device number 2 using xhci_hcd
[    2.807926] dracut: TuxOnIce lvmfix started
[    2.810192] dracut: TuxOnIce udev should be now fully settled
[    2.861687] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    3.040576] usb 1-4: New USB device found, idVendor=10c4, idProduct=8108, bcdDevice= 0.00
[    3.040578] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.040580] usb 1-4: Product: USB OPTICAL MOUSE
[    3.040581] usb 1-4: Manufacturer: YSPRINGTECH
[    3.055034] dracut: Mounted root filesystem /dev/sda1
[    3.056488] input: YSPRINGTECH USB OPTICAL MOUSE as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-4/1-4:1.0/0003:10C4:8108.0001/input/input1
[    3.056569] hid-generic 0003:10C4:8108.0001: input,hidraw0: USB HID v1.11 Mouse [YSPRINGTECH USB OPTICAL MOUSE] on usb-0000:01:00.0-4/input0
[    3.083157] EXT4-fs (sda1): re-mounted. Opts: (null)
[    3.166485] EXT4-fs (sda1): re-mounted. Opts: (null)
[    3.232035] usb 1-5: new low-speed USB device number 3 using xhci_hcd
[    3.252462] dracut: Switching root
[    3.531351] usb 1-5: New USB device found, idVendor=2a7a, idProduct=938f, bcdDevice= 0.01
[    3.531354] usb 1-5: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.531355] usb 1-5: Product: CASUE USB KB
[    3.549550] input: CASUE USB KB as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-5/1-5:1.0/0003:2A7A:938F.0002/input/input2
[    3.601136] hid-generic 0003:2A7A:938F.0002: input,hidraw1: USB HID v1.10 Keyboard [CASUE USB KB] on usb-0000:01:00.0-5/input0
[    3.621543] input: CASUE USB KB Consumer Control as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-5/1-5:1.1/0003:2A7A:938F.0003/input/input3
[    3.673070] input: CASUE USB KB System Control as /devices/pci0000:00/0000:00:01.2/0000:01:00.0/usb1/1-5/1-5:1.1/0003:2A7A:938F.0003/input/input4
[    3.673106] hid-generic 0003:2A7A:938F.0003: input,hidraw2: USB HID v1.10 Device [CASUE USB KB] on usb-0000:01:00.0-5/input1
[    5.640179] udevd[3272]: starting version 3.2.10
[    5.754701] udevd[3272]: starting eudev-3.2.10
[    5.838709] acpi_cpufreq: overriding BIOS provided _PSD data
[    5.916729] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
[    5.916779] ACPI: Power Button [PWRB]
[    5.916838] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[    5.920051] ACPI: Power Button [PWRF]
[    5.953278] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
[    5.953280] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
[    5.953339] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
[    6.031266] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver
[    6.031363] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address
[    6.031460] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0)
[    6.106983] cryptd: max_cpu_qlen set to 1000
[    6.107442] ccp 0000:06:00.2: ccp enabled
[    6.117606] ccp 0000:06:00.2: tee enabled
[    6.117611] ccp 0000:06:00.2: psp enabled
[    6.121314] AVX2 version of gcm_enc/dec engaged.
[    6.121316] AES CTR mode by8 optimization enabled
[    6.179153] libphy: r8169: probed
[    6.179334] r8169 0000:05:00.0 eth0: RTL8168h/8111h, 70:85:c2:96:6e:fa, XID 541, IRQ 58
[    6.179336] r8169 0000:05:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[    6.188565] snd_hda_intel 0000:06:00.1: bound 0000:06:00.0 (ops amdgpu_exit [amdgpu])
[    6.190923] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:06:00.1/sound/card0/input7
[    6.190965] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:06:00.1/sound/card0/input8
[    6.190997] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:06:00.1/sound/card0/input9
[    6.271215] kvm: Nested Virtualization enabled
[    6.271224] SVM: kvm: Nested Paging enabled
[    6.271225] SVM: Virtual VMLOAD VMSAVE supported
[    6.271225] SVM: Virtual GIF supported
[    6.281055] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    6.281060] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    6.281063] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    6.281065] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[    6.281067] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[    6.281069] snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
[    6.281072] snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
[    6.281074] snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
[    6.305723] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input10
[    6.305781] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input11
[    6.305830] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input12
[    6.305877] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input13
[    6.305924] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input14
[    7.149574] EXT4-fs (sda1): re-mounted. Opts: (null)
[    7.529189] zram: Added device: zram0
[    7.631048] zram0: detected capacity change from 0 to 12323905536
[    7.703041] Adding 12035060k swap on /dev/zram0.  Priority:100 extents:1 across:12035060k SSFS
[    7.827841] FAT-fs (sda4): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[    7.857290] FAT-fs (sda4): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    7.980373] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
[    9.980257] fuse: init (API version 7.32)
[   10.164176] Bluetooth: Core ver 2.22
[   10.164206] NET: Registered protocol family 31
[   10.164208] Bluetooth: HCI device and connection manager initialized
[   10.164213] Bluetooth: HCI socket layer initialized
[   10.164215] Bluetooth: L2CAP socket layer initialized
[   10.164219] Bluetooth: SCO socket layer initialized
[   10.282502] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   10.282506] Bluetooth: BNEP filters: protocol multicast
[   10.282510] Bluetooth: BNEP socket layer initialized
[   11.610049] Generic FE-GE Realtek PHY r8169-500:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-500:00, irq=IGNORE)
[   11.772461] r8169 0000:05:00.0 eth0: Link is Down
[   13.288555] r8169 0000:05:00.0 eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[   13.288568] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   15.455192] Key type encrypted registered
[   19.007292] elogind-daemon[5481]: New seat seat0.
[   19.008781] elogind-daemon[5481]: Watching system buttons on /dev/input/event6 (Power Button)
[   19.019196] elogind-daemon[5481]: Watching system buttons on /dev/input/event5 (Power Button)
[   19.019469] elogind-daemon[5481]: Watching system buttons on /dev/input/event2 (CASUE USB KB)
[   19.019733] elogind-daemon[5481]: Watching system buttons on /dev/input/event3 (CASUE USB KB Consumer Control)
[   19.019997] elogind-daemon[5481]: Watching system buttons on /dev/input/event4 (CASUE USB KB System Control)
[   19.121188] elogind-daemon[5481]: New session 2 of user guest.
[   33.464446] kmixctrl[5641]: segfault at 0 ip 0000000000000000 sp 00007fff5c58f1d8 error 14 in kmixctrl[55a69943e000+2000]
[   33.464456] Code: Unable to access opcode bytes at RIP 0xffffffffffffffd6.
[  161.821122] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* ring gfx timeout, signaled seq=142235, emitted seq=142237
[  161.821204] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* Process information: process X pid 4761 thread X:cs0 pid 5132
[  161.821210] amdgpu 0000:06:00.0: amdgpu: GPU reset begin!
[  161.939037] [drm] free PSP TMR buffer
[  161.970231] amdgpu 0000:06:00.0: amdgpu: GPU reset succeeded, trying to resume
[  161.970650] [drm] PCIE GART of 1024M enabled (table at 0x000000F400900000).
[  161.971047] [drm] PSP is resuming...
[  161.991094] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[  162.057038] amdgpu 0000:06:00.0: amdgpu: RAS: optional ras ta ucode is not available
[  162.064034] amdgpu 0000:06:00.0: amdgpu: RAP: optional rap ta ucode is not available
[  162.277994] [drm] kiq ring mec 2 pipe 1 q 0
[  162.314376] ------------[ cut here ]------------
[  162.314427] WARNING: CPU: 1 PID: 2310 at drivers/gpu/drm/amd/amdgpu/../display/dc/dcn10/dcn10_link_encoder.c:483 dcn10_get_dig_frontend+0x91/0xc0 [amdgpu]
[  162.314428] Modules linked in: udp_diag tcp_diag inet_diag ecryptfs cbc encrypted_keys bnep bluetooth ecdh_generic rfkill ecc fuse nls_utf8 nls_cp866 vfat fat zram snd_hda_codec_realtek kvm_amd snd_hda_codec_generic ledtrig_audio kvm irqbypass snd_hda_codec_hdmi crct10dif_pclmul crc32_pclmul r8169 snd_hda_intel snd_intel_dspcfg ghash_clmulni_intel snd_hda_codec aesni_intel crypto_simd cryptd ccp glue_helper wmi_bmof snd_hda_core snd_hwdep snd_pcm realtek snd_timer snd sp5100_tco rng_core mdio_devres libphy i2c_piix4 tiny_power_button button k10temp acpi_cpufreq efivarfs ext4 crc32c_generic crc16 mbcache jbd2 crc32c_intel xhci_pci xhci_pci_renesas xhci_hcd amdgpu iommu_v2 hwmon gpu_sched video ttm i2c_algo_bit drm_kms_helper wmi syscopyarea sysfillrect sysimgblt fb_sys_fops drm i2c_core
[  162.314464] CPU: 1 PID: 2310 Comm: kworker/1:3 Not tainted 5.10.9-calculate #1
[  162.314465] Hardware name: To Be Filled By O.E.M. To Be Filled By O.E.M./A320M-DVS R4.0, BIOS P4.00 07/16/2020
[  162.314468] Workqueue: events drm_sched_job_timedout [gpu_sched]
[  162.314512] RIP: 0010:dcn10_get_dig_frontend+0x91/0xc0 [amdgpu]
[  162.314514] Code: 45 44 89 c0 48 83 c4 10 c3 41 b8 05 00 00 00 83 f8 20 74 dd 41 b8 06 00 00 00 83 f8 40 74 d2 41 b8 04 00 00 00 83 f8 10 74 c7 <0f> 0b 41 b8 ff ff ff ff eb bd 45 31 c0 83 f8 01 74 b5 eb ec 41 b8
[  162.314515] RSP: 0018:ffffc900004bbc18 EFLAGS: 00010297
[  162.314517] RAX: 0000000000000000 RBX: ffff888109900000 RCX: 0000000000000008
[  162.314517] RDX: 0000000000000000 RSI: 000000000000586f RDI: ffff888106c60000
[  162.314518] RBP: ffff888109917000 R08: 0000000000000000 R09: ffff88810685fd80
[  162.314519] R10: 0000000000000001 R11: 0000000000000000 R12: ffff888106b2f600
[  162.314520] R13: 0000000000000000 R14: ffff888106166c00 R15: ffff888106b2f800
[  162.314521] FS:  0000000000000000(0000) GS:ffff888218840000(0000) knlGS:0000000000000000
[  162.314522] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  162.314522] CR2: 00007ff69071f000 CR3: 000000013677e000 CR4: 00000000003506e0
[  162.314523] Call Trace:
[  162.314571]  dcn10_init_hw+0x62f/0x6a0 [amdgpu]
[  162.314610]  dc_set_power_state+0xe9/0x130 [amdgpu]
[  162.314660]  dm_resume+0x34d/0x510 [amdgpu]
[  162.314708]  ? psm_adjust_power_state_dynamic+0xe7/0x1b0 [amdgpu]
[  162.314740]  amdgpu_device_ip_resume_phase2+0x61/0xc0 [amdgpu]
[  162.314772]  ? amdgpu_device_fw_loading+0xae/0x130 [amdgpu]
[  162.314808]  amdgpu_do_asic_reset+0x258/0x388 [amdgpu]
[  162.314843]  amdgpu_device_gpu_recover.cold+0x6a9/0x98a [amdgpu]
[  162.314887]  amdgpu_job_timedout+0x11e/0x140 [amdgpu]
[  162.314890]  drm_sched_job_timedout+0x66/0xb0 [gpu_sched]
[  162.314894]  process_one_work+0x1ae/0x300
[  162.314896]  worker_thread+0x45/0x3c0
[  162.314898]  ? current_work+0x30/0x30
[  162.314899]  kthread+0x10c/0x150
[  162.314901]  ? kthread_park+0x80/0x80
[  162.314903]  ret_from_fork+0x22/0x30
[  162.314904] ---[ end trace 0150ed88a5d90640 ]---
[  162.362151] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[  162.362156] amdgpu 0000:06:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[  162.362157] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[  162.362158] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[  162.362160] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[  162.362161] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[  162.362162] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[  162.362163] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[  162.362164] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[  162.362165] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[  162.362166] amdgpu 0000:06:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[  162.362167] amdgpu 0000:06:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[  162.362168] amdgpu 0000:06:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[  162.362168] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[  162.362169] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[  162.362170] amdgpu 0000:06:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[  162.369585] amdgpu 0000:06:00.0: amdgpu: recover vram bo from shadow start
[  162.369586] amdgpu 0000:06:00.0: amdgpu: recover vram bo from shadow done
[  162.369588] [drm] Skip scheduling IBs!
[  162.369589] [drm] Skip scheduling IBs!
[  162.369658] amdgpu 0000:06:00.0: amdgpu: GPU reset(2) succeeded!
[  162.369668] [drm] Skip scheduling IBs!
[  162.369702] [drm] Skip scheduling IBs!
[  162.369733] [drm] Skip scheduling IBs!
[  162.369820] [drm] Skip scheduling IBs!
[  172.573119] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* ring gfx timeout, signaled seq=142245, emitted seq=142247
[  172.573201] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* Process information: process plasmashell pid 5612 thread plasmashel:cs0 pid 5803
[  172.573206] amdgpu 0000:06:00.0: amdgpu: GPU reset begin!
[  172.689038] [drm] free PSP TMR buffer
[  172.719230] amdgpu 0000:06:00.0: amdgpu: GPU reset succeeded, trying to resume
[  172.719501] [drm] PCIE GART of 1024M enabled (table at 0x000000F400900000).
[  172.719762] [drm] PSP is resuming...
[  172.739807] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[  172.805037] amdgpu 0000:06:00.0: amdgpu: RAS: optional ras ta ucode is not available
[  172.811039] amdgpu 0000:06:00.0: amdgpu: RAP: optional rap ta ucode is not available
[  173.027248] [drm] kiq ring mec 2 pipe 1 q 0
[  173.110637] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[  173.110643] amdgpu 0000:06:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[  173.110645] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[  173.110646] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[  173.110647] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[  173.110648] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[  173.110649] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[  173.110650] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[  173.110651] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[  173.110652] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[  173.110653] amdgpu 0000:06:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[  173.110654] amdgpu 0000:06:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[  173.110655] amdgpu 0000:06:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[  173.110656] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[  173.110656] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[  173.110658] amdgpu 0000:06:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[  173.118072] amdgpu 0000:06:00.0: amdgpu: recover vram bo from shadow start
[  173.118073] amdgpu 0000:06:00.0: amdgpu: recover vram bo from shadow done
[  173.118075] [drm] Skip scheduling IBs!
[  173.118076] [drm] Skip scheduling IBs!
[  173.118087] [drm] Skip scheduling IBs!
[  173.118096] [drm] Skip scheduling IBs!
[  173.118098] [drm] Skip scheduling IBs!
[  173.118100] [drm] Skip scheduling IBs!
[  173.118101] [drm] Skip scheduling IBs!
[  173.118104] [drm] Skip scheduling IBs!
[  173.118106] [drm] Skip scheduling IBs!
[  173.118107] [drm] Skip scheduling IBs!
[  173.118109] [drm] Skip scheduling IBs!
[  173.118159] amdgpu 0000:06:00.0: amdgpu: GPU reset(4) succeeded!
[  173.118207] [drm] Skip scheduling IBs!
[  173.118212] [drm] Skip scheduling IBs!
[  173.118214] [drm] Skip scheduling IBs!
[  183.325125] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* ring gfx timeout, signaled seq=142249, emitted seq=142251
[  183.325207] [drm:amdgpu_job_timedout [amdgpu]] *ERROR* Process information: process plasmashell pid 5612 thread plasmashel:cs0 pid 5803
[  183.325212] amdgpu 0000:06:00.0: amdgpu: GPU reset begin!
[  183.438029] [drm] free PSP TMR buffer
[  183.468161] amdgpu 0000:06:00.0: amdgpu: GPU reset succeeded, trying to resume
[  183.468345] [drm] PCIE GART of 1024M enabled (table at 0x000000F400900000).
[  183.468625] [drm] PSP is resuming...
[  183.488670] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR
[  183.554037] amdgpu 0000:06:00.0: amdgpu: RAS: optional ras ta ucode is not available
[  183.560052] amdgpu 0000:06:00.0: amdgpu: RAP: optional rap ta ucode is not available
[  183.777668] [drm] kiq ring mec 2 pipe 1 q 0
[  183.860626] [drm] VCN decode and encode initialized successfully(under SPG Mode).
[  183.860632] amdgpu 0000:06:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0
[  183.860634] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0
[  183.860635] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0
[  183.860636] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0
[  183.860637] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0
[  183.860638] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0
[  183.860639] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0
[  183.860640] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0
[  183.860642] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0
[  183.860643] amdgpu 0000:06:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0
[  183.860644] amdgpu 0000:06:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1
[  183.860644] amdgpu 0000:06:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1
[  183.860645] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1
[  183.860646] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1
[  183.860647] amdgpu 0000:06:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1
[  183.867883] amdgpu 0000:06:00.0: amdgpu: recover vram bo from shadow start
[  183.867885] amdgpu 0000:06:00.0: amdgpu: recover vram bo from shadow done
[  183.867887] [drm] Skip scheduling IBs!
[  183.867888] [drm] Skip scheduling IBs!
[  183.867921] [drm] Skip scheduling IBs!
[  183.867924] [drm] Skip scheduling IBs!
[  183.867966] amdgpu 0000:06:00.0: amdgpu: GPU reset(6) succeeded!
[  183.867998] [drm] Skip scheduling IBs!
[  183.868001] [drm] Skip scheduling IBs!
[  183.868002] [drm] Skip scheduling IBs!
[  183.868004] [drm] Skip scheduling IBs!
[  183.868006] [drm] Skip scheduling IBs!
[  183.868007] [drm] Skip scheduling IBs!
[  183.868008] [drm] Skip scheduling IBs!
[  183.868010] [drm] Skip scheduling IBs!
[  183.868011] [drm] Skip scheduling IBs!
[  183.868013] [drm] Skip scheduling IBs!
[  183.868015] [drm] Skip scheduling IBs!
[  183.868016] [drm] Skip scheduling IBs!
[  183.868018] [drm] Skip scheduling IBs!
[  183.868019] [drm] Skip scheduling IBs!
[  183.868054] [drm] Skip scheduling IBs!
[  183.868101] [drm] Skip scheduling IBs!
[  188.017467] elogind-daemon[5481]: New session 3 of user root.
Add Comment
Author