Paste #163875 |
pasted on 17.02.2021 15:20
- Edit to this paste
- Raw
- The following pastes replied to this paste: # 268435
- Show paste tree
-
Compare with paste
#
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 | [ 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.571 MHz processor [ 0.000332] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved [ 0.000333] e820: remove [mem 0x000a0000-0x000fffff] usable [ 0.000338] last_pfn = 0x21f340 max_arch_pfn = 0x400000000 [ 0.000341] MTRR default type: uncachable [ 0.000342] MTRR fixed ranges enabled: [ 0.000343] 00000-9FFFF write-back [ 0.000343] A0000-BFFFF write-through [ 0.000344] C0000-FFFFF write-protect [ 0.000345] MTRR variable ranges enabled: [ 0.000345] 0 base 000000000000 mask FFFF80000000 write-back [ 0.000346] 1 base 000080000000 mask FFFFC0000000 write-back [ 0.000347] 2 base 0000C0000000 mask FFFFE0000000 write-back [ 0.000347] 3 disabled [ 0.000348] 4 disabled [ 0.000348] 5 disabled [ 0.000348] 6 disabled [ 0.000349] 7 disabled [ 0.000349] TOM2: 0000000220000000 aka 8704M [ 0.000826] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.000925] e820: update [mem 0xe0000000-0xffffffff] usable ==> reserved [ 0.000929] last_pfn = 0x5f000 max_arch_pfn = 0x400000000 [ 0.004248] esrt: Reserving ESRT space from 0x00000000593d9018 to 0x00000000593d9050. [ 0.004258] e820: update [mem 0x593d9000-0x593d9fff] usable ==> reserved [ 0.004317] Using GB pages for direct mapping [ 0.005026] Secure boot could not be determined [ 0.005027] RAMDISK: [mem 0x35de5000-0x36ee9fff] [ 0.005038] 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.005049] ACPI: FACP 0x000000005BE8DBC0 000114 (v06 ALASKA A M I 01072009 AMI 00010013) [ 0.005053] ACPI: DSDT 0x000000005BE871E8 0069D7 (v02 ALASKA A M I 01072009 INTL 20120913) [ 0.005055] ACPI: FACS 0x000000005BEF3E00 000040 [ 0.005057] ACPI: APIC 0x000000005BE8DCD8 00015E (v03 ALASKA A M I 01072009 AMI 00010013) [ 0.005059] ACPI: FPDT 0x000000005BE8DE38 000044 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.005061] ACPI: FIDT 0x000000005BE8DE80 00009C (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.005063] ACPI: SSDT 0x000000005BE8DF20 000060 (v02 ALASKA CPUSSDT 01072009 AMI 01072009) [ 0.005065] ACPI: SSDT 0x000000005BE8DF80 005419 (v02 AMD AmdTable 00000002 MSFT 04000000) [ 0.005067] 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.005071] ACPI: AAFT 0x000000005BE96B70 0000A7 (v01 ALASKA OEMAAFT 01072009 MSFT 00000097) [ 0.005073] ACPI: HPET 0x000000005BE96C18 000038 (v01 ALASKA A M I 01072009 AMI 00000005) [ 0.005075] ACPI: UEFI 0x000000005BE96C50 000042 (v01 ALASKA A M I 00000002 01000013) [ 0.005077] ACPI: BGRT 0x000000005BE96C98 000038 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.005079] ACPI: SSDT 0x000000005BE96CD0 000718 (v01 AMD AMD CPU 00000001 AMD 00000001) [ 0.005081] ACPI: CRAT 0x000000005BE973E8 000810 (v01 AMD AMD CRAT 00000001 AMD 00000001) [ 0.005083] ACPI: CDIT 0x000000005BE97BF8 000029 (v01 AMD AMD CDIT 00000001 AMD 00000001) [ 0.005085] ACPI: SSDT 0x000000005BE97C28 001D34 (v01 AMD AmdTable 00000001 INTL 20120913) [ 0.005087] ACPI: SSDT 0x000000005BE99960 0000BF (v01 AMD AMD PT 00001000 INTL 20120913) [ 0.005089] ACPI: WSMT 0x000000005BE99A20 000028 (v01 ALASKA A M I 01072009 AMI 00010013) [ 0.005095] ACPI: Local APIC address 0xfee00000 [ 0.005135] No NUMA configuration found [ 0.005136] Faking a node at [mem 0x0000000000000000-0x000000021f33ffff] [ 0.005139] NODE_DATA(0) allocated [mem 0x21f33c000-0x21f33ffff] [ 0.005153] Zone ranges: [ 0.005153] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.005154] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] [ 0.005155] Normal [mem 0x0000000100000000-0x000000021f33ffff] [ 0.005156] Movable zone start for each node [ 0.005156] Early memory node ranges [ 0.005157] node 0: [mem 0x0000000000001000-0x000000000009ffff] [ 0.005158] node 0: [mem 0x0000000000100000-0x0000000009cfffff] [ 0.005158] node 0: [mem 0x000000000a000000-0x000000000a1fffff] [ 0.005159] node 0: [mem 0x000000000a20b000-0x000000000affffff] [ 0.005159] node 0: [mem 0x000000000b020000-0x000000005a4b3fff] [ 0.005160] node 0: [mem 0x000000005b981000-0x000000005bafffff] [ 0.005160] node 0: [mem 0x000000005cd02000-0x000000005effffff] [ 0.005161] node 0: [mem 0x0000000100000000-0x000000021f33ffff] [ 0.005260] Zeroed struct page in unavailable ranges: 18203 pages [ 0.005261] Initmem setup node 0 [mem 0x0000000000001000-0x000000021f33ffff] [ 0.005262] On node 0 totalpages: 1554661 [ 0.005263] DMA zone: 64 pages used for memmap [ 0.005264] DMA zone: 34 pages reserved [ 0.005264] DMA zone: 3999 pages, LIFO batch:0 [ 0.005285] DMA32 zone: 5849 pages used for memmap [ 0.005286] DMA32 zone: 374278 pages, LIFO batch:63 [ 0.009100] Normal zone: 18381 pages used for memmap [ 0.009104] Normal zone: 1176384 pages, LIFO batch:63 [ 0.021231] ACPI: PM-Timer IO Port: 0x808 [ 0.021234] ACPI: Local APIC address 0xfee00000 [ 0.021239] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) [ 0.021258] IOAPIC[0]: apic_id 5, version 33, address 0xfec00000, GSI 0-23 [ 0.021269] IOAPIC[1]: apic_id 6, version 33, address 0xfec01000, GSI 24-55 [ 0.021270] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.021271] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level) [ 0.021272] ACPI: IRQ0 used by override. [ 0.021273] ACPI: IRQ9 used by override. [ 0.021274] Using ACPI (MADT) for SMP configuration information [ 0.021275] ACPI: HPET id: 0x10228201 base: 0xfed00000 [ 0.021280] smpboot: Allowing 32 CPUs, 28 hotplug CPUs [ 0.021298] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.021299] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff] [ 0.021300] PM: hibernation: Registered nosave memory: [mem 0x09d00000-0x09ffffff] [ 0.021301] PM: hibernation: Registered nosave memory: [mem 0x0a200000-0x0a20afff] [ 0.021302] PM: hibernation: Registered nosave memory: [mem 0x0b000000-0x0b01ffff] [ 0.021303] PM: hibernation: Registered nosave memory: [mem 0x593d9000-0x593d9fff] [ 0.021305] PM: hibernation: Registered nosave memory: [mem 0x5a4b4000-0x5b980fff] [ 0.021306] PM: hibernation: Registered nosave memory: [mem 0x5bb00000-0x5bf09fff] [ 0.021306] PM: hibernation: Registered nosave memory: [mem 0x5bf0a000-0x5cc72fff] [ 0.021307] PM: hibernation: Registered nosave memory: [mem 0x5cc73000-0x5cd01fff] [ 0.021308] PM: hibernation: Registered nosave memory: [mem 0x5f000000-0xdfffffff] [ 0.021308] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xf7ffffff] [ 0.021308] PM: hibernation: Registered nosave memory: [mem 0xf8000000-0xfbffffff] [ 0.021309] PM: hibernation: Registered nosave memory: [mem 0xfc000000-0xfcffffff] [ 0.021309] PM: hibernation: Registered nosave memory: [mem 0xfd000000-0xffffffff] [ 0.021311] [mem 0xe0000000-0xf7ffffff] available for PCI devices [ 0.021314] Booting paravirtualized kernel on bare hardware [ 0.021317] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns [ 0.023983] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:32 nr_node_ids:1 [ 0.025491] percpu: Embedded 44 pages/cpu s141272 r8192 d30760 u262144 [ 0.025500] pcpu-alloc: s141272 r8192 d30760 u262144 alloc=1*2097152 [ 0.025501] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 [ 0.025506] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 [ 0.025534] Built 1 zonelists, mobility grouping on. Total pages: 1530333 [ 0.025535] Policy zone: Normal [ 0.025537] 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.025601] printk: log_buf_len individual max cpu contribution: 4096 bytes [ 0.025601] printk: log_buf_len total cpu_extra contributions: 126976 bytes [ 0.025602] printk: log_buf_len min size: 32768 bytes [ 0.025807] printk: log_buf_len: 262144 bytes [ 0.025808] printk: early log buf free: 22280(67%) [ 0.026835] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear) [ 0.027352] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) [ 0.027425] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.048413] Memory: 5899244K/6218644K available (10243K kernel code, 762K rwdata, 2256K rodata, 1060K init, 1224K bss, 319144K reserved, 0K cma-reserved) [ 0.048494] random: get_random_u64 called from cache_random_seq_create+0x7b/0x170 with crng_init=0 [ 0.048645] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1 [ 0.048821] rcu: Preemptible hierarchical RCU implementation. [ 0.048822] rcu: RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=32. [ 0.048822] Trampoline variant of Tasks RCU enabled. [ 0.048823] Tracing variant of Tasks RCU enabled. [ 0.048823] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.048824] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32 [ 0.048855] NR_IRQS: 4352, nr_irqs: 1224, preallocated irqs: 16 [ 0.050946] random: crng done (trusting CPU's manufacturer) [ 0.051014] Console: colour dummy device 80x25 [ 0.051023] printk: console [tty0] enabled [ 0.051065] ACPI: Core revision 20200925 [ 0.051192] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns [ 0.051227] APIC: Switch to symmetric I/O mode setup [ 0.051230] Switched APIC routing to physical flat. [ 0.052570] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 [ 0.057230] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x325b97eb134, max_idle_ns: 440795241149 ns [ 0.057234] Calibrating delay loop (skipped), value calculated using timer frequency.. 6987.14 BogoMIPS (lpj=3493571) [ 0.057236] pid_max: default: 32768 minimum: 301 [ 0.059755] ---[ User Space ]--- [ 0.059756] 0x0000000000000000-0x0000000000001000 4K RW NX pte [ 0.059760] 0x0000000000001000-0x0000000000008000 28K RW x pte [ 0.059764] 0x0000000000008000-0x000000000003e000 216K pte [ 0.059765] 0x000000000003e000-0x0000000000040000 8K pte [ 0.059768] 0x0000000000040000-0x00000000000a0000 384K RW x pte [ 0.059774] 0x00000000000a0000-0x0000000000200000 1408K pte [ 0.059775] 0x0000000000200000-0x0000000001000000 14M pmd [ 0.059777] 0x0000000001000000-0x0000000001020000 128K pte [ 0.059783] 0x0000000001020000-0x0000000001200000 1920K pte [ 0.059789] 0x0000000001200000-0x0000000056a00000 1368M pmd [ 0.059791] 0x0000000056a00000-0x0000000056a49000 292K pte [ 0.059793] 0x0000000056a49000-0x0000000056a6d000 144K pte [ 0.059795] 0x0000000056a6d000-0x0000000056ae6000 484K pte [ 0.059796] 0x0000000056ae6000-0x0000000056b00000 104K pte [ 0.059798] 0x0000000056b00000-0x0000000056b0b000 44K pte [ 0.059799] 0x0000000056b0b000-0x0000000056b12000 28K pte [ 0.059800] 0x0000000056b12000-0x0000000056b29000 92K pte [ 0.059801] 0x0000000056b29000-0x0000000056b2d000 16K pte [ 0.059803] 0x0000000056b2d000-0x0000000056b40000 76K pte [ 0.059804] 0x0000000056b40000-0x0000000056b41000 4K pte [ 0.059805] 0x0000000056b41000-0x0000000056b5f000 120K pte [ 0.059806] 0x0000000056b5f000-0x0000000056b6a000 44K pte [ 0.059808] 0x0000000056b6a000-0x0000000056b71000 28K pte [ 0.059809] 0x0000000056b71000-0x0000000056b72000 4K pte [ 0.059813] 0x0000000056b72000-0x0000000058c79000 33820K pte [ 0.059819] 0x0000000058c79000-0x0000000058e6d000 2000K pte [ 0.059821] 0x0000000058e6d000-0x0000000058f13000 664K pte [ 0.059822] 0x0000000058f13000-0x0000000058f17000 16K pte [ 0.059824] 0x0000000058f17000-0x0000000058f23000 48K pte [ 0.059825] 0x0000000058f23000-0x0000000058f26000 12K pte [ 0.059826] 0x0000000058f26000-0x0000000058f34000 56K pte [ 0.059827] 0x0000000058f34000-0x0000000058f35000 4K pte [ 0.059828] 0x0000000058f35000-0x0000000058f37000 8K RW NX pte [ 0.059831] 0x0000000058f37000-0x0000000058f44000 52K pte [ 0.059832] 0x0000000058f44000-0x0000000058f4c000 32K pte [ 0.059834] 0x0000000058f4c000-0x0000000058f66000 104K pte [ 0.059835] 0x0000000058f66000-0x0000000058f69000 12K pte [ 0.059836] 0x0000000058f69000-0x0000000058fa3000 232K pte [ 0.059838] 0x0000000058fa3000-0x0000000058fa5000 8K pte [ 0.059839] 0x0000000058fa5000-0x0000000058fd4000 188K pte [ 0.059840] 0x0000000058fd4000-0x0000000058fd6000 8K pte [ 0.059842] 0x0000000058fd6000-0x0000000058fef000 100K pte [ 0.059843] 0x0000000058fef000-0x0000000058ff2000 12K pte [ 0.059844] 0x0000000058ff2000-0x0000000058ff7000 20K pte [ 0.059845] 0x0000000058ff7000-0x0000000058ffc000 20K pte [ 0.059847] 0x0000000058ffc000-0x0000000059016000 104K pte [ 0.059848] 0x0000000059016000-0x000000005901f000 36K pte [ 0.059849] 0x000000005901f000-0x0000000059032000 76K pte [ 0.059850] 0x0000000059032000-0x0000000059035000 12K pte [ 0.059851] 0x0000000059035000-0x0000000059042000 52K pte [ 0.059853] 0x0000000059042000-0x0000000059048000 24K pte [ 0.059854] 0x0000000059048000-0x000000005904d000 20K pte [ 0.059855] 0x000000005904d000-0x000000005904f000 8K pte [ 0.059856] 0x000000005904f000-0x0000000059051000 8K pte [ 0.059857] 0x0000000059051000-0x0000000059056000 20K pte [ 0.059858] 0x0000000059056000-0x0000000059058000 8K pte [ 0.059860] 0x0000000059058000-0x000000005905a000 8K pte [ 0.059861] 0x000000005905a000-0x0000000059074000 104K pte [ 0.059862] 0x0000000059074000-0x000000005907a000 24K pte [ 0.059863] 0x000000005907a000-0x0000000059083000 36K pte [ 0.059864] 0x0000000059083000-0x0000000059086000 12K pte [ 0.059866] 0x0000000059086000-0x0000000059089000 12K pte [ 0.059867] 0x0000000059089000-0x000000005908c000 12K pte [ 0.059868] 0x000000005908c000-0x000000005908d000 4K pte [ 0.059869] 0x000000005908d000-0x000000005908e000 4K pte [ 0.059870] 0x000000005908e000-0x000000005908f000 4K pte [ 0.059876] 0x000000005908f000-0x000000005926b000 1904K pte [ 0.059877] 0x000000005926b000-0x0000000059277000 48K pte [ 0.059878] 0x0000000059277000-0x000000005928c000 84K pte [ 0.059880] 0x000000005928c000-0x0000000059294000 32K pte [ 0.059881] 0x0000000059294000-0x0000000059295000 4K pte [ 0.059882] 0x0000000059295000-0x00000000592ad000 96K pte [ 0.059883] 0x00000000592ad000-0x00000000592b3000 24K pte [ 0.059884] 0x00000000592b3000-0x00000000592b4000 4K pte [ 0.059885] 0x00000000592b4000-0x00000000592b5000 4K pte [ 0.059887] 0x00000000592b5000-0x00000000592b7000 8K pte [ 0.059888] 0x00000000592b7000-0x00000000592b8000 4K pte [ 0.059889] 0x00000000592b8000-0x00000000592bb000 12K pte [ 0.059890] 0x00000000592bb000-0x00000000592be000 12K pte [ 0.059891] 0x00000000592be000-0x00000000592ca000 48K pte [ 0.059892] 0x00000000592ca000-0x00000000592cb000 4K pte [ 0.059893] 0x00000000592cb000-0x00000000592d0000 20K pte [ 0.059895] 0x00000000592d0000-0x00000000592d3000 12K pte [ 0.059896] 0x00000000592d3000-0x00000000592e8000 84K pte [ 0.059897] 0x00000000592e8000-0x00000000592e9000 4K pte [ 0.059898] 0x00000000592e9000-0x00000000592ea000 4K pte [ 0.059899] 0x00000000592ea000-0x00000000592f4000 40K pte [ 0.059900] 0x00000000592f4000-0x00000000592f5000 4K pte [ 0.059902] 0x00000000592f5000-0x00000000592fc000 28K pte [ 0.059903] 0x00000000592fc000-0x0000000059301000 20K pte [ 0.059904] 0x0000000059301000-0x0000000059302000 4K pte [ 0.059905] 0x0000000059302000-0x0000000059306000 16K pte [ 0.059906] 0x0000000059306000-0x000000005930c000 24K pte [ 0.059908] 0x000000005930c000-0x000000005931d000 68K pte [ 0.059909] 0x000000005931d000-0x000000005931e000 4K pte [ 0.059910] 0x000000005931e000-0x000000005931f000 4K pte [ 0.059911] 0x000000005931f000-0x0000000059326000 28K pte [ 0.059912] 0x0000000059326000-0x000000005933f000 100K pte [ 0.059913] 0x000000005933f000-0x0000000059347000 32K pte [ 0.059915] 0x0000000059347000-0x0000000059350000 36K pte [ 0.059916] 0x0000000059350000-0x000000005937f000 188K pte [ 0.059917] 0x000000005937f000-0x0000000059380000 4K pte [ 0.059918] 0x0000000059380000-0x0000000059381000 4K pte [ 0.059920] 0x0000000059381000-0x0000000059382000 4K pte [ 0.059921] 0x0000000059382000-0x0000000059383000 4K pte [ 0.059923] 0x0000000059383000-0x00000000593d9000 344K pte [ 0.059924] 0x00000000593d9000-0x00000000593da000 4K RW NX pte [ 0.059926] 0x00000000593da000-0x00000000593dc000 8K pte [ 0.059927] 0x00000000593dc000-0x00000000593de000 8K pte [ 0.059928] 0x00000000593de000-0x00000000593df000 4K pte [ 0.059930] 0x00000000593df000-0x00000000593eb000 48K pte [ 0.059931] 0x00000000593eb000-0x00000000593f6000 44K pte [ 0.059933] 0x00000000593f6000-0x000000005943e000 288K pte [ 0.059934] 0x000000005943e000-0x0000000059444000 24K pte [ 0.059935] 0x0000000059444000-0x000000005944f000 44K pte [ 0.059936] 0x000000005944f000-0x0000000059451000 8K pte [ 0.059937] 0x0000000059451000-0x0000000059452000 4K pte [ 0.059939] 0x0000000059452000-0x000000005945a000 32K pte [ 0.059940] 0x000000005945a000-0x0000000059461000 28K pte [ 0.059941] 0x0000000059461000-0x0000000059464000 12K pte [ 0.059942] 0x0000000059464000-0x0000000059475000 68K pte [ 0.059943] 0x0000000059475000-0x0000000059478000 12K pte [ 0.059945] 0x0000000059478000-0x00000000594a5000 180K pte [ 0.059946] 0x00000000594a5000-0x00000000594ae000 36K pte [ 0.059947] 0x00000000594ae000-0x00000000594b3000 20K pte [ 0.059948] 0x00000000594b3000-0x00000000594b5000 8K pte [ 0.059950] 0x00000000594b5000-0x00000000594bd000 32K pte [ 0.059951] 0x00000000594bd000-0x00000000594be000 4K pte [ 0.059952] 0x00000000594be000-0x00000000594c0000 8K pte [ 0.059953] 0x00000000594c0000-0x00000000594c4000 16K pte [ 0.059954] 0x00000000594c4000-0x00000000594d4000 64K pte [ 0.059955] 0x00000000594d4000-0x00000000594d5000 4K pte [ 0.059956] 0x00000000594d5000-0x00000000594d6000 4K pte [ 0.059958] 0x00000000594d6000-0x00000000594d7000 4K pte [ 0.059959] 0x00000000594d7000-0x00000000594e3000 48K pte [ 0.059960] 0x00000000594e3000-0x00000000594e6000 12K pte [ 0.059961] 0x00000000594e6000-0x00000000594e7000 4K pte [ 0.059962] 0x00000000594e7000-0x00000000594ea000 12K pte [ 0.059963] 0x00000000594ea000-0x00000000594ec000 8K pte [ 0.059964] 0x00000000594ec000-0x00000000594ed000 4K pte [ 0.059966] 0x00000000594ed000-0x00000000594ee000 4K pte [ 0.059967] 0x00000000594ee000-0x00000000594ef000 4K pte [ 0.059968] 0x00000000594ef000-0x00000000594f0000 4K pte [ 0.059969] 0x00000000594f0000-0x00000000594f2000 8K pte [ 0.059970] 0x00000000594f2000-0x00000000594f3000 4K pte [ 0.059971] 0x00000000594f3000-0x00000000594f6000 12K pte [ 0.059972] 0x00000000594f6000-0x0000000059507000 68K pte [ 0.059974] 0x0000000059507000-0x000000005950c000 20K pte [ 0.059975] 0x000000005950c000-0x000000005950e000 8K pte [ 0.059976] 0x000000005950e000-0x0000000059510000 8K pte [ 0.059977] 0x0000000059510000-0x0000000059515000 20K pte [ 0.059978] 0x0000000059515000-0x0000000059517000 8K pte [ 0.059979] 0x0000000059517000-0x0000000059518000 4K pte [ 0.059980] 0x0000000059518000-0x000000005951a000 8K pte [ 0.059982] 0x000000005951a000-0x000000005951d000 12K pte [ 0.059983] 0x000000005951d000-0x0000000059521000 16K pte [ 0.059984] 0x0000000059521000-0x0000000059526000 20K pte [ 0.059985] 0x0000000059526000-0x0000000059529000 12K pte [ 0.059986] 0x0000000059529000-0x0000000059536000 52K pte [ 0.059987] 0x0000000059536000-0x0000000059537000 4K pte [ 0.059989] 0x0000000059537000-0x0000000059538000 4K pte [ 0.059990] 0x0000000059538000-0x0000000059539000 4K pte [ 0.059991] 0x0000000059539000-0x000000005953f000 24K pte [ 0.059992] 0x000000005953f000-0x0000000059541000 8K pte [ 0.059993] 0x0000000059541000-0x0000000059542000 4K pte [ 0.059994] 0x0000000059542000-0x0000000059543000 4K pte [ 0.059995] 0x0000000059543000-0x0000000059549000 24K pte [ 0.059996] 0x0000000059549000-0x000000005954b000 8K pte [ 0.059998] 0x000000005954b000-0x000000005954c000 4K pte [ 0.059999] 0x000000005954c000-0x000000005954d000 4K pte [ 0.060000] 0x000000005954d000-0x000000005955a000 52K pte [ 0.060001] 0x000000005955a000-0x000000005955b000 4K pte [ 0.060002] 0x000000005955b000-0x0000000059560000 20K pte [ 0.060003] 0x0000000059560000-0x0000000059562000 8K pte [ 0.060004] 0x0000000059562000-0x0000000059563000 4K pte [ 0.060005] 0x0000000059563000-0x0000000059565000 8K pte [ 0.060007] 0x0000000059565000-0x0000000059573000 56K pte [ 0.060008] 0x0000000059573000-0x0000000059575000 8K pte [ 0.060009] 0x0000000059575000-0x0000000059579000 16K pte [ 0.060010] 0x0000000059579000-0x000000005959a000 132K pte [ 0.060012] 0x000000005959a000-0x000000005959c000 8K pte [ 0.060013] 0x000000005959c000-0x000000005959e000 8K pte [ 0.060014] 0x000000005959e000-0x00000000595a0000 8K pte [ 0.060015] 0x00000000595a0000-0x00000000595b4000 80K pte [ 0.060016] 0x00000000595b4000-0x00000000595c4000 64K pte [ 0.060018] 0x00000000595c4000-0x00000000595cd000 36K pte [ 0.060019] 0x00000000595cd000-0x00000000595ce000 4K pte [ 0.060021] 0x00000000595ce000-0x00000000595cf000 4K pte [ 0.060022] 0x00000000595cf000-0x00000000595d1000 8K pte [ 0.060024] 0x00000000595d1000-0x00000000595d4000 12K pte [ 0.060025] 0x00000000595d4000-0x00000000595d6000 8K pte [ 0.060026] 0x00000000595d6000-0x00000000595d7000 4K pte [ 0.060028] 0x00000000595d7000-0x00000000595d8000 4K pte [ 0.060029] 0x00000000595d8000-0x00000000595d9000 4K pte [ 0.060031] 0x00000000595d9000-0x00000000595e8000 60K pte [ 0.060032] 0x00000000595e8000-0x00000000595ea000 8K pte [ 0.060033] 0x00000000595ea000-0x00000000595eb000 4K pte [ 0.060035] 0x00000000595eb000-0x00000000595ed000 8K pte [ 0.060036] 0x00000000595ed000-0x00000000595ee000 4K pte [ 0.060038] 0x00000000595ee000-0x00000000595ef000 4K pte [ 0.060039] 0x00000000595ef000-0x00000000595f6000 28K pte [ 0.060040] 0x00000000595f6000-0x00000000595f7000 4K pte [ 0.060042] 0x00000000595f7000-0x00000000595fb000 16K pte [ 0.060043] 0x00000000595fb000-0x00000000595fe000 12K pte [ 0.060045] 0x00000000595fe000-0x0000000059601000 12K pte [ 0.060046] 0x0000000059601000-0x0000000059602000 4K pte [ 0.060048] 0x0000000059602000-0x0000000059604000 8K pte [ 0.060049] 0x0000000059604000-0x0000000059609000 20K pte [ 0.060051] 0x0000000059609000-0x000000005960c000 12K pte [ 0.060052] 0x000000005960c000-0x000000005960f000 12K pte [ 0.060053] 0x000000005960f000-0x0000000059612000 12K pte [ 0.060055] 0x0000000059612000-0x0000000059613000 4K pte [ 0.060057] 0x0000000059613000-0x0000000059635000 136K pte [ 0.060058] 0x0000000059635000-0x0000000059636000 4K pte [ 0.060059] 0x0000000059636000-0x0000000059637000 4K pte [ 0.060061] 0x0000000059637000-0x0000000059638000 4K pte [ 0.060062] 0x0000000059638000-0x0000000059643000 44K pte [ 0.060064] 0x0000000059643000-0x0000000059644000 4K pte [ 0.060065] 0x0000000059644000-0x0000000059647000 12K pte [ 0.060067] 0x0000000059647000-0x0000000059648000 4K pte [ 0.060068] 0x0000000059648000-0x0000000059649000 4K pte [ 0.060069] 0x0000000059649000-0x000000005964a000 4K pte [ 0.060071] 0x000000005964a000-0x000000005964d000 12K pte [ 0.060078] 0x000000005964d000-0x0000000059a4d000 4M pte [ 0.060080] 0x0000000059a4d000-0x0000000059a6c000 124K pte [ 0.060081] 0x0000000059a6c000-0x0000000059a6d000 4K pte [ 0.060083] 0x0000000059a6d000-0x0000000059a6e000 4K pte [ 0.060084] 0x0000000059a6e000-0x0000000059a6f000 4K pte [ 0.060085] 0x0000000059a6f000-0x0000000059a70000 4K pte [ 0.060087] 0x0000000059a70000-0x0000000059a71000 4K pte [ 0.060088] 0x0000000059a71000-0x0000000059a73000 8K pte [ 0.060090] 0x0000000059a73000-0x0000000059a74000 4K pte [ 0.060091] 0x0000000059a74000-0x0000000059a78000 16K pte [ 0.060092] 0x0000000059a78000-0x0000000059a7c000 16K pte [ 0.060094] 0x0000000059a7c000-0x0000000059a7d000 4K pte [ 0.060095] 0x0000000059a7d000-0x0000000059a7e000 4K pte [ 0.060096] 0x0000000059a7e000-0x0000000059a7f000 4K pte [ 0.060097] 0x0000000059a7f000-0x0000000059a80000 4K pte [ 0.060099] 0x0000000059a80000-0x0000000059a85000 20K pte [ 0.060100] 0x0000000059a85000-0x0000000059a88000 12K pte [ 0.060101] 0x0000000059a88000-0x0000000059a89000 4K pte [ 0.060102] 0x0000000059a89000-0x0000000059a8c000 12K pte [ 0.060103] 0x0000000059a8c000-0x0000000059a8d000 4K pte [ 0.060104] 0x0000000059a8d000-0x0000000059a93000 24K pte [ 0.060106] 0x0000000059a93000-0x0000000059a96000 12K pte [ 0.060112] 0x0000000059a96000-0x000000005a4b4000 10360K pte [ 0.060116] 0x000000005a4b4000-0x000000005a600000 1328K pte [ 0.060118] 0x000000005a600000-0x000000005be00000 24M pmd [ 0.060121] 0x000000005be00000-0x000000005bf0a000 1064K pte [ 0.060125] 0x000000005bf0a000-0x000000005c000000 984K RW NX pte [ 0.060127] 0x000000005c000000-0x000000005cc00000 12M RW PSE NX pmd [ 0.060131] 0x000000005cc00000-0x000000005cc90000 576K RW NX pte [ 0.060134] 0x000000005cc90000-0x000000005cc93000 12K ro x pte [ 0.060136] 0x000000005cc93000-0x000000005cc98000 20K RW NX pte [ 0.060139] 0x000000005cc98000-0x000000005cc99000 4K ro x pte [ 0.060141] 0x000000005cc99000-0x000000005cc9e000 20K RW NX pte [ 0.060144] 0x000000005cc9e000-0x000000005cca1000 12K ro x pte [ 0.060146] 0x000000005cca1000-0x000000005cca6000 20K RW NX pte [ 0.060149] 0x000000005cca6000-0x000000005cca7000 4K ro x pte [ 0.060151] 0x000000005cca7000-0x000000005ccab000 16K RW NX pte [ 0.060154] 0x000000005ccab000-0x000000005ccb9000 56K ro x pte [ 0.060156] 0x000000005ccb9000-0x000000005ccc1000 32K RW NX pte [ 0.060159] 0x000000005ccc1000-0x000000005ccc4000 12K ro x pte [ 0.060161] 0x000000005ccc4000-0x000000005ccc9000 20K RW NX pte [ 0.060163] 0x000000005ccc9000-0x000000005ccca000 4K ro x pte [ 0.060166] 0x000000005ccca000-0x000000005cccf000 20K RW NX pte [ 0.060168] 0x000000005cccf000-0x000000005ccd0000 4K ro x pte [ 0.060171] 0x000000005ccd0000-0x000000005ccd5000 20K RW NX pte [ 0.060173] 0x000000005ccd5000-0x000000005ccd6000 4K ro x pte [ 0.060175] 0x000000005ccd6000-0x000000005ccdb000 20K RW NX pte [ 0.060178] 0x000000005ccdb000-0x000000005ccdc000 4K ro x pte [ 0.060180] 0x000000005ccdc000-0x000000005cce0000 16K RW NX pte [ 0.060183] 0x000000005cce0000-0x000000005ccea000 40K ro x pte [ 0.060185] 0x000000005ccea000-0x000000005ccf0000 24K RW NX pte [ 0.060188] 0x000000005ccf0000-0x000000005ccf4000 16K ro x pte [ 0.060190] 0x000000005ccf4000-0x000000005ccf9000 20K RW NX pte [ 0.060193] 0x000000005ccf9000-0x000000005ccfd000 16K ro x pte [ 0.060195] 0x000000005ccfd000-0x000000005cd02000 20K RW NX pte [ 0.060200] 0x000000005cd02000-0x000000005d005000 3084K pte [ 0.060201] 0x000000005d005000-0x000000005d024000 124K pte [ 0.060203] 0x000000005d024000-0x000000005d054000 192K pte [ 0.060204] 0x000000005d054000-0x000000005d062000 56K pte [ 0.060214] 0x000000005d062000-0x000000005e5fe000 22128K pte [ 0.060215] 0x000000005e5fe000-0x000000005e5ff000 4K pte [ 0.060217] 0x000000005e5ff000-0x000000005e611000 72K pte [ 0.060218] 0x000000005e611000-0x000000005e619000 32K pte [ 0.060219] 0x000000005e619000-0x000000005e63e000 148K pte [ 0.060221] 0x000000005e63e000-0x000000005e64e000 64K pte [ 0.060222] 0x000000005e64e000-0x000000005e66f000 132K pte [ 0.060224] 0x000000005e66f000-0x000000005e688000 100K pte [ 0.060237] 0x000000005e688000-0x000000005eff9000 9668K pte [ 0.060238] 0x000000005eff9000-0x000000005f000000 28K pte [ 0.060241] 0x000000005f000000-0x0000000080000000 528M pmd [ 0.060242] 0x0000000080000000-0x00000000c0000000 1G pud [ 0.060247] 0x00000000c0000000-0x00000000f8000000 896M pmd [ 0.060248] 0x00000000f8000000-0x00000000fc000000 64M RW PSE NX pmd [ 0.060251] 0x00000000fc000000-0x00000000fd000000 16M pmd [ 0.060253] 0x00000000fd000000-0x0000000100000000 48M RW PCD PSE NX pmd [ 0.060257] 0x0000000100000000-0x00000001000b8000 736K pte [ 0.060258] 0x00000001000b8000-0x00000001000bc000 16K RW NX pte [ 0.060264] 0x00000001000bc000-0x0000000100200000 1296K pte [ 0.060269] 0x0000000100200000-0x0000000140000000 1022M pmd [ 0.060274] 0x0000000140000000-0x0000008000000000 507G pud [ 0.060279] 0x0000008000000000-0xffff880000000000 17179745792G pgd [ 0.060280] ---[ Kernel Space ]--- [ 0.060281] 0xffff880000000000-0xffff888000000000 512G pgd [ 0.060282] ---[ LDT remap ]--- [ 0.060283] 0xffff888000000000-0xffff888000001000 4K RW GLB NX pte [ 0.060285] ---[ Low Kernel Mapping ]--- [ 0.060286] 0xffff888000001000-0xffff888000002000 4K RW GLB NX pte [ 0.060288] ---[ vmalloc() Area ]--- [ 0.060288] 0xffff888000002000-0xffff888000003000 4K RW GLB NX pte [ 0.060291] ---[ Vmemmap ]--- [ 0.060296] 0xffff888000003000-0xffff888000200000 2036K RW GLB NX pte [ 0.060299] 0xffff888000200000-0xffff888004400000 66M RW PSE GLB NX pmd [ 0.060304] 0xffff888004400000-0xffff8880044cf000 828K RW GLB NX pte [ 0.060306] 0xffff8880044cf000-0xffff8880044d0000 4K ro GLB NX pte [ 0.060311] 0xffff8880044d0000-0xffff888004600000 1216K RW GLB NX pte [ 0.060315] 0xffff888004600000-0xffff888009c00000 86M RW PSE GLB NX pmd [ 0.060319] 0xffff888009c00000-0xffff888009d00000 1M RW GLB NX pte [ 0.060324] 0xffff888009d00000-0xffff888009e00000 1M pte [ 0.060326] 0xffff888009e00000-0xffff88800a000000 2M pmd [ 0.060327] 0xffff88800a000000-0xffff88800a200000 2M RW PSE GLB NX pmd [ 0.060329] 0xffff88800a200000-0xffff88800a20b000 44K pte [ 0.060336] 0xffff88800a20b000-0xffff88800a400000 2004K RW GLB NX pte [ 0.060338] 0xffff88800a400000-0xffff88800b000000 12M RW PSE GLB NX pmd [ 0.060341] 0xffff88800b000000-0xffff88800b020000 128K pte [ 0.060347] 0xffff88800b020000-0xffff88800b200000 1920K RW GLB NX pte [ 0.060359] 0xffff88800b200000-0xffff88805a400000 1266M RW PSE GLB NX pmd [ 0.060363] 0xffff88805a400000-0xffff88805a4b4000 720K RW GLB NX pte [ 0.060369] 0xffff88805a4b4000-0xffff88805a600000 1328K pte [ 0.060371] 0xffff88805a600000-0xffff88805b800000 18M pmd [ 0.060376] 0xffff88805b800000-0xffff88805b981000 1540K pte [ 0.060381] 0xffff88805b981000-0xffff88805bb00000 1532K RW GLB NX pte [ 0.060386] 0xffff88805bb00000-0xffff88805bc00000 1M pte [ 0.060387] 0xffff88805bc00000-0xffff88805cc00000 16M pmd [ 0.060391] 0xffff88805cc00000-0xffff88805cd02000 1032K pte [ 0.060395] 0xffff88805cd02000-0xffff88805ce00000 1016K RW GLB NX pte [ 0.060398] 0xffff88805ce00000-0xffff88805f000000 34M RW PSE GLB NX pmd [ 0.060402] 0xffff88805f000000-0xffff888080000000 528M pmd [ 0.060403] 0xffff888080000000-0xffff888100000000 2G pud [ 0.060405] 0xffff888100000000-0xffff888200000000 4G RW PSE GLB NX pud [ 0.060411] 0xffff888200000000-0xffff88821f200000 498M RW PSE GLB NX pmd [ 0.060417] 0xffff88821f200000-0xffff88821f340000 1280K RW GLB NX pte [ 0.060421] 0xffff88821f340000-0xffff88821f400000 768K pte [ 0.060424] 0xffff88821f400000-0xffff888240000000 524M pmd [ 0.060429] 0xffff888240000000-0xffff890000000000 503G pud [ 0.060432] 0xffff890000000000-0xffffc90000000000 64T pgd [ 0.060433] 0xffffc90000000000-0xffffc90000004000 16K RW GLB NX pte [ 0.060436] 0xffffc90000004000-0xffffc90000005000 4K pte [ 0.060437] 0xffffc90000005000-0xffffc90000006000 4K RW GLB NX pte [ 0.060440] 0xffffc90000006000-0xffffc90000008000 8K pte [ 0.060441] 0xffffc90000008000-0xffffc9000000f000 28K RW GLB NX pte [ 0.060443] 0xffffc9000000f000-0xffffc90000010000 4K pte [ 0.060444] 0xffffc90000010000-0xffffc90000011000 4K RW GLB NX pte [ 0.060447] 0xffffc90000011000-0xffffc90000012000 4K pte [ 0.060448] 0xffffc90000012000-0xffffc90000014000 8K RW GLB NX pte [ 0.060450] 0xffffc90000014000-0xffffc90000015000 4K pte [ 0.060451] 0xffffc90000015000-0xffffc90000016000 4K RW PCD GLB NX pte [ 0.060454] 0xffffc90000016000-0xffffc90000018000 8K pte [ 0.060455] 0xffffc90000018000-0xffffc9000001f000 28K RW GLB NX pte [ 0.060458] 0xffffc9000001f000-0xffffc90000020000 4K pte [ 0.060459] 0xffffc90000020000-0xffffc90000024000 16K RW GLB NX pte [ 0.060461] 0xffffc90000024000-0xffffc90000028000 16K pte [ 0.060462] 0xffffc90000028000-0xffffc9000002b000 12K RW GLB NX pte [ 0.060469] 0xffffc9000002b000-0xffffc90000200000 1876K pte [ 0.060474] 0xffffc90000200000-0xffffc90040000000 1022M pmd [ 0.060717] 0xffffc90040000000-0xffffe90000000000 32767G pud [ 0.060718] 0xffffe90000000000-0xffffea0000000000 1T pgd [ 0.060720] 0xffffea0000000000-0xffffea0001800000 24M RW PSE GLB NX pmd [ 0.060722] 0xffffea0001800000-0xffffea0004000000 40M pmd [ 0.060724] 0xffffea0004000000-0xffffea0008800000 72M RW PSE GLB NX pmd [ 0.060730] 0xffffea0008800000-0xffffea0040000000 888M pmd [ 0.060735] 0xffffea0040000000-0xffffea8000000000 511G pud [ 0.060737] 0xffffea8000000000-0xfffffe0000000000 19968G pgd [ 0.060738] ---[ CPU entry Area ]--- [ 0.060738] 0xfffffe0000000000-0xfffffe0000002000 8K ro GLB NX pte [ 0.060741] 0xfffffe0000002000-0xfffffe0000003000 4K RW GLB NX pte [ 0.060743] 0xfffffe0000003000-0xfffffe0000008000 20K ro GLB NX pte [ 0.060746] 0xfffffe0000008000-0xfffffe0000009000 4K pte [ 0.060747] 0xfffffe0000009000-0xfffffe000000a000 4K RW GLB NX pte [ 0.060749] 0xfffffe000000a000-0xfffffe000000b000 4K pte [ 0.060750] 0xfffffe000000b000-0xfffffe000000c000 4K RW GLB NX pte [ 0.060753] 0xfffffe000000c000-0xfffffe000000d000 4K pte [ 0.060754] 0xfffffe000000d000-0xfffffe000000e000 4K RW GLB NX pte [ 0.060756] 0xfffffe000000e000-0xfffffe000000f000 4K pte [ 0.060757] 0xfffffe000000f000-0xfffffe0000010000 4K RW GLB NX pte [ 0.060760] 0xfffffe0000010000-0xfffffe0000036000 152K pte [ 0.060761] 0xfffffe0000036000-0xfffffe0000037000 4K ro GLB NX pte [ 0.060764] 0xfffffe0000037000-0xfffffe0000038000 4K RW GLB NX pte [ 0.060766] 0xfffffe0000038000-0xfffffe000003d000 20K ro GLB NX pte [ 0.060769] 0xfffffe000003d000-0xfffffe000003e000 4K pte [ 0.060770] 0xfffffe000003e000-0xfffffe000003f000 4K RW GLB NX pte [ 0.060772] 0xfffffe000003f000-0xfffffe0000040000 4K pte [ 0.060773] 0xfffffe0000040000-0xfffffe0000041000 4K RW GLB NX pte [ 0.060776] 0xfffffe0000041000-0xfffffe0000042000 4K pte [ 0.060777] 0xfffffe0000042000-0xfffffe0000043000 4K RW GLB NX pte [ 0.060779] 0xfffffe0000043000-0xfffffe0000044000 4K pte [ 0.060780] 0xfffffe0000044000-0xfffffe0000045000 4K RW GLB NX pte [ 0.060783] 0xfffffe0000045000-0xfffffe000006b000 152K pte [ 0.060784] 0xfffffe000006b000-0xfffffe000006c000 4K ro GLB NX pte [ 0.060787] 0xfffffe000006c000-0xfffffe000006d000 4K RW GLB NX pte [ 0.060789] 0xfffffe000006d000-0xfffffe0000072000 20K ro GLB NX pte [ 0.060792] 0xfffffe0000072000-0xfffffe0000073000 4K pte [ 0.060793] 0xfffffe0000073000-0xfffffe0000074000 4K RW GLB NX pte [ 0.060795] 0xfffffe0000074000-0xfffffe0000075000 4K pte [ 0.060796] 0xfffffe0000075000-0xfffffe0000076000 4K RW GLB NX pte [ 0.060799] 0xfffffe0000076000-0xfffffe0000077000 4K pte [ 0.060800] 0xfffffe0000077000-0xfffffe0000078000 4K RW GLB NX pte [ 0.060802] 0xfffffe0000078000-0xfffffe0000079000 4K pte [ 0.060803] 0xfffffe0000079000-0xfffffe000007a000 4K RW GLB NX pte [ 0.060806] 0xfffffe000007a000-0xfffffe00000a0000 152K pte [ 0.060807] 0xfffffe00000a0000-0xfffffe00000a1000 4K ro GLB NX pte [ 0.060810] 0xfffffe00000a1000-0xfffffe00000a2000 4K RW GLB NX pte [ 0.060812] 0xfffffe00000a2000-0xfffffe00000a7000 20K ro GLB NX pte [ 0.060815] 0xfffffe00000a7000-0xfffffe00000a8000 4K pte [ 0.060816] 0xfffffe00000a8000-0xfffffe00000a9000 4K RW GLB NX pte [ 0.060818] 0xfffffe00000a9000-0xfffffe00000aa000 4K pte [ 0.060819] 0xfffffe00000aa000-0xfffffe00000ab000 4K RW GLB NX pte [ 0.060822] 0xfffffe00000ab000-0xfffffe00000ac000 4K pte [ 0.060823] 0xfffffe00000ac000-0xfffffe00000ad000 4K RW GLB NX pte [ 0.060825] 0xfffffe00000ad000-0xfffffe00000ae000 4K pte [ 0.060826] 0xfffffe00000ae000-0xfffffe00000af000 4K RW GLB NX pte [ 0.060829] 0xfffffe00000af000-0xfffffe00000d5000 152K pte [ 0.060830] 0xfffffe00000d5000-0xfffffe00000d6000 4K ro GLB NX pte [ 0.060833] 0xfffffe00000d6000-0xfffffe00000d7000 4K RW GLB NX pte [ 0.060835] 0xfffffe00000d7000-0xfffffe00000dc000 20K ro GLB NX pte [ 0.060838] 0xfffffe00000dc000-0xfffffe00000dd000 4K pte [ 0.060839] 0xfffffe00000dd000-0xfffffe00000de000 4K RW GLB NX pte [ 0.060841] 0xfffffe00000de000-0xfffffe00000df000 4K pte [ 0.060842] 0xfffffe00000df000-0xfffffe00000e0000 4K RW GLB NX pte [ 0.060845] 0xfffffe00000e0000-0xfffffe00000e1000 4K pte [ 0.060846] 0xfffffe00000e1000-0xfffffe00000e2000 4K RW GLB NX pte [ 0.060848] 0xfffffe00000e2000-0xfffffe00000e3000 4K pte [ 0.060849] 0xfffffe00000e3000-0xfffffe00000e4000 4K RW GLB NX pte [ 0.060852] 0xfffffe00000e4000-0xfffffe000010a000 152K pte [ 0.060853] 0xfffffe000010a000-0xfffffe000010b000 4K ro GLB NX pte [ 0.060856] 0xfffffe000010b000-0xfffffe000010c000 4K RW GLB NX pte [ 0.060858] 0xfffffe000010c000-0xfffffe0000111000 20K ro GLB NX pte [ 0.060860] 0xfffffe0000111000-0xfffffe0000112000 4K pte [ 0.060862] 0xfffffe0000112000-0xfffffe0000113000 4K RW GLB NX pte [ 0.060864] 0xfffffe0000113000-0xfffffe0000114000 4K pte [ 0.060865] 0xfffffe0000114000-0xfffffe0000115000 4K RW GLB NX pte [ 0.060868] 0xfffffe0000115000-0xfffffe0000116000 4K pte [ 0.060869] 0xfffffe0000116000-0xfffffe0000117000 4K RW GLB NX pte [ 0.060871] 0xfffffe0000117000-0xfffffe0000118000 4K pte [ 0.060872] 0xfffffe0000118000-0xfffffe0000119000 4K RW GLB NX pte [ 0.060875] 0xfffffe0000119000-0xfffffe000013f000 152K pte [ 0.060876] 0xfffffe000013f000-0xfffffe0000140000 4K ro GLB NX pte [ 0.060879] 0xfffffe0000140000-0xfffffe0000141000 4K RW GLB NX pte [ 0.060881] 0xfffffe0000141000-0xfffffe0000146000 20K ro GLB NX pte [ 0.060883] 0xfffffe0000146000-0xfffffe0000147000 4K pte [ 0.060885] 0xfffffe0000147000-0xfffffe0000148000 4K RW GLB NX pte [ 0.060887] 0xfffffe0000148000-0xfffffe0000149000 4K pte [ 0.060888] 0xfffffe0000149000-0xfffffe000014a000 4K RW GLB NX pte [ 0.060891] 0xfffffe000014a000-0xfffffe000014b000 4K pte [ 0.060892] 0xfffffe000014b000-0xfffffe000014c000 4K RW GLB NX pte [ 0.060894] 0xfffffe000014c000-0xfffffe000014d000 4K pte [ 0.060895] 0xfffffe000014d000-0xfffffe000014e000 4K RW GLB NX pte [ 0.060898] 0xfffffe000014e000-0xfffffe0000174000 152K pte [ 0.060899] 0xfffffe0000174000-0xfffffe0000175000 4K ro GLB NX pte [ 0.060902] 0xfffffe0000175000-0xfffffe0000176000 4K RW GLB NX pte [ 0.060904] 0xfffffe0000176000-0xfffffe000017b000 20K ro GLB NX pte [ 0.060906] 0xfffffe000017b000-0xfffffe000017c000 4K pte [ 0.060908] 0xfffffe000017c000-0xfffffe000017d000 4K RW GLB NX pte [ 0.060910] 0xfffffe000017d000-0xfffffe000017e000 4K pte [ 0.060911] 0xfffffe000017e000-0xfffffe000017f000 4K RW GLB NX pte [ 0.060913] 0xfffffe000017f000-0xfffffe0000180000 4K pte [ 0.060915] 0xfffffe0000180000-0xfffffe0000181000 4K RW GLB NX pte [ 0.060917] 0xfffffe0000181000-0xfffffe0000182000 4K pte [ 0.060918] 0xfffffe0000182000-0xfffffe0000183000 4K RW GLB NX pte [ 0.060921] 0xfffffe0000183000-0xfffffe00001a9000 152K pte [ 0.060922] 0xfffffe00001a9000-0xfffffe00001aa000 4K ro GLB NX pte [ 0.060924] 0xfffffe00001aa000-0xfffffe00001ab000 4K RW GLB NX pte [ 0.060927] 0xfffffe00001ab000-0xfffffe00001b0000 20K ro GLB NX pte [ 0.060929] 0xfffffe00001b0000-0xfffffe00001b1000 4K pte [ 0.060930] 0xfffffe00001b1000-0xfffffe00001b2000 4K RW GLB NX pte [ 0.060933] 0xfffffe00001b2000-0xfffffe00001b3000 4K pte [ 0.060934] 0xfffffe00001b3000-0xfffffe00001b4000 4K RW GLB NX pte [ 0.060936] 0xfffffe00001b4000-0xfffffe00001b5000 4K pte [ 0.060938] 0xfffffe00001b5000-0xfffffe00001b6000 4K RW GLB NX pte [ 0.060940] 0xfffffe00001b6000-0xfffffe00001b7000 4K pte [ 0.060941] 0xfffffe00001b7000-0xfffffe00001b8000 4K RW GLB NX pte [ 0.060944] 0xfffffe00001b8000-0xfffffe00001de000 152K pte [ 0.060945] 0xfffffe00001de000-0xfffffe00001df000 4K ro GLB NX pte [ 0.060947] 0xfffffe00001df000-0xfffffe00001e0000 4K RW GLB NX pte [ 0.060950] 0xfffffe00001e0000-0xfffffe00001e5000 20K ro GLB NX pte [ 0.060952] 0xfffffe00001e5000-0xfffffe00001e6000 4K pte [ 0.060953] 0xfffffe00001e6000-0xfffffe00001e7000 4K RW GLB NX pte [ 0.060956] 0xfffffe00001e7000-0xfffffe00001e8000 4K pte [ 0.060957] 0xfffffe00001e8000-0xfffffe00001e9000 4K RW GLB NX pte [ 0.060959] 0xfffffe00001e9000-0xfffffe00001ea000 4K pte [ 0.060960] 0xfffffe00001ea000-0xfffffe00001eb000 4K RW GLB NX pte [ 0.060963] 0xfffffe00001eb000-0xfffffe00001ec000 4K pte [ 0.060964] 0xfffffe00001ec000-0xfffffe00001ed000 4K RW GLB NX pte [ 0.060967] 0xfffffe00001ed000-0xfffffe0000213000 152K pte [ 0.060968] 0xfffffe0000213000-0xfffffe0000214000 4K ro GLB NX pte [ 0.060970] 0xfffffe0000214000-0xfffffe0000215000 4K RW GLB NX pte [ 0.060973] 0xfffffe0000215000-0xfffffe000021a000 20K ro GLB NX pte [ 0.060975] 0xfffffe000021a000-0xfffffe000021b000 4K pte [ 0.060976] 0xfffffe000021b000-0xfffffe000021c000 4K RW GLB NX pte [ 0.060979] 0xfffffe000021c000-0xfffffe000021d000 4K pte [ 0.060980] 0xfffffe000021d000-0xfffffe000021e000 4K RW GLB NX pte [ 0.060982] 0xfffffe000021e000-0xfffffe000021f000 4K pte [ 0.060984] 0xfffffe000021f000-0xfffffe0000220000 4K RW GLB NX pte [ 0.060986] 0xfffffe0000220000-0xfffffe0000221000 4K pte [ 0.060987] 0xfffffe0000221000-0xfffffe0000222000 4K RW GLB NX pte [ 0.060990] 0xfffffe0000222000-0xfffffe0000248000 152K pte [ 0.060991] 0xfffffe0000248000-0xfffffe0000249000 4K ro GLB NX pte [ 0.060993] 0xfffffe0000249000-0xfffffe000024a000 4K RW GLB NX pte [ 0.060996] 0xfffffe000024a000-0xfffffe000024f000 20K ro GLB NX pte [ 0.060998] 0xfffffe000024f000-0xfffffe0000250000 4K pte [ 0.060999] 0xfffffe0000250000-0xfffffe0000251000 4K RW GLB NX pte [ 0.061002] 0xfffffe0000251000-0xfffffe0000252000 4K pte [ 0.061003] 0xfffffe0000252000-0xfffffe0000253000 4K RW GLB NX pte [ 0.061005] 0xfffffe0000253000-0xfffffe0000254000 4K pte [ 0.061007] 0xfffffe0000254000-0xfffffe0000255000 4K RW GLB NX pte [ 0.061009] 0xfffffe0000255000-0xfffffe0000256000 4K pte [ 0.061010] 0xfffffe0000256000-0xfffffe0000257000 4K RW GLB NX pte [ 0.061013] 0xfffffe0000257000-0xfffffe000027d000 152K pte [ 0.061014] 0xfffffe000027d000-0xfffffe000027e000 4K ro GLB NX pte [ 0.061016] 0xfffffe000027e000-0xfffffe000027f000 4K RW GLB NX pte [ 0.061019] 0xfffffe000027f000-0xfffffe0000284000 20K ro GLB NX pte [ 0.061021] 0xfffffe0000284000-0xfffffe0000285000 4K pte [ 0.061022] 0xfffffe0000285000-0xfffffe0000286000 4K RW GLB NX pte [ 0.061025] 0xfffffe0000286000-0xfffffe0000287000 4K pte [ 0.061026] 0xfffffe0000287000-0xfffffe0000288000 4K RW GLB NX pte [ 0.061028] 0xfffffe0000288000-0xfffffe0000289000 4K pte [ 0.061029] 0xfffffe0000289000-0xfffffe000028a000 4K RW GLB NX pte [ 0.061032] 0xfffffe000028a000-0xfffffe000028b000 4K pte [ 0.061033] 0xfffffe000028b000-0xfffffe000028c000 4K RW GLB NX pte [ 0.061036] 0xfffffe000028c000-0xfffffe00002b2000 152K pte [ 0.061037] 0xfffffe00002b2000-0xfffffe00002b3000 4K ro GLB NX pte [ 0.061039] 0xfffffe00002b3000-0xfffffe00002b4000 4K RW GLB NX pte [ 0.061042] 0xfffffe00002b4000-0xfffffe00002b9000 20K ro GLB NX pte [ 0.061044] 0xfffffe00002b9000-0xfffffe00002ba000 4K pte [ 0.061045] 0xfffffe00002ba000-0xfffffe00002bb000 4K RW GLB NX pte [ 0.061048] 0xfffffe00002bb000-0xfffffe00002bc000 4K pte [ 0.061049] 0xfffffe00002bc000-0xfffffe00002bd000 4K RW GLB NX pte [ 0.061051] 0xfffffe00002bd000-0xfffffe00002be000 4K pte [ 0.061052] 0xfffffe00002be000-0xfffffe00002bf000 4K RW GLB NX pte [ 0.061055] 0xfffffe00002bf000-0xfffffe00002c0000 4K pte [ 0.061056] 0xfffffe00002c0000-0xfffffe00002c1000 4K RW GLB NX pte [ 0.061059] 0xfffffe00002c1000-0xfffffe00002e7000 152K pte [ 0.061060] 0xfffffe00002e7000-0xfffffe00002e8000 4K ro GLB NX pte [ 0.061062] 0xfffffe00002e8000-0xfffffe00002e9000 4K RW GLB NX pte [ 0.061065] 0xfffffe00002e9000-0xfffffe00002ee000 20K ro GLB NX pte [ 0.061067] 0xfffffe00002ee000-0xfffffe00002ef000 4K pte [ 0.061068] 0xfffffe00002ef000-0xfffffe00002f0000 4K RW GLB NX pte [ 0.061071] 0xfffffe00002f0000-0xfffffe00002f1000 4K pte [ 0.061072] 0xfffffe00002f1000-0xfffffe00002f2000 4K RW GLB NX pte [ 0.061074] 0xfffffe00002f2000-0xfffffe00002f3000 4K pte [ 0.061075] 0xfffffe00002f3000-0xfffffe00002f4000 4K RW GLB NX pte [ 0.061078] 0xfffffe00002f4000-0xfffffe00002f5000 4K pte [ 0.061079] 0xfffffe00002f5000-0xfffffe00002f6000 4K RW GLB NX pte [ 0.061082] 0xfffffe00002f6000-0xfffffe000031c000 152K pte [ 0.061083] 0xfffffe000031c000-0xfffffe000031d000 4K ro GLB NX pte [ 0.061085] 0xfffffe000031d000-0xfffffe000031e000 4K RW GLB NX pte [ 0.061088] 0xfffffe000031e000-0xfffffe0000323000 20K ro GLB NX pte [ 0.061090] 0xfffffe0000323000-0xfffffe0000324000 4K pte [ 0.061091] 0xfffffe0000324000-0xfffffe0000325000 4K RW GLB NX pte [ 0.061094] 0xfffffe0000325000-0xfffffe0000326000 4K pte [ 0.061095] 0xfffffe0000326000-0xfffffe0000327000 4K RW GLB NX pte [ 0.061097] 0xfffffe0000327000-0xfffffe0000328000 4K pte [ 0.061098] 0xfffffe0000328000-0xfffffe0000329000 4K RW GLB NX pte [ 0.061101] 0xfffffe0000329000-0xfffffe000032a000 4K pte [ 0.061102] 0xfffffe000032a000-0xfffffe000032b000 4K RW GLB NX pte [ 0.061105] 0xfffffe000032b000-0xfffffe0000351000 152K pte [ 0.061106] 0xfffffe0000351000-0xfffffe0000352000 4K ro GLB NX pte [ 0.061108] 0xfffffe0000352000-0xfffffe0000353000 4K RW GLB NX pte [ 0.061111] 0xfffffe0000353000-0xfffffe0000358000 20K ro GLB NX pte [ 0.061113] 0xfffffe0000358000-0xfffffe0000359000 4K pte [ 0.061114] 0xfffffe0000359000-0xfffffe000035a000 4K RW GLB NX pte [ 0.061117] 0xfffffe000035a000-0xfffffe000035b000 4K pte [ 0.061118] 0xfffffe000035b000-0xfffffe000035c000 4K RW GLB NX pte [ 0.061120] 0xfffffe000035c000-0xfffffe000035d000 4K pte [ 0.061121] 0xfffffe000035d000-0xfffffe000035e000 4K RW GLB NX pte [ 0.061124] 0xfffffe000035e000-0xfffffe000035f000 4K pte [ 0.061125] 0xfffffe000035f000-0xfffffe0000360000 4K RW GLB NX pte [ 0.061127] 0xfffffe0000360000-0xfffffe0000386000 152K pte [ 0.061129] 0xfffffe0000386000-0xfffffe0000387000 4K ro GLB NX pte [ 0.061131] 0xfffffe0000387000-0xfffffe0000388000 4K RW GLB NX pte [ 0.061133] 0xfffffe0000388000-0xfffffe000038d000 20K ro GLB NX pte [ 0.061136] 0xfffffe000038d000-0xfffffe000038e000 4K pte [ 0.061137] 0xfffffe000038e000-0xfffffe000038f000 4K RW GLB NX pte [ 0.061139] 0xfffffe000038f000-0xfffffe0000390000 4K pte [ 0.061141] 0xfffffe0000390000-0xfffffe0000391000 4K RW GLB NX pte [ 0.061143] 0xfffffe0000391000-0xfffffe0000392000 4K pte [ 0.061144] 0xfffffe0000392000-0xfffffe0000393000 4K RW GLB NX pte [ 0.061146] 0xfffffe0000393000-0xfffffe0000394000 4K pte [ 0.061148] 0xfffffe0000394000-0xfffffe0000395000 4K RW GLB NX pte [ 0.061150] 0xfffffe0000395000-0xfffffe00003bb000 152K pte [ 0.061152] 0xfffffe00003bb000-0xfffffe00003bc000 4K ro GLB NX pte [ 0.061154] 0xfffffe00003bc000-0xfffffe00003bd000 4K RW GLB NX pte [ 0.061156] 0xfffffe00003bd000-0xfffffe00003c2000 20K ro GLB NX pte [ 0.061159] 0xfffffe00003c2000-0xfffffe00003c3000 4K pte [ 0.061160] 0xfffffe00003c3000-0xfffffe00003c4000 4K RW GLB NX pte [ 0.061162] 0xfffffe00003c4000-0xfffffe00003c5000 4K pte [ 0.061164] 0xfffffe00003c5000-0xfffffe00003c6000 4K RW GLB NX pte [ 0.061166] 0xfffffe00003c6000-0xfffffe00003c7000 4K pte [ 0.061167] 0xfffffe00003c7000-0xfffffe00003c8000 4K RW GLB NX pte [ 0.061169] 0xfffffe00003c8000-0xfffffe00003c9000 4K pte [ 0.061171] 0xfffffe00003c9000-0xfffffe00003ca000 4K RW GLB NX pte [ 0.061173] 0xfffffe00003ca000-0xfffffe00003f0000 152K pte [ 0.061175] 0xfffffe00003f0000-0xfffffe00003f1000 4K ro GLB NX pte [ 0.061177] 0xfffffe00003f1000-0xfffffe00003f2000 4K RW GLB NX pte [ 0.061179] 0xfffffe00003f2000-0xfffffe00003f7000 20K ro GLB NX pte [ 0.061182] 0xfffffe00003f7000-0xfffffe00003f8000 4K pte [ 0.061183] 0xfffffe00003f8000-0xfffffe00003f9000 4K RW GLB NX pte [ 0.061185] 0xfffffe00003f9000-0xfffffe00003fa000 4K pte [ 0.061186] 0xfffffe00003fa000-0xfffffe00003fb000 4K RW GLB NX pte [ 0.061189] 0xfffffe00003fb000-0xfffffe00003fc000 4K pte [ 0.061190] 0xfffffe00003fc000-0xfffffe00003fd000 4K RW GLB NX pte [ 0.061192] 0xfffffe00003fd000-0xfffffe00003fe000 4K pte [ 0.061194] 0xfffffe00003fe000-0xfffffe00003ff000 4K RW GLB NX pte [ 0.061196] 0xfffffe00003ff000-0xfffffe0000425000 152K pte [ 0.061198] 0xfffffe0000425000-0xfffffe0000426000 4K ro GLB NX pte [ 0.061200] 0xfffffe0000426000-0xfffffe0000427000 4K RW GLB NX pte [ 0.061202] 0xfffffe0000427000-0xfffffe000042c000 20K ro GLB NX pte [ 0.061205] 0xfffffe000042c000-0xfffffe000042d000 4K pte [ 0.061206] 0xfffffe000042d000-0xfffffe000042e000 4K RW GLB NX pte [ 0.061208] 0xfffffe000042e000-0xfffffe000042f000 4K pte [ 0.061209] 0xfffffe000042f000-0xfffffe0000430000 4K RW GLB NX pte [ 0.061212] 0xfffffe0000430000-0xfffffe0000431000 4K pte [ 0.061213] 0xfffffe0000431000-0xfffffe0000432000 4K RW GLB NX pte [ 0.061215] 0xfffffe0000432000-0xfffffe0000433000 4K pte [ 0.061217] 0xfffffe0000433000-0xfffffe0000434000 4K RW GLB NX pte [ 0.061219] 0xfffffe0000434000-0xfffffe000045a000 152K pte [ 0.061220] 0xfffffe000045a000-0xfffffe000045b000 4K ro GLB NX pte [ 0.061223] 0xfffffe000045b000-0xfffffe000045c000 4K RW GLB NX pte [ 0.061225] 0xfffffe000045c000-0xfffffe0000461000 20K ro GLB NX pte [ 0.061228] 0xfffffe0000461000-0xfffffe0000462000 4K pte [ 0.061229] 0xfffffe0000462000-0xfffffe0000463000 4K RW GLB NX pte [ 0.061231] 0xfffffe0000463000-0xfffffe0000464000 4K pte [ 0.061233] 0xfffffe0000464000-0xfffffe0000465000 4K RW GLB NX pte [ 0.061236] 0xfffffe0000465000-0xfffffe0000466000 4K pte [ 0.061237] 0xfffffe0000466000-0xfffffe0000467000 4K RW GLB NX pte [ 0.061239] 0xfffffe0000467000-0xfffffe0000468000 4K pte [ 0.061240] 0xfffffe0000468000-0xfffffe0000469000 4K RW GLB NX pte [ 0.061243] 0xfffffe0000469000-0xfffffe000048f000 152K pte [ 0.061244] 0xfffffe000048f000-0xfffffe0000490000 4K ro GLB NX pte [ 0.061247] 0xfffffe0000490000-0xfffffe0000491000 4K RW GLB NX pte [ 0.061249] 0xfffffe0000491000-0xfffffe0000496000 20K ro GLB NX pte [ 0.061252] 0xfffffe0000496000-0xfffffe0000497000 4K pte [ 0.061253] 0xfffffe0000497000-0xfffffe0000498000 4K RW GLB NX pte [ 0.061255] 0xfffffe0000498000-0xfffffe0000499000 4K pte [ 0.061256] 0xfffffe0000499000-0xfffffe000049a000 4K RW GLB NX pte [ 0.061259] 0xfffffe000049a000-0xfffffe000049b000 4K pte [ 0.061260] 0xfffffe000049b000-0xfffffe000049c000 4K RW GLB NX pte [ 0.061262] 0xfffffe000049c000-0xfffffe000049d000 4K pte [ 0.061263] 0xfffffe000049d000-0xfffffe000049e000 4K RW GLB NX pte [ 0.061266] 0xfffffe000049e000-0xfffffe00004c4000 152K pte [ 0.061267] 0xfffffe00004c4000-0xfffffe00004c5000 4K ro GLB NX pte [ 0.061270] 0xfffffe00004c5000-0xfffffe00004c6000 4K RW GLB NX pte [ 0.061272] 0xfffffe00004c6000-0xfffffe00004cb000 20K ro GLB NX pte [ 0.061275] 0xfffffe00004cb000-0xfffffe00004cc000 4K pte [ 0.061276] 0xfffffe00004cc000-0xfffffe00004cd000 4K RW GLB NX pte [ 0.061278] 0xfffffe00004cd000-0xfffffe00004ce000 4K pte [ 0.061279] 0xfffffe00004ce000-0xfffffe00004cf000 4K RW GLB NX pte [ 0.061282] 0xfffffe00004cf000-0xfffffe00004d0000 4K pte [ 0.061283] 0xfffffe00004d0000-0xfffffe00004d1000 4K RW GLB NX pte [ 0.061285] 0xfffffe00004d1000-0xfffffe00004d2000 4K pte [ 0.061286] 0xfffffe00004d2000-0xfffffe00004d3000 4K RW GLB NX pte [ 0.061289] 0xfffffe00004d3000-0xfffffe00004f9000 152K pte [ 0.061290] 0xfffffe00004f9000-0xfffffe00004fa000 4K ro GLB NX pte [ 0.061293] 0xfffffe00004fa000-0xfffffe00004fb000 4K RW GLB NX pte [ 0.061295] 0xfffffe00004fb000-0xfffffe0000500000 20K ro GLB NX pte [ 0.061298] 0xfffffe0000500000-0xfffffe0000501000 4K pte [ 0.061299] 0xfffffe0000501000-0xfffffe0000502000 4K RW GLB NX pte [ 0.061301] 0xfffffe0000502000-0xfffffe0000503000 4K pte [ 0.061302] 0xfffffe0000503000-0xfffffe0000504000 4K RW GLB NX pte [ 0.061305] 0xfffffe0000504000-0xfffffe0000505000 4K pte [ 0.061306] 0xfffffe0000505000-0xfffffe0000506000 4K RW GLB NX pte [ 0.061308] 0xfffffe0000506000-0xfffffe0000507000 4K pte [ 0.061309] 0xfffffe0000507000-0xfffffe0000508000 4K RW GLB NX pte [ 0.061312] 0xfffffe0000508000-0xfffffe000052e000 152K pte [ 0.061313] 0xfffffe000052e000-0xfffffe000052f000 4K ro GLB NX pte [ 0.061316] 0xfffffe000052f000-0xfffffe0000530000 4K RW GLB NX pte [ 0.061318] 0xfffffe0000530000-0xfffffe0000535000 20K ro GLB NX pte [ 0.061321] 0xfffffe0000535000-0xfffffe0000536000 4K pte [ 0.061322] 0xfffffe0000536000-0xfffffe0000537000 4K RW GLB NX pte [ 0.061324] 0xfffffe0000537000-0xfffffe0000538000 4K pte [ 0.061325] 0xfffffe0000538000-0xfffffe0000539000 4K RW GLB NX pte [ 0.061328] 0xfffffe0000539000-0xfffffe000053a000 4K pte [ 0.061329] 0xfffffe000053a000-0xfffffe000053b000 4K RW GLB NX pte [ 0.061331] 0xfffffe000053b000-0xfffffe000053c000 4K pte [ 0.061332] 0xfffffe000053c000-0xfffffe000053d000 4K RW GLB NX pte [ 0.061335] 0xfffffe000053d000-0xfffffe0000563000 152K pte [ 0.061336] 0xfffffe0000563000-0xfffffe0000564000 4K ro GLB NX pte [ 0.061339] 0xfffffe0000564000-0xfffffe0000565000 4K RW GLB NX pte [ 0.061341] 0xfffffe0000565000-0xfffffe000056a000 20K ro GLB NX pte [ 0.061344] 0xfffffe000056a000-0xfffffe000056b000 4K pte [ 0.061345] 0xfffffe000056b000-0xfffffe000056c000 4K RW GLB NX pte [ 0.061347] 0xfffffe000056c000-0xfffffe000056d000 4K pte [ 0.061348] 0xfffffe000056d000-0xfffffe000056e000 4K RW GLB NX pte [ 0.061351] 0xfffffe000056e000-0xfffffe000056f000 4K pte [ 0.061352] 0xfffffe000056f000-0xfffffe0000570000 4K RW GLB NX pte [ 0.061354] 0xfffffe0000570000-0xfffffe0000571000 4K pte [ 0.061356] 0xfffffe0000571000-0xfffffe0000572000 4K RW GLB NX pte [ 0.061358] 0xfffffe0000572000-0xfffffe0000598000 152K pte [ 0.061359] 0xfffffe0000598000-0xfffffe0000599000 4K ro GLB NX pte [ 0.061362] 0xfffffe0000599000-0xfffffe000059a000 4K RW GLB NX pte [ 0.061364] 0xfffffe000059a000-0xfffffe000059f000 20K ro GLB NX pte [ 0.061367] 0xfffffe000059f000-0xfffffe00005a0000 4K pte [ 0.061368] 0xfffffe00005a0000-0xfffffe00005a1000 4K RW GLB NX pte [ 0.061370] 0xfffffe00005a1000-0xfffffe00005a2000 4K pte [ 0.061371] 0xfffffe00005a2000-0xfffffe00005a3000 4K RW GLB NX pte [ 0.061374] 0xfffffe00005a3000-0xfffffe00005a4000 4K pte [ 0.061375] 0xfffffe00005a4000-0xfffffe00005a5000 4K RW GLB NX pte [ 0.061377] 0xfffffe00005a5000-0xfffffe00005a6000 4K pte [ 0.061379] 0xfffffe00005a6000-0xfffffe00005a7000 4K RW GLB NX pte [ 0.061381] 0xfffffe00005a7000-0xfffffe00005cd000 152K pte [ 0.061382] 0xfffffe00005cd000-0xfffffe00005ce000 4K ro GLB NX pte [ 0.061385] 0xfffffe00005ce000-0xfffffe00005cf000 4K RW GLB NX pte [ 0.061387] 0xfffffe00005cf000-0xfffffe00005d4000 20K ro GLB NX pte [ 0.061390] 0xfffffe00005d4000-0xfffffe00005d5000 4K pte [ 0.061391] 0xfffffe00005d5000-0xfffffe00005d6000 4K RW GLB NX pte [ 0.061393] 0xfffffe00005d6000-0xfffffe00005d7000 4K pte [ 0.061394] 0xfffffe00005d7000-0xfffffe00005d8000 4K RW GLB NX pte [ 0.061397] 0xfffffe00005d8000-0xfffffe00005d9000 4K pte [ 0.061398] 0xfffffe00005d9000-0xfffffe00005da000 4K RW GLB NX pte [ 0.061400] 0xfffffe00005da000-0xfffffe00005db000 4K pte [ 0.061402] 0xfffffe00005db000-0xfffffe00005dc000 4K RW GLB NX pte [ 0.061404] 0xfffffe00005dc000-0xfffffe0000602000 152K pte [ 0.061406] 0xfffffe0000602000-0xfffffe0000603000 4K ro GLB NX pte [ 0.061408] 0xfffffe0000603000-0xfffffe0000604000 4K RW GLB NX pte [ 0.061410] 0xfffffe0000604000-0xfffffe0000609000 20K ro GLB NX pte [ 0.061413] 0xfffffe0000609000-0xfffffe000060a000 4K pte [ 0.061414] 0xfffffe000060a000-0xfffffe000060b000 4K RW GLB NX pte [ 0.061416] 0xfffffe000060b000-0xfffffe000060c000 4K pte [ 0.061418] 0xfffffe000060c000-0xfffffe000060d000 4K RW GLB NX pte [ 0.061420] 0xfffffe000060d000-0xfffffe000060e000 4K pte [ 0.061421] 0xfffffe000060e000-0xfffffe000060f000 4K RW GLB NX pte [ 0.061423] 0xfffffe000060f000-0xfffffe0000610000 4K pte [ 0.061425] 0xfffffe0000610000-0xfffffe0000611000 4K RW GLB NX pte [ 0.061427] 0xfffffe0000611000-0xfffffe0000637000 152K pte [ 0.061429] 0xfffffe0000637000-0xfffffe0000638000 4K ro GLB NX pte [ 0.061431] 0xfffffe0000638000-0xfffffe0000639000 4K RW GLB NX pte [ 0.061433] 0xfffffe0000639000-0xfffffe000063e000 20K ro GLB NX pte [ 0.061436] 0xfffffe000063e000-0xfffffe000063f000 4K pte [ 0.061437] 0xfffffe000063f000-0xfffffe0000640000 4K RW GLB NX pte [ 0.061439] 0xfffffe0000640000-0xfffffe0000641000 4K pte [ 0.061441] 0xfffffe0000641000-0xfffffe0000642000 4K RW GLB NX pte [ 0.061443] 0xfffffe0000642000-0xfffffe0000643000 4K pte [ 0.061444] 0xfffffe0000643000-0xfffffe0000644000 4K RW GLB NX pte [ 0.061446] 0xfffffe0000644000-0xfffffe0000645000 4K pte [ 0.061448] 0xfffffe0000645000-0xfffffe0000646000 4K RW GLB NX pte [ 0.061450] 0xfffffe0000646000-0xfffffe000066c000 152K pte [ 0.061452] 0xfffffe000066c000-0xfffffe000066d000 4K ro GLB NX pte [ 0.061454] 0xfffffe000066d000-0xfffffe000066e000 4K RW GLB NX pte [ 0.061456] 0xfffffe000066e000-0xfffffe0000673000 20K ro GLB NX pte [ 0.061459] 0xfffffe0000673000-0xfffffe0000674000 4K pte [ 0.061460] 0xfffffe0000674000-0xfffffe0000675000 4K RW GLB NX pte [ 0.061462] 0xfffffe0000675000-0xfffffe0000676000 4K pte [ 0.061464] 0xfffffe0000676000-0xfffffe0000677000 4K RW GLB NX pte [ 0.061466] 0xfffffe0000677000-0xfffffe0000678000 4K pte [ 0.061467] 0xfffffe0000678000-0xfffffe0000679000 4K RW GLB NX pte [ 0.061469] 0xfffffe0000679000-0xfffffe000067a000 4K pte [ 0.061471] 0xfffffe000067a000-0xfffffe000067b000 4K RW GLB NX pte [ 0.061477] 0xfffffe000067b000-0xfffffe0000800000 1556K pte [ 0.061482] 0xfffffe0000800000-0xfffffe0040000000 1016M pmd [ 0.061487] 0xfffffe0040000000-0xfffffe8000000000 511G pud [ 0.061489] 0xfffffe8000000000-0xffffff0000000000 512G pgd [ 0.061490] ---[ ESPfix Area ]--- [ 0.061491] 0xffffff0000000000-0xffffff0b00000000 44G pud [ 0.061492] 0xffffff0b00000000-0xffffff0b00001000 4K pte [ 0.061493] 0xffffff0b00001000-0xffffff0b00002000 4K ro GLB NX pte [ 0.061495] 0xffffff0b00002000-0xffffff0b00011000 60K pte [ 0.061497] 0xffffff0b00011000-0xffffff0b00012000 4K ro GLB NX pte [ 0.061499] 0xffffff0b00012000-0xffffff0b00021000 60K pte [ 0.061500] 0xffffff0b00021000-0xffffff0b00022000 4K ro GLB NX pte [ 0.061503] 0xffffff0b00022000-0xffffff0b00031000 60K pte [ 0.061504] 0xffffff0b00031000-0xffffff0b00032000 4K ro GLB NX pte [ 0.061507] 0xffffff0b00032000-0xffffff0b00041000 60K pte [ 0.061508] 0xffffff0b00041000-0xffffff0b00042000 4K ro GLB NX pte [ 0.061510] 0xffffff0b00042000-0xffffff0b00051000 60K pte [ 0.061512] 0xffffff0b00051000-0xffffff0b00052000 4K ro GLB NX pte [ 0.061514] 0xffffff0b00052000-0xffffff0b00061000 60K pte [ 0.061515] 0xffffff0b00061000-0xffffff0b00062000 4K ro GLB NX pte [ 0.061518] 0xffffff0b00062000-0xffffff0b00071000 60K pte [ 0.072120] ... 131059 entries skipped ... [ 0.072121] ---[ EFI Runtime Services ]--- [ 0.072122] 0xffffffef00000000-0xfffffffec0000000 63G pud [ 0.072126] 0xfffffffec0000000-0xfffffffef2200000 802M pmd [ 0.072127] 0xfffffffef2200000-0xfffffffef2208000 32K RW x pte [ 0.072130] 0xfffffffef2208000-0xfffffffef223e000 216K pte [ 0.072131] 0xfffffffef223e000-0xfffffffef2240000 8K pte [ 0.072134] 0xfffffffef2240000-0xfffffffef22a0000 384K RW x pte [ 0.072139] 0xfffffffef22a0000-0xfffffffef2400000 1408K pte [ 0.072141] 0xfffffffef2400000-0xfffffffef2420000 128K pte [ 0.072142] 0xfffffffef2420000-0xfffffffef2449000 164K pte [ 0.072144] 0xfffffffef2449000-0xfffffffef246d000 144K pte [ 0.072146] 0xfffffffef246d000-0xfffffffef24e6000 484K pte [ 0.072148] 0xfffffffef24e6000-0xfffffffef2500000 104K pte [ 0.072149] 0xfffffffef2500000-0xfffffffef250b000 44K pte [ 0.072150] 0xfffffffef250b000-0xfffffffef2512000 28K pte [ 0.072151] 0xfffffffef2512000-0xfffffffef2529000 92K pte [ 0.072153] 0xfffffffef2529000-0xfffffffef252d000 16K pte [ 0.072154] 0xfffffffef252d000-0xfffffffef2540000 76K pte [ 0.072155] 0xfffffffef2540000-0xfffffffef2541000 4K pte [ 0.072156] 0xfffffffef2541000-0xfffffffef255f000 120K pte [ 0.072158] 0xfffffffef255f000-0xfffffffef256a000 44K pte [ 0.072159] 0xfffffffef256a000-0xfffffffef2571000 28K pte [ 0.072160] 0xfffffffef2571000-0xfffffffef2572000 4K pte [ 0.072164] 0xfffffffef2572000-0xfffffffef4679000 33820K pte [ 0.072170] 0xfffffffef4679000-0xfffffffef486d000 2000K pte [ 0.072173] 0xfffffffef486d000-0xfffffffef4913000 664K pte [ 0.072174] 0xfffffffef4913000-0xfffffffef4917000 16K pte [ 0.072175] 0xfffffffef4917000-0xfffffffef4923000 48K pte [ 0.072176] 0xfffffffef4923000-0xfffffffef4926000 12K pte [ 0.072178] 0xfffffffef4926000-0xfffffffef4934000 56K pte [ 0.072179] 0xfffffffef4934000-0xfffffffef4935000 4K pte [ 0.072180] 0xfffffffef4935000-0xfffffffef4937000 8K RW NX pte [ 0.072182] 0xfffffffef4937000-0xfffffffef4944000 52K pte [ 0.072184] 0xfffffffef4944000-0xfffffffef494c000 32K pte [ 0.072185] 0xfffffffef494c000-0xfffffffef4966000 104K pte [ 0.072186] 0xfffffffef4966000-0xfffffffef4969000 12K pte [ 0.072188] 0xfffffffef4969000-0xfffffffef49a3000 232K pte [ 0.072189] 0xfffffffef49a3000-0xfffffffef49a5000 8K pte [ 0.072191] 0xfffffffef49a5000-0xfffffffef49d4000 188K pte [ 0.072192] 0xfffffffef49d4000-0xfffffffef49d6000 8K pte [ 0.072193] 0xfffffffef49d6000-0xfffffffef49ef000 100K pte [ 0.072194] 0xfffffffef49ef000-0xfffffffef49f2000 12K pte [ 0.072195] 0xfffffffef49f2000-0xfffffffef49f7000 20K pte [ 0.072197] 0xfffffffef49f7000-0xfffffffef49fc000 20K pte [ 0.072198] 0xfffffffef49fc000-0xfffffffef4a16000 104K pte [ 0.072199] 0xfffffffef4a16000-0xfffffffef4a1f000 36K pte [ 0.072201] 0xfffffffef4a1f000-0xfffffffef4a32000 76K pte [ 0.072202] 0xfffffffef4a32000-0xfffffffef4a35000 12K pte [ 0.072203] 0xfffffffef4a35000-0xfffffffef4a42000 52K pte [ 0.072204] 0xfffffffef4a42000-0xfffffffef4a48000 24K pte [ 0.072205] 0xfffffffef4a48000-0xfffffffef4a4d000 20K pte [ 0.072207] 0xfffffffef4a4d000-0xfffffffef4a4f000 8K pte [ 0.072208] 0xfffffffef4a4f000-0xfffffffef4a51000 8K pte [ 0.072209] 0xfffffffef4a51000-0xfffffffef4a56000 20K pte [ 0.072210] 0xfffffffef4a56000-0xfffffffef4a58000 8K pte [ 0.072211] 0xfffffffef4a58000-0xfffffffef4a5a000 8K pte [ 0.072213] 0xfffffffef4a5a000-0xfffffffef4a74000 104K pte [ 0.072214] 0xfffffffef4a74000-0xfffffffef4a7a000 24K pte [ 0.072215] 0xfffffffef4a7a000-0xfffffffef4a83000 36K pte [ 0.072216] 0xfffffffef4a83000-0xfffffffef4a86000 12K pte [ 0.072217] 0xfffffffef4a86000-0xfffffffef4a89000 12K pte [ 0.072219] 0xfffffffef4a89000-0xfffffffef4a8c000 12K pte [ 0.072220] 0xfffffffef4a8c000-0xfffffffef4a8d000 4K pte [ 0.072221] 0xfffffffef4a8d000-0xfffffffef4a8e000 4K pte [ 0.072222] 0xfffffffef4a8e000-0xfffffffef4a8f000 4K pte [ 0.072228] 0xfffffffef4a8f000-0xfffffffef4c6b000 1904K pte [ 0.072229] 0xfffffffef4c6b000-0xfffffffef4c77000 48K pte [ 0.072230] 0xfffffffef4c77000-0xfffffffef4c8c000 84K pte [ 0.072231] 0xfffffffef4c8c000-0xfffffffef4c94000 32K pte [ 0.072233] 0xfffffffef4c94000-0xfffffffef4c95000 4K pte [ 0.072235] 0xfffffffef4c95000-0xfffffffef4cad000 96K pte [ 0.072236] 0xfffffffef4cad000-0xfffffffef4cb3000 24K pte [ 0.072237] 0xfffffffef4cb3000-0xfffffffef4cb4000 4K pte [ 0.072238] 0xfffffffef4cb4000-0xfffffffef4cb5000 4K pte [ 0.072239] 0xfffffffef4cb5000-0xfffffffef4cb7000 8K pte [ 0.072240] 0xfffffffef4cb7000-0xfffffffef4cb8000 4K pte [ 0.072242] 0xfffffffef4cb8000-0xfffffffef4cbb000 12K pte [ 0.072243] 0xfffffffef4cbb000-0xfffffffef4cbe000 12K pte [ 0.072244] 0xfffffffef4cbe000-0xfffffffef4cca000 48K pte [ 0.072245] 0xfffffffef4cca000-0xfffffffef4ccb000 4K pte [ 0.072246] 0xfffffffef4ccb000-0xfffffffef4cd0000 20K pte [ 0.072248] 0xfffffffef4cd0000-0xfffffffef4cd3000 12K pte [ 0.072249] 0xfffffffef4cd3000-0xfffffffef4ce8000 84K pte [ 0.072250] 0xfffffffef4ce8000-0xfffffffef4ce9000 4K pte [ 0.072251] 0xfffffffef4ce9000-0xfffffffef4cea000 4K pte [ 0.072252] 0xfffffffef4cea000-0xfffffffef4cf4000 40K pte [ 0.072253] 0xfffffffef4cf4000-0xfffffffef4cf5000 4K pte [ 0.072255] 0xfffffffef4cf5000-0xfffffffef4cfc000 28K pte [ 0.072256] 0xfffffffef4cfc000-0xfffffffef4d01000 20K pte [ 0.072257] 0xfffffffef4d01000-0xfffffffef4d02000 4K pte [ 0.072258] 0xfffffffef4d02000-0xfffffffef4d06000 16K pte [ 0.072259] 0xfffffffef4d06000-0xfffffffef4d0c000 24K pte [ 0.072261] 0xfffffffef4d0c000-0xfffffffef4d1d000 68K pte [ 0.072262] 0xfffffffef4d1d000-0xfffffffef4d1e000 4K pte [ 0.072263] 0xfffffffef4d1e000-0xfffffffef4d1f000 4K pte [ 0.072264] 0xfffffffef4d1f000-0xfffffffef4d26000 28K pte [ 0.072265] 0xfffffffef4d26000-0xfffffffef4d3f000 100K pte [ 0.072267] 0xfffffffef4d3f000-0xfffffffef4d47000 32K pte [ 0.072268] 0xfffffffef4d47000-0xfffffffef4d50000 36K pte [ 0.072270] 0xfffffffef4d50000-0xfffffffef4d7f000 188K pte [ 0.072271] 0xfffffffef4d7f000-0xfffffffef4d80000 4K pte [ 0.072272] 0xfffffffef4d80000-0xfffffffef4d81000 4K pte [ 0.072273] 0xfffffffef4d81000-0xfffffffef4d82000 4K pte [ 0.072274] 0xfffffffef4d82000-0xfffffffef4d83000 4K pte [ 0.072276] 0xfffffffef4d83000-0xfffffffef4dd9000 344K pte [ 0.072277] 0xfffffffef4dd9000-0xfffffffef4dda000 4K RW NX pte [ 0.072280] 0xfffffffef4dda000-0xfffffffef4ddc000 8K pte [ 0.072281] 0xfffffffef4ddc000-0xfffffffef4dde000 8K pte [ 0.072282] 0xfffffffef4dde000-0xfffffffef4ddf000 4K pte [ 0.072283] 0xfffffffef4ddf000-0xfffffffef4deb000 48K pte [ 0.072284] 0xfffffffef4deb000-0xfffffffef4df6000 44K pte [ 0.072286] 0xfffffffef4df6000-0xfffffffef4e3e000 288K pte [ 0.072287] 0xfffffffef4e3e000-0xfffffffef4e44000 24K pte [ 0.072289] 0xfffffffef4e44000-0xfffffffef4e4f000 44K pte [ 0.072290] 0xfffffffef4e4f000-0xfffffffef4e51000 8K pte [ 0.072291] 0xfffffffef4e51000-0xfffffffef4e52000 4K pte [ 0.072292] 0xfffffffef4e52000-0xfffffffef4e5a000 32K pte [ 0.072293] 0xfffffffef4e5a000-0xfffffffef4e61000 28K pte [ 0.072295] 0xfffffffef4e61000-0xfffffffef4e64000 12K pte [ 0.072296] 0xfffffffef4e64000-0xfffffffef4e75000 68K pte [ 0.072297] 0xfffffffef4e75000-0xfffffffef4e78000 12K pte [ 0.072299] 0xfffffffef4e78000-0xfffffffef4ea5000 180K pte [ 0.072300] 0xfffffffef4ea5000-0xfffffffef4eae000 36K pte [ 0.072301] 0xfffffffef4eae000-0xfffffffef4eb3000 20K pte [ 0.072302] 0xfffffffef4eb3000-0xfffffffef4eb5000 8K pte [ 0.072303] 0xfffffffef4eb5000-0xfffffffef4ebd000 32K pte [ 0.072304] 0xfffffffef4ebd000-0xfffffffef4ebe000 4K pte [ 0.072306] 0xfffffffef4ebe000-0xfffffffef4ec0000 8K pte [ 0.072307] 0xfffffffef4ec0000-0xfffffffef4ec4000 16K pte [ 0.072308] 0xfffffffef4ec4000-0xfffffffef4ed4000 64K pte [ 0.072309] 0xfffffffef4ed4000-0xfffffffef4ed5000 4K pte [ 0.072310] 0xfffffffef4ed5000-0xfffffffef4ed6000 4K pte [ 0.072311] 0xfffffffef4ed6000-0xfffffffef4ed7000 4K pte [ 0.072313] 0xfffffffef4ed7000-0xfffffffef4ee3000 48K pte [ 0.072314] 0xfffffffef4ee3000-0xfffffffef4ee6000 12K pte [ 0.072315] 0xfffffffef4ee6000-0xfffffffef4ee7000 4K pte [ 0.072316] 0xfffffffef4ee7000-0xfffffffef4eea000 12K pte [ 0.072317] 0xfffffffef4eea000-0xfffffffef4eec000 8K pte [ 0.072318] 0xfffffffef4eec000-0xfffffffef4eed000 4K pte [ 0.072320] 0xfffffffef4eed000-0xfffffffef4eee000 4K pte [ 0.072321] 0xfffffffef4eee000-0xfffffffef4eef000 4K pte [ 0.072322] 0xfffffffef4eef000-0xfffffffef4ef0000 4K pte [ 0.072323] 0xfffffffef4ef0000-0xfffffffef4ef2000 8K pte [ 0.072324] 0xfffffffef4ef2000-0xfffffffef4ef3000 4K pte [ 0.072325] 0xfffffffef4ef3000-0xfffffffef4ef6000 12K pte [ 0.072327] 0xfffffffef4ef6000-0xfffffffef4f07000 68K pte [ 0.072328] 0xfffffffef4f07000-0xfffffffef4f0c000 20K pte [ 0.072329] 0xfffffffef4f0c000-0xfffffffef4f0e000 8K pte [ 0.072330] 0xfffffffef4f0e000-0xfffffffef4f10000 8K pte [ 0.072331] 0xfffffffef4f10000-0xfffffffef4f15000 20K pte [ 0.072332] 0xfffffffef4f15000-0xfffffffef4f17000 8K pte [ 0.072334] 0xfffffffef4f17000-0xfffffffef4f18000 4K pte [ 0.072335] 0xfffffffef4f18000-0xfffffffef4f1a000 8K pte [ 0.072336] 0xfffffffef4f1a000-0xfffffffef4f1d000 12K pte [ 0.072337] 0xfffffffef4f1d000-0xfffffffef4f21000 16K pte [ 0.072338] 0xfffffffef4f21000-0xfffffffef4f26000 20K pte [ 0.072339] 0xfffffffef4f26000-0xfffffffef4f29000 12K pte [ 0.072341] 0xfffffffef4f29000-0xfffffffef4f36000 52K pte [ 0.072342] 0xfffffffef4f36000-0xfffffffef4f37000 4K pte [ 0.072343] 0xfffffffef4f37000-0xfffffffef4f38000 4K pte [ 0.072344] 0xfffffffef4f38000-0xfffffffef4f39000 4K pte [ 0.072346] 0xfffffffef4f39000-0xfffffffef4f3f000 24K pte [ 0.072347] 0xfffffffef4f3f000-0xfffffffef4f41000 8K pte [ 0.072348] 0xfffffffef4f41000-0xfffffffef4f42000 4K pte [ 0.072349] 0xfffffffef4f42000-0xfffffffef4f43000 4K pte [ 0.072351] 0xfffffffef4f43000-0xfffffffef4f49000 24K pte [ 0.072352] 0xfffffffef4f49000-0xfffffffef4f4b000 8K pte [ 0.072353] 0xfffffffef4f4b000-0xfffffffef4f4c000 4K pte [ 0.072354] 0xfffffffef4f4c000-0xfffffffef4f4d000 4K pte [ 0.072355] 0xfffffffef4f4d000-0xfffffffef4f5a000 52K pte [ 0.072356] 0xfffffffef4f5a000-0xfffffffef4f5b000 4K pte [ 0.072357] 0xfffffffef4f5b000-0xfffffffef4f60000 20K pte [ 0.072359] 0xfffffffef4f60000-0xfffffffef4f62000 8K pte [ 0.072360] 0xfffffffef4f62000-0xfffffffef4f63000 4K pte [ 0.072361] 0xfffffffef4f63000-0xfffffffef4f65000 8K pte [ 0.072362] 0xfffffffef4f65000-0xfffffffef4f73000 56K pte [ 0.072363] 0xfffffffef4f73000-0xfffffffef4f75000 8K pte [ 0.072365] 0xfffffffef4f75000-0xfffffffef4f79000 16K pte [ 0.072366] 0xfffffffef4f79000-0xfffffffef4f9a000 132K pte [ 0.072367] 0xfffffffef4f9a000-0xfffffffef4f9c000 8K pte [ 0.072368] 0xfffffffef4f9c000-0xfffffffef4f9e000 8K pte [ 0.072369] 0xfffffffef4f9e000-0xfffffffef4fa0000 8K pte [ 0.072371] 0xfffffffef4fa0000-0xfffffffef4fb4000 80K pte [ 0.072372] 0xfffffffef4fb4000-0xfffffffef4fc4000 64K pte [ 0.072373] 0xfffffffef4fc4000-0xfffffffef4fcd000 36K pte [ 0.072374] 0xfffffffef4fcd000-0xfffffffef4fce000 4K pte [ 0.072376] 0xfffffffef4fce000-0xfffffffef4fcf000 4K pte [ 0.072377] 0xfffffffef4fcf000-0xfffffffef4fd1000 8K pte [ 0.072378] 0xfffffffef4fd1000-0xfffffffef4fd4000 12K pte [ 0.072379] 0xfffffffef4fd4000-0xfffffffef4fd6000 8K pte [ 0.072380] 0xfffffffef4fd6000-0xfffffffef4fd7000 4K pte [ 0.072381] 0xfffffffef4fd7000-0xfffffffef4fd8000 4K pte [ 0.072382] 0xfffffffef4fd8000-0xfffffffef4fd9000 4K pte [ 0.072384] 0xfffffffef4fd9000-0xfffffffef4fe8000 60K pte [ 0.072385] 0xfffffffef4fe8000-0xfffffffef4fea000 8K pte [ 0.072386] 0xfffffffef4fea000-0xfffffffef4feb000 4K pte [ 0.072387] 0xfffffffef4feb000-0xfffffffef4fed000 8K pte [ 0.072388] 0xfffffffef4fed000-0xfffffffef4fee000 4K pte [ 0.072389] 0xfffffffef4fee000-0xfffffffef4fef000 4K pte [ 0.072390] 0xfffffffef4fef000-0xfffffffef4ff6000 28K pte [ 0.072392] 0xfffffffef4ff6000-0xfffffffef4ff7000 4K pte [ 0.072393] 0xfffffffef4ff7000-0xfffffffef4ffb000 16K pte [ 0.072394] 0xfffffffef4ffb000-0xfffffffef4ffe000 12K pte [ 0.072395] 0xfffffffef4ffe000-0xfffffffef5001000 12K pte [ 0.072396] 0xfffffffef5001000-0xfffffffef5002000 4K pte [ 0.072398] 0xfffffffef5002000-0xfffffffef5004000 8K pte [ 0.072399] 0xfffffffef5004000-0xfffffffef5009000 20K pte [ 0.072400] 0xfffffffef5009000-0xfffffffef500c000 12K pte [ 0.072401] 0xfffffffef500c000-0xfffffffef500f000 12K pte [ 0.072403] 0xfffffffef500f000-0xfffffffef5012000 12K pte [ 0.072404] 0xfffffffef5012000-0xfffffffef5013000 4K pte [ 0.072405] 0xfffffffef5013000-0xfffffffef5035000 136K pte [ 0.072407] 0xfffffffef5035000-0xfffffffef5036000 4K pte [ 0.072408] 0xfffffffef5036000-0xfffffffef5037000 4K pte [ 0.072409] 0xfffffffef5037000-0xfffffffef5038000 4K pte [ 0.072410] 0xfffffffef5038000-0xfffffffef5043000 44K pte [ 0.072411] 0xfffffffef5043000-0xfffffffef5044000 4K pte [ 0.072412] 0xfffffffef5044000-0xfffffffef5047000 12K pte [ 0.072413] 0xfffffffef5047000-0xfffffffef5048000 4K pte [ 0.072415] 0xfffffffef5048000-0xfffffffef5049000 4K pte [ 0.072416] 0xfffffffef5049000-0xfffffffef504a000 4K pte [ 0.072417] 0xfffffffef504a000-0xfffffffef504d000 12K pte [ 0.072423] 0xfffffffef504d000-0xfffffffef544d000 4M pte [ 0.072424] 0xfffffffef544d000-0xfffffffef546c000 124K pte [ 0.072425] 0xfffffffef546c000-0xfffffffef546d000 4K pte [ 0.072427] 0xfffffffef546d000-0xfffffffef546e000 4K pte [ 0.072428] 0xfffffffef546e000-0xfffffffef546f000 4K pte [ 0.072429] 0xfffffffef546f000-0xfffffffef5470000 4K pte [ 0.072430] 0xfffffffef5470000-0xfffffffef5471000 4K pte [ 0.072431] 0xfffffffef5471000-0xfffffffef5473000 8K pte [ 0.072432] 0xfffffffef5473000-0xfffffffef5474000 4K pte [ 0.072433] 0xfffffffef5474000-0xfffffffef5478000 16K pte [ 0.072435] 0xfffffffef5478000-0xfffffffef547c000 16K pte [ 0.072436] 0xfffffffef547c000-0xfffffffef547d000 4K pte [ 0.072437] 0xfffffffef547d000-0xfffffffef547e000 4K pte [ 0.072438] 0xfffffffef547e000-0xfffffffef547f000 4K pte [ 0.072439] 0xfffffffef547f000-0xfffffffef5480000 4K pte [ 0.072440] 0xfffffffef5480000-0xfffffffef5485000 20K pte [ 0.072441] 0xfffffffef5485000-0xfffffffef5488000 12K pte [ 0.072443] 0xfffffffef5488000-0xfffffffef5489000 4K pte [ 0.072444] 0xfffffffef5489000-0xfffffffef548c000 12K pte [ 0.072445] 0xfffffffef548c000-0xfffffffef548d000 4K pte [ 0.072446] 0xfffffffef548d000-0xfffffffef5493000 24K pte [ 0.072447] 0xfffffffef5493000-0xfffffffef5496000 12K pte [ 0.072454] 0xfffffffef5496000-0xfffffffef5eb4000 10360K pte [ 0.072456] 0xfffffffef5eb4000-0xfffffffef5f0a000 344K pte [ 0.072459] 0xfffffffef5f0a000-0xfffffffef6000000 984K RW NX pte [ 0.072462] 0xfffffffef6000000-0xfffffffef6c00000 12M RW PSE NX pmd [ 0.072466] 0xfffffffef6c00000-0xfffffffef6c90000 576K RW NX pte [ 0.072468] 0xfffffffef6c90000-0xfffffffef6c93000 12K ro x pte [ 0.072470] 0xfffffffef6c93000-0xfffffffef6c98000 20K RW NX pte [ 0.072473] 0xfffffffef6c98000-0xfffffffef6c99000 4K ro x pte [ 0.072475] 0xfffffffef6c99000-0xfffffffef6c9e000 20K RW NX pte [ 0.072478] 0xfffffffef6c9e000-0xfffffffef6ca1000 12K ro x pte [ 0.072480] 0xfffffffef6ca1000-0xfffffffef6ca6000 20K RW NX pte [ 0.072483] 0xfffffffef6ca6000-0xfffffffef6ca7000 4K ro x pte [ 0.072485] 0xfffffffef6ca7000-0xfffffffef6cab000 16K RW NX pte [ 0.072488] 0xfffffffef6cab000-0xfffffffef6cb9000 56K ro x pte [ 0.072490] 0xfffffffef6cb9000-0xfffffffef6cc1000 32K RW NX pte [ 0.072493] 0xfffffffef6cc1000-0xfffffffef6cc4000 12K ro x pte [ 0.072495] 0xfffffffef6cc4000-0xfffffffef6cc9000 20K RW NX pte [ 0.072498] 0xfffffffef6cc9000-0xfffffffef6cca000 4K ro x pte [ 0.072500] 0xfffffffef6cca000-0xfffffffef6ccf000 20K RW NX pte [ 0.072502] 0xfffffffef6ccf000-0xfffffffef6cd0000 4K ro x pte [ 0.072505] 0xfffffffef6cd0000-0xfffffffef6cd5000 20K RW NX pte [ 0.072507] 0xfffffffef6cd5000-0xfffffffef6cd6000 4K ro x pte [ 0.072510] 0xfffffffef6cd6000-0xfffffffef6cdb000 20K RW NX pte [ 0.072512] 0xfffffffef6cdb000-0xfffffffef6cdc000 4K ro x pte [ 0.072515] 0xfffffffef6cdc000-0xfffffffef6ce0000 16K RW NX pte [ 0.072517] 0xfffffffef6ce0000-0xfffffffef6cea000 40K ro x pte [ 0.072520] 0xfffffffef6cea000-0xfffffffef6cf0000 24K RW NX pte [ 0.072522] 0xfffffffef6cf0000-0xfffffffef6cf4000 16K ro x pte [ 0.072525] 0xfffffffef6cf4000-0xfffffffef6cf9000 20K RW NX pte [ 0.072527] 0xfffffffef6cf9000-0xfffffffef6cfd000 16K ro x pte [ 0.072530] 0xfffffffef6cfd000-0xfffffffef6d02000 20K RW NX pte [ 0.072535] 0xfffffffef6d02000-0xfffffffef7005000 3084K pte [ 0.072536] 0xfffffffef7005000-0xfffffffef7024000 124K pte [ 0.072538] 0xfffffffef7024000-0xfffffffef7054000 192K pte [ 0.072539] 0xfffffffef7054000-0xfffffffef7062000 56K pte [ 0.072549] 0xfffffffef7062000-0xfffffffef85fe000 22128K pte [ 0.072550] 0xfffffffef85fe000-0xfffffffef85ff000 4K pte [ 0.072552] 0xfffffffef85ff000-0xfffffffef8611000 72K pte [ 0.072553] 0xfffffffef8611000-0xfffffffef8619000 32K pte [ 0.072554] 0xfffffffef8619000-0xfffffffef863e000 148K pte [ 0.072556] 0xfffffffef863e000-0xfffffffef864e000 64K pte [ 0.072557] 0xfffffffef864e000-0xfffffffef866f000 132K pte [ 0.072559] 0xfffffffef866f000-0xfffffffef8688000 100K pte [ 0.072568] 0xfffffffef8688000-0xfffffffef8ff9000 9668K pte [ 0.072570] 0xfffffffef8ff9000-0xfffffffef9000000 28K pte [ 0.072571] 0xfffffffef9000000-0xfffffffefd000000 64M RW PSE NX pmd [ 0.072574] 0xfffffffefd000000-0xffffffff00000000 48M RW PCD PSE NX pmd [ 0.072577] 0xffffffff00000000-0xffffffff80000000 2G pud [ 0.072578] ---[ High Kernel Mapping ]--- [ 0.072579] 0xffffffff80000000-0xffffffff81000000 16M pmd [ 0.072580] 0xffffffff81000000-0xffffffff82400000 20M RW PSE GLB x pmd [ 0.072584] 0xffffffff82400000-0xffffffff824cf000 828K RW GLB x pte [ 0.072587] 0xffffffff824cf000-0xffffffff824d0000 4K ro GLB x pte [ 0.072592] 0xffffffff824d0000-0xffffffff82600000 1216K RW GLB x pte [ 0.072594] 0xffffffff82600000-0xffffffff82800000 2M RW PSE GLB x pmd [ 0.072599] 0xffffffff82800000-0xffffffffa0000000 472M pmd [ 0.072600] ---[ Modules ]--- [ 0.072606] 0xffffffffa0000000-0xffffffffff000000 1520M pmd [ 0.072607] ---[ End Modules ]--- [ 0.072607] 0xffffffffff000000-0xffffffffff200000 2M pmd [ 0.072617] 0xffffffffff200000-0xffffffffff57c000 3568K pte [ 0.072618] ---[ Fixmap Area ]--- [ 0.072620] 0xffffffffff57c000-0xffffffffff5fb000 508K pte [ 0.072621] 0xffffffffff5fb000-0xffffffffff5fe000 12K RW PWT PCD GLB NX pte [ 0.072624] 0xffffffffff5fe000-0xffffffffff600000 8K pte [ 0.072625] 0xffffffffff600000-0xffffffffff601000 4K USR ro GLB NX pte [ 0.072632] 0xffffffffff601000-0xffffffffff800000 2044K pte [ 0.072634] 0xffffffffff800000-0x0000000000000000 8M pmd [ 0.072766] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.072792] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.073428] LVT offset 1 assigned for vector 0xf9 [ 0.073509] LVT offset 2 assigned for vector 0xf4 [ 0.073531] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512 [ 0.073531] Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0 [ 0.073533] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.073534] Spectre V2 : Mitigation: Full AMD retpoline [ 0.073535] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.073536] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.073537] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp [ 0.073723] Freeing SMP alternatives memory: 28K [ 0.176756] smpboot: CPU0: AMD Ryzen 3 2200G with Radeon Vega Graphics (family: 0x17, model: 0x11, stepping: 0x0) [ 0.177232] Performance Events: Fam17h+ core perfctr, AMD PMU driver. [ 0.177232] ... version: 0 [ 0.177232] ... bit width: 48 [ 0.177232] ... generic registers: 6 [ 0.177232] ... value mask: 0000ffffffffffff [ 0.177232] ... max period: 00007fffffffffff [ 0.177232] ... fixed-purpose events: 0 [ 0.177232] ... event mask: 000000000000003f [ 0.177232] rcu: Hierarchical SRCU implementation. [ 0.177232] smp: Bringing up secondary CPUs ... [ 0.177253] x86: Booting SMP configuration: [ 0.177254] .... node #0, CPUs: #1 #2 #3 [ 0.181252] smp: Brought up 1 node, 4 CPUs [ 0.181252] smpboot: Max logical packages: 8 [ 0.181252] smpboot: Total of 4 processors activated (27948.56 BogoMIPS) [ 0.181466] devtmpfs: initialized [ 0.182331] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes) [ 0.182331] PM: Registering ACPI NVS region [mem 0x5bb00000-0x5bf09fff] (4235264 bytes) [ 0.182374] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.182378] futex hash table entries: 8192 (order: 7, 524288 bytes, linear) [ 0.182508] pinctrl core: initialized pinctrl subsystem [ 0.182726] NET: Registered protocol family 16 [ 0.182800] audit: initializing netlink subsys (disabled) [ 0.182803] audit: type=2000 audit(1613574090.131:1): state=initialized audit_enabled=0 res=1 [ 0.182803] thermal_sys: Registered thermal governor 'bang_bang' [ 0.182803] thermal_sys: Registered thermal governor 'step_wise' [ 0.182803] thermal_sys: Registered thermal governor 'user_space' [ 0.182803] thermal_sys: Registered thermal governor 'power_allocator' [ 0.182803] cpuidle: using governor ladder [ 0.182803] cpuidle: using governor menu [ 0.182803] ACPI: bus type PCI registered [ 0.182803] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.183247] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000) [ 0.183247] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820 [ 0.183247] PCI: Using configuration type 1 for base access [ 0.184869] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.185316] ACPI: Added _OSI(Module Device) [ 0.185317] ACPI: Added _OSI(Processor Device) [ 0.185318] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.185319] ACPI: Added _OSI(Processor Aggregator Device) [ 0.185320] ACPI: Added _OSI(Linux-Dell-Video) [ 0.185321] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 0.185322] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 0.190600] ACPI: 7 ACPI AML tables successfully acquired and loaded [ 0.191318] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored [ 0.192293] ACPI: Interpreter enabled [ 0.192305] ACPI: (supports S0 S3 S4 S5) [ 0.192306] ACPI: Using IOAPIC for interrupt routing [ 0.192593] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.193248] ACPI: Enabled 2 GPEs in block 00 to 1F [ 0.197423] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.197428] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] [ 0.197526] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR] [ 0.197619] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability] [ 0.197627] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge [ 0.197826] PCI host bridge to bus 0000:00 [ 0.197828] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] [ 0.197829] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] [ 0.197830] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] [ 0.197831] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.197832] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 0.197832] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window] [ 0.197833] pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window] [ 0.197834] pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window] [ 0.197835] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.197849] pci 0000:00:00.0: [1022:15d0] type 00 class 0x060000 [ 0.198244] pci 0000:00:01.0: [1022:1452] type 00 class 0x060000 [ 0.198244] pci 0000:00:01.2: [1022:15d3] type 01 class 0x060400 [ 0.198244] pci 0000:00:01.2: enabling Extended Tags [ 0.198244] pci 0000:00:01.2: PME# supported from D0 D3hot D3cold [ 0.198329] pci 0000:00:08.0: [1022:1452] type 00 class 0x060000 [ 0.199257] pci 0000:00:08.1: [1022:15db] type 01 class 0x060400 [ 0.199257] pci 0000:00:08.1: enabling Extended Tags [ 0.199257] pci 0000:00:08.1: PME# supported from D0 D3hot D3cold [ 0.199257] pci 0000:00:08.2: [1022:15dc] type 01 class 0x060400 [ 0.199257] pci 0000:00:08.2: enabling Extended Tags [ 0.199257] pci 0000:00:08.2: PME# supported from D0 D3hot D3cold [ 0.199257] pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500 [ 0.199257] pci 0000:00:14.3: [1022:790e] type 00 class 0x060100 [ 0.199257] pci 0000:00:18.0: [1022:15e8] type 00 class 0x060000 [ 0.199296] pci 0000:00:18.1: [1022:15e9] type 00 class 0x060000 [ 0.200241] pci 0000:00:18.2: [1022:15ea] type 00 class 0x060000 [ 0.200241] pci 0000:00:18.3: [1022:15eb] type 00 class 0x060000 [ 0.200306] pci 0000:00:18.4: [1022:15ec] type 00 class 0x060000 [ 0.200306] pci 0000:00:18.5: [1022:15ed] type 00 class 0x060000 [ 0.200306] pci 0000:00:18.6: [1022:15ee] type 00 class 0x060000 [ 0.200306] pci 0000:00:18.7: [1022:15ef] type 00 class 0x060000 [ 0.200306] pci 0000:01:00.0: [1022:43bc] type 00 class 0x0c0330 [ 0.200306] pci 0000:01:00.0: reg 0x10: [mem 0xfcea0000-0xfcea7fff 64bit] [ 0.200306] pci 0000:01:00.0: enabling Extended Tags [ 0.200306] pci 0000:01:00.0: PME# supported from D3hot D3cold [ 0.200306] pci 0000:01:00.1: [1022:43b8] type 00 class 0x010601 [ 0.200306] pci 0000:01:00.1: reg 0x24: [mem 0xfce80000-0xfce9ffff] [ 0.200306] pci 0000:01:00.1: reg 0x30: [mem 0xfce00000-0xfce7ffff pref] [ 0.200306] pci 0000:01:00.1: enabling Extended Tags [ 0.200306] pci 0000:01:00.1: PME# supported from D3hot D3cold [ 0.200306] pci 0000:01:00.2: [1022:43b3] type 01 class 0x060400 [ 0.200306] pci 0000:01:00.2: enabling Extended Tags [ 0.200306] pci 0000:01:00.2: PME# supported from D3hot D3cold [ 0.200334] pci 0000:00:01.2: PCI bridge to [bus 01-05] [ 0.200339] pci 0000:00:01.2: bridge window [io 0xf000-0xffff] [ 0.200342] pci 0000:00:01.2: bridge window [mem 0xfcd00000-0xfcefffff] [ 0.201241] pci 0000:02:04.0: [1022:43b4] type 01 class 0x060400 [ 0.201241] pci 0000:02:04.0: enabling Extended Tags [ 0.201241] pci 0000:02:04.0: PME# supported from D3hot D3cold [ 0.201254] pci 0000:02:06.0: [1022:43b4] type 01 class 0x060400 [ 0.201254] pci 0000:02:06.0: enabling Extended Tags [ 0.201254] pci 0000:02:06.0: PME# supported from D3hot D3cold [ 0.201254] pci 0000:02:07.0: [1022:43b4] type 01 class 0x060400 [ 0.201254] pci 0000:02:07.0: enabling Extended Tags [ 0.201254] pci 0000:02:07.0: PME# supported from D3hot D3cold [ 0.201254] pci 0000:01:00.2: PCI bridge to [bus 02-05] [ 0.201254] pci 0000:01:00.2: bridge window [io 0xf000-0xffff] [ 0.201254] pci 0000:01:00.2: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.201254] pci 0000:02:04.0: PCI bridge to [bus 03] [ 0.201254] pci 0000:02:06.0: PCI bridge to [bus 04] [ 0.201354] pci 0000:05:00.0: [10ec:8168] type 00 class 0x020000 [ 0.201384] pci 0000:05:00.0: reg 0x10: [io 0xf000-0xf0ff] [ 0.201425] pci 0000:05:00.0: reg 0x18: [mem 0xfcd04000-0xfcd04fff 64bit] [ 0.201451] pci 0000:05:00.0: reg 0x20: [mem 0xfcd00000-0xfcd03fff 64bit] [ 0.201621] pci 0000:05:00.0: supports D1 D2 [ 0.201622] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 0.202243] pci 0000:02:07.0: PCI bridge to [bus 05] [ 0.202243] pci 0000:02:07.0: bridge window [io 0xf000-0xffff] [ 0.202243] pci 0000:02:07.0: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.202243] pci 0000:06:00.0: [1002:15dd] type 00 class 0x030000 [ 0.202243] pci 0000:06:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref] [ 0.202243] pci 0000:06:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref] [ 0.202243] pci 0000:06:00.0: reg 0x20: [io 0xe000-0xe0ff] [ 0.202243] pci 0000:06:00.0: reg 0x24: [mem 0xfcc00000-0xfcc7ffff] [ 0.202243] pci 0000:06:00.0: enabling Extended Tags [ 0.202243] pci 0000:06:00.0: BAR 0: assigned to efifb [ 0.202243] pci 0000:06:00.0: PME# supported from D1 D2 D3hot D3cold [ 0.202300] pci 0000:06:00.1: [1002:15de] type 00 class 0x040300 [ 0.202321] pci 0000:06:00.1: reg 0x10: [mem 0xfcc88000-0xfcc8bfff] [ 0.202393] pci 0000:06:00.1: enabling Extended Tags [ 0.202464] pci 0000:06:00.1: PME# supported from D1 D2 D3hot D3cold [ 0.203245] pci 0000:06:00.2: [1022:15df] type 00 class 0x108000 [ 0.203245] pci 0000:06:00.2: reg 0x18: [mem 0xfcb00000-0xfcbfffff] [ 0.203245] pci 0000:06:00.2: reg 0x24: [mem 0xfcc8c000-0xfcc8dfff] [ 0.203245] pci 0000:06:00.2: enabling Extended Tags [ 0.203245] pci 0000:06:00.3: [1022:15e0] type 00 class 0x0c0330 [ 0.203245] pci 0000:06:00.3: reg 0x10: [mem 0xfca00000-0xfcafffff 64bit] [ 0.203245] pci 0000:06:00.3: enabling Extended Tags [ 0.203245] pci 0000:06:00.3: PME# supported from D0 D3hot D3cold [ 0.203275] pci 0000:06:00.4: [1022:15e1] type 00 class 0x0c0330 [ 0.203275] pci 0000:06:00.4: reg 0x10: [mem 0xfc900000-0xfc9fffff 64bit] [ 0.203275] pci 0000:06:00.4: enabling Extended Tags [ 0.203275] pci 0000:06:00.4: PME# supported from D0 D3hot D3cold [ 0.204240] pci 0000:06:00.6: [1022:15e3] type 00 class 0x040300 [ 0.204240] pci 0000:06:00.6: reg 0x10: [mem 0xfcc80000-0xfcc87fff] [ 0.204240] pci 0000:06:00.6: enabling Extended Tags [ 0.204240] pci 0000:06:00.6: PME# supported from D0 D3hot D3cold [ 0.204244] pci 0000:00:08.1: PCI bridge to [bus 06] [ 0.204244] pci 0000:00:08.1: bridge window [io 0xe000-0xefff] [ 0.204244] pci 0000:00:08.1: bridge window [mem 0xfc900000-0xfccfffff] [ 0.204244] pci 0000:00:08.1: bridge window [mem 0xe0000000-0xf01fffff 64bit pref] [ 0.204244] pci 0000:07:00.0: [1022:7901] type 00 class 0x010601 [ 0.204244] pci 0000:07:00.0: reg 0x24: [mem 0xfcf00000-0xfcf007ff] [ 0.204244] pci 0000:07:00.0: enabling Extended Tags [ 0.204244] pci 0000:07:00.0: PME# supported from D3hot D3cold [ 0.204244] pci 0000:00:08.2: PCI bridge to [bus 07] [ 0.204244] pci 0000:00:08.2: bridge window [mem 0xfcf00000-0xfcffffff] [ 0.204470] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0 [ 0.204515] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0 [ 0.204550] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0 [ 0.204603] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0 [ 0.204644] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0 [ 0.204678] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0 [ 0.204711] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0 [ 0.204745] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0 [ 0.205333] iommu: Default domain type: Translated [ 0.205333] pci 0000:06:00.0: vgaarb: setting as boot VGA device [ 0.205333] pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none [ 0.205333] pci 0000:06:00.0: vgaarb: bridge control possible [ 0.205333] vgaarb: loaded [ 0.206244] SCSI subsystem initialized [ 0.206265] libata version 3.00 loaded. [ 0.206265] ACPI: bus type USB registered [ 0.206266] usbcore: registered new interface driver usbfs [ 0.206275] usbcore: registered new interface driver hub [ 0.206293] usbcore: registered new device driver usb [ 0.206320] pps_core: LinuxPPS API ver. 1 registered [ 0.206320] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.206324] PTP clock support registered [ 0.206382] Registered efivars operations [ 0.206430] PCI: Using ACPI for IRQ routing [ 0.209225] PCI: pci_cache_line_size set to 64 bytes [ 0.209311] Expanded resource Reserved due to conflict with PCI Bus 0000:00 [ 0.209312] e820: reserve RAM buffer [mem 0x09d00000-0x0bffffff] [ 0.209314] e820: reserve RAM buffer [mem 0x0a200000-0x0bffffff] [ 0.209315] e820: reserve RAM buffer [mem 0x0b000000-0x0bffffff] [ 0.209316] e820: reserve RAM buffer [mem 0x593d9000-0x5bffffff] [ 0.209317] e820: reserve RAM buffer [mem 0x5a4b4000-0x5bffffff] [ 0.209317] e820: reserve RAM buffer [mem 0x5bb00000-0x5bffffff] [ 0.209318] e820: reserve RAM buffer [mem 0x5f000000-0x5fffffff] [ 0.209319] e820: reserve RAM buffer [mem 0x21f340000-0x21fffffff] [ 0.209323] clocksource: Switched to clocksource tsc-early [ 0.209396] VFS: Disk quotas dquot_6.6.0 [ 0.209418] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.209474] pnp: PnP ACPI init [ 0.209581] system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved [ 0.209588] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) [ 0.209623] system 00:01: [mem 0xfeb80000-0xfebfffff] has been reserved [ 0.209628] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.209685] system 00:02: [mem 0x60000000-0xdfffffff window] has been reserved [ 0.209690] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.209846] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active) [ 0.210037] system 00:04: [io 0x0280-0x028f] has been reserved [ 0.210039] system 00:04: [io 0x0290-0x029f] has been reserved [ 0.210041] system 00:04: [io 0x02a0-0x02af] has been reserved [ 0.210042] system 00:04: [io 0x02b0-0x02bf] has been reserved [ 0.210047] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.210231] pnp 00:05: [dma 0 disabled] [ 0.210267] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active) [ 0.210516] system 00:06: [io 0x04d0-0x04d1] has been reserved [ 0.210518] system 00:06: [io 0x040b] has been reserved [ 0.210519] system 00:06: [io 0x04d6] has been reserved [ 0.210521] system 00:06: [io 0x0c00-0x0c01] has been reserved [ 0.210522] system 00:06: [io 0x0c14] has been reserved [ 0.210523] system 00:06: [io 0x0c50-0x0c51] has been reserved [ 0.210524] system 00:06: [io 0x0c52] has been reserved [ 0.210526] system 00:06: [io 0x0c6c] has been reserved [ 0.210527] system 00:06: [io 0x0c6f] has been reserved [ 0.210528] system 00:06: [io 0x0cd0-0x0cd1] has been reserved [ 0.210529] system 00:06: [io 0x0cd2-0x0cd3] has been reserved [ 0.210530] system 00:06: [io 0x0cd4-0x0cd5] has been reserved [ 0.210532] system 00:06: [io 0x0cd6-0x0cd7] has been reserved [ 0.210533] system 00:06: [io 0x0cd8-0x0cdf] has been reserved [ 0.210534] system 00:06: [io 0x0800-0x089f] has been reserved [ 0.210536] system 00:06: [io 0x0b00-0x0b0f] has been reserved [ 0.210537] system 00:06: [io 0x0b20-0x0b3f] has been reserved [ 0.210538] system 00:06: [io 0x0900-0x090f] has been reserved [ 0.210539] system 00:06: [io 0x0910-0x091f] has been reserved [ 0.210541] system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved [ 0.210543] system 00:06: [mem 0xfec01000-0xfec01fff] could not be reserved [ 0.210544] system 00:06: [mem 0xfedc0000-0xfedc0fff] has been reserved [ 0.210546] system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved [ 0.210547] system 00:06: [mem 0xfed80000-0xfed8ffff] could not be reserved [ 0.210549] system 00:06: [mem 0xfec10000-0xfec10fff] has been reserved [ 0.210550] system 00:06: [mem 0xff000000-0xffffffff] has been reserved [ 0.210555] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) [ 0.210934] pnp: PnP ACPI: found 7 devices [ 0.216695] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.216751] NET: Registered protocol family 2 [ 0.216967] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 0.216978] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.217055] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear) [ 0.217199] TCP: Hash tables configured (established 65536 bind 65536) [ 0.217306] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear) [ 0.217325] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 0.217347] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 0.217462] NET: Registered protocol family 1 [ 0.217486] pci 0000:02:04.0: PCI bridge to [bus 03] [ 0.217502] pci 0000:02:06.0: PCI bridge to [bus 04] [ 0.217526] pci 0000:02:07.0: PCI bridge to [bus 05] [ 0.217529] pci 0000:02:07.0: bridge window [io 0xf000-0xffff] [ 0.217540] pci 0000:02:07.0: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.217549] pci 0000:01:00.2: PCI bridge to [bus 02-05] [ 0.217551] pci 0000:01:00.2: bridge window [io 0xf000-0xffff] [ 0.217556] pci 0000:01:00.2: bridge window [mem 0xfcd00000-0xfcdfffff] [ 0.217565] pci 0000:00:01.2: PCI bridge to [bus 01-05] [ 0.217567] pci 0000:00:01.2: bridge window [io 0xf000-0xffff] [ 0.217571] pci 0000:00:01.2: bridge window [mem 0xfcd00000-0xfcefffff] [ 0.217583] pci 0000:00:08.1: PCI bridge to [bus 06] [ 0.217589] pci 0000:00:08.1: bridge window [io 0xe000-0xefff] [ 0.217594] pci 0000:00:08.1: bridge window [mem 0xfc900000-0xfccfffff] [ 0.217598] pci 0000:00:08.1: bridge window [mem 0xe0000000-0xf01fffff 64bit pref] [ 0.217604] pci 0000:00:08.2: PCI bridge to [bus 07] [ 0.217609] pci 0000:00:08.2: bridge window [mem 0xfcf00000-0xfcffffff] [ 0.217619] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] [ 0.217620] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] [ 0.217621] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] [ 0.217622] pci_bus 0000:00: resource 7 [io 0x0d00-0xffff window] [ 0.217624] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window] [ 0.217625] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window] [ 0.217626] pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window] [ 0.217627] pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window] [ 0.217628] pci_bus 0000:01: resource 0 [io 0xf000-0xffff] [ 0.217629] pci_bus 0000:01: resource 1 [mem 0xfcd00000-0xfcefffff] [ 0.217630] pci_bus 0000:02: resource 0 [io 0xf000-0xffff] [ 0.217631] pci_bus 0000:02: resource 1 [mem 0xfcd00000-0xfcdfffff] [ 0.217632] pci_bus 0000:05: resource 0 [io 0xf000-0xffff] [ 0.217633] pci_bus 0000:05: resource 1 [mem 0xfcd00000-0xfcdfffff] [ 0.217634] pci_bus 0000:06: resource 0 [io 0xe000-0xefff] [ 0.217635] pci_bus 0000:06: resource 1 [mem 0xfc900000-0xfccfffff] [ 0.217636] pci_bus 0000:06: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref] [ 0.217637] pci_bus 0000:07: resource 1 [mem 0xfcf00000-0xfcffffff] [ 0.217884] pci 0000:06:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] [ 0.217908] pci 0000:06:00.1: D0 power state depends on 0000:06:00.0 [ 0.217979] pci 0000:06:00.3: extending delay after power-on from D3hot to 20 msec [ 0.218106] pci 0000:06:00.4: extending delay after power-on from D3hot to 20 msec [ 0.218197] PCI: CLS 64 bytes, default 64 [ 0.218232] Trying to unpack rootfs image as initramfs... [ 0.308929] Freeing initrd memory: 17428K [ 0.308934] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) [ 0.308936] software IO TLB: mapped [mem 0x0000000052a49000-0x0000000056a49000] (64MB) [ 0.309014] RAPL PMU: API unit is 2^-32 Joules, 1 fixed counters, 163840 ms ovfl timer [ 0.309015] RAPL PMU: hw unit of domain package 2^-16 Joules [ 0.309029] amd_uncore: 4 amd_df counters detected [ 0.309041] amd_uncore: 6 amd_l3 counters detected [ 0.309647] Initialise system trusted keyrings [ 0.309685] workingset: timestamp_bits=40 max_order=21 bucket_order=0 [ 0.310759] zbud: loaded [ 0.321096] Key type asymmetric registered [ 0.321098] Asymmetric key parser 'x509' registered [ 0.321105] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246) [ 0.321141] io scheduler mq-deadline registered [ 0.321142] io scheduler kyber registered [ 0.321158] io scheduler bfq registered [ 0.321293] pcieport 0000:00:01.2: PME: Signaling with IRQ 25 [ 0.321414] pcieport 0000:00:08.1: PME: Signaling with IRQ 26 [ 0.321595] pcieport 0000:00:08.2: PME: Signaling with IRQ 27 [ 0.322213] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 0.322230] efifb: probing for efifb [ 0.322245] efifb: framebuffer at 0xe0000000, using 4224k, total 4224k [ 0.322246] efifb: mode is 1366x768x32, linelength=5632, pages=1 [ 0.322246] efifb: scrolling: redraw [ 0.322247] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 [ 0.322313] Console: switching to colour frame buffer device 170x48 [ 0.324046] fb0: EFI VGA frame buffer device [ 0.324298] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled [ 0.324374] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 0.325412] lp: driver loaded but no devices found [ 0.325414] Linux agpgart interface v0.103 [ 0.328701] loop: module loaded [ 0.328924] ahci 0000:01:00.1: version 3.0 [ 0.329082] ahci 0000:01:00.1: SSS flag set, parallel bus scan disabled [ 0.329134] ahci 0000:01:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode [ 0.329136] ahci 0000:01:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst [ 0.329634] scsi host0: ahci [ 0.329773] scsi host1: ahci [ 0.329854] scsi host2: ahci [ 0.329930] scsi host3: ahci [ 0.330009] scsi host4: ahci [ 0.330094] scsi host5: ahci [ 0.330203] scsi host6: ahci [ 0.330284] scsi host7: ahci [ 0.330324] ata1: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80100 irq 36 [ 0.330326] ata2: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80180 irq 36 [ 0.330327] ata3: DUMMY [ 0.330327] ata4: DUMMY [ 0.330329] ata5: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80300 irq 36 [ 0.330331] ata6: SATA max UDMA/133 abar m131072@0xfce80000 port 0xfce80380 irq 36 [ 0.330332] ata7: DUMMY [ 0.330333] ata8: DUMMY [ 0.340987] ahci 0000:07:00.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode [ 0.340990] ahci 0000:07:00.0: flags: 64bit ncq sntf ilck pm led clo only pmp fbs pio slum part [ 0.341159] scsi host8: ahci [ 0.341204] ata9: SATA max UDMA/133 abar m2048@0xfcf00000 port 0xfcf00100 irq 38 [ 0.341265] PPP generic driver version 2.4.2 [ 0.341332] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 0.341333] ehci-pci: EHCI PCI platform driver [ 0.341343] ehci-platform: EHCI generic platform driver [ 0.341363] usbcore: registered new interface driver usb-storage [ 0.341385] i8042: PNP: No PS/2 controller found. [ 0.341428] mousedev: PS/2 mouse device common for all mice [ 0.341485] rtc_cmos 00:03: RTC can wake from S4 [ 0.341742] rtc_cmos 00:03: registered as rtc0 [ 0.341786] rtc_cmos 00:03: setting system clock to 2021-02-17T15:01:30 UTC (1613574090) [ 0.341800] rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs [ 0.341837] ledtrig-cpu: registered to indicate activity on CPUs [ 0.341860] hid: raw HID events driver (C) Jiri Kosina [ 0.341965] usbcore: registered new interface driver usbhid [ 0.341965] usbhid: USB HID core driver [ 0.342186] NET: Registered protocol family 10 [ 0.344932] Segment Routing with IPv6 [ 0.344934] RPL Segment Routing with IPv6 [ 0.344955] NET: Registered protocol family 17 [ 0.345018] Key type dns_resolver registered [ 0.345314] microcode: CPU0: patch_level=0x08101016 [ 0.345320] microcode: CPU1: patch_level=0x08101016 [ 0.345324] microcode: CPU2: patch_level=0x08101016 [ 0.345329] microcode: CPU3: patch_level=0x08101016 [ 0.345358] microcode: Microcode Update Driver: v2.2. [ 0.345361] IPI shorthand broadcast: enabled [ 0.345382] sched_clock: Marking stable (343226119, 2126297)->(349579488, -4227072) [ 0.345428] registered taskstats version 1 [ 0.345431] Loading compiled-in X.509 certificates [ 0.346210] zswap: loaded using pool zstd/zbud [ 0.649541] ata9: SATA link down (SStatus 0 SControl 300) [ 0.803090] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300) [ 0.803868] ata1.00: ATA-8: TOSHIBA HDWD110, MS2OA8R0, max UDMA/133 [ 0.803870] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA [ 0.804702] ata1.00: configured for UDMA/133 [ 0.804862] scsi 0:0:0:0: Direct-Access ATA TOSHIBA HDWD110 A8R0 PQ: 0 ANSI: 5 [ 0.805108] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB) [ 0.805110] sd 0:0:0:0: [sda] 4096-byte physical blocks [ 0.805116] sd 0:0:0:0: [sda] Write Protect is off [ 0.805118] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00 [ 0.805127] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 0.841212] sda: sda1 sda2 sda3 sda4 [ 0.841739] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.115109] ata2: SATA link down (SStatus 0 SControl 300) [ 1.362253] tsc: Refined TSC clocksource calibration: 3493.421 MHz [ 1.362267] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x325b0a25784, max_idle_ns: 440795384226 ns [ 1.362287] clocksource: Switched to clocksource tsc [ 1.423309] ata5: SATA link down (SStatus 0 SControl 300) [ 1.727311] ata6: SATA link down (SStatus 0 SControl 300) [ 1.727700] Freeing unused kernel image (initmem) memory: 1060K [ 1.727704] Write protecting the kernel read-only data: 16384k [ 1.728306] Freeing unused kernel image (text/rodata gap) memory: 2044K [ 1.728778] Freeing unused kernel image (rodata/data gap) memory: 1840K [ 1.728787] rodata_test: all tests were successful [ 1.728798] Run /init as init process [ 1.728798] with arguments: [ 1.728799] /init [ 1.728799] splash [ 1.728800] with environment: [ 1.728800] HOME=/ [ 1.728801] TERM=linux [ 1.728801] BOOT_IMAGE=/boot/vmlinuz-5.10.9-calculate [ 1.728802] calculate=video:modesetting [ 1.803915] dracut: TuxOnIce premodule started [ 1.803997] dracut: Kernel has no tuxonice support, aborting [ 1.808764] systemd-udevd[1169]: starting version 3.2.10 [ 1.809674] udevd[1170]: starting eudev-3.2.10 [ 1.835023] ACPI: Video Device [VGA1] (multi-head: yes rom: no post: no) [ 1.835217] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.GP17.VGA.LCD._BCM.AFN7], AE_NOT_FOUND (20200925/psargs-330) [ 1.835270] ACPI Error: Aborting method \_SB.PCI0.GP17.VGA.LCD._BCM due to previous error (AE_NOT_FOUND) (20200925/psparse-529) [ 1.835304] ACPI Error: Evaluating _BCM failed (20200925/video-357) [ 1.835517] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/LNXVIDEO:01/input/input0 [ 1.841057] AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de> [ 1.841059] AMD-Vi: AMD IOMMUv2 functionality not available on this system [ 1.895380] [drm] amdgpu kernel modesetting enabled. [ 1.895533] amdgpu: Topology: Add APU node [0x0:0x0] [ 1.895621] checking generic (e0000000 420000) vs hw (e0000000 10000000) [ 1.895623] fb0: switching to amdgpudrmfb from EFI VGA [ 1.895710] Console: switching to colour dummy device 80x25 [ 1.895730] amdgpu 0000:06:00.0: vgaarb: deactivate vga console [ 1.895929] [drm] initializing kernel modesetting (RAVEN 0x1002:0x15DD 0x1002:0x15DD 0xC8). [ 1.895933] amdgpu 0000:06:00.0: amdgpu: Trusted Memory Zone (TMZ) feature disabled as experimental (default) [ 1.895950] [drm] register mmio base: 0xFCC00000 [ 1.895951] [drm] register mmio size: 524288 [ 1.895975] [drm] add ip block number 0 <soc15_common> [ 1.895976] [drm] add ip block number 1 <gmc_v9_0> [ 1.895977] [drm] add ip block number 2 <vega10_ih> [ 1.895978] [drm] add ip block number 3 <psp> [ 1.895979] [drm] add ip block number 4 <gfx_v9_0> [ 1.895981] [drm] add ip block number 5 <sdma_v4_0> [ 1.895982] [drm] add ip block number 6 <powerplay> [ 1.895983] [drm] add ip block number 7 <dm> [ 1.895984] [drm] add ip block number 8 <vcn_v1_0> [ 1.921224] [drm] BIOS signature incorrect 0 0 [ 1.921247] amdgpu 0000:06:00.0: amdgpu: Fetched VBIOS from ROM BAR [ 1.921249] amdgpu: ATOM BIOS: 113-RAVEN-114 [ 1.921271] [drm] VCN decode is enabled in VM mode [ 1.921272] [drm] VCN encode is enabled in VM mode [ 1.921272] [drm] JPEG decode is enabled in VM mode [ 1.921295] [drm] vm size is 262144 GB, 4 levels, block size is 9-bit, fragment size is 9-bit [ 1.921300] amdgpu 0000:06:00.0: amdgpu: VRAM: 2048M 0x000000F400000000 - 0x000000F47FFFFFFF (2048M used) [ 1.921302] amdgpu 0000:06:00.0: amdgpu: GART: 1024M 0x0000000000000000 - 0x000000003FFFFFFF [ 1.921303] amdgpu 0000:06:00.0: amdgpu: AGP: 267419648M 0x000000F800000000 - 0x0000FFFFFFFFFFFF [ 1.921307] [drm] Detected VRAM RAM=2048M, BAR=2048M [ 1.921308] [drm] RAM width 64bits DDR4 [ 1.921339] [TTM] Zone kernel: Available graphics memory: 3008766 KiB [ 1.921340] [TTM] Zone dma32: Available graphics memory: 2097152 KiB [ 1.921340] [TTM] Initializing pool allocator [ 1.921343] [TTM] Initializing DMA pool allocator [ 1.921397] [drm] amdgpu: 2048M of VRAM memory ready [ 1.921399] [drm] amdgpu: 3072M of GTT memory ready. [ 1.921400] [drm] GART: num cpu pages 262144, num gpu pages 262144 [ 1.921537] [drm] PCIE GART of 1024M enabled (table at 0x000000F400900000). [ 1.923119] amdgpu: hwmgr_sw_init smu backed is smu10_smu [ 1.923212] [drm] Found VCN firmware Version ENC: 1.12 DEC: 2 VEP: 0 Revision: 1 [ 1.923215] [drm] PSP loading VCN firmware [ 1.944058] [drm] reserve 0x400000 from 0xf47fc00000 for PSP TMR [ 2.024257] amdgpu 0000:06:00.0: amdgpu: RAS: optional ras ta ucode is not available [ 2.036255] amdgpu 0000:06:00.0: amdgpu: RAP: optional rap ta ucode is not available [ 2.038174] [drm] kiq ring mec 2 pipe 1 q 0 [ 2.038631] [drm] DM_PPLIB: values for F clock [ 2.038633] [drm] DM_PPLIB: 400000 in kHz, 3649 in mV [ 2.038633] [drm] DM_PPLIB: 933000 in kHz, 4074 in mV [ 2.038634] [drm] DM_PPLIB: 1200000 in kHz, 4399 in mV [ 2.038634] [drm] DM_PPLIB: 1333000 in kHz, 4399 in mV [ 2.038636] [drm] DM_PPLIB: values for DCF clock [ 2.038637] [drm] DM_PPLIB: 300000 in kHz, 3649 in mV [ 2.038637] [drm] DM_PPLIB: 600000 in kHz, 4074 in mV [ 2.038638] [drm] DM_PPLIB: 626000 in kHz, 4250 in mV [ 2.038638] [drm] DM_PPLIB: 654000 in kHz, 4399 in mV [ 2.039036] [drm] Display Core initialized with v3.2.104! [ 2.086209] [drm:dc_link_detect_helper [amdgpu]] *ERROR* No EDID read. [ 2.171859] [drm] VCN decode and encode initialized successfully(under SPG Mode). [ 2.172534] kfd kfd: Allocated 3969056 bytes on gart [ 2.172843] kfd kfd: error getting iommu info. is the iommu enabled? [ 2.172846] kfd kfd: Error initializing iommuv2 [ 2.172896] kfd kfd: device 1002:15dd NOT added due to errors [ 2.172899] amdgpu 0000:06:00.0: amdgpu: SE 1, SH per SE 1, CU per SH 11, active_cu_number 8 [ 2.173597] [drm] fb mappable at 0x60BCA000 [ 2.173597] [drm] vram apper at 0x60000000 [ 2.173598] [drm] size 4325376 [ 2.173598] [drm] fb depth is 24 [ 2.173599] [drm] pitch is 5632 [ 2.173644] fbcon: amdgpudrmfb (fb0) is primary device [ 2.203711] Console: switching to colour frame buffer device 170x48 [ 2.221951] amdgpu 0000:06:00.0: [drm] fb0: amdgpudrmfb frame buffer device [ 2.227302] amdgpu 0000:06:00.0: amdgpu: ring gfx uses VM inv eng 0 on hub 0 [ 2.227303] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.0 uses VM inv eng 1 on hub 0 [ 2.227305] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.0 uses VM inv eng 4 on hub 0 [ 2.227306] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.0 uses VM inv eng 5 on hub 0 [ 2.227307] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.0 uses VM inv eng 6 on hub 0 [ 2.227308] amdgpu 0000:06:00.0: amdgpu: ring comp_1.0.1 uses VM inv eng 7 on hub 0 [ 2.227309] amdgpu 0000:06:00.0: amdgpu: ring comp_1.1.1 uses VM inv eng 8 on hub 0 [ 2.227310] amdgpu 0000:06:00.0: amdgpu: ring comp_1.2.1 uses VM inv eng 9 on hub 0 [ 2.227311] amdgpu 0000:06:00.0: amdgpu: ring comp_1.3.1 uses VM inv eng 10 on hub 0 [ 2.227312] amdgpu 0000:06:00.0: amdgpu: ring kiq_2.1.0 uses VM inv eng 11 on hub 0 [ 2.227313] amdgpu 0000:06:00.0: amdgpu: ring sdma0 uses VM inv eng 0 on hub 1 [ 2.227315] amdgpu 0000:06:00.0: amdgpu: ring vcn_dec uses VM inv eng 1 on hub 1 [ 2.227316] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc0 uses VM inv eng 4 on hub 1 [ 2.227317] amdgpu 0000:06:00.0: amdgpu: ring vcn_enc1 uses VM inv eng 5 on hub 1 [ 2.227318] amdgpu 0000:06:00.0: amdgpu: ring jpeg_dec uses VM inv eng 6 on hub 1 [ 2.231394] [drm] Initialized amdgpu 3.40.0 20150101 for 0000:06:00.0 on minor 0 [ 2.236725] dracut: Starting plymouth daemon [ 2.310998] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 2.311042] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 1 [ 2.366478] xhci_hcd 0000:01:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000000008000410 [ 2.366638] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 [ 2.366639] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.366640] usb usb1: Product: xHCI Host Controller [ 2.366641] usb usb1: Manufacturer: Linux 5.10.9-calculate xhci-hcd [ 2.366641] usb usb1: SerialNumber: 0000:01:00.0 [ 2.366736] hub 1-0:1.0: USB hub found [ 2.366750] hub 1-0:1.0: 9 ports detected [ 2.367127] xhci_hcd 0000:01:00.0: xHCI Host Controller [ 2.367154] xhci_hcd 0000:01:00.0: new USB bus registered, assigned bus number 2 [ 2.367156] xhci_hcd 0000:01:00.0: Host supports USB 3.1 Enhanced SuperSpeed [ 2.367197] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 2.367208] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 [ 2.367209] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.367210] usb usb2: Product: xHCI Host Controller [ 2.367210] usb usb2: Manufacturer: Linux 5.10.9-calculate xhci-hcd [ 2.367211] usb usb2: SerialNumber: 0000:01:00.0 [ 2.367271] hub 2-0:1.0: USB hub found [ 2.367290] hub 2-0:1.0: 3 ports detected [ 2.367570] xhci_hcd 0000:06:00.3: xHCI Host Controller [ 2.367597] xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 3 [ 2.367783] xhci_hcd 0000:06:00.3: hcc params 0x0270ffe5 hci version 0x110 quirks 0x0000000840000410 [ 2.368016] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 [ 2.368017] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.368017] usb usb3: Product: xHCI Host Controller [ 2.368018] usb usb3: Manufacturer: Linux 5.10.9-calculate xhci-hcd [ 2.368019] usb usb3: SerialNumber: 0000:06:00.3 [ 2.368075] hub 3-0:1.0: USB hub found [ 2.368087] hub 3-0:1.0: 4 ports detected [ 2.368466] xhci_hcd 0000:06:00.3: xHCI Host Controller [ 2.368488] xhci_hcd 0000:06:00.3: new USB bus registered, assigned bus number 4 [ 2.368490] xhci_hcd 0000:06:00.3: Host supports USB 3.1 Enhanced SuperSpeed [ 2.368518] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 2.368528] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 [ 2.368529] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.368530] usb usb4: Product: xHCI Host Controller [ 2.368530] usb usb4: Manufacturer: Linux 5.10.9-calculate xhci-hcd [ 2.368531] usb usb4: SerialNumber: 0000:06:00.3 [ 2.368587] hub 4-0:1.0: USB hub found [ 2.368600] hub 4-0:1.0: 4 ports detected [ 2.368985] xhci_hcd 0000:06:00.4: xHCI Host Controller [ 2.369024] xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 5 [ 2.369184] xhci_hcd 0000:06:00.4: hcc params 0x0260ffe5 hci version 0x110 quirks 0x0000000840000410 [ 2.369373] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 [ 2.369375] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.369375] usb usb5: Product: xHCI Host Controller [ 2.369376] usb usb5: Manufacturer: Linux 5.10.9-calculate xhci-hcd [ 2.369376] usb usb5: SerialNumber: 0000:06:00.4 [ 2.369430] hub 5-0:1.0: USB hub found [ 2.369439] hub 5-0:1.0: 1 port detected [ 2.369536] xhci_hcd 0000:06:00.4: xHCI Host Controller [ 2.369559] xhci_hcd 0000:06:00.4: new USB bus registered, assigned bus number 6 [ 2.369561] xhci_hcd 0000:06:00.4: Host supports USB 3.1 Enhanced SuperSpeed [ 2.369588] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM. [ 2.369598] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 [ 2.369599] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 2.369600] usb usb6: Product: xHCI Host Controller [ 2.369601] usb usb6: Manufacturer: Linux 5.10.9-calculate xhci-hcd [ 2.369601] usb usb6: SerialNumber: 0000:06:00.4 [ 2.369653] hub 6-0:1.0: USB hub found [ 2.369662] hub 6-0:1.0: 1 port detected [ 2.754240] usb 1-4: new low-speed USB device number 2 using xhci_hcd [ 2.839204] dracut: TuxOnIce lvmfix started [ 2.842395] dracut: TuxOnIce udev should be now fully settled [ 2.902002] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) [ 3.056775] usb 1-4: New USB device found, idVendor=10c4, idProduct=8108, bcdDevice= 0.00 [ 3.056778] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0 [ 3.056779] usb 1-4: Product: USB OPTICAL MOUSE [ 3.056780] usb 1-4: Manufacturer: YSPRINGTECH [ 3.072676] 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.072749] 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.103867] dracut: Mounted root filesystem /dev/sda1 [ 3.131975] EXT4-fs (sda1): re-mounted. Opts: (null) [ 3.223643] EXT4-fs (sda1): re-mounted. Opts: (null) [ 3.248247] usb 1-5: new low-speed USB device number 3 using xhci_hcd [ 3.320046] dracut: Switching root [ 3.549555] usb 1-5: New USB device found, idVendor=2a7a, idProduct=938f, bcdDevice= 0.01 [ 3.549558] usb 1-5: New USB device strings: Mfr=0, Product=1, SerialNumber=0 [ 3.549560] usb 1-5: Product: CASUE USB KB [ 3.567790] 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.619405] 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.639767] 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.691277] 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.691328] 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.688977] udevd[3271]: starting version 3.2.10 [ 5.803577] udevd[3271]: starting eudev-3.2.10 [ 5.954378] acpi_cpufreq: overriding BIOS provided _PSD data [ 5.957443] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5 [ 5.957680] ACPI: Power Button [PWRB] [ 5.957736] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6 [ 5.961271] ACPI: Power Button [PWRF] [ 5.963305] piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0 [ 5.963306] piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection [ 5.963359] piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20 [ 6.023410] sp5100_tco: SP5100/SB800 TCO WatchDog Timer Driver [ 6.023487] sp5100-tco sp5100-tco: Using 0xfeb00000 for watchdog MMIO address [ 6.023545] sp5100-tco sp5100-tco: initialized. heartbeat=60 sec (nowayout=0) [ 6.024537] ccp 0000:06:00.2: ccp enabled [ 6.034696] ccp 0000:06:00.2: tee enabled [ 6.034700] ccp 0000:06:00.2: psp enabled [ 6.174364] libphy: r8169: probed [ 6.174512] r8169 0000:05:00.0 eth0: RTL8168h/8111h, 70:85:c2:96:6e:fa, XID 541, IRQ 55 [ 6.174514] r8169 0000:05:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko] [ 6.181020] cryptd: max_cpu_qlen set to 1000 [ 6.286277] AVX2 version of gcm_enc/dec engaged. [ 6.286280] AES CTR mode by8 optimization enabled [ 6.297355] snd_hda_intel 0000:06:00.1: bound 0000:06:00.0 (ops amdgpu_exit [amdgpu]) [ 6.300357] input: HD-Audio Generic HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:08.1/0000:06:00.1/sound/card0/input7 [ 6.300420] input: HD-Audio Generic HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:08.1/0000:06:00.1/sound/card0/input8 [ 6.300475] input: HD-Audio Generic HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:08.1/0000:06:00.1/sound/card0/input9 [ 6.374424] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line [ 6.374427] snd_hda_codec_realtek hdaudioC1D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) [ 6.374428] snd_hda_codec_realtek hdaudioC1D0: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0) [ 6.374429] snd_hda_codec_realtek hdaudioC1D0: mono: mono_out=0x0 [ 6.374430] snd_hda_codec_realtek hdaudioC1D0: inputs: [ 6.374431] snd_hda_codec_realtek hdaudioC1D0: Front Mic=0x19 [ 6.374432] snd_hda_codec_realtek hdaudioC1D0: Rear Mic=0x18 [ 6.374433] snd_hda_codec_realtek hdaudioC1D0: Line=0x1a [ 6.398379] input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input10 [ 6.398438] input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input11 [ 6.398472] input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input12 [ 6.398519] input: HD-Audio Generic Line Out as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input13 [ 6.398552] input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:06:00.6/sound/card1/input14 [ 6.479052] kvm: Nested Virtualization enabled [ 6.479063] SVM: kvm: Nested Paging enabled [ 6.479064] SVM: Virtual VMLOAD VMSAVE supported [ 6.479064] SVM: Virtual GIF supported [ 6.756751] EXT4-fs (sda1): re-mounted. Opts: (null) [ 7.019606] zram: Added device: zram0 [ 7.256643] zram0: detected capacity change from 0 to 12323905536 [ 7.399246] Adding 12035060k swap on /dev/zram0. Priority:100 extents:1 across:12035060k SSFS [ 7.485501] FAT-fs (sda4): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! [ 7.641113] FAT-fs (sda4): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [ 7.854206] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null) [ 10.026900] fuse: init (API version 7.32) [ 10.363146] Bluetooth: Core ver 2.22 [ 10.363176] NET: Registered protocol family 31 [ 10.363178] Bluetooth: HCI device and connection manager initialized [ 10.363182] Bluetooth: HCI socket layer initialized [ 10.363185] Bluetooth: L2CAP socket layer initialized [ 10.363188] Bluetooth: SCO socket layer initialized [ 10.506701] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 10.506704] Bluetooth: BNEP filters: protocol multicast [ 10.506709] Bluetooth: BNEP socket layer initialized [ 11.683261] 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.849742] r8169 0000:05:00.0 eth0: Link is Down [ 13.436579] r8169 0000:05:00.0 eth0: Link is Up - 100Mbps/Full - flow control rx/tx [ 13.436591] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 15.895625] Key type encrypted registered [ 19.381146] elogind-daemon[5484]: New seat seat0. [ 19.382656] elogind-daemon[5484]: Watching system buttons on /dev/input/event6 (Power Button) [ 19.393412] elogind-daemon[5484]: Watching system buttons on /dev/input/event5 (Power Button) [ 19.393685] elogind-daemon[5484]: Watching system buttons on /dev/input/event2 (CASUE USB KB) [ 19.393947] elogind-daemon[5484]: Watching system buttons on /dev/input/event3 (CASUE USB KB Consumer Control) [ 19.394210] elogind-daemon[5484]: Watching system buttons on /dev/input/event4 (CASUE USB KB System Control) [ 19.499468] elogind-daemon[5484]: New session 2 of user guest. [ 33.763208] kmixctrl[5644]: segfault at 0 ip 0000000000000000 sp 00007ffea505d7a8 error 14 in kmixctrl[556e902f3000+2000] [ 33.763214] Code: Unable to access opcode bytes at RIP 0xffffffffffffffd6. [ 1095.852684] elogind-daemon[5484]: New session 4 of user root. |