Paste #227574

   
pasted on 17.10.2021 04:26
  • Edit to this paste
  • Print
  • Raw
  • Compare with paste
    #  
  • Toggle line numbers
  • Syntax highlighting  
Text paste
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
[    0.000000] Linux version 5.10.73-calculate (root@localhost) (gcc (Gentoo 11.2.0 p1) 11.2.0, GNU ld (Gentoo 2.37_p1 p0) 2.37) #1 SMP PREEMPT Thu Oct 14 04:23:23 UTC 2021
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz root=live:LABEL=CLD-20211015 init=/linuxrc rd.live.squashimg=livecd.squashfs nodevfs quiet noresume splash calculate=lang:ru_RU,keymap:ru_RU,,timezone:Europe/Moscow,,video:modesetting,composite:on
[    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 'standard' format.
[    0.000000] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007b05efff] usable
[    0.000000] BIOS-e820: [mem 0x000000007b05f000-0x000000007b092fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007b093000-0x000000007b19efff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007b19f000-0x000000007b77dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007b77e000-0x000000007b8a0fff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007b8a1000-0x000000007b8e6fff] type 20
[    0.000000] BIOS-e820: [mem 0x000000007b8e7000-0x000000007b8e7fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007b8e8000-0x000000007b96dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007b96e000-0x000000007bffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d0000000-0x00000000dfffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000207fffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] efi: EFI v2.31 by American Megatrends
[    0.000000] efi: ESRT=0x7b89fd18 ACPI 2.0=0x7b0c8000 SMBIOS=0x7b89fb98 ACPI=0x7b0c8000 
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: HUANANZHI X79-16D HUANANZHI X79-16D/HUANANZHI X79-16D, BIOS 4.6.5 10/28/2019
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 3300.100 MHz processor
[    0.000357] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000359] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000362] last_pfn = 0x2080000 max_arch_pfn = 0x400000000
[    0.000365] MTRR default type: uncachable
[    0.000365] MTRR fixed ranges enabled:
[    0.000366]   00000-9FFFF write-back
[    0.000367]   A0000-EFFFF uncachable
[    0.000368]   F0000-FFFFF write-protect
[    0.000368] MTRR variable ranges enabled:
[    0.000369]   0 base 000000000000 mask 3FE000000000 write-back
[    0.000370]   1 base 002000000000 mask 3FFF80000000 write-back
[    0.000371]   2 base 00007E000000 mask 3FFFFE000000 uncachable
[    0.000371]   3 base 000080000000 mask 3FFF80000000 uncachable
[    0.000372]   4 disabled
[    0.000372]   5 disabled
[    0.000373]   6 disabled
[    0.000373]   7 disabled
[    0.000373]   8 disabled
[    0.000374]   9 disabled
[    0.000829] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.001138] e820: update [mem 0x7e000000-0xffffffff] usable ==> reserved
[    0.001142] last_pfn = 0x7c000 max_arch_pfn = 0x400000000
[    0.008329] esrt: Reserving ESRT space from 0x000000007b89fd18 to 0x000000007b89fd50.
[    0.008337] Using GB pages for direct mapping
[    0.008607] Secure boot disabled
[    0.008608] RAMDISK: [mem 0x30639000-0x34313fff]
[    0.008611] ACPI: Early table checksum verification disabled
[    0.008613] ACPI: RSDP 0x000000007B0C8000 000024 (v02 ALASKA)
[    0.008615] ACPI: XSDT 0x000000007B0C8070 000064 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.008619] ACPI: FACP 0x000000007B0D1410 00010C (v05 ALASKA A M I    01072009 AMI  00010013)
[    0.008623] ACPI: DSDT 0x000000007B0C8168 0092A5 (v02 ALASKA A M I    00000017 INTL 20051117)
[    0.008626] ACPI: FACS 0x000000007B775F80 000040
[    0.008628] ACPI: APIC 0x000000007B0D1520 000224 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.008630] ACPI: FPDT 0x000000007B0D1748 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.008633] ACPI: FIDT 0x000000007B0D1790 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.008635] ACPI: MCFG 0x000000007B0D1830 00003C (v01 ALASKA OEMMCFG. 01072009 MSFT 00000097)
[    0.008637] ACPI: HPET 0x000000007B0D1870 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.008640] ACPI: SSDT 0x000000007B0D18A8 0CD380 (v02 INTEL  CpuPm    00004000 INTL 20051117)
[    0.008642] ACPI: DMAR 0x000000007B19EC28 000208 (v01 A M I  OEMDMAR  00000001 INTL 00000001)
[    0.008645] ACPI: Reserving FACP table memory at [mem 0x7b0d1410-0x7b0d151b]
[    0.008645] ACPI: Reserving DSDT table memory at [mem 0x7b0c8168-0x7b0d140c]
[    0.008646] ACPI: Reserving FACS table memory at [mem 0x7b775f80-0x7b775fbf]
[    0.008647] ACPI: Reserving APIC table memory at [mem 0x7b0d1520-0x7b0d1743]
[    0.008647] ACPI: Reserving FPDT table memory at [mem 0x7b0d1748-0x7b0d178b]
[    0.008648] ACPI: Reserving FIDT table memory at [mem 0x7b0d1790-0x7b0d182b]
[    0.008649] ACPI: Reserving MCFG table memory at [mem 0x7b0d1830-0x7b0d186b]
[    0.008649] ACPI: Reserving HPET table memory at [mem 0x7b0d1870-0x7b0d18a7]
[    0.008650] ACPI: Reserving SSDT table memory at [mem 0x7b0d18a8-0x7b19ec27]
[    0.008651] ACPI: Reserving DMAR table memory at [mem 0x7b19ec28-0x7b19ee2f]
[    0.008657] ACPI: Local APIC address 0xfee00000
[    0.008665] No NUMA configuration found
[    0.008666] Faking a node at [mem 0x0000000000000000-0x000000207fffffff]
[    0.008668] NODE_DATA(0) allocated [mem 0x207fff9000-0x207fffdfff]
[    0.008775] Zone ranges:
[    0.008776]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.008777]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.008778]   Normal   [mem 0x0000000100000000-0x000000207fffffff]
[    0.008779]   Device   empty
[    0.008779] Movable zone start for each node
[    0.008780] Early memory node ranges
[    0.008781]   node   0: [mem 0x0000000000001000-0x000000000009ffff]
[    0.008781]   node   0: [mem 0x0000000000100000-0x000000007b05efff]
[    0.008782]   node   0: [mem 0x000000007b8e7000-0x000000007b8e7fff]
[    0.008783]   node   0: [mem 0x000000007b96e000-0x000000007bffffff]
[    0.008783]   node   0: [mem 0x0000000100000000-0x000000207fffffff]
[    0.008790] Initmem setup node 0 [mem 0x0000000000001000-0x000000207fffffff]
[    0.008791] On node 0 totalpages: 33535633
[    0.008792]   DMA zone: 64 pages used for memmap
[    0.008793]   DMA zone: 23 pages reserved
[    0.008793]   DMA zone: 3999 pages, LIFO batch:0
[    0.008794]   DMA32 zone: 7836 pages used for memmap
[    0.008795]   DMA32 zone: 501490 pages, LIFO batch:63
[    0.008795]   Normal zone: 516096 pages used for memmap
[    0.008796]   Normal zone: 33030144 pages, LIFO batch:63
[    0.008799] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.008848] On node 0, zone DMA: 96 pages in unavailable ranges
[    0.015098] On node 0, zone DMA32: 2184 pages in unavailable ranges
[    0.015159] On node 0, zone DMA32: 134 pages in unavailable ranges
[    0.424056] On node 0, zone Normal: 16384 pages in unavailable ranges
[    0.424424] ACPI: PM-Timer IO Port: 0x408
[    0.424427] ACPI: Local APIC address 0xfee00000
[    0.424437] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.424437] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[    0.424438] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[    0.424439] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[    0.424439] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[    0.424440] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[    0.424441] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[    0.424442] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[    0.424442] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[    0.424443] ACPI: LAPIC_NMI (acpi_id[0x12] high edge lint[0x1])
[    0.424444] ACPI: LAPIC_NMI (acpi_id[0x14] high edge lint[0x1])
[    0.424444] ACPI: LAPIC_NMI (acpi_id[0x16] high edge lint[0x1])
[    0.424445] ACPI: LAPIC_NMI (acpi_id[0x18] high edge lint[0x1])
[    0.424445] ACPI: LAPIC_NMI (acpi_id[0x1a] high edge lint[0x1])
[    0.424446] ACPI: LAPIC_NMI (acpi_id[0x1c] high edge lint[0x1])
[    0.424446] ACPI: LAPIC_NMI (acpi_id[0x1e] high edge lint[0x1])
[    0.424447] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.424447] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[    0.424448] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[    0.424448] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[    0.424449] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[    0.424449] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[    0.424450] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[    0.424450] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[    0.424451] ACPI: LAPIC_NMI (acpi_id[0x11] high edge lint[0x1])
[    0.424452] ACPI: LAPIC_NMI (acpi_id[0x13] high edge lint[0x1])
[    0.424452] ACPI: LAPIC_NMI (acpi_id[0x15] high edge lint[0x1])
[    0.424453] ACPI: LAPIC_NMI (acpi_id[0x17] high edge lint[0x1])
[    0.424453] ACPI: LAPIC_NMI (acpi_id[0x19] high edge lint[0x1])
[    0.424454] ACPI: LAPIC_NMI (acpi_id[0x1b] high edge lint[0x1])
[    0.424454] ACPI: LAPIC_NMI (acpi_id[0x1d] high edge lint[0x1])
[    0.424455] ACPI: LAPIC_NMI (acpi_id[0x1f] high edge lint[0x1])
[    0.424466] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.424469] IOAPIC[1]: apic_id 2, version 32, address 0xfec01000, GSI 24-47
[    0.424474] IOAPIC[2]: apic_id 3, version 32, address 0xfec40000, GSI 48-71
[    0.424476] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.424478] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.424479] ACPI: IRQ0 used by override.
[    0.424480] ACPI: IRQ9 used by override.
[    0.424482] Using ACPI (MADT) for SMP configuration information
[    0.424483] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.424490] TSC deadline timer available
[    0.424491] smpboot: Allowing 32 CPUs, 0 hotplug CPUs
[    0.424507] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.424509] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
[    0.424510] PM: hibernation: Registered nosave memory: [mem 0x7b05f000-0x7b092fff]
[    0.424510] PM: hibernation: Registered nosave memory: [mem 0x7b093000-0x7b19efff]
[    0.424511] PM: hibernation: Registered nosave memory: [mem 0x7b19f000-0x7b77dfff]
[    0.424512] PM: hibernation: Registered nosave memory: [mem 0x7b77e000-0x7b8a0fff]
[    0.424513] PM: hibernation: Registered nosave memory: [mem 0x7b8a1000-0x7b8e6fff]
[    0.424514] PM: hibernation: Registered nosave memory: [mem 0x7b8e8000-0x7b96dfff]
[    0.424515] PM: hibernation: Registered nosave memory: [mem 0x7c000000-0xcfffffff]
[    0.424516] PM: hibernation: Registered nosave memory: [mem 0xd0000000-0xdfffffff]
[    0.424517] PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xfed1bfff]
[    0.424517] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.424518] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
[    0.424518] PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.424520] [mem 0x7c000000-0xcfffffff] available for PCI devices
[    0.424522] Booting paravirtualized kernel on bare hardware
[    0.424526] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[    0.427701] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:32 nr_node_ids:1
[    0.429487] percpu: Embedded 44 pages/cpu s141784 r8192 d30248 u262144
[    0.429493] pcpu-alloc: s141784 r8192 d30248 u262144 alloc=1*2097152
[    0.429494] pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
[    0.429501] pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 
[    0.429528] Built 1 zonelists, mobility grouping on.  Total pages: 33011614
[    0.429529] Policy zone: Normal
[    0.429531] Kernel command line: BOOT_IMAGE=/boot/vmlinuz root=live:LABEL=CLD-20211015 init=/linuxrc rd.live.squashimg=livecd.squashfs nodevfs quiet noresume splash calculate=lang:ru_RU,keymap:ru_RU,,timezone:Europe/Moscow,,video:modesetting,composite:on
[    0.429590] printk: log_buf_len individual max cpu contribution: 4096 bytes
[    0.429590] printk: log_buf_len total cpu_extra contributions: 126976 bytes
[    0.429591] printk: log_buf_len min size: 32768 bytes
[    0.429886] printk: log_buf_len: 262144 bytes
[    0.429886] printk: early log buf free: 20728(63%)
[    0.442400] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
[    0.448625] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[    0.448866] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.803174] Memory: 131760784K/134142532K available (10243K kernel code, 783K rwdata, 2320K rodata, 1044K init, 952K bss, 2381492K reserved, 0K cma-reserved)
[    0.803313] random: get_random_u64 called from cache_random_seq_create+0x84/0x170 with crng_init=0
[    0.803436] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=1
[    0.803460] Kernel/User page tables isolation: enabled
[    0.803721] rcu: Preemptible hierarchical RCU implementation.
[    0.803723] rcu: 	RCU restricting CPUs from NR_CPUS=64 to nr_cpu_ids=32.
[    0.803725] 	Trampoline variant of Tasks RCU enabled.
[    0.803725] 	Tracing variant of Tasks RCU enabled.
[    0.803727] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[    0.803728] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
[    0.803767] NR_IRQS: 4352, nr_irqs: 1496, preallocated irqs: 16
[    0.804034] random: crng done (trusting CPU's manufacturer)
[    0.804094] Console: colour dummy device 80x25
[    0.804108] printk: console [tty0] enabled
[    0.804148] ACPI: Core revision 20200925
[    0.804776] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.804810] APIC: Switch to symmetric I/O mode setup
[    0.804813] DMAR: Host address width 46
[    0.804815] DMAR: DRHD base: 0x000000fbffe000 flags: 0x0
[    0.804825] DMAR: dmar0: reg_base_addr fbffe000 ver 1:0 cap d2078c106f0466 ecap f020df
[    0.804827] DMAR: DRHD base: 0x000000c7ffc000 flags: 0x1
[    0.804830] DMAR: dmar1: reg_base_addr c7ffc000 ver 1:0 cap d2078c106f0466 ecap f020df
[    0.804832] DMAR: RMRR base: 0x0000007b7e0000 end: 0x0000007b7eefff
[    0.804833] DMAR: ATSR flags: 0x0
[    0.804835] DMAR: RHSA base: 0x000000fbffe000 proximity domain: 0x0
[    0.804836] DMAR: RHSA base: 0x000000c7ffc000 proximity domain: 0x0
[    0.804838] DMAR-IR: IOAPIC id 3 under DRHD base  0xfbffe000 IOMMU 0
[    0.804839] DMAR-IR: IOAPIC id 0 under DRHD base  0xc7ffc000 IOMMU 1
[    0.804840] DMAR-IR: IOAPIC id 2 under DRHD base  0xc7ffc000 IOMMU 1
[    0.804840] DMAR-IR: HPET id 0 under DRHD base 0xc7ffc000
[    0.804841] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[    0.805447] DMAR-IR: Enabled IRQ remapping in x2apic mode
[    0.805448] x2apic enabled
[    0.805455] Switched APIC routing to cluster x2apic.
[    0.806096] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.810796] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2f91aac8bae, max_idle_ns: 440795309201 ns
[    0.810799] Calibrating delay loop (skipped), value calculated using timer frequency.. 6600.20 BogoMIPS (lpj=3300100)
[    0.810802] pid_max: default: 32768 minimum: 301
[    0.811806] ---[ User Space ]---
[    0.811807] 0x0000000000000000-0x0000000000001000           4K     RW                     NX pte
[    0.811819] 0x0000000000001000-0x0000000000200000        2044K                               pte
[    0.811831] 0x0000000000200000-0x0000000078e00000        1932M                               pmd
[    0.811836] 0x0000000078e00000-0x0000000078f15000        1108K                               pte
[    0.811839] 0x0000000078f15000-0x0000000078f50000         236K                               pte
[    0.811841] 0x0000000078f50000-0x0000000078f65000          84K                               pte
[    0.811847] 0x0000000078f65000-0x00000000790fd000        1632K                               pte
[    0.811849] 0x00000000790fd000-0x0000000079114000          92K                               pte
[    0.811857] 0x0000000079114000-0x0000000079340000        2224K                               pte
[    0.811858] 0x0000000079340000-0x000000007934e000          56K                               pte
[    0.811860] 0x000000007934e000-0x000000007936a000         112K                               pte
[    0.811863] 0x000000007936a000-0x0000000079400000         600K                               pte
[    0.811865] 0x0000000079400000-0x0000000079800000           4M                               pmd
[    0.811868] 0x0000000079800000-0x000000007989a000         616K                               pte
[    0.811872] 0x000000007989a000-0x0000000079968000         824K                               pte
[    0.811873] 0x0000000079968000-0x000000007996e000          24K                               pte
[    0.811886] 0x000000007996e000-0x000000007aa5f000       17348K                               pte
[    0.811892] 0x000000007aa5f000-0x000000007ac00000        1668K                               pte
[    0.811896] 0x000000007ac00000-0x000000007ae00000           2M                               pmd
[    0.811900] 0x000000007ae00000-0x000000007af01000        1028K                               pte
[    0.811908] 0x000000007af01000-0x000000007b05f000        1400K                               pte
[    0.811915] 0x000000007b05f000-0x000000007b200000        1668K                               pte
[    0.811916] 0x000000007b200000-0x000000007b600000           4M                               pmd
[    0.811922] 0x000000007b600000-0x000000007b77e000        1528K                               pte
[    0.811927] 0x000000007b77e000-0x000000007b8a1000        1164K     RW                     NX pte
[    0.811932] 0x000000007b8a1000-0x000000007b8e7000         280K     RW                     x  pte
[    0.811935] 0x000000007b8e7000-0x000000007b8e8000           4K                               pte
[    0.811938] 0x000000007b8e8000-0x000000007b96e000         536K                               pte
[    0.811943] 0x000000007b96e000-0x000000007bac0000        1352K                               pte
[    0.811953] 0x000000007bac0000-0x000000007bd66000        2712K                               pte
[    0.811954] 0x000000007bd66000-0x000000007bd7e000          96K                               pte
[    0.811956] 0x000000007bd7e000-0x000000007bd90000          72K                               pte
[    0.811958] 0x000000007bd90000-0x000000007bdb5000         148K                               pte
[    0.811966] 0x000000007bdb5000-0x000000007bff3000        2296K                               pte
[    0.811968] 0x000000007bff3000-0x000000007c000000          52K                               pte
[    0.811969] 0x000000007c000000-0x0000000080000000          64M                               pmd
[    0.811971] 0x0000000080000000-0x00000000c0000000           1G                               pud
[    0.811974] 0x00000000c0000000-0x00000000d0000000         256M                               pmd
[    0.811977] 0x00000000d0000000-0x00000000e0000000         256M     RW     PCD PSE         NX pmd
[    0.811983] 0x00000000e0000000-0x00000000fec00000         492M                               pmd
[    0.811987] 0x00000000fec00000-0x00000000fed1c000        1136K                               pte
[    0.811989] 0x00000000fed1c000-0x00000000fed20000          16K     RW     PCD             NX pte
[    0.811995] 0x00000000fed20000-0x00000000fee00000         896K                               pte
[    0.811996] 0x00000000fee00000-0x00000000ff000000           2M                               pmd
[    0.811998] 0x00000000ff000000-0x0000000100000000          16M     RW     PCD PSE         NX pmd
[    0.812003] 0x0000000100000000-0x00000001000c4000         784K                               pte
[    0.812005] 0x00000001000c4000-0x00000001000c6000           8K     RW                     NX pte
[    0.812011] 0x00000001000c6000-0x0000000100200000        1256K                               pte
[    0.812018] 0x0000000100200000-0x0000000140000000        1022M                               pmd
[    0.812025] 0x0000000140000000-0x0000008000000000         507G                               pud
[    0.812030] 0x0000008000000000-0xffff880000000000   17179745792G                               pgd
[    0.812032] ---[ Kernel Space ]---
[    0.812033] 0xffff880000000000-0xffff888000000000         512G                               pgd
[    0.812034] ---[ LDT remap ]---
[    0.812035] 0xffff888000000000-0xffff888000001000           4K     RW                     NX pte
[    0.812038] ---[ Low Kernel Mapping ]---
[    0.812038] 0xffff888000001000-0xffff888000002000           4K     RW                     NX pte
[    0.812041] ---[ vmalloc() Area ]---
[    0.812042] 0xffff888000002000-0xffff888000003000           4K     RW                     NX pte
[    0.812044] ---[ Vmemmap ]---
[    0.812051] 0xffff888000003000-0xffff888000200000        2036K     RW                     NX pte
[    0.812055] 0xffff888000200000-0xffff888003400000          50M     RW         PSE         NX pmd
[    0.812061] 0xffff888003400000-0xffff888003513000        1100K     RW                     NX pte
[    0.812064] 0xffff888003513000-0xffff888003514000           4K     ro                     NX pte
[    0.812070] 0xffff888003514000-0xffff888003600000         944K     RW                     NX pte
[    0.812088] 0xffff888003600000-0xffff88807b000000        1914M     RW         PSE         NX pmd
[    0.812093] 0xffff88807b000000-0xffff88807b05f000         380K     RW                     NX pte
[    0.812101] 0xffff88807b05f000-0xffff88807b200000        1668K                               pte
[    0.812103] 0xffff88807b200000-0xffff88807b800000           6M                               pmd
[    0.812108] 0xffff88807b800000-0xffff88807b8e7000         924K                               pte
[    0.812110] 0xffff88807b8e7000-0xffff88807b8e8000           4K     RW                     NX pte
[    0.812114] 0xffff88807b8e8000-0xffff88807b96e000         536K                               pte
[    0.812118] 0xffff88807b96e000-0xffff88807ba00000         584K     RW                     NX pte
[    0.812121] 0xffff88807ba00000-0xffff88807c000000           6M     RW         PSE         NX pmd
[    0.812124] 0xffff88807c000000-0xffff888080000000          64M                               pmd
[    0.812126] 0xffff888080000000-0xffff888100000000           2G                               pud
[    0.812129] 0xffff888100000000-0xffff88a080000000         126G     RW         PSE     GLB NX pud
[    0.812136] 0xffff88a080000000-0xffff890000000000         382G                               pud
[    0.812140] 0xffff890000000000-0xffffc90000000000          64T                               pgd
[    0.812141] 0xffffc90000000000-0xffffc90000004000          16K     RW                     NX pte
[    0.812144] 0xffffc90000004000-0xffffc90000005000           4K                               pte
[    0.812146] 0xffffc90000005000-0xffffc90000006000           4K     RW                     NX pte
[    0.812149] 0xffffc90000006000-0xffffc90000007000           4K                               pte
[    0.812150] 0xffffc90000007000-0xffffc90000008000           4K     RW                     NX pte
[    0.812153] 0xffffc90000008000-0xffffc90000009000           4K                               pte
[    0.812155] 0xffffc90000009000-0xffffc9000000a000           4K     RW     PCD             NX pte
[    0.812158] 0xffffc9000000a000-0xffffc9000000b000           4K                               pte
[    0.812159] 0xffffc9000000b000-0xffffc9000000c000           4K     RW     PCD             NX pte
[    0.812162] 0xffffc9000000c000-0xffffc9000000d000           4K                               pte
[    0.812164] 0xffffc9000000d000-0xffffc9000000e000           4K     RW     PCD             NX pte
[    0.812167] 0xffffc9000000e000-0xffffc90000010000           8K                               pte
[    0.812168] 0xffffc90000010000-0xffffc9000001a000          40K     RW                     NX pte
[    0.812174] 0xffffc9000001a000-0xffffc90000100000         920K                               pte
[    0.812178] 0xffffc90000100000-0xffffc900001ce000         824K     RW                     NX pte
[    0.812182] 0xffffc900001ce000-0xffffc90000200000         200K                               pte
[    0.812188] 0xffffc90000200000-0xffffc90040000000        1022M                               pmd
[    0.812520] 0xffffc90040000000-0xffffe90000000000       32767G                               pud
[    0.812521] 0xffffe90000000000-0xffffea0000000000           1T                               pgd
[    0.812523] 0xffffea0000000000-0xffffea0002000000          32M     RW         PSE         NX pmd
[    0.812526] 0xffffea0002000000-0xffffea0004000000          32M                               pmd
[    0.812543] 0xffffea0004000000-0xffffea0082000000        2016M     RW         PSE         NX pmd
[    0.812551] 0xffffea0082000000-0xffffea00c0000000         992M                               pmd
[    0.812558] 0xffffea00c0000000-0xffffea8000000000         509G                               pud
[    0.812560] 0xffffea8000000000-0xfffffe0000000000       19968G                               pgd
[    0.812561] ---[ CPU entry Area ]---
[    0.812562] 0xfffffe0000000000-0xfffffe0000002000           8K     ro                 GLB NX pte
[    0.812565] 0xfffffe0000002000-0xfffffe0000003000           4K     RW                 GLB NX pte
[    0.812568] 0xfffffe0000003000-0xfffffe0000008000          20K     ro                 GLB NX pte
[    0.812571] 0xfffffe0000008000-0xfffffe0000009000           4K                               pte
[    0.812572] 0xfffffe0000009000-0xfffffe000000a000           4K     RW                 GLB NX pte
[    0.812576] 0xfffffe000000a000-0xfffffe000000b000           4K                               pte
[    0.812577] 0xfffffe000000b000-0xfffffe000000c000           4K     RW                 GLB NX pte
[    0.812580] 0xfffffe000000c000-0xfffffe000000d000           4K                               pte
[    0.812581] 0xfffffe000000d000-0xfffffe000000e000           4K     RW                 GLB NX pte
[    0.812584] 0xfffffe000000e000-0xfffffe000000f000           4K                               pte
[    0.812586] 0xfffffe000000f000-0xfffffe0000010000           4K     RW                 GLB NX pte
[    0.812589] 0xfffffe0000010000-0xfffffe0000015000          20K                               pte
[    0.812590] 0xfffffe0000015000-0xfffffe0000016000           4K     RW                 GLB NX pte
[    0.812594] 0xfffffe0000016000-0xfffffe0000036000         128K                               pte
[    0.812595] 0xfffffe0000036000-0xfffffe0000037000           4K     ro                 GLB NX pte
[    0.812598] 0xfffffe0000037000-0xfffffe0000038000           4K     RW                 GLB NX pte
[    0.812601] 0xfffffe0000038000-0xfffffe000003d000          20K     ro                 GLB NX pte
[    0.812604] 0xfffffe000003d000-0xfffffe000003e000           4K                               pte
[    0.812606] 0xfffffe000003e000-0xfffffe000003f000           4K     RW                 GLB NX pte
[    0.812609] 0xfffffe000003f000-0xfffffe0000040000           4K                               pte
[    0.812610] 0xfffffe0000040000-0xfffffe0000041000           4K     RW                 GLB NX pte
[    0.812613] 0xfffffe0000041000-0xfffffe0000042000           4K                               pte
[    0.812614] 0xfffffe0000042000-0xfffffe0000043000           4K     RW                 GLB NX pte
[    0.812617] 0xfffffe0000043000-0xfffffe0000044000           4K                               pte
[    0.812619] 0xfffffe0000044000-0xfffffe0000045000           4K     RW                 GLB NX pte
[    0.812622] 0xfffffe0000045000-0xfffffe000004a000          20K                               pte
[    0.812623] 0xfffffe000004a000-0xfffffe000004b000           4K     RW                 GLB NX pte
[    0.812627] 0xfffffe000004b000-0xfffffe000006b000         128K                               pte
[    0.812628] 0xfffffe000006b000-0xfffffe000006c000           4K     ro                 GLB NX pte
[    0.812631] 0xfffffe000006c000-0xfffffe000006d000           4K     RW                 GLB NX pte
[    0.812634] 0xfffffe000006d000-0xfffffe0000072000          20K     ro                 GLB NX pte
[    0.812637] 0xfffffe0000072000-0xfffffe0000073000           4K                               pte
[    0.812639] 0xfffffe0000073000-0xfffffe0000074000           4K     RW                 GLB NX pte
[    0.812642] 0xfffffe0000074000-0xfffffe0000075000           4K                               pte
[    0.812643] 0xfffffe0000075000-0xfffffe0000076000           4K     RW                 GLB NX pte
[    0.812646] 0xfffffe0000076000-0xfffffe0000077000           4K                               pte
[    0.812648] 0xfffffe0000077000-0xfffffe0000078000           4K     RW                 GLB NX pte
[    0.812651] 0xfffffe0000078000-0xfffffe0000079000           4K                               pte
[    0.812652] 0xfffffe0000079000-0xfffffe000007a000           4K     RW                 GLB NX pte
[    0.812655] 0xfffffe000007a000-0xfffffe000007f000          20K                               pte
[    0.812657] 0xfffffe000007f000-0xfffffe0000080000           4K     RW                 GLB NX pte
[    0.812660] 0xfffffe0000080000-0xfffffe00000a0000         128K                               pte
[    0.812661] 0xfffffe00000a0000-0xfffffe00000a1000           4K     ro                 GLB NX pte
[    0.812664] 0xfffffe00000a1000-0xfffffe00000a2000           4K     RW                 GLB NX pte
[    0.812667] 0xfffffe00000a2000-0xfffffe00000a7000          20K     ro                 GLB NX pte
[    0.812670] 0xfffffe00000a7000-0xfffffe00000a8000           4K                               pte
[    0.812672] 0xfffffe00000a8000-0xfffffe00000a9000           4K     RW                 GLB NX pte
[    0.812675] 0xfffffe00000a9000-0xfffffe00000aa000           4K                               pte
[    0.812676] 0xfffffe00000aa000-0xfffffe00000ab000           4K     RW                 GLB NX pte
[    0.812679] 0xfffffe00000ab000-0xfffffe00000ac000           4K                               pte
[    0.812681] 0xfffffe00000ac000-0xfffffe00000ad000           4K     RW                 GLB NX pte
[    0.812684] 0xfffffe00000ad000-0xfffffe00000ae000           4K                               pte
[    0.812685] 0xfffffe00000ae000-0xfffffe00000af000           4K     RW                 GLB NX pte
[    0.812688] 0xfffffe00000af000-0xfffffe00000b4000          20K                               pte
[    0.812690] 0xfffffe00000b4000-0xfffffe00000b5000           4K     RW                 GLB NX pte
[    0.812693] 0xfffffe00000b5000-0xfffffe00000d5000         128K                               pte
[    0.812695] 0xfffffe00000d5000-0xfffffe00000d6000           4K     ro                 GLB NX pte
[    0.812698] 0xfffffe00000d6000-0xfffffe00000d7000           4K     RW                 GLB NX pte
[    0.812701] 0xfffffe00000d7000-0xfffffe00000dc000          20K     ro                 GLB NX pte
[    0.812704] 0xfffffe00000dc000-0xfffffe00000dd000           4K                               pte
[    0.812705] 0xfffffe00000dd000-0xfffffe00000de000           4K     RW                 GLB NX pte
[    0.812708] 0xfffffe00000de000-0xfffffe00000df000           4K                               pte
[    0.812710] 0xfffffe00000df000-0xfffffe00000e0000           4K     RW                 GLB NX pte
[    0.812713] 0xfffffe00000e0000-0xfffffe00000e1000           4K                               pte
[    0.812714] 0xfffffe00000e1000-0xfffffe00000e2000           4K     RW                 GLB NX pte
[    0.812717] 0xfffffe00000e2000-0xfffffe00000e3000           4K                               pte
[    0.812718] 0xfffffe00000e3000-0xfffffe00000e4000           4K     RW                 GLB NX pte
[    0.812721] 0xfffffe00000e4000-0xfffffe00000e9000          20K                               pte
[    0.812723] 0xfffffe00000e9000-0xfffffe00000ea000           4K     RW                 GLB NX pte
[    0.812726] 0xfffffe00000ea000-0xfffffe000010a000         128K                               pte
[    0.812800] 0xfffffe000010a000-0xfffffe000010b000           4K     ro                 GLB NX pte
[    0.812804] 0xfffffe000010b000-0xfffffe000010c000           4K     RW                 GLB NX pte
[    0.812807] 0xfffffe000010c000-0xfffffe0000111000          20K     ro                 GLB NX pte
[    0.812810] 0xfffffe0000111000-0xfffffe0000112000           4K                               pte
[    0.812811] 0xfffffe0000112000-0xfffffe0000113000           4K     RW                 GLB NX pte
[    0.812814] 0xfffffe0000113000-0xfffffe0000114000           4K                               pte
[    0.812816] 0xfffffe0000114000-0xfffffe0000115000           4K     RW                 GLB NX pte
[    0.812819] 0xfffffe0000115000-0xfffffe0000116000           4K                               pte
[    0.812820] 0xfffffe0000116000-0xfffffe0000117000           4K     RW                 GLB NX pte
[    0.812823] 0xfffffe0000117000-0xfffffe0000118000           4K                               pte
[    0.812824] 0xfffffe0000118000-0xfffffe0000119000           4K     RW                 GLB NX pte
[    0.812827] 0xfffffe0000119000-0xfffffe000011e000          20K                               pte
[    0.812829] 0xfffffe000011e000-0xfffffe000011f000           4K     RW                 GLB NX pte
[    0.812832] 0xfffffe000011f000-0xfffffe000013f000         128K                               pte
[    0.812834] 0xfffffe000013f000-0xfffffe0000140000           4K     ro                 GLB NX pte
[    0.812837] 0xfffffe0000140000-0xfffffe0000141000           4K     RW                 GLB NX pte
[    0.812840] 0xfffffe0000141000-0xfffffe0000146000          20K     ro                 GLB NX pte
[    0.812845] 0xfffffe0000146000-0xfffffe0000147000           4K                               pte
[    0.812847] 0xfffffe0000147000-0xfffffe0000148000           4K     RW                 GLB NX pte
[    0.812850] 0xfffffe0000148000-0xfffffe0000149000           4K                               pte
[    0.812854] 0xfffffe0000149000-0xfffffe000014a000           4K     RW                 GLB NX pte
[    0.812858] 0xfffffe000014a000-0xfffffe000014b000           4K                               pte
[    0.812859] 0xfffffe000014b000-0xfffffe000014c000           4K     RW                 GLB NX pte
[    0.812863] 0xfffffe000014c000-0xfffffe000014d000           4K                               pte
[    0.812864] 0xfffffe000014d000-0xfffffe000014e000           4K     RW                 GLB NX pte
[    0.812867] 0xfffffe000014e000-0xfffffe0000153000          20K                               pte
[    0.812869] 0xfffffe0000153000-0xfffffe0000154000           4K     RW                 GLB NX pte
[    0.812873] 0xfffffe0000154000-0xfffffe0000174000         128K                               pte
[    0.812875] 0xfffffe0000174000-0xfffffe0000175000           4K     ro                 GLB NX pte
[    0.812878] 0xfffffe0000175000-0xfffffe0000176000           4K     RW                 GLB NX pte
[    0.812881] 0xfffffe0000176000-0xfffffe000017b000          20K     ro                 GLB NX pte
[    0.812884] 0xfffffe000017b000-0xfffffe000017c000           4K                               pte
[    0.812886] 0xfffffe000017c000-0xfffffe000017d000           4K     RW                 GLB NX pte
[    0.812889] 0xfffffe000017d000-0xfffffe000017e000           4K                               pte
[    0.812890] 0xfffffe000017e000-0xfffffe000017f000           4K     RW                 GLB NX pte
[    0.812893] 0xfffffe000017f000-0xfffffe0000180000           4K                               pte
[    0.812895] 0xfffffe0000180000-0xfffffe0000181000           4K     RW                 GLB NX pte
[    0.812898] 0xfffffe0000181000-0xfffffe0000182000           4K                               pte
[    0.812899] 0xfffffe0000182000-0xfffffe0000183000           4K     RW                 GLB NX pte
[    0.812902] 0xfffffe0000183000-0xfffffe0000188000          20K                               pte
[    0.812903] 0xfffffe0000188000-0xfffffe0000189000           4K     RW                 GLB NX pte
[    0.812907] 0xfffffe0000189000-0xfffffe00001a9000         128K                               pte
[    0.812908] 0xfffffe00001a9000-0xfffffe00001aa000           4K     ro                 GLB NX pte
[    0.812911] 0xfffffe00001aa000-0xfffffe00001ab000           4K     RW                 GLB NX pte
[    0.812914] 0xfffffe00001ab000-0xfffffe00001b0000          20K     ro                 GLB NX pte
[    0.812917] 0xfffffe00001b0000-0xfffffe00001b1000           4K                               pte
[    0.812919] 0xfffffe00001b1000-0xfffffe00001b2000           4K     RW                 GLB NX pte
[    0.812922] 0xfffffe00001b2000-0xfffffe00001b3000           4K                               pte
[    0.812923] 0xfffffe00001b3000-0xfffffe00001b4000           4K     RW                 GLB NX pte
[    0.812926] 0xfffffe00001b4000-0xfffffe00001b5000           4K                               pte
[    0.812928] 0xfffffe00001b5000-0xfffffe00001b6000           4K     RW                 GLB NX pte
[    0.812931] 0xfffffe00001b6000-0xfffffe00001b7000           4K                               pte
[    0.812932] 0xfffffe00001b7000-0xfffffe00001b8000           4K     RW                 GLB NX pte
[    0.812935] 0xfffffe00001b8000-0xfffffe00001bd000          20K                               pte
[    0.812937] 0xfffffe00001bd000-0xfffffe00001be000           4K     RW                 GLB NX pte
[    0.812940] 0xfffffe00001be000-0xfffffe00001de000         128K                               pte
[    0.812942] 0xfffffe00001de000-0xfffffe00001df000           4K     ro                 GLB NX pte
[    0.812945] 0xfffffe00001df000-0xfffffe00001e0000           4K     RW                 GLB NX pte
[    0.812948] 0xfffffe00001e0000-0xfffffe00001e5000          20K     ro                 GLB NX pte
[    0.812951] 0xfffffe00001e5000-0xfffffe00001e6000           4K                               pte
[    0.812952] 0xfffffe00001e6000-0xfffffe00001e7000           4K     RW                 GLB NX pte
[    0.812955] 0xfffffe00001e7000-0xfffffe00001e8000           4K                               pte
[    0.812957] 0xfffffe00001e8000-0xfffffe00001e9000           4K     RW                 GLB NX pte
[    0.812960] 0xfffffe00001e9000-0xfffffe00001ea000           4K                               pte
[    0.812961] 0xfffffe00001ea000-0xfffffe00001eb000           4K     RW                 GLB NX pte
[    0.812964] 0xfffffe00001eb000-0xfffffe00001ec000           4K                               pte
[    0.812966] 0xfffffe00001ec000-0xfffffe00001ed000           4K     RW                 GLB NX pte
[    0.812969] 0xfffffe00001ed000-0xfffffe00001f2000          20K                               pte
[    0.812971] 0xfffffe00001f2000-0xfffffe00001f3000           4K     RW                 GLB NX pte
[    0.812975] 0xfffffe00001f3000-0xfffffe0000213000         128K                               pte
[    0.812977] 0xfffffe0000213000-0xfffffe0000214000           4K     ro                 GLB NX pte
[    0.812980] 0xfffffe0000214000-0xfffffe0000215000           4K     RW                 GLB NX pte
[    0.812984] 0xfffffe0000215000-0xfffffe000021a000          20K     ro                 GLB NX pte
[    0.812987] 0xfffffe000021a000-0xfffffe000021b000           4K                               pte
[    0.812988] 0xfffffe000021b000-0xfffffe000021c000           4K     RW                 GLB NX pte
[    0.812992] 0xfffffe000021c000-0xfffffe000021d000           4K                               pte
[    0.812993] 0xfffffe000021d000-0xfffffe000021e000           4K     RW                 GLB NX pte
[    0.812996] 0xfffffe000021e000-0xfffffe000021f000           4K                               pte
[    0.812998] 0xfffffe000021f000-0xfffffe0000220000           4K     RW                 GLB NX pte
[    0.813001] 0xfffffe0000220000-0xfffffe0000221000           4K                               pte
[    0.813002] 0xfffffe0000221000-0xfffffe0000222000           4K     RW                 GLB NX pte
[    0.813006] 0xfffffe0000222000-0xfffffe0000227000          20K                               pte
[    0.813007] 0xfffffe0000227000-0xfffffe0000228000           4K     RW                 GLB NX pte
[    0.813011] 0xfffffe0000228000-0xfffffe0000248000         128K                               pte
[    0.813012] 0xfffffe0000248000-0xfffffe0000249000           4K     ro                 GLB NX pte
[    0.813015] 0xfffffe0000249000-0xfffffe000024a000           4K     RW                 GLB NX pte
[    0.813018] 0xfffffe000024a000-0xfffffe000024f000          20K     ro                 GLB NX pte
[    0.813021] 0xfffffe000024f000-0xfffffe0000250000           4K                               pte
[    0.813023] 0xfffffe0000250000-0xfffffe0000251000           4K     RW                 GLB NX pte
[    0.813026] 0xfffffe0000251000-0xfffffe0000252000           4K                               pte
[    0.813027] 0xfffffe0000252000-0xfffffe0000253000           4K     RW                 GLB NX pte
[    0.813030] 0xfffffe0000253000-0xfffffe0000254000           4K                               pte
[    0.813031] 0xfffffe0000254000-0xfffffe0000255000           4K     RW                 GLB NX pte
[    0.813034] 0xfffffe0000255000-0xfffffe0000256000           4K                               pte
[    0.813036] 0xfffffe0000256000-0xfffffe0000257000           4K     RW                 GLB NX pte
[    0.813039] 0xfffffe0000257000-0xfffffe000025c000          20K                               pte
[    0.813040] 0xfffffe000025c000-0xfffffe000025d000           4K     RW                 GLB NX pte
[    0.813044] 0xfffffe000025d000-0xfffffe000027d000         128K                               pte
[    0.813045] 0xfffffe000027d000-0xfffffe000027e000           4K     ro                 GLB NX pte
[    0.813048] 0xfffffe000027e000-0xfffffe000027f000           4K     RW                 GLB NX pte
[    0.813051] 0xfffffe000027f000-0xfffffe0000284000          20K     ro                 GLB NX pte
[    0.813054] 0xfffffe0000284000-0xfffffe0000285000           4K                               pte
[    0.813056] 0xfffffe0000285000-0xfffffe0000286000           4K     RW                 GLB NX pte
[    0.813059] 0xfffffe0000286000-0xfffffe0000287000           4K                               pte
[    0.813060] 0xfffffe0000287000-0xfffffe0000288000           4K     RW                 GLB NX pte
[    0.813063] 0xfffffe0000288000-0xfffffe0000289000           4K                               pte
[    0.813065] 0xfffffe0000289000-0xfffffe000028a000           4K     RW                 GLB NX pte
[    0.813068] 0xfffffe000028a000-0xfffffe000028b000           4K                               pte
[    0.813069] 0xfffffe000028b000-0xfffffe000028c000           4K     RW                 GLB NX pte
[    0.813073] 0xfffffe000028c000-0xfffffe0000291000          20K                               pte
[    0.813074] 0xfffffe0000291000-0xfffffe0000292000           4K     RW                 GLB NX pte
[    0.813078] 0xfffffe0000292000-0xfffffe00002b2000         128K                               pte
[    0.813080] 0xfffffe00002b2000-0xfffffe00002b3000           4K     ro                 GLB NX pte
[    0.813083] 0xfffffe00002b3000-0xfffffe00002b4000           4K     RW                 GLB NX pte
[    0.813086] 0xfffffe00002b4000-0xfffffe00002b9000          20K     ro                 GLB NX pte
[    0.813089] 0xfffffe00002b9000-0xfffffe00002ba000           4K                               pte
[    0.813090] 0xfffffe00002ba000-0xfffffe00002bb000           4K     RW                 GLB NX pte
[    0.813093] 0xfffffe00002bb000-0xfffffe00002bc000           4K                               pte
[    0.813095] 0xfffffe00002bc000-0xfffffe00002bd000           4K     RW                 GLB NX pte
[    0.813098] 0xfffffe00002bd000-0xfffffe00002be000           4K                               pte
[    0.813099] 0xfffffe00002be000-0xfffffe00002bf000           4K     RW                 GLB NX pte
[    0.813102] 0xfffffe00002bf000-0xfffffe00002c0000           4K                               pte
[    0.813104] 0xfffffe00002c0000-0xfffffe00002c1000           4K     RW                 GLB NX pte
[    0.813107] 0xfffffe00002c1000-0xfffffe00002c6000          20K                               pte
[    0.813109] 0xfffffe00002c6000-0xfffffe00002c7000           4K     RW                 GLB NX pte
[    0.813112] 0xfffffe00002c7000-0xfffffe00002e7000         128K                               pte
[    0.813114] 0xfffffe00002e7000-0xfffffe00002e8000           4K     ro                 GLB NX pte
[    0.813117] 0xfffffe00002e8000-0xfffffe00002e9000           4K     RW                 GLB NX pte
[    0.813120] 0xfffffe00002e9000-0xfffffe00002ee000          20K     ro                 GLB NX pte
[    0.813123] 0xfffffe00002ee000-0xfffffe00002ef000           4K                               pte
[    0.813124] 0xfffffe00002ef000-0xfffffe00002f0000           4K     RW                 GLB NX pte
[    0.813127] 0xfffffe00002f0000-0xfffffe00002f1000           4K                               pte
[    0.813129] 0xfffffe00002f1000-0xfffffe00002f2000           4K     RW                 GLB NX pte
[    0.813132] 0xfffffe00002f2000-0xfffffe00002f3000           4K                               pte
[    0.813133] 0xfffffe00002f3000-0xfffffe00002f4000           4K     RW                 GLB NX pte
[    0.813136] 0xfffffe00002f4000-0xfffffe00002f5000           4K                               pte
[    0.813138] 0xfffffe00002f5000-0xfffffe00002f6000           4K     RW                 GLB NX pte
[    0.813141] 0xfffffe00002f6000-0xfffffe00002fb000          20K                               pte
[    0.813142] 0xfffffe00002fb000-0xfffffe00002fc000           4K     RW                 GLB NX pte
[    0.813146] 0xfffffe00002fc000-0xfffffe000031c000         128K                               pte
[    0.813147] 0xfffffe000031c000-0xfffffe000031d000           4K     ro                 GLB NX pte
[    0.813150] 0xfffffe000031d000-0xfffffe000031e000           4K     RW                 GLB NX pte
[    0.813153] 0xfffffe000031e000-0xfffffe0000323000          20K     ro                 GLB NX pte
[    0.813156] 0xfffffe0000323000-0xfffffe0000324000           4K                               pte
[    0.813158] 0xfffffe0000324000-0xfffffe0000325000           4K     RW                 GLB NX pte
[    0.813161] 0xfffffe0000325000-0xfffffe0000326000           4K                               pte
[    0.813162] 0xfffffe0000326000-0xfffffe0000327000           4K     RW                 GLB NX pte
[    0.813165] 0xfffffe0000327000-0xfffffe0000328000           4K                               pte
[    0.813166] 0xfffffe0000328000-0xfffffe0000329000           4K     RW                 GLB NX pte
[    0.813170] 0xfffffe0000329000-0xfffffe000032a000           4K                               pte
[    0.813171] 0xfffffe000032a000-0xfffffe000032b000           4K     RW                 GLB NX pte
[    0.813175] 0xfffffe000032b000-0xfffffe0000330000          20K                               pte
[    0.813176] 0xfffffe0000330000-0xfffffe0000331000           4K     RW                 GLB NX pte
[    0.813180] 0xfffffe0000331000-0xfffffe0000351000         128K                               pte
[    0.813181] 0xfffffe0000351000-0xfffffe0000352000           4K     ro                 GLB NX pte
[    0.813184] 0xfffffe0000352000-0xfffffe0000353000           4K     RW                 GLB NX pte
[    0.813188] 0xfffffe0000353000-0xfffffe0000358000          20K     ro                 GLB NX pte
[    0.813191] 0xfffffe0000358000-0xfffffe0000359000           4K                               pte
[    0.813192] 0xfffffe0000359000-0xfffffe000035a000           4K     RW                 GLB NX pte
[    0.813195] 0xfffffe000035a000-0xfffffe000035b000           4K                               pte
[    0.813196] 0xfffffe000035b000-0xfffffe000035c000           4K     RW                 GLB NX pte
[    0.813199] 0xfffffe000035c000-0xfffffe000035d000           4K                               pte
[    0.813201] 0xfffffe000035d000-0xfffffe000035e000           4K     RW                 GLB NX pte
[    0.813204] 0xfffffe000035e000-0xfffffe000035f000           4K                               pte
[    0.813205] 0xfffffe000035f000-0xfffffe0000360000           4K     RW                 GLB NX pte
[    0.813208] 0xfffffe0000360000-0xfffffe0000365000          20K                               pte
[    0.813210] 0xfffffe0000365000-0xfffffe0000366000           4K     RW                 GLB NX pte
[    0.813214] 0xfffffe0000366000-0xfffffe0000386000         128K                               pte
[    0.813215] 0xfffffe0000386000-0xfffffe0000387000           4K     ro                 GLB NX pte
[    0.813218] 0xfffffe0000387000-0xfffffe0000388000           4K     RW                 GLB NX pte
[    0.813222] 0xfffffe0000388000-0xfffffe000038d000          20K     ro                 GLB NX pte
[    0.813225] 0xfffffe000038d000-0xfffffe000038e000           4K                               pte
[    0.813226] 0xfffffe000038e000-0xfffffe000038f000           4K     RW                 GLB NX pte
[    0.813229] 0xfffffe000038f000-0xfffffe0000390000           4K                               pte
[    0.813231] 0xfffffe0000390000-0xfffffe0000391000           4K     RW                 GLB NX pte
[    0.813234] 0xfffffe0000391000-0xfffffe0000392000           4K                               pte
[    0.813235] 0xfffffe0000392000-0xfffffe0000393000           4K     RW                 GLB NX pte
[    0.813238] 0xfffffe0000393000-0xfffffe0000394000           4K                               pte
[    0.813240] 0xfffffe0000394000-0xfffffe0000395000           4K     RW                 GLB NX pte
[    0.813243] 0xfffffe0000395000-0xfffffe000039a000          20K                               pte
[    0.813244] 0xfffffe000039a000-0xfffffe000039b000           4K     RW                 GLB NX pte
[    0.813247] 0xfffffe000039b000-0xfffffe00003bb000         128K                               pte
[    0.813249] 0xfffffe00003bb000-0xfffffe00003bc000           4K     ro                 GLB NX pte
[    0.813252] 0xfffffe00003bc000-0xfffffe00003bd000           4K     RW                 GLB NX pte
[    0.813255] 0xfffffe00003bd000-0xfffffe00003c2000          20K     ro                 GLB NX pte
[    0.813258] 0xfffffe00003c2000-0xfffffe00003c3000           4K                               pte
[    0.813259] 0xfffffe00003c3000-0xfffffe00003c4000           4K     RW                 GLB NX pte
[    0.813262] 0xfffffe00003c4000-0xfffffe00003c5000           4K                               pte
[    0.813264] 0xfffffe00003c5000-0xfffffe00003c6000           4K     RW                 GLB NX pte
[    0.813267] 0xfffffe00003c6000-0xfffffe00003c7000           4K                               pte
[    0.813268] 0xfffffe00003c7000-0xfffffe00003c8000           4K     RW                 GLB NX pte
[    0.813271] 0xfffffe00003c8000-0xfffffe00003c9000           4K                               pte
[    0.813273] 0xfffffe00003c9000-0xfffffe00003ca000           4K     RW                 GLB NX pte
[    0.813276] 0xfffffe00003ca000-0xfffffe00003cf000          20K                               pte
[    0.813278] 0xfffffe00003cf000-0xfffffe00003d0000           4K     RW                 GLB NX pte
[    0.813281] 0xfffffe00003d0000-0xfffffe00003f0000         128K                               pte
[    0.813283] 0xfffffe00003f0000-0xfffffe00003f1000           4K     ro                 GLB NX pte
[    0.813286] 0xfffffe00003f1000-0xfffffe00003f2000           4K     RW                 GLB NX pte
[    0.813289] 0xfffffe00003f2000-0xfffffe00003f7000          20K     ro                 GLB NX pte
[    0.813292] 0xfffffe00003f7000-0xfffffe00003f8000           4K                               pte
[    0.813294] 0xfffffe00003f8000-0xfffffe00003f9000           4K     RW                 GLB NX pte
[    0.813297] 0xfffffe00003f9000-0xfffffe00003fa000           4K                               pte
[    0.813298] 0xfffffe00003fa000-0xfffffe00003fb000           4K     RW                 GLB NX pte
[    0.813301] 0xfffffe00003fb000-0xfffffe00003fc000           4K                               pte
[    0.813303] 0xfffffe00003fc000-0xfffffe00003fd000           4K     RW                 GLB NX pte
[    0.813306] 0xfffffe00003fd000-0xfffffe00003fe000           4K                               pte
[    0.813307] 0xfffffe00003fe000-0xfffffe00003ff000           4K     RW                 GLB NX pte
[    0.813310] 0xfffffe00003ff000-0xfffffe0000404000          20K                               pte
[    0.813312] 0xfffffe0000404000-0xfffffe0000405000           4K     RW                 GLB NX pte
[    0.813315] 0xfffffe0000405000-0xfffffe0000425000         128K                               pte
[    0.813316] 0xfffffe0000425000-0xfffffe0000426000           4K     ro                 GLB NX pte
[    0.813320] 0xfffffe0000426000-0xfffffe0000427000           4K     RW                 GLB NX pte
[    0.813323] 0xfffffe0000427000-0xfffffe000042c000          20K     ro                 GLB NX pte
[    0.813326] 0xfffffe000042c000-0xfffffe000042d000           4K                               pte
[    0.813328] 0xfffffe000042d000-0xfffffe000042e000           4K     RW                 GLB NX pte
[    0.813331] 0xfffffe000042e000-0xfffffe000042f000           4K                               pte
[    0.813332] 0xfffffe000042f000-0xfffffe0000430000           4K     RW                 GLB NX pte
[    0.813335] 0xfffffe0000430000-0xfffffe0000431000           4K                               pte
[    0.813337] 0xfffffe0000431000-0xfffffe0000432000           4K     RW                 GLB NX pte
[    0.813340] 0xfffffe0000432000-0xfffffe0000433000           4K                               pte
[    0.813341] 0xfffffe0000433000-0xfffffe0000434000           4K     RW                 GLB NX pte
[    0.813345] 0xfffffe0000434000-0xfffffe0000439000          20K                               pte
[    0.813346] 0xfffffe0000439000-0xfffffe000043a000           4K     RW                 GLB NX pte
[    0.813350] 0xfffffe000043a000-0xfffffe000045a000         128K                               pte
[    0.813351] 0xfffffe000045a000-0xfffffe000045b000           4K     ro                 GLB NX pte
[    0.813354] 0xfffffe000045b000-0xfffffe000045c000           4K     RW                 GLB NX pte
[    0.813357] 0xfffffe000045c000-0xfffffe0000461000          20K     ro                 GLB NX pte
[    0.813360] 0xfffffe0000461000-0xfffffe0000462000           4K                               pte
[    0.813362] 0xfffffe0000462000-0xfffffe0000463000           4K     RW                 GLB NX pte
[    0.813365] 0xfffffe0000463000-0xfffffe0000464000           4K                               pte
[    0.813366] 0xfffffe0000464000-0xfffffe0000465000           4K     RW                 GLB NX pte
[    0.813369] 0xfffffe0000465000-0xfffffe0000466000           4K                               pte
[    0.813370] 0xfffffe0000466000-0xfffffe0000467000           4K     RW                 GLB NX pte
[    0.813373] 0xfffffe0000467000-0xfffffe0000468000           4K                               pte
[    0.813375] 0xfffffe0000468000-0xfffffe0000469000           4K     RW                 GLB NX pte
[    0.813378] 0xfffffe0000469000-0xfffffe000046e000          20K                               pte
[    0.813380] 0xfffffe000046e000-0xfffffe000046f000           4K     RW                 GLB NX pte
[    0.813383] 0xfffffe000046f000-0xfffffe000048f000         128K                               pte
[    0.813385] 0xfffffe000048f000-0xfffffe0000490000           4K     ro                 GLB NX pte
[    0.813388] 0xfffffe0000490000-0xfffffe0000491000           4K     RW                 GLB NX pte
[    0.813392] 0xfffffe0000491000-0xfffffe0000496000          20K     ro                 GLB NX pte
[    0.813395] 0xfffffe0000496000-0xfffffe0000497000           4K                               pte
[    0.813396] 0xfffffe0000497000-0xfffffe0000498000           4K     RW                 GLB NX pte
[    0.813399] 0xfffffe0000498000-0xfffffe0000499000           4K                               pte
[    0.813400] 0xfffffe0000499000-0xfffffe000049a000           4K     RW                 GLB NX pte
[    0.813403] 0xfffffe000049a000-0xfffffe000049b000           4K                               pte
[    0.813405] 0xfffffe000049b000-0xfffffe000049c000           4K     RW                 GLB NX pte
[    0.813408] 0xfffffe000049c000-0xfffffe000049d000           4K                               pte
[    0.813409] 0xfffffe000049d000-0xfffffe000049e000           4K     RW                 GLB NX pte
[    0.813412] 0xfffffe000049e000-0xfffffe00004a3000          20K                               pte
[    0.813414] 0xfffffe00004a3000-0xfffffe00004a4000           4K     RW                 GLB NX pte
[    0.813417] 0xfffffe00004a4000-0xfffffe00004c4000         128K                               pte
[    0.813419] 0xfffffe00004c4000-0xfffffe00004c5000           4K     ro                 GLB NX pte
[    0.813422] 0xfffffe00004c5000-0xfffffe00004c6000           4K     RW                 GLB NX pte
[    0.813425] 0xfffffe00004c6000-0xfffffe00004cb000          20K     ro                 GLB NX pte
[    0.813428] 0xfffffe00004cb000-0xfffffe00004cc000           4K                               pte
[    0.813429] 0xfffffe00004cc000-0xfffffe00004cd000           4K     RW                 GLB NX pte
[    0.813432] 0xfffffe00004cd000-0xfffffe00004ce000           4K                               pte
[    0.813434] 0xfffffe00004ce000-0xfffffe00004cf000           4K     RW                 GLB NX pte
[    0.813437] 0xfffffe00004cf000-0xfffffe00004d0000           4K                               pte
[    0.813438] 0xfffffe00004d0000-0xfffffe00004d1000           4K     RW                 GLB NX pte
[    0.813442] 0xfffffe00004d1000-0xfffffe00004d2000           4K                               pte
[    0.813443] 0xfffffe00004d2000-0xfffffe00004d3000           4K     RW                 GLB NX pte
[    0.813447] 0xfffffe00004d3000-0xfffffe00004d8000          20K                               pte
[    0.813448] 0xfffffe00004d8000-0xfffffe00004d9000           4K     RW                 GLB NX pte
[    0.813452] 0xfffffe00004d9000-0xfffffe00004f9000         128K                               pte
[    0.813453] 0xfffffe00004f9000-0xfffffe00004fa000           4K     ro                 GLB NX pte
[    0.813456] 0xfffffe00004fa000-0xfffffe00004fb000           4K     RW                 GLB NX pte
[    0.813459] 0xfffffe00004fb000-0xfffffe0000500000          20K     ro                 GLB NX pte
[    0.813462] 0xfffffe0000500000-0xfffffe0000501000           4K                               pte
[    0.813464] 0xfffffe0000501000-0xfffffe0000502000           4K     RW                 GLB NX pte
[    0.813467] 0xfffffe0000502000-0xfffffe0000503000           4K                               pte
[    0.813468] 0xfffffe0000503000-0xfffffe0000504000           4K     RW                 GLB NX pte
[    0.813471] 0xfffffe0000504000-0xfffffe0000505000           4K                               pte
[    0.813472] 0xfffffe0000505000-0xfffffe0000506000           4K     RW                 GLB NX pte
[    0.813475] 0xfffffe0000506000-0xfffffe0000507000           4K                               pte
[    0.813477] 0xfffffe0000507000-0xfffffe0000508000           4K     RW                 GLB NX pte
[    0.813480] 0xfffffe0000508000-0xfffffe000050d000          20K                               pte
[    0.813482] 0xfffffe000050d000-0xfffffe000050e000           4K     RW                 GLB NX pte
[    0.813485] 0xfffffe000050e000-0xfffffe000052e000         128K                               pte
[    0.813487] 0xfffffe000052e000-0xfffffe000052f000           4K     ro                 GLB NX pte
[    0.813490] 0xfffffe000052f000-0xfffffe0000530000           4K     RW                 GLB NX pte
[    0.813493] 0xfffffe0000530000-0xfffffe0000535000          20K     ro                 GLB NX pte
[    0.813497] 0xfffffe0000535000-0xfffffe0000536000           4K                               pte
[    0.813498] 0xfffffe0000536000-0xfffffe0000537000           4K     RW                 GLB NX pte
[    0.813501] 0xfffffe0000537000-0xfffffe0000538000           4K                               pte
[    0.813502] 0xfffffe0000538000-0xfffffe0000539000           4K     RW                 GLB NX pte
[    0.813505] 0xfffffe0000539000-0xfffffe000053a000           4K                               pte
[    0.813507] 0xfffffe000053a000-0xfffffe000053b000           4K     RW                 GLB NX pte
[    0.813510] 0xfffffe000053b000-0xfffffe000053c000           4K                               pte
[    0.813511] 0xfffffe000053c000-0xfffffe000053d000           4K     RW                 GLB NX pte
[    0.813514] 0xfffffe000053d000-0xfffffe0000542000          20K                               pte
[    0.813516] 0xfffffe0000542000-0xfffffe0000543000           4K     RW                 GLB NX pte
[    0.813519] 0xfffffe0000543000-0xfffffe0000563000         128K                               pte
[    0.813520] 0xfffffe0000563000-0xfffffe0000564000           4K     ro                 GLB NX pte
[    0.813524] 0xfffffe0000564000-0xfffffe0000565000           4K     RW                 GLB NX pte
[    0.813527] 0xfffffe0000565000-0xfffffe000056a000          20K     ro                 GLB NX pte
[    0.813530] 0xfffffe000056a000-0xfffffe000056b000           4K                               pte
[    0.813531] 0xfffffe000056b000-0xfffffe000056c000           4K     RW                 GLB NX pte
[    0.813534] 0xfffffe000056c000-0xfffffe000056d000           4K                               pte
[    0.813535] 0xfffffe000056d000-0xfffffe000056e000           4K     RW                 GLB NX pte
[    0.813538] 0xfffffe000056e000-0xfffffe000056f000           4K                               pte
[    0.813540] 0xfffffe000056f000-0xfffffe0000570000           4K     RW                 GLB NX pte
[    0.813543] 0xfffffe0000570000-0xfffffe0000571000           4K                               pte
[    0.813544] 0xfffffe0000571000-0xfffffe0000572000           4K     RW                 GLB NX pte
[    0.813547] 0xfffffe0000572000-0xfffffe0000577000          20K                               pte
[    0.813549] 0xfffffe0000577000-0xfffffe0000578000           4K     RW                 GLB NX pte
[    0.813553] 0xfffffe0000578000-0xfffffe0000598000         128K                               pte
[    0.813554] 0xfffffe0000598000-0xfffffe0000599000           4K     ro                 GLB NX pte
[    0.813558] 0xfffffe0000599000-0xfffffe000059a000           4K     RW                 GLB NX pte
[    0.813561] 0xfffffe000059a000-0xfffffe000059f000          20K     ro                 GLB NX pte
[    0.813564] 0xfffffe000059f000-0xfffffe00005a0000           4K                               pte
[    0.813566] 0xfffffe00005a0000-0xfffffe00005a1000           4K     RW                 GLB NX pte
[    0.813569] 0xfffffe00005a1000-0xfffffe00005a2000           4K                               pte
[    0.813570] 0xfffffe00005a2000-0xfffffe00005a3000           4K     RW                 GLB NX pte
[    0.813573] 0xfffffe00005a3000-0xfffffe00005a4000           4K                               pte
[    0.813574] 0xfffffe00005a4000-0xfffffe00005a5000           4K     RW                 GLB NX pte
[    0.813577] 0xfffffe00005a5000-0xfffffe00005a6000           4K                               pte
[    0.813579] 0xfffffe00005a6000-0xfffffe00005a7000           4K     RW                 GLB NX pte
[    0.813582] 0xfffffe00005a7000-0xfffffe00005ac000          20K                               pte
[    0.813583] 0xfffffe00005ac000-0xfffffe00005ad000           4K     RW                 GLB NX pte
[    0.813587] 0xfffffe00005ad000-0xfffffe00005cd000         128K                               pte
[    0.813589] 0xfffffe00005cd000-0xfffffe00005ce000           4K     ro                 GLB NX pte
[    0.813592] 0xfffffe00005ce000-0xfffffe00005cf000           4K     RW                 GLB NX pte
[    0.813595] 0xfffffe00005cf000-0xfffffe00005d4000          20K     ro                 GLB NX pte
[    0.813598] 0xfffffe00005d4000-0xfffffe00005d5000           4K                               pte
[    0.813600] 0xfffffe00005d5000-0xfffffe00005d6000           4K     RW                 GLB NX pte
[    0.813603] 0xfffffe00005d6000-0xfffffe00005d7000           4K                               pte
[    0.813604] 0xfffffe00005d7000-0xfffffe00005d8000           4K     RW                 GLB NX pte
[    0.813607] 0xfffffe00005d8000-0xfffffe00005d9000           4K                               pte
[    0.813609] 0xfffffe00005d9000-0xfffffe00005da000           4K     RW                 GLB NX pte
[    0.813612] 0xfffffe00005da000-0xfffffe00005db000           4K                               pte
[    0.813613] 0xfffffe00005db000-0xfffffe00005dc000           4K     RW                 GLB NX pte
[    0.813616] 0xfffffe00005dc000-0xfffffe00005e1000          20K                               pte
[    0.813618] 0xfffffe00005e1000-0xfffffe00005e2000           4K     RW                 GLB NX pte
[    0.813621] 0xfffffe00005e2000-0xfffffe0000602000         128K                               pte
[    0.813622] 0xfffffe0000602000-0xfffffe0000603000           4K     ro                 GLB NX pte
[    0.813626] 0xfffffe0000603000-0xfffffe0000604000           4K     RW                 GLB NX pte
[    0.813629] 0xfffffe0000604000-0xfffffe0000609000          20K     ro                 GLB NX pte
[    0.813632] 0xfffffe0000609000-0xfffffe000060a000           4K                               pte
[    0.813633] 0xfffffe000060a000-0xfffffe000060b000           4K     RW                 GLB NX pte
[    0.813636] 0xfffffe000060b000-0xfffffe000060c000           4K                               pte
[    0.813637] 0xfffffe000060c000-0xfffffe000060d000           4K     RW                 GLB NX pte
[    0.813640] 0xfffffe000060d000-0xfffffe000060e000           4K                               pte
[    0.813642] 0xfffffe000060e000-0xfffffe000060f000           4K     RW                 GLB NX pte
[    0.813645] 0xfffffe000060f000-0xfffffe0000610000           4K                               pte
[    0.813646] 0xfffffe0000610000-0xfffffe0000611000           4K     RW                 GLB NX pte
[    0.813649] 0xfffffe0000611000-0xfffffe0000616000          20K                               pte
[    0.813651] 0xfffffe0000616000-0xfffffe0000617000           4K     RW                 GLB NX pte
[    0.813654] 0xfffffe0000617000-0xfffffe0000637000         128K                               pte
[    0.813656] 0xfffffe0000637000-0xfffffe0000638000           4K     ro                 GLB NX pte
[    0.813659] 0xfffffe0000638000-0xfffffe0000639000           4K     RW                 GLB NX pte
[    0.813662] 0xfffffe0000639000-0xfffffe000063e000          20K     ro                 GLB NX pte
[    0.813665] 0xfffffe000063e000-0xfffffe000063f000           4K                               pte
[    0.813667] 0xfffffe000063f000-0xfffffe0000640000           4K     RW                 GLB NX pte
[    0.813670] 0xfffffe0000640000-0xfffffe0000641000           4K                               pte
[    0.813672] 0xfffffe0000641000-0xfffffe0000642000           4K     RW                 GLB NX pte
[    0.813675] 0xfffffe0000642000-0xfffffe0000643000           4K                               pte
[    0.813677] 0xfffffe0000643000-0xfffffe0000644000           4K     RW                 GLB NX pte
[    0.813680] 0xfffffe0000644000-0xfffffe0000645000           4K                               pte
[    0.813681] 0xfffffe0000645000-0xfffffe0000646000           4K     RW                 GLB NX pte
[    0.813684] 0xfffffe0000646000-0xfffffe000064b000          20K                               pte
[    0.813686] 0xfffffe000064b000-0xfffffe000064c000           4K     RW                 GLB NX pte
[    0.813689] 0xfffffe000064c000-0xfffffe000066c000         128K                               pte
[    0.813691] 0xfffffe000066c000-0xfffffe000066d000           4K     ro                 GLB NX pte
[    0.813694] 0xfffffe000066d000-0xfffffe000066e000           4K     RW                 GLB NX pte
[    0.813697] 0xfffffe000066e000-0xfffffe0000673000          20K     ro                 GLB NX pte
[    0.813701] 0xfffffe0000673000-0xfffffe0000674000           4K                               pte
[    0.813702] 0xfffffe0000674000-0xfffffe0000675000           4K     RW                 GLB NX pte
[    0.813705] 0xfffffe0000675000-0xfffffe0000676000           4K                               pte
[    0.813707] 0xfffffe0000676000-0xfffffe0000677000           4K     RW                 GLB NX pte
[    0.813710] 0xfffffe0000677000-0xfffffe0000678000           4K                               pte
[    0.813711] 0xfffffe0000678000-0xfffffe0000679000           4K     RW                 GLB NX pte
[    0.813714] 0xfffffe0000679000-0xfffffe000067a000           4K                               pte
[    0.813715] 0xfffffe000067a000-0xfffffe000067b000           4K     RW                 GLB NX pte
[    0.813718] 0xfffffe000067b000-0xfffffe0000680000          20K                               pte
[    0.813720] 0xfffffe0000680000-0xfffffe0000681000           4K     RW                 GLB NX pte
[    0.813723] 0xfffffe0000681000-0xfffffe00006a1000         128K                               pte
[    0.813729] 0xfffffe00006a1000-0xfffffe0000800000        1404K                               pte
[    0.813736] 0xfffffe0000800000-0xfffffe0040000000        1016M                               pmd
[    0.813742] 0xfffffe0040000000-0xfffffe8000000000         511G                               pud
[    0.813744] 0xfffffe8000000000-0xffffff0000000000         512G                               pgd
[    0.813745] ---[ ESPfix Area ]---
[    0.813750] 0xffffff0000000000-0xffffff6800000000         416G                               pud
[    0.813752] 0xffffff6800000000-0xffffff680000c000          48K                               pte
[    0.813753] 0xffffff680000c000-0xffffff680000d000           4K     ro                 GLB NX pte
[    0.813756] 0xffffff680000d000-0xffffff680001c000          60K                               pte
[    0.813758] 0xffffff680001c000-0xffffff680001d000           4K     ro                 GLB NX pte
[    0.813761] 0xffffff680001d000-0xffffff680002c000          60K                               pte
[    0.813762] 0xffffff680002c000-0xffffff680002d000           4K     ro                 GLB NX pte
[    0.813765] 0xffffff680002d000-0xffffff680003c000          60K                               pte
[    0.813767] 0xffffff680003c000-0xffffff680003d000           4K     ro                 GLB NX pte
[    0.813770] 0xffffff680003d000-0xffffff680004c000          60K                               pte
[    0.813771] 0xffffff680004c000-0xffffff680004d000           4K     ro                 GLB NX pte
[    0.813775] 0xffffff680004d000-0xffffff680005c000          60K                               pte
[    0.813776] 0xffffff680005c000-0xffffff680005d000           4K     ro                 GLB NX pte
[    0.813779] 0xffffff680005d000-0xffffff680006c000          60K                               pte
[    0.813781] 0xffffff680006c000-0xffffff680006d000           4K     ro                 GLB NX pte
[    0.813784] 0xffffff680006d000-0xffffff680007c000          60K                               pte
[    0.827181] ... 131059 entries skipped ... 
[    0.827182] ---[ EFI Runtime Services ]---
[    0.827183] 0xffffffef00000000-0xfffffffec0000000          63G                               pud
[    0.827188] 0xfffffffec0000000-0xfffffffeecc00000         716M                               pmd
[    0.827193] 0xfffffffeecc00000-0xfffffffeecd15000        1108K                               pte
[    0.827195] 0xfffffffeecd15000-0xfffffffeecd50000         236K                               pte
[    0.827197] 0xfffffffeecd50000-0xfffffffeecd65000          84K                               pte
[    0.827203] 0xfffffffeecd65000-0xfffffffeecefd000        1632K                               pte
[    0.827205] 0xfffffffeecefd000-0xfffffffeecf14000          92K                               pte
[    0.827213] 0xfffffffeecf14000-0xfffffffeed140000        2224K                               pte
[    0.827214] 0xfffffffeed140000-0xfffffffeed14e000          56K                               pte
[    0.827216] 0xfffffffeed14e000-0xfffffffeed16a000         112K                               pte
[    0.827221] 0xfffffffeed16a000-0xfffffffeed29a000        1216K                               pte
[    0.827225] 0xfffffffeed29a000-0xfffffffeed368000         824K                               pte
[    0.827227] 0xfffffffeed368000-0xfffffffeed36e000          24K                               pte
[    0.827231] 0xfffffffeed36e000-0xfffffffeee45f000       17348K                               pte
[    0.827234] 0xfffffffeee45f000-0xfffffffeee501000         648K                               pte
[    0.827240] 0xfffffffeee501000-0xfffffffeee65f000        1400K                               pte
[    0.827245] 0xfffffffeee65f000-0xfffffffeee77e000        1148K                               pte
[    0.827250] 0xfffffffeee77e000-0xfffffffeee8a1000        1164K     RW                     NX pte
[    0.827254] 0xfffffffeee8a1000-0xfffffffeee8e7000         280K     RW                     x  pte
[    0.827257] 0xfffffffeee8e7000-0xfffffffeee8e8000           4K                               pte
[    0.827260] 0xfffffffeee8e8000-0xfffffffeee96e000         536K                               pte
[    0.827265] 0xfffffffeee96e000-0xfffffffeeeac0000        1352K                               pte
[    0.827275] 0xfffffffeeeac0000-0xfffffffeeed66000        2712K                               pte
[    0.827276] 0xfffffffeeed66000-0xfffffffeeed7e000          96K                               pte
[    0.827278] 0xfffffffeeed7e000-0xfffffffeeed90000          72K                               pte
[    0.827280] 0xfffffffeeed90000-0xfffffffeeedb5000         148K                               pte
[    0.827282] 0xfffffffeeedb5000-0xfffffffeeedf3000         248K                               pte
[    0.827283] 0xfffffffeeedf3000-0xfffffffeeee00000          52K                               pte
[    0.827287] 0xfffffffeeee00000-0xfffffffefee00000         256M     RW     PCD PSE         NX pmd
[    0.827293] 0xfffffffefee00000-0xfffffffefef1c000        1136K                               pte
[    0.827295] 0xfffffffefef1c000-0xfffffffefef20000          16K     RW     PCD             NX pte
[    0.827301] 0xfffffffefef20000-0xfffffffeff000000         896K                               pte
[    0.827302] 0xfffffffeff000000-0xffffffff00000000          16M     RW     PCD PSE         NX pmd
[    0.827305] 0xffffffff00000000-0xffffffff80000000           2G                               pud
[    0.827307] ---[ High Kernel Mapping ]---
[    0.827307] 0xffffffff80000000-0xffffffff81000000          16M                               pmd
[    0.827309] 0xffffffff81000000-0xffffffff81800000           8M     RW         PSE         x  pmd
[    0.827312] 0xffffffff81800000-0xffffffff81a00000           2M     RW         PSE     GLB x  pmd
[    0.827315] 0xffffffff81a00000-0xffffffff82400000          10M     RW         PSE         x  pmd
[    0.827321] 0xffffffff82400000-0xffffffff82513000        1100K     RW                     x  pte
[    0.827324] 0xffffffff82513000-0xffffffff82514000           4K     ro                     x  pte
[    0.827330] 0xffffffff82514000-0xffffffff82600000         944K     RW                     x  pte
[    0.827333] 0xffffffff82600000-0xffffffff82800000           2M     RW         PSE         x  pmd
[    0.827339] 0xffffffff82800000-0xffffffffa0000000         472M                               pmd
[    0.827340] ---[ Modules ]---
[    0.827348] 0xffffffffa0000000-0xffffffffff000000        1520M                               pmd
[    0.827350] ---[ End Modules ]---
[    0.827350] 0xffffffffff000000-0xffffffffff200000           2M                               pmd
[    0.827363] 0xffffffffff200000-0xffffffffff57c000        3568K                               pte
[    0.827364] ---[ Fixmap Area ]---
[    0.827366] 0xffffffffff57c000-0xffffffffff5fa000         504K                               pte
[    0.827367] 0xffffffffff5fa000-0xffffffffff5fe000          16K     RW PWT PCD             NX pte
[    0.827371] 0xffffffffff5fe000-0xffffffffff600000           8K                               pte
[    0.827372] 0xffffffffff600000-0xffffffffff601000           4K USR ro                     NX pte
[    0.827381] 0xffffffffff601000-0xffffffffff800000        2044K                               pte
[    0.827383] 0xffffffffff800000-0x0000000000000000           8M                               pmd
[    0.827605] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.827758] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.828120] mce: CPU0: Thermal monitoring enabled (TM1)
[    0.828165] process: using mwait in idle threads
[    0.828168] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.828169] Last level dTLB entries: 4KB 512, 2MB 0, 4MB 0, 1GB 4
[    0.828170] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.828172] Spectre V2 : Mitigation: Full generic retpoline
[    0.828173] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.828174] Speculative Store Bypass: Vulnerable
[    0.828175] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.828315] Freeing SMP alternatives memory: 28K
[    0.828564] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2667 v2 @ 3.30GHz (family: 0x6, model: 0x3e, stepping: 0x4)
[    0.828723] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.828732] ... version:                3
[    0.828733] ... bit width:              48
[    0.828734] ... generic registers:      4
[    0.828735] ... value mask:             0000ffffffffffff
[    0.828735] ... max period:             00007fffffffffff
[    0.828736] ... fixed-purpose events:   3
[    0.828737] ... event mask:             000000070000000f
[    0.828798] rcu: Hierarchical SRCU implementation.
[    0.828798] smp: Bringing up secondary CPUs ...
[    0.828798] x86: Booting SMP configuration:
[    0.828798] .... node  #0, CPUs:        #1
[    0.832798] TSC synchronization [CPU#0 -> CPU#1]:
[    0.832798] Measured 1154447 cycles TSC warp between CPUs, turning off TSC clock.
[    0.832798] tsc: Marking TSC unstable due to check_tsc_sync_source failed
[    0.832951]   #2  #3  #4  #5  #6  #7  #8
[    0.001800] smpboot: CPU 8 Converting physical 0 to logical die 1
[    0.899901]   #9 #10 #11 #12 #13 #14 #15 #16
[    0.914886] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.914961]  #17 #18 #19 #20 #21 #22 #23 #24 #25 #26 #27 #28 #29 #30 #31
[    0.937905] smp: Brought up 1 node, 32 CPUs
[    0.937905] smpboot: Max logical packages: 2
[    0.937905] smpboot: Total of 32 processors activated (211308.54 BogoMIPS)
[    0.942898] devtmpfs: initialized
[    0.942898] x86/mm: Memory block size: 2048MB
[    0.943883] PM: Registering ACPI NVS region [mem 0x7b19f000-0x7b77dfff] (6156288 bytes)
[    0.944006] PM: Registering ACPI NVS region [mem 0x7b8e8000-0x7b96dfff] (548864 bytes)
[    0.944122] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[    0.944129] futex hash table entries: 8192 (order: 7, 524288 bytes, linear)
[    0.944294] pinctrl core: initialized pinctrl subsystem
[    0.944626] NET: Registered protocol family 16
[    0.944811] audit: initializing netlink subsys (disabled)
[    0.944841] audit: type=2000 audit(1634448112.140:1): state=initialized audit_enabled=0 res=1
[    0.945024] thermal_sys: Registered thermal governor 'bang_bang'
[    0.945025] thermal_sys: Registered thermal governor 'step_wise'
[    0.945026] thermal_sys: Registered thermal governor 'user_space'
[    0.945027] thermal_sys: Registered thermal governor 'power_allocator'
[    0.945043] cpuidle: using governor ladder
[    0.945043] cpuidle: using governor menu
[    0.945043] ACPI: bus type PCI registered
[    0.945043] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.945043] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xd0000000-0xdfffffff] (base 0xd0000000)
[    0.945043] PCI: MMCONFIG at [mem 0xd0000000-0xdfffffff] reserved in E820
[    0.945043] pmd_set_huge: Cannot satisfy [mem 0xd0000000-0xd0200000] with a huge-page mapping due to MTRR override.
[    0.945227] PCI: Using configuration type 1 for base access
[    0.945242] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.945841] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.948915] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.948915] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.949888] ACPI: Added _OSI(Module Device)
[    0.949890] ACPI: Added _OSI(Processor Device)
[    0.949891] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.949891] ACPI: Added _OSI(Processor Aggregator Device)
[    0.949893] ACPI: Added _OSI(Linux-Dell-Video)
[    0.949894] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.949895] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    1.023787] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    1.037121] ACPI: Interpreter enabled
[    1.037136] ACPI: (supports S0 S1 S3 S4 S5)
[    1.037138] ACPI: Using IOAPIC for interrupt routing
[    1.037163] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    1.037822] ACPI: Enabled 5 GPEs in block 00 to 3F
[    1.049858] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-7e])
[    1.049858] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    1.049858] acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PME AER LTR]
[    1.049858] acpi PNP0A08:00: _OSC: OS now controls [PCIeCapability]
[    1.049937] PCI host bridge to bus 0000:00
[    1.049939] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    1.049940] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    1.049941] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    1.049942] pci_bus 0000:00: root bus resource [io  0x0d00-0x7fff window]
[    1.049943] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    1.049944] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    1.049945] pci_bus 0000:00: root bus resource [mem 0x90000000-0xc7ffffff window]
[    1.049946] pci_bus 0000:00: root bus resource [mem 0x2080000000-0x381fffffffff window]
[    1.049948] pci_bus 0000:00: root bus resource [bus 00-7e]
[    1.049969] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000
[    1.050038] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
[    1.050129] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400
[    1.050208] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    1.050855] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400
[    1.050855] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
[    1.050857] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400
[    1.050857] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    1.050878] pci 0000:00:02.1: [8086:0e05] type 01 class 0x060400
[    1.050878] pci 0000:00:02.1: PME# supported from D0 D3hot D3cold
[    1.051814] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400
[    1.051814] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
[    1.051834] pci 0000:00:02.3: [8086:0e07] type 01 class 0x060400
[    1.051834] pci 0000:00:02.3: PME# supported from D0 D3hot D3cold
[    1.051859] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400
[    1.051859] pci 0000:00:03.0: enabling Extended Tags
[    1.051859] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
[    1.051859] pci 0000:00:03.1: [8086:0e09] type 01 class 0x060400
[    1.051859] pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
[    1.051859] pci 0000:00:03.2: [8086:0e0a] type 01 class 0x060400
[    1.051859] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold
[    1.052826] pci 0000:00:03.3: [8086:0e0b] type 01 class 0x060400
[    1.052826] pci 0000:00:03.3: PME# supported from D0 D3hot D3cold
[    1.052826] pci 0000:00:04.0: [8086:0e20] type 00 class 0x088000
[    1.052826] pci 0000:00:04.0: reg 0x10: [mem 0x381ffff20000-0x381ffff23fff 64bit]
[    1.052832] pci 0000:00:04.1: [8086:0e21] type 00 class 0x088000
[    1.052832] pci 0000:00:04.1: reg 0x10: [mem 0x381ffff1c000-0x381ffff1ffff 64bit]
[    1.052865] pci 0000:00:04.2: [8086:0e22] type 00 class 0x088000
[    1.052865] pci 0000:00:04.2: reg 0x10: [mem 0x381ffff18000-0x381ffff1bfff 64bit]
[    1.052865] pci 0000:00:04.3: [8086:0e23] type 00 class 0x088000
[    1.052865] pci 0000:00:04.3: reg 0x10: [mem 0x381ffff14000-0x381ffff17fff 64bit]
[    1.052865] pci 0000:00:04.4: [8086:0e24] type 00 class 0x088000
[    1.052865] pci 0000:00:04.4: reg 0x10: [mem 0x381ffff10000-0x381ffff13fff 64bit]
[    1.052865] pci 0000:00:04.5: [8086:0e25] type 00 class 0x088000
[    1.052865] pci 0000:00:04.5: reg 0x10: [mem 0x381ffff0c000-0x381ffff0ffff 64bit]
[    1.052974] pci 0000:00:04.6: [8086:0e26] type 00 class 0x088000
[    1.052988] pci 0000:00:04.6: reg 0x10: [mem 0x381ffff08000-0x381ffff0bfff 64bit]
[    1.053817] pci 0000:00:04.7: [8086:0e27] type 00 class 0x088000
[    1.053817] pci 0000:00:04.7: reg 0x10: [mem 0x381ffff04000-0x381ffff07fff 64bit]
[    1.053845] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000
[    1.053855] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000
[    1.053860] pci 0000:00:05.4: [8086:0e2c] type 00 class 0x080020
[    1.053860] pci 0000:00:05.4: reg 0x10: [mem 0xc7404000-0xc7404fff]
[    1.053860] pci 0000:00:06.0: [8086:0e10] type 00 class 0x088000
[    1.053860] pci 0000:00:06.1: [8086:0e11] type 00 class 0x088000
[    1.053860] pci 0000:00:06.2: [8086:0e12] type 00 class 0x088000
[    1.053963] pci 0000:00:06.3: [8086:0e13] type 00 class 0x088000
[    1.054857] pci 0000:00:06.4: [8086:0e14] type 00 class 0x088000
[    1.054857] pci 0000:00:06.5: [8086:0e15] type 00 class 0x088000
[    1.054857] pci 0000:00:06.6: [8086:0e16] type 00 class 0x088000
[    1.054857] pci 0000:00:06.7: [8086:0e17] type 00 class 0x088000
[    1.054857] pci 0000:00:07.0: [8086:0e18] type 00 class 0x088000
[    1.054857] pci 0000:00:07.1: [8086:0e19] type 00 class 0x088000
[    1.054857] pci 0000:00:07.2: [8086:0e1a] type 00 class 0x088000
[    1.054860] pci 0000:00:07.3: [8086:0e1b] type 00 class 0x088000
[    1.054972] pci 0000:00:07.4: [8086:0e1c] type 00 class 0x088000
[    1.055815] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400
[    1.055815] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
[    1.055861] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000
[    1.055861] pci 0000:00:16.0: reg 0x10: [mem 0xc7403000-0xc740300f 64bit]
[    1.055861] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    1.055861] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320
[    1.055861] pci 0000:00:1a.0: reg 0x10: [mem 0xc7402000-0xc74023ff]
[    1.055861] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    1.055861] pci 0000:00:1b.0: [8086:1d20] type 00 class 0x040300
[    1.055861] pci 0000:00:1b.0: reg 0x10: [mem 0x381ffff00000-0x381ffff03fff 64bit]
[    1.055861] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    1.055861] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400
[    1.055913] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    1.055945] pci 0000:00:1c.0: Enabling MPC IRBNCE
[    1.055947] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
[    1.056813] pci 0000:00:1c.1: [8086:1d12] type 01 class 0x060400
[    1.056813] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    1.056813] pci 0000:00:1c.1: Enabling MPC IRBNCE
[    1.056813] pci 0000:00:1c.1: Intel PCH root port ACS workaround enabled
[    1.056857] pci 0000:00:1c.2: [8086:1d14] type 01 class 0x060400
[    1.056857] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    1.056857] pci 0000:00:1c.2: Enabling MPC IRBNCE
[    1.056857] pci 0000:00:1c.2: Intel PCH root port ACS workaround enabled
[    1.056860] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400
[    1.056860] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    1.056860] pci 0000:00:1c.4: Enabling MPC IRBNCE
[    1.056860] pci 0000:00:1c.4: Intel PCH root port ACS workaround enabled
[    1.056860] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320
[    1.056860] pci 0000:00:1d.0: reg 0x10: [mem 0xc7401000-0xc74013ff]
[    1.056860] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    1.056860] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    1.057814] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100
[    1.057814] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601
[    1.057814] pci 0000:00:1f.2: reg 0x10: [io  0x7070-0x7077]
[    1.057814] pci 0000:00:1f.2: reg 0x14: [io  0x7060-0x7063]
[    1.057814] pci 0000:00:1f.2: reg 0x18: [io  0x7050-0x7057]
[    1.057814] pci 0000:00:1f.2: reg 0x1c: [io  0x7040-0x7043]
[    1.057814] pci 0000:00:1f.2: reg 0x20: [io  0x7020-0x703f]
[    1.057814] pci 0000:00:1f.2: reg 0x24: [mem 0xc7400000-0xc74007ff]
[    1.057814] pci 0000:00:1f.2: PME# supported from D3hot
[    1.057856] pci 0000:00:1f.3: [8086:1d22] type 00 class 0x0c0500
[    1.057856] pci 0000:00:1f.3: reg 0x10: [mem 0x381ffff24000-0x381ffff240ff 64bit]
[    1.057856] pci 0000:00:1f.3: reg 0x20: [io  0x7000-0x701f]
[    1.057856] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.057859] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.057859] pci 0000:03:00.0: [10de:21c4] type 00 class 0x030000
[    1.057859] pci 0000:03:00.0: reg 0x10: [mem 0xc6000000-0xc6ffffff]
[    1.057859] pci 0000:03:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
[    1.057859] pci 0000:03:00.0: reg 0x1c: [mem 0xc0000000-0xc1ffffff 64bit pref]
[    1.057859] pci 0000:03:00.0: reg 0x24: [io  0x6000-0x607f]
[    1.057859] pci 0000:03:00.0: reg 0x30: [mem 0xc7000000-0xc707ffff pref]
[    1.057859] pci 0000:03:00.0: BAR 1: assigned to efifb
[    1.057859] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    1.057859] pci 0000:03:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:02.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
[    1.057859] pci 0000:03:00.1: [10de:1aeb] type 00 class 0x040300
[    1.057859] pci 0000:03:00.1: reg 0x10: [mem 0xc7080000-0xc7083fff]
[    1.057859] pci 0000:03:00.2: [10de:1aec] type 00 class 0x0c0330
[    1.057859] pci 0000:03:00.2: reg 0x10: [mem 0xc2000000-0xc203ffff 64bit pref]
[    1.057859] pci 0000:03:00.2: reg 0x1c: [mem 0xc2040000-0xc204ffff 64bit pref]
[    1.057880] pci 0000:03:00.2: PME# supported from D0 D3hot D3cold
[    1.057935] pci 0000:03:00.3: [10de:1aed] type 00 class 0x0c8000
[    1.057943] pci 0000:03:00.3: reg 0x10: [mem 0xc7084000-0xc7084fff]
[    1.057994] pci 0000:03:00.3: PME# supported from D0 D3hot D3cold
[    1.058829] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.058829] pci 0000:00:02.0:   bridge window [io  0x6000-0x6fff]
[    1.058829] pci 0000:00:02.0:   bridge window [mem 0xc6000000-0xc70fffff]
[    1.058829] pci 0000:00:02.0:   bridge window [mem 0xb0000000-0xc20fffff 64bit pref]
[    1.058858] pci 0000:00:02.1: PCI bridge to [bus 04]
[    1.058858] pci 0000:00:02.2: PCI bridge to [bus 05]
[    1.058858] pci 0000:00:02.3: PCI bridge to [bus 06]
[    1.058858] pci 0000:00:03.0: PCI bridge to [bus 07]
[    1.058877] pci 0000:00:03.1: PCI bridge to [bus 08]
[    1.058877] pci 0000:00:03.2: PCI bridge to [bus 09]
[    1.058877] pci 0000:00:03.3: PCI bridge to [bus 0a]
[    1.058877] pci 0000:00:11.0: PCI bridge to [bus 0b]
[    1.058877] pci 0000:00:1c.0: PCI bridge to [bus 0c]
[    1.058877] pci 0000:0d:00.0: [8086:1539] type 00 class 0x020000
[    1.058877] pci 0000:0d:00.0: reg 0x10: [mem 0xc7300000-0xc731ffff]
[    1.058877] pci 0000:0d:00.0: reg 0x18: [io  0x5000-0x501f]
[    1.058877] pci 0000:0d:00.0: reg 0x1c: [mem 0xc7320000-0xc7323fff]
[    1.058877] pci 0000:0d:00.0: PME# supported from D0 D3hot D3cold
[    1.058877] pci 0000:00:1c.1: PCI bridge to [bus 0d]
[    1.058877] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
[    1.058877] pci 0000:00:1c.1:   bridge window [mem 0xc7300000-0xc73fffff]
[    1.058919] pci 0000:0e:00.0: [1106:3483] type 00 class 0x0c0330
[    1.058946] pci 0000:0e:00.0: reg 0x10: [mem 0xc7200000-0xc7200fff 64bit]
[    1.059066] pci 0000:0e:00.0: PME# supported from D0 D3cold
[    1.059814] pci 0000:00:1c.2: PCI bridge to [bus 0e]
[    1.059814] pci 0000:00:1c.2:   bridge window [mem 0xc7200000-0xc72fffff]
[    1.059873] pci 0000:0f:00.0: [8086:1539] type 00 class 0x020000
[    1.059873] pci 0000:0f:00.0: reg 0x10: [mem 0xc7100000-0xc711ffff]
[    1.059873] pci 0000:0f:00.0: reg 0x18: [io  0x4000-0x401f]
[    1.059873] pci 0000:0f:00.0: reg 0x1c: [mem 0xc7120000-0xc7123fff]
[    1.059873] pci 0000:0f:00.0: PME# supported from D0 D3hot D3cold
[    1.059875] pci 0000:00:1c.4: PCI bridge to [bus 0f]
[    1.059875] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    1.059875] pci 0000:00:1c.4:   bridge window [mem 0xc7100000-0xc71fffff]
[    1.059875] pci_bus 0000:10: extended config space not accessible
[    1.059875] pci 0000:00:1e.0: PCI bridge to [bus 10] (subtractive decode)
[    1.059875] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    1.059875] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    1.059875] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    1.059875] pci 0000:00:1e.0:   bridge window [io  0x0d00-0x7fff window] (subtractive decode)
[    1.059875] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    1.059875] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[    1.059875] pci 0000:00:1e.0:   bridge window [mem 0x90000000-0xc7ffffff window] (subtractive decode)
[    1.059875] pci 0000:00:1e.0:   bridge window [mem 0x2080000000-0x381fffffffff window] (subtractive decode)
[    1.060816] ACPI: PCI Root Bridge [UNC0] (domain 0000 [bus 7f])
[    1.060816] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    1.060816] acpi PNP0A03:00: _OSC: OS now controls [SHPCHotplug PME AER PCIeCapability LTR]
[    1.060842] PCI host bridge to bus 0000:7f
[    1.060842] pci_bus 0000:7f: root bus resource [bus 7f]
[    1.060842] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000
[    1.060859] pci 0000:7f:08.2: [8086:0e32] type 00 class 0x110100
[    1.060859] pci 0000:7f:08.3: [8086:0e83] type 00 class 0x088000
[    1.060859] pci 0000:7f:08.4: [8086:0e84] type 00 class 0x088000
[    1.060879] pci 0000:7f:08.5: [8086:0e85] type 00 class 0x088000
[    1.060879] pci 0000:7f:08.6: [8086:0e86] type 00 class 0x088000
[    1.060879] pci 0000:7f:08.7: [8086:0e87] type 00 class 0x088000
[    1.060879] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000
[    1.060879] pci 0000:7f:09.2: [8086:0e33] type 00 class 0x110100
[    1.060879] pci 0000:7f:09.3: [8086:0e93] type 00 class 0x088000
[    1.060879] pci 0000:7f:09.4: [8086:0e94] type 00 class 0x088000
[    1.060879] pci 0000:7f:09.5: [8086:0e95] type 00 class 0x088000
[    1.060879] pci 0000:7f:09.6: [8086:0e96] type 00 class 0x088000
[    1.060879] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000
[    1.060879] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000
[    1.060880] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000
[    1.061812] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000
[    1.061819] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000
[    1.061819] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000
[    1.061852] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000
[    1.061852] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000
[    1.061852] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000
[    1.061852] pci 0000:7f:0c.3: [8086:0ee6] type 00 class 0x088000
[    1.061861] pci 0000:7f:0c.4: [8086:0ee8] type 00 class 0x088000
[    1.061861] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000
[    1.061878] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000
[    1.061878] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000
[    1.061878] pci 0000:7f:0d.3: [8086:0ee7] type 00 class 0x088000
[    1.061878] pci 0000:7f:0d.4: [8086:0ee9] type 00 class 0x088000
[    1.061878] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000
[    1.061878] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100
[    1.061878] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000
[    1.061878] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000
[    1.061878] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000
[    1.061878] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000
[    1.061878] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000
[    1.061878] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000
[    1.061878] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000
[    1.061878] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000
[    1.061916] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000
[    1.062820] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000
[    1.062822] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000
[    1.062822] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000
[    1.062862] pci 0000:7f:10.6: [8086:0eb6] type 00 class 0x088000
[    1.062862] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000
[    1.062862] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000
[    1.062862] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100
[    1.062862] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000
[    1.062862] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100
[    1.062862] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000
[    1.062862] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000
[    1.062862] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000
[    1.062862] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 80-fe])
[    1.062862] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    1.062862] acpi PNP0A08:01: _OSC: platform does not support [SHPCHotplug PME AER LTR]
[    1.062862] acpi PNP0A08:01: _OSC: OS now controls [PCIeCapability]
[    1.062950] PCI host bridge to bus 0000:80
[    1.062952] pci_bus 0000:80: root bus resource [io  0x8000-0xffff window]
[    1.062953] pci_bus 0000:80: root bus resource [mem 0xc8000000-0xfbffffff window]
[    1.062954] pci_bus 0000:80: root bus resource [mem 0x382000000000-0x383fffffffff window]
[    1.062955] pci_bus 0000:80: root bus resource [bus 80-fe]
[    1.062978] pci 0000:80:00.0: [8086:0e01] type 01 class 0x060400
[    1.063068] pci 0000:80:00.0: PME# supported from D0 D3hot D3cold
[    1.063860] pci 0000:80:01.0: [8086:0e02] type 01 class 0x060400
[    1.063860] pci 0000:80:01.0: PME# supported from D0 D3hot D3cold
[    1.063860] pci 0000:80:01.1: [8086:0e03] type 01 class 0x060400
[    1.063860] pci 0000:80:01.1: PME# supported from D0 D3hot D3cold
[    1.063860] pci 0000:80:02.0: [8086:0e04] type 01 class 0x060400
[    1.063860] pci 0000:80:02.0: PME# supported from D0 D3hot D3cold
[    1.063860] pci 0000:80:02.1: [8086:0e05] type 01 class 0x060400
[    1.063916] pci 0000:80:02.1: PME# supported from D0 D3hot D3cold
[    1.064817] pci 0000:80:02.2: [8086:0e06] type 01 class 0x060400
[    1.064817] pci 0000:80:02.2: PME# supported from D0 D3hot D3cold
[    1.064858] pci 0000:80:02.3: [8086:0e07] type 01 class 0x060400
[    1.064858] pci 0000:80:02.3: PME# supported from D0 D3hot D3cold
[    1.064858] pci 0000:80:03.0: [8086:0e08] type 01 class 0x060400
[    1.064858] pci 0000:80:03.0: enabling Extended Tags
[    1.064858] pci 0000:80:03.0: PME# supported from D0 D3hot D3cold
[    1.064858] pci 0000:80:03.1: [8086:0e09] type 01 class 0x060400
[    1.064858] pci 0000:80:03.1: PME# supported from D0 D3hot D3cold
[    1.064862] pci 0000:80:03.2: [8086:0e0a] type 01 class 0x060400
[    1.064965] pci 0000:80:03.2: PME# supported from D0 D3hot D3cold
[    1.065817] pci 0000:80:03.3: [8086:0e0b] type 01 class 0x060400
[    1.065817] pci 0000:80:03.3: PME# supported from D0 D3hot D3cold
[    1.065818] pci 0000:80:04.0: [8086:0e20] type 00 class 0x088000
[    1.065818] pci 0000:80:04.0: reg 0x10: [mem 0x383ffff1c000-0x383ffff1ffff 64bit]
[    1.065842] pci 0000:80:04.1: [8086:0e21] type 00 class 0x088000
[    1.065842] pci 0000:80:04.1: reg 0x10: [mem 0x383ffff18000-0x383ffff1bfff 64bit]
[    1.065856] pci 0000:80:04.2: [8086:0e22] type 00 class 0x088000
[    1.065856] pci 0000:80:04.2: reg 0x10: [mem 0x383ffff14000-0x383ffff17fff 64bit]
[    1.065857] pci 0000:80:04.3: [8086:0e23] type 00 class 0x088000
[    1.065857] pci 0000:80:04.3: reg 0x10: [mem 0x383ffff10000-0x383ffff13fff 64bit]
[    1.065857] pci 0000:80:04.4: [8086:0e24] type 00 class 0x088000
[    1.065858] pci 0000:80:04.4: reg 0x10: [mem 0x383ffff0c000-0x383ffff0ffff 64bit]
[    1.065988] pci 0000:80:04.5: [8086:0e25] type 00 class 0x088000
[    1.066003] pci 0000:80:04.5: reg 0x10: [mem 0x383ffff08000-0x383ffff0bfff 64bit]
[    1.066815] pci 0000:80:04.6: [8086:0e26] type 00 class 0x088000
[    1.066815] pci 0000:80:04.6: reg 0x10: [mem 0x383ffff04000-0x383ffff07fff 64bit]
[    1.066858] pci 0000:80:04.7: [8086:0e27] type 00 class 0x088000
[    1.066858] pci 0000:80:04.7: reg 0x10: [mem 0x383ffff00000-0x383ffff03fff 64bit]
[    1.066858] pci 0000:80:05.0: [8086:0e28] type 00 class 0x088000
[    1.066858] pci 0000:80:05.2: [8086:0e2a] type 00 class 0x088000
[    1.066858] pci 0000:80:05.4: [8086:0e2c] type 00 class 0x080020
[    1.066858] pci 0000:80:05.4: reg 0x10: [mem 0xfbf00000-0xfbf00fff]
[    1.066858] pci 0000:80:06.0: [8086:0e10] type 00 class 0x088000
[    1.066976] pci 0000:80:06.1: [8086:0e11] type 00 class 0x088000
[    1.067827] pci 0000:80:06.2: [8086:0e12] type 00 class 0x088000
[    1.067870] pci 0000:80:06.3: [8086:0e13] type 00 class 0x088000
[    1.067879] pci 0000:80:06.4: [8086:0e14] type 00 class 0x088000
[    1.067879] pci 0000:80:06.5: [8086:0e15] type 00 class 0x088000
[    1.067879] pci 0000:80:06.6: [8086:0e16] type 00 class 0x088000
[    1.067879] pci 0000:80:06.7: [8086:0e17] type 00 class 0x088000
[    1.067879] pci 0000:80:07.0: [8086:0e18] type 00 class 0x088000
[    1.067944] pci 0000:80:07.1: [8086:0e19] type 00 class 0x088000
[    1.068822] pci 0000:80:07.2: [8086:0e1a] type 00 class 0x088000
[    1.068839] pci 0000:80:07.3: [8086:0e1b] type 00 class 0x088000
[    1.068857] pci 0000:80:07.4: [8086:0e1c] type 00 class 0x088000
[    1.068857] pci 0000:80:00.0: PCI bridge to [bus 81]
[    1.068857] pci 0000:82:00.0: [14a4:23f1] type 00 class 0x010802
[    1.068857] pci 0000:82:00.0: reg 0x10: [mem 0xfbe00000-0xfbe03fff 64bit]
[    1.068905] pci 0000:80:01.0: PCI bridge to [bus 82]
[    1.068911] pci 0000:80:01.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    1.068958] pci 0000:80:01.1: PCI bridge to [bus 83]
[    1.069816] pci 0000:84:00.0: [126f:2262] type 00 class 0x010802
[    1.069816] pci 0000:84:00.0: reg 0x10: [mem 0xfbd00000-0xfbd03fff 64bit]
[    1.069817] pci 0000:80:02.0: PCI bridge to [bus 84]
[    1.069817] pci 0000:80:02.0:   bridge window [mem 0xfbd00000-0xfbdfffff]
[    1.069829] pci 0000:80:02.1: PCI bridge to [bus 85]
[    1.069857] pci 0000:80:02.2: PCI bridge to [bus 86]
[    1.069857] pci 0000:80:02.3: PCI bridge to [bus 87]
[    1.069857] pci 0000:80:03.0: PCI bridge to [bus 88]
[    1.069863] pci 0000:80:03.1: PCI bridge to [bus 89]
[    1.069863] pci 0000:80:03.2: PCI bridge to [bus 8a]
[    1.069863] pci 0000:80:03.3: PCI bridge to [bus 8b]
[    1.069863] ACPI: PCI Root Bridge [UNC1] (domain 0000 [bus ff])
[    1.069863] acpi PNP0A03:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
[    1.069863] acpi PNP0A03:01: _OSC: OS now controls [SHPCHotplug PME AER PCIeCapability LTR]
[    1.069863] PCI host bridge to bus 0000:ff
[    1.069863] pci_bus 0000:ff: root bus resource [bus ff]
[    1.069863] pci 0000:ff:08.0: [8086:0e80] type 00 class 0x088000
[    1.069863] pci 0000:ff:08.2: [8086:0e32] type 00 class 0x110100
[    1.069863] pci 0000:ff:08.3: [8086:0e83] type 00 class 0x088000
[    1.069922] pci 0000:ff:08.4: [8086:0e84] type 00 class 0x088000
[    1.070822] pci 0000:ff:08.5: [8086:0e85] type 00 class 0x088000
[    1.070860] pci 0000:ff:08.6: [8086:0e86] type 00 class 0x088000
[    1.070860] pci 0000:ff:08.7: [8086:0e87] type 00 class 0x088000
[    1.070860] pci 0000:ff:09.0: [8086:0e90] type 00 class 0x088000
[    1.070860] pci 0000:ff:09.2: [8086:0e33] type 00 class 0x110100
[    1.070860] pci 0000:ff:09.3: [8086:0e93] type 00 class 0x088000
[    1.070878] pci 0000:ff:09.4: [8086:0e94] type 00 class 0x088000
[    1.070878] pci 0000:ff:09.5: [8086:0e95] type 00 class 0x088000
[    1.070878] pci 0000:ff:09.6: [8086:0e96] type 00 class 0x088000
[    1.070878] pci 0000:ff:0a.0: [8086:0ec0] type 00 class 0x088000
[    1.070878] pci 0000:ff:0a.1: [8086:0ec1] type 00 class 0x088000
[    1.070878] pci 0000:ff:0a.2: [8086:0ec2] type 00 class 0x088000
[    1.070878] pci 0000:ff:0a.3: [8086:0ec3] type 00 class 0x088000
[    1.070878] pci 0000:ff:0b.0: [8086:0e1e] type 00 class 0x088000
[    1.070878] pci 0000:ff:0b.3: [8086:0e1f] type 00 class 0x088000
[    1.070878] pci 0000:ff:0c.0: [8086:0ee0] type 00 class 0x088000
[    1.070886] pci 0000:ff:0c.1: [8086:0ee2] type 00 class 0x088000
[    1.071817] pci 0000:ff:0c.2: [8086:0ee4] type 00 class 0x088000
[    1.071838] pci 0000:ff:0c.3: [8086:0ee6] type 00 class 0x088000
[    1.071838] pci 0000:ff:0c.4: [8086:0ee8] type 00 class 0x088000
[    1.071838] pci 0000:ff:0d.0: [8086:0ee1] type 00 class 0x088000
[    1.071838] pci 0000:ff:0d.1: [8086:0ee3] type 00 class 0x088000
[    1.071893] pci 0000:ff:0d.2: [8086:0ee5] type 00 class 0x088000
[    1.071893] pci 0000:ff:0d.3: [8086:0ee7] type 00 class 0x088000
[    1.071893] pci 0000:ff:0d.4: [8086:0ee9] type 00 class 0x088000
[    1.071893] pci 0000:ff:0e.0: [8086:0ea0] type 00 class 0x088000
[    1.071893] pci 0000:ff:0e.1: [8086:0e30] type 00 class 0x110100
[    1.071893] pci 0000:ff:0f.0: [8086:0ea8] type 00 class 0x088000
[    1.071893] pci 0000:ff:0f.1: [8086:0e71] type 00 class 0x088000
[    1.071893] pci 0000:ff:0f.2: [8086:0eaa] type 00 class 0x088000
[    1.071893] pci 0000:ff:0f.3: [8086:0eab] type 00 class 0x088000
[    1.071893] pci 0000:ff:0f.4: [8086:0eac] type 00 class 0x088000
[    1.071893] pci 0000:ff:0f.5: [8086:0ead] type 00 class 0x088000
[    1.071893] pci 0000:ff:10.0: [8086:0eb0] type 00 class 0x088000
[    1.071915] pci 0000:ff:10.1: [8086:0eb1] type 00 class 0x088000
[    1.072811] pci 0000:ff:10.2: [8086:0eb2] type 00 class 0x088000
[    1.072819] pci 0000:ff:10.3: [8086:0eb3] type 00 class 0x088000
[    1.072835] pci 0000:ff:10.4: [8086:0eb4] type 00 class 0x088000
[    1.072835] pci 0000:ff:10.5: [8086:0eb5] type 00 class 0x088000
[    1.072856] pci 0000:ff:10.6: [8086:0eb6] type 00 class 0x088000
[    1.072856] pci 0000:ff:10.7: [8086:0eb7] type 00 class 0x088000
[    1.072857] pci 0000:ff:13.0: [8086:0e1d] type 00 class 0x088000
[    1.072857] pci 0000:ff:13.1: [8086:0e34] type 00 class 0x110100
[    1.072857] pci 0000:ff:13.4: [8086:0e81] type 00 class 0x088000
[    1.072857] pci 0000:ff:13.5: [8086:0e36] type 00 class 0x110100
[    1.072857] pci 0000:ff:16.0: [8086:0ec8] type 00 class 0x088000
[    1.072857] pci 0000:ff:16.1: [8086:0ec9] type 00 class 0x088000
[    1.072895] pci 0000:ff:16.2: [8086:0eca] type 00 class 0x088000
[    1.072895] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.072895] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.072895] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    1.072919] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    1.072952] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.072985] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.073017] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.073050] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 10 11 12 14 15) *0, disabled.
[    1.075855] iommu: Default domain type: Translated 
[    1.075855] pci 0000:03:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    1.075855] pci 0000:03:00.0: vgaarb: bridge control possible
[    1.075855] pci 0000:03:00.0: vgaarb: setting as boot device
[    1.075855] vgaarb: loaded
[    1.076027] SCSI subsystem initialized
[    1.076052] libata version 3.00 loaded.
[    1.076052] ACPI: bus type USB registered
[    1.076052] usbcore: registered new interface driver usbfs
[    1.076052] usbcore: registered new interface driver hub
[    1.076052] usbcore: registered new device driver usb
[    1.076052] pps_core: LinuxPPS API ver. 1 registered
[    1.076052] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.076052] PTP clock support registered
[    1.076052] Registered efivars operations
[    1.076052] PCI: Using ACPI for IRQ routing
[    1.079614] PCI: pci_cache_line_size set to 64 bytes
[    1.080098] e820: reserve RAM buffer [mem 0x7b05f000-0x7bffffff]
[    1.080100] e820: reserve RAM buffer [mem 0x7b8e8000-0x7bffffff]
[    1.080911] clocksource: Switched to clocksource hpet
[    1.081039] VFS: Disk quotas dquot_6.6.0
[    1.081061] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.081129] pnp: PnP ACPI init
[    1.081227] system 00:00: [mem 0xfc000000-0xfcffffff] has been reserved
[    1.081228] system 00:00: [mem 0xfd000000-0xfdffffff] has been reserved
[    1.081229] system 00:00: [mem 0xfe000000-0xfeafffff] has been reserved
[    1.081231] system 00:00: [mem 0xfeb00000-0xfebfffff] has been reserved
[    1.081232] system 00:00: [mem 0xfed00400-0xfed3ffff] could not be reserved
[    1.081233] system 00:00: [mem 0xfed45000-0xfedfffff] has been reserved
[    1.081234] system 00:00: [mem 0xfee00000-0xfeefffff] has been reserved
[    1.081240] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.081356] system 00:01: [mem 0xc7ffc000-0xc7ffdfff] could not be reserved
[    1.081360] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.081433] system 00:02: [io  0x0a00-0x0a0f] has been reserved
[    1.081434] system 00:02: [io  0x0a10-0x0a1f] has been reserved
[    1.081435] system 00:02: [io  0x0a20-0x0a2f] has been reserved
[    1.081440] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.081475] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    1.081516] pnp 00:04: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    1.081604] pnp 00:05: Plug and Play ACPI device, IDs PNP0b00 (active)
[    1.081720] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    1.081724] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.081883] system 00:07: [io  0x0400-0x0453] has been reserved
[    1.081885] system 00:07: [io  0x0458-0x047f] has been reserved
[    1.081886] system 00:07: [io  0x1180-0x119f] has been reserved
[    1.081887] system 00:07: [io  0x0500-0x057f] has been reserved
[    1.081889] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    1.081890] system 00:07: [mem 0xfec00000-0xfecfffff] could not be reserved
[    1.081892] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[    1.081896] system 00:07: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.082009] system 00:08: [io  0x0454-0x0457] has been reserved
[    1.082022] system 00:08: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    1.082133] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
[    1.082258] system 00:0a: [mem 0xfbffe000-0xfbffffff] could not be reserved
[    1.082262] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
[    1.082456] pnp: PnP ACPI: found 11 devices
[    1.088534] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    1.088578] NET: Registered protocol family 2
[    1.089088] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.090983] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    1.091135] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    1.091709] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    1.091857] TCP: Hash tables configured (established 524288 bind 65536)
[    1.092452] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
[    1.092649] UDP hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    1.092956] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    1.093547] NET: Registered protocol family 1
[    1.093574] pci 0000:00:01.0: PCI bridge to [bus 01]
[    1.093583] pci 0000:00:01.1: PCI bridge to [bus 02]
[    1.093591] pci 0000:00:02.0: PCI bridge to [bus 03]
[    1.093593] pci 0000:00:02.0:   bridge window [io  0x6000-0x6fff]
[    1.093597] pci 0000:00:02.0:   bridge window [mem 0xc6000000-0xc70fffff]
[    1.093599] pci 0000:00:02.0:   bridge window [mem 0xb0000000-0xc20fffff 64bit pref]
[    1.093603] pci 0000:00:02.1: PCI bridge to [bus 04]
[    1.093610] pci 0000:00:02.2: PCI bridge to [bus 05]
[    1.093618] pci 0000:00:02.3: PCI bridge to [bus 06]
[    1.093625] pci 0000:00:03.0: PCI bridge to [bus 07]
[    1.093633] pci 0000:00:03.1: PCI bridge to [bus 08]
[    1.093640] pci 0000:00:03.2: PCI bridge to [bus 09]
[    1.093648] pci 0000:00:03.3: PCI bridge to [bus 0a]
[    1.093656] pci 0000:00:11.0: PCI bridge to [bus 0b]
[    1.093667] pci 0000:00:1c.0: PCI bridge to [bus 0c]
[    1.093676] pci 0000:00:1c.1: PCI bridge to [bus 0d]
[    1.093678] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
[    1.093682] pci 0000:00:1c.1:   bridge window [mem 0xc7300000-0xc73fffff]
[    1.093689] pci 0000:00:1c.2: PCI bridge to [bus 0e]
[    1.093693] pci 0000:00:1c.2:   bridge window [mem 0xc7200000-0xc72fffff]
[    1.093700] pci 0000:00:1c.4: PCI bridge to [bus 0f]
[    1.093702] pci 0000:00:1c.4:   bridge window [io  0x4000-0x4fff]
[    1.093705] pci 0000:00:1c.4:   bridge window [mem 0xc7100000-0xc71fffff]
[    1.093712] pci 0000:00:1e.0: PCI bridge to [bus 10]
[    1.093721] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    1.093722] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    1.093723] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    1.093724] pci_bus 0000:00: resource 7 [io  0x0d00-0x7fff window]
[    1.093725] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.093726] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    1.093727] pci_bus 0000:00: resource 10 [mem 0x90000000-0xc7ffffff window]
[    1.093728] pci_bus 0000:00: resource 11 [mem 0x2080000000-0x381fffffffff window]
[    1.093729] pci_bus 0000:03: resource 0 [io  0x6000-0x6fff]
[    1.093730] pci_bus 0000:03: resource 1 [mem 0xc6000000-0xc70fffff]
[    1.093731] pci_bus 0000:03: resource 2 [mem 0xb0000000-0xc20fffff 64bit pref]
[    1.093732] pci_bus 0000:0d: resource 0 [io  0x5000-0x5fff]
[    1.093733] pci_bus 0000:0d: resource 1 [mem 0xc7300000-0xc73fffff]
[    1.093734] pci_bus 0000:0e: resource 1 [mem 0xc7200000-0xc72fffff]
[    1.093735] pci_bus 0000:0f: resource 0 [io  0x4000-0x4fff]
[    1.093736] pci_bus 0000:0f: resource 1 [mem 0xc7100000-0xc71fffff]
[    1.093737] pci_bus 0000:10: resource 4 [io  0x0000-0x03af window]
[    1.093738] pci_bus 0000:10: resource 5 [io  0x03e0-0x0cf7 window]
[    1.093738] pci_bus 0000:10: resource 6 [io  0x03b0-0x03df window]
[    1.093739] pci_bus 0000:10: resource 7 [io  0x0d00-0x7fff window]
[    1.093740] pci_bus 0000:10: resource 8 [mem 0x000a0000-0x000bffff window]
[    1.093741] pci_bus 0000:10: resource 9 [mem 0x000c0000-0x000dffff window]
[    1.093742] pci_bus 0000:10: resource 10 [mem 0x90000000-0xc7ffffff window]
[    1.093743] pci_bus 0000:10: resource 11 [mem 0x2080000000-0x381fffffffff window]
[    1.093796] pci 0000:80:00.0: PCI bridge to [bus 81]
[    1.093811] pci 0000:80:01.0: PCI bridge to [bus 82]
[    1.093815] pci 0000:80:01.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    1.093821] pci 0000:80:01.1: PCI bridge to [bus 83]
[    1.093829] pci 0000:80:02.0: PCI bridge to [bus 84]
[    1.093833] pci 0000:80:02.0:   bridge window [mem 0xfbd00000-0xfbdfffff]
[    1.093838] pci 0000:80:02.1: PCI bridge to [bus 85]
[    1.093855] pci 0000:80:02.2: PCI bridge to [bus 86]
[    1.093863] pci 0000:80:02.3: PCI bridge to [bus 87]
[    1.093871] pci 0000:80:03.0: PCI bridge to [bus 88]
[    1.093879] pci 0000:80:03.1: PCI bridge to [bus 89]
[    1.093887] pci 0000:80:03.2: PCI bridge to [bus 8a]
[    1.093895] pci 0000:80:03.3: PCI bridge to [bus 8b]
[    1.093903] pci_bus 0000:80: resource 4 [io  0x8000-0xffff window]
[    1.093904] pci_bus 0000:80: resource 5 [mem 0xc8000000-0xfbffffff window]
[    1.093905] pci_bus 0000:80: resource 6 [mem 0x382000000000-0x383fffffffff window]
[    1.093906] pci_bus 0000:82: resource 1 [mem 0xfbe00000-0xfbefffff]
[    1.093907] pci_bus 0000:84: resource 1 [mem 0xfbd00000-0xfbdfffff]
[    1.093968] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
[    1.094335] pci 0000:03:00.1: D0 power state depends on 0000:03:00.0
[    1.094387] pci 0000:03:00.2: D0 power state depends on 0000:03:00.0
[    1.094571] pci 0000:03:00.3: D0 power state depends on 0000:03:00.0
[    1.094834] pci 0000:80:05.0: disabled boot interrupts on device [8086:0e28]
[    1.095106] PCI: CLS 64 bytes, default 64
[    1.095150] Trying to unpack rootfs image as initramfs...
[    1.380840] Freeing initrd memory: 62316K
[    1.381444] DMAR: dmar0: Using Queued invalidation
[    1.381450] DMAR: dmar1: Using Queued invalidation
[    1.381587] pci 0000:00:00.0: Adding to iommu group 0
[    1.381621] pci 0000:00:01.0: Adding to iommu group 1
[    1.381655] pci 0000:00:01.1: Adding to iommu group 2
[    1.381683] pci 0000:00:02.0: Adding to iommu group 3
[    1.381726] pci 0000:00:02.1: Adding to iommu group 4
[    1.381756] pci 0000:00:02.2: Adding to iommu group 5
[    1.381785] pci 0000:00:02.3: Adding to iommu group 6
[    1.381823] pci 0000:00:03.0: Adding to iommu group 7
[    1.381856] pci 0000:00:03.1: Adding to iommu group 8
[    1.381886] pci 0000:00:03.2: Adding to iommu group 9
[    1.381916] pci 0000:00:03.3: Adding to iommu group 10
[    1.381943] pci 0000:00:04.0: Adding to iommu group 11
[    1.381975] pci 0000:00:04.1: Adding to iommu group 12
[    1.382003] pci 0000:00:04.2: Adding to iommu group 13
[    1.382030] pci 0000:00:04.3: Adding to iommu group 14
[    1.382057] pci 0000:00:04.4: Adding to iommu group 15
[    1.382090] pci 0000:00:04.5: Adding to iommu group 16
[    1.382118] pci 0000:00:04.6: Adding to iommu group 17
[    1.382145] pci 0000:00:04.7: Adding to iommu group 18
[    1.382172] pci 0000:00:05.0: Adding to iommu group 19
[    1.382203] pci 0000:00:05.2: Adding to iommu group 20
[    1.382232] pci 0000:00:05.4: Adding to iommu group 21
[    1.382265] pci 0000:00:06.0: Adding to iommu group 22
[    1.382293] pci 0000:00:06.1: Adding to iommu group 23
[    1.382325] pci 0000:00:06.2: Adding to iommu group 24
[    1.382353] pci 0000:00:06.3: Adding to iommu group 25
[    1.382381] pci 0000:00:06.4: Adding to iommu group 26
[    1.382408] pci 0000:00:06.5: Adding to iommu group 27
[    1.382440] pci 0000:00:06.6: Adding to iommu group 28
[    1.382467] pci 0000:00:06.7: Adding to iommu group 29
[    1.382495] pci 0000:00:07.0: Adding to iommu group 30
[    1.382523] pci 0000:00:07.1: Adding to iommu group 31
[    1.382555] pci 0000:00:07.2: Adding to iommu group 32
[    1.382583] pci 0000:00:07.3: Adding to iommu group 33
[    1.382610] pci 0000:00:07.4: Adding to iommu group 34
[    1.382637] pci 0000:00:11.0: Adding to iommu group 35
[    1.382691] pci 0000:00:16.0: Adding to iommu group 36
[    1.382719] pci 0000:00:1a.0: Adding to iommu group 37
[    1.382746] pci 0000:00:1b.0: Adding to iommu group 38
[    1.382774] pci 0000:00:1c.0: Adding to iommu group 39
[    1.382815] pci 0000:00:1c.1: Adding to iommu group 40
[    1.382844] pci 0000:00:1c.2: Adding to iommu group 41
[    1.382872] pci 0000:00:1c.4: Adding to iommu group 42
[    1.382900] pci 0000:00:1d.0: Adding to iommu group 43
[    1.382931] pci 0000:00:1e.0: Adding to iommu group 44
[    1.383030] pci 0000:00:1f.0: Adding to iommu group 45
[    1.383062] pci 0000:00:1f.2: Adding to iommu group 45
[    1.383094] pci 0000:00:1f.3: Adding to iommu group 45
[    1.383213] pci 0000:03:00.0: Adding to iommu group 46
[    1.383246] pci 0000:03:00.1: Adding to iommu group 46
[    1.383287] pci 0000:03:00.2: Adding to iommu group 46
[    1.383320] pci 0000:03:00.3: Adding to iommu group 46
[    1.383347] pci 0000:0d:00.0: Adding to iommu group 47
[    1.383374] pci 0000:0e:00.0: Adding to iommu group 48
[    1.383401] pci 0000:0f:00.0: Adding to iommu group 49
[    1.383481] pci 0000:7f:08.0: Adding to iommu group 50
[    1.383513] pci 0000:7f:08.2: Adding to iommu group 50
[    1.383540] pci 0000:7f:08.3: Adding to iommu group 51
[    1.383568] pci 0000:7f:08.4: Adding to iommu group 52
[    1.383599] pci 0000:7f:08.5: Adding to iommu group 53
[    1.383633] pci 0000:7f:08.6: Adding to iommu group 54
[    1.383660] pci 0000:7f:08.7: Adding to iommu group 55
[    1.383735] pci 0000:7f:09.0: Adding to iommu group 56
[    1.383772] pci 0000:7f:09.2: Adding to iommu group 56
[    1.383812] pci 0000:7f:09.3: Adding to iommu group 57
[    1.383841] pci 0000:7f:09.4: Adding to iommu group 58
[    1.383868] pci 0000:7f:09.5: Adding to iommu group 59
[    1.383896] pci 0000:7f:09.6: Adding to iommu group 60
[    1.384021] pci 0000:7f:0a.0: Adding to iommu group 61
[    1.384059] pci 0000:7f:0a.1: Adding to iommu group 61
[    1.384093] pci 0000:7f:0a.2: Adding to iommu group 61
[    1.384130] pci 0000:7f:0a.3: Adding to iommu group 61
[    1.384202] pci 0000:7f:0b.0: Adding to iommu group 62
[    1.384239] pci 0000:7f:0b.3: Adding to iommu group 62
[    1.384386] pci 0000:7f:0c.0: Adding to iommu group 63
[    1.384424] pci 0000:7f:0c.1: Adding to iommu group 63
[    1.384459] pci 0000:7f:0c.2: Adding to iommu group 63
[    1.384495] pci 0000:7f:0c.3: Adding to iommu group 63
[    1.384531] pci 0000:7f:0c.4: Adding to iommu group 63
[    1.384673] pci 0000:7f:0d.0: Adding to iommu group 64
[    1.384714] pci 0000:7f:0d.1: Adding to iommu group 64
[    1.384752] pci 0000:7f:0d.2: Adding to iommu group 64
[    1.384789] pci 0000:7f:0d.3: Adding to iommu group 64
[    1.384834] pci 0000:7f:0d.4: Adding to iommu group 64
[    1.384913] pci 0000:7f:0e.0: Adding to iommu group 65
[    1.384953] pci 0000:7f:0e.1: Adding to iommu group 65
[    1.384986] pci 0000:7f:0f.0: Adding to iommu group 66
[    1.385014] pci 0000:7f:0f.1: Adding to iommu group 67
[    1.385041] pci 0000:7f:0f.2: Adding to iommu group 68
[    1.385068] pci 0000:7f:0f.3: Adding to iommu group 69
[    1.385099] pci 0000:7f:0f.4: Adding to iommu group 70
[    1.385126] pci 0000:7f:0f.5: Adding to iommu group 71
[    1.385154] pci 0000:7f:10.0: Adding to iommu group 72
[    1.385181] pci 0000:7f:10.1: Adding to iommu group 73
[    1.385212] pci 0000:7f:10.2: Adding to iommu group 74
[    1.385240] pci 0000:7f:10.3: Adding to iommu group 75
[    1.385267] pci 0000:7f:10.4: Adding to iommu group 76
[    1.385294] pci 0000:7f:10.5: Adding to iommu group 77
[    1.385325] pci 0000:7f:10.6: Adding to iommu group 78
[    1.385353] pci 0000:7f:10.7: Adding to iommu group 79
[    1.385473] pci 0000:7f:13.0: Adding to iommu group 80
[    1.385510] pci 0000:7f:13.1: Adding to iommu group 80
[    1.385550] pci 0000:7f:13.4: Adding to iommu group 80
[    1.385591] pci 0000:7f:13.5: Adding to iommu group 80
[    1.385691] pci 0000:7f:16.0: Adding to iommu group 81
[    1.385734] pci 0000:7f:16.1: Adding to iommu group 81
[    1.385775] pci 0000:7f:16.2: Adding to iommu group 81
[    1.385808] pci 0000:80:00.0: Adding to iommu group 82
[    1.385837] pci 0000:80:01.0: Adding to iommu group 83
[    1.385871] pci 0000:80:01.1: Adding to iommu group 84
[    1.385901] pci 0000:80:02.0: Adding to iommu group 85
[    1.385935] pci 0000:80:02.1: Adding to iommu group 86
[    1.385964] pci 0000:80:02.2: Adding to iommu group 87
[    1.385999] pci 0000:80:02.3: Adding to iommu group 88
[    1.386028] pci 0000:80:03.0: Adding to iommu group 89
[    1.386057] pci 0000:80:03.1: Adding to iommu group 90
[    1.386086] pci 0000:80:03.2: Adding to iommu group 91
[    1.386119] pci 0000:80:03.3: Adding to iommu group 92
[    1.386147] pci 0000:80:04.0: Adding to iommu group 93
[    1.386174] pci 0000:80:04.1: Adding to iommu group 94
[    1.386201] pci 0000:80:04.2: Adding to iommu group 95
[    1.386233] pci 0000:80:04.3: Adding to iommu group 96
[    1.386260] pci 0000:80:04.4: Adding to iommu group 97
[    1.386288] pci 0000:80:04.5: Adding to iommu group 98
[    1.386315] pci 0000:80:04.6: Adding to iommu group 99
[    1.386347] pci 0000:80:04.7: Adding to iommu group 100
[    1.386375] pci 0000:80:05.0: Adding to iommu group 101
[    1.386403] pci 0000:80:05.2: Adding to iommu group 102
[    1.386430] pci 0000:80:05.4: Adding to iommu group 103
[    1.386462] pci 0000:80:06.0: Adding to iommu group 104
[    1.386490] pci 0000:80:06.1: Adding to iommu group 105
[    1.386517] pci 0000:80:06.2: Adding to iommu group 106
[    1.386544] pci 0000:80:06.3: Adding to iommu group 107
[    1.386576] pci 0000:80:06.4: Adding to iommu group 108
[    1.386603] pci 0000:80:06.5: Adding to iommu group 109
[    1.386630] pci 0000:80:06.6: Adding to iommu group 110
[    1.386657] pci 0000:80:06.7: Adding to iommu group 111
[    1.386690] pci 0000:80:07.0: Adding to iommu group 112
[    1.386717] pci 0000:80:07.1: Adding to iommu group 113
[    1.386744] pci 0000:80:07.2: Adding to iommu group 114
[    1.386774] pci 0000:80:07.3: Adding to iommu group 115
[    1.386814] pci 0000:80:07.4: Adding to iommu group 116
[    1.386843] pci 0000:82:00.0: Adding to iommu group 117
[    1.386879] pci 0000:84:00.0: Adding to iommu group 118
[    1.386952] pci 0000:ff:08.0: Adding to iommu group 119
[    1.387003] pci 0000:ff:08.2: Adding to iommu group 119
[    1.387031] pci 0000:ff:08.3: Adding to iommu group 120
[    1.387063] pci 0000:ff:08.4: Adding to iommu group 121
[    1.387090] pci 0000:ff:08.5: Adding to iommu group 122
[    1.387122] pci 0000:ff:08.6: Adding to iommu group 123
[    1.387150] pci 0000:ff:08.7: Adding to iommu group 124
[    1.387222] pci 0000:ff:09.0: Adding to iommu group 125
[    1.387270] pci 0000:ff:09.2: Adding to iommu group 125
[    1.387297] pci 0000:ff:09.3: Adding to iommu group 126
[    1.387330] pci 0000:ff:09.4: Adding to iommu group 127
[    1.387357] pci 0000:ff:09.5: Adding to iommu group 128
[    1.387384] pci 0000:ff:09.6: Adding to iommu group 129
[    1.387502] pci 0000:ff:0a.0: Adding to iommu group 130
[    1.387554] pci 0000:ff:0a.1: Adding to iommu group 130
[    1.387602] pci 0000:ff:0a.2: Adding to iommu group 130
[    1.387650] pci 0000:ff:0a.3: Adding to iommu group 130
[    1.387724] pci 0000:ff:0b.0: Adding to iommu group 131
[    1.387772] pci 0000:ff:0b.3: Adding to iommu group 131
[    1.387920] pci 0000:ff:0c.0: Adding to iommu group 132
[    1.387972] pci 0000:ff:0c.1: Adding to iommu group 132
[    1.388022] pci 0000:ff:0c.2: Adding to iommu group 132
[    1.388070] pci 0000:ff:0c.3: Adding to iommu group 132
[    1.388119] pci 0000:ff:0c.4: Adding to iommu group 132
[    1.388256] pci 0000:ff:0d.0: Adding to iommu group 133
[    1.388305] pci 0000:ff:0d.1: Adding to iommu group 133
[    1.388361] pci 0000:ff:0d.2: Adding to iommu group 133
[    1.388415] pci 0000:ff:0d.3: Adding to iommu group 133
[    1.388462] pci 0000:ff:0d.4: Adding to iommu group 133
[    1.388537] pci 0000:ff:0e.0: Adding to iommu group 134
[    1.388584] pci 0000:ff:0e.1: Adding to iommu group 134
[    1.388613] pci 0000:ff:0f.0: Adding to iommu group 135
[    1.388644] pci 0000:ff:0f.1: Adding to iommu group 136
[    1.388672] pci 0000:ff:0f.2: Adding to iommu group 137
[    1.388699] pci 0000:ff:0f.3: Adding to iommu group 138
[    1.388726] pci 0000:ff:0f.4: Adding to iommu group 139
[    1.388759] pci 0000:ff:0f.5: Adding to iommu group 140
[    1.388787] pci 0000:ff:10.0: Adding to iommu group 141
[    1.388821] pci 0000:ff:10.1: Adding to iommu group 142
[    1.388848] pci 0000:ff:10.2: Adding to iommu group 143
[    1.388882] pci 0000:ff:10.3: Adding to iommu group 144
[    1.388910] pci 0000:ff:10.4: Adding to iommu group 145
[    1.388942] pci 0000:ff:10.5: Adding to iommu group 146
[    1.388970] pci 0000:ff:10.6: Adding to iommu group 147
[    1.389001] pci 0000:ff:10.7: Adding to iommu group 148
[    1.389123] pci 0000:ff:13.0: Adding to iommu group 149
[    1.389175] pci 0000:ff:13.1: Adding to iommu group 149
[    1.389223] pci 0000:ff:13.4: Adding to iommu group 149
[    1.389277] pci 0000:ff:13.5: Adding to iommu group 149
[    1.389381] pci 0000:ff:16.0: Adding to iommu group 150
[    1.389438] pci 0000:ff:16.1: Adding to iommu group 150
[    1.389491] pci 0000:ff:16.2: Adding to iommu group 150
[    1.447104] DMAR: Intel(R) Virtualization Technology for Directed I/O
[    1.447108] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.447111] software IO TLB: mapped [mem 0x0000000074f15000-0x0000000078f15000] (64MB)
[    1.447793] RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
[    1.447794] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    1.447795] RAPL PMU: hw unit of domain package 2^-16 Joules
[    1.451285] Initialise system trusted keyrings
[    1.451332] workingset: timestamp_bits=40 max_order=25 bucket_order=0
[    1.452465] zbud: loaded
[    1.461385] Key type asymmetric registered
[    1.461387] Asymmetric key parser 'x509' registered
[    1.461417] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[    1.461550] io scheduler mq-deadline registered
[    1.461551] io scheduler kyber registered
[    1.461573] io scheduler bfq registered
[    1.466559] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    1.466572] efifb: probing for efifb
[    1.466606] efifb: framebuffer at 0xb0000000, using 2432k, total 2432k
[    1.466607] efifb: mode is 800x600x32, linelength=4096, pages=1
[    1.466608] efifb: scrolling: redraw
[    1.466609] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.466702] Console: switching to colour frame buffer device 100x37
[    1.467488] fb0: EFI VGA frame buffer device
[    1.467499] intel_idle: MWAIT substates: 0x1120
[    1.467560] Monitor-Mwait will be used to enter C-1 state
[    1.467577] Monitor-Mwait will be used to enter C-2 state
[    1.467583] ACPI: \_SB_.SCK0.C002: Found 2 idle states
[    1.467584] intel_idle: v0.5.1 model 0x3E
[    1.468973] intel_idle: Local APIC timer is reliable in all C-states
[    1.494378] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
[    1.495666] lp: driver loaded but no devices found
[    1.495668] Linux agpgart interface v0.103
[    1.566905] loop: module loaded
[    1.567281] nvme nvme0: pci function 0000:82:00.0
[    1.567329] nvme nvme1: pci function 0000:84:00.0
[    1.567379] ahci 0000:00:1f.2: version 3.0
[    1.568520] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    1.568537] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x1 impl SATA mode
[    1.568539] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag led clo pio slum part ems sxs apst 
[    1.568971] scsi host0: ahci
[    1.569115] scsi host1: ahci
[    1.569250] scsi host2: ahci
[    1.569376] scsi host3: ahci
[    1.569512] scsi host4: ahci
[    1.569683] scsi host5: ahci
[    1.569749] ata1: SATA max UDMA/133 abar m2048@0xc7400000 port 0xc7400100 irq 52
[    1.569751] ata2: DUMMY
[    1.569751] ata3: DUMMY
[    1.569752] ata4: DUMMY
[    1.569753] ata5: DUMMY
[    1.569754] ata6: DUMMY
[    1.569935] PPP generic driver version 2.4.2
[    1.570018] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.570019] ehci-pci: EHCI PCI platform driver
[    1.570232] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.570265] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.570277] ehci-pci 0000:00:1a.0: debug port 2
[    1.572838] nvme nvme1: missing or invalid SUBNQN field.
[    1.574195] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.574219] ehci-pci 0000:00:1a.0: irq 16, io mem 0xc7402000
[    1.577344] nvme nvme1: 15/0/0 default/read/poll queues
[    1.578713] nvme nvme0: 16/0/0 default/read/poll queues
[    1.580376]  nvme1n1: p1 p2
[    1.580820] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.580853] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    1.580854] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.580855] usb usb1: Product: EHCI Host Controller
[    1.580856] usb usb1: Manufacturer: Linux 5.10.73-calculate ehci_hcd
[    1.580857] usb usb1: SerialNumber: 0000:00:1a.0
[    1.580947] hub 1-0:1.0: USB hub found
[    1.580953] hub 1-0:1.0: 2 ports detected
[    1.581192] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.581253] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.581264] ehci-pci 0000:00:1d.0: debug port 2
[    1.585181] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.585197] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc7401000
[    1.591871] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.591900] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    1.591901] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.591902] usb usb2: Product: EHCI Host Controller
[    1.591903] usb usb2: Manufacturer: Linux 5.10.73-calculate ehci_hcd
[    1.591904] usb usb2: SerialNumber: 0000:00:1d.0
[    1.591990] hub 2-0:1.0: USB hub found
[    1.591995] hub 2-0:1.0: 2 ports detected
[    1.592133] ehci-platform: EHCI generic platform driver
[    1.592163] usbcore: registered new interface driver usb-storage
[    1.592206] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    1.594539] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.594542] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.594659] mousedev: PS/2 mouse device common for all mice
[    1.594702] rtc_cmos 00:05: RTC can wake from S4
[    1.594935] rtc_cmos 00:05: registered as rtc0
[    1.595000] rtc_cmos 00:05: setting system clock to 2021-10-17T05:21:53 UTC (1634448113)
[    1.595016] rtc_cmos 00:05: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.595029] intel_pstate: Intel P-state driver initializing
[    1.596795] ledtrig-cpu: registered to indicate activity on CPUs
[    1.596837] hid: raw HID events driver (C) Jiri Kosina
[    1.596966] usbcore: registered new interface driver usbhid
[    1.596967] usbhid: USB HID core driver
[    1.597245] NET: Registered protocol family 10
[    1.602011] Segment Routing with IPv6
[    1.602013] RPL Segment Routing with IPv6
[    1.602034] NET: Registered protocol family 17
[    1.602092] Key type dns_resolver registered
[    1.604665] microcode: sig=0x306e4, pf=0x1, revision=0x428
[    1.604968] microcode: Microcode Update Driver: v2.2.
[    1.604971] IPI shorthand broadcast: enabled
[    1.605014] registered taskstats version 1
[    1.605017] Loading compiled-in X.509 certificates
[    1.619291] zswap: loaded using pool zstd/zbud
[    1.821878] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.829875] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.882126] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.883627] ata1.00: ATA-8: SPCC Solid State Disk, S8FM07.0, max UDMA/133
[    1.883633] ata1.00: 117231408 sectors, multi 16: LBA48 NCQ (depth 32), AA
[    1.884068] ata1.00: configured for UDMA/133
[    1.884481] scsi 0:0:0:0: Direct-Access     ATA      SPCC Solid State 07.0 PQ: 0 ANSI: 5
[    1.885020] sd 0:0:0:0: [sda] 117231408 512-byte logical blocks: (60.0 GB/55.9 GiB)
[    1.885035] sd 0:0:0:0: [sda] Write Protect is off
[    1.885037] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.885057] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.887313]  sda:
[    1.894048] sd 0:0:0:0: [sda] Attached SCSI removable disk
[    1.894599] Freeing unused kernel image (initmem) memory: 1044K
[    1.901924] Write protecting the kernel read-only data: 16384k
[    1.903286] Freeing unused kernel image (text/rodata gap) memory: 2044K
[    1.903992] Freeing unused kernel image (rodata/data gap) memory: 1776K
[    1.904077] rodata_test: all tests were successful
[    1.904097] Run /init as init process
[    1.904099]   with arguments:
[    1.904100]     /init
[    1.904101]     nodevfs
[    1.904102]     splash
[    1.904103]   with environment:
[    1.904105]     HOME=/
[    1.904106]     TERM=linux
[    1.904107]     BOOT_IMAGE=/boot/vmlinuz
[    1.904122]     calculate=lang:ru_RU,keymap:ru_RU,,timezone:Europe/Moscow,,video:modesetting,composite:on
[    1.950319] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    1.950324] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.950765] hub 1-1:1.0: USB hub found
[    1.950902] hub 1-1:1.0: 6 ports detected
[    1.959390] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    1.959392] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.959715] hub 2-1:1.0: USB hub found
[    1.959888] hub 2-1:1.0: 8 ports detected
[    1.990840] raid6: sse2x4   gen()  9575 MB/s
[    2.007826] raid6: sse2x4   xor()  5844 MB/s
[    2.024825] raid6: sse2x2   gen()  6188 MB/s
[    2.041823] raid6: sse2x2   xor()  9156 MB/s
[    2.058825] raid6: sse2x1   gen()  6150 MB/s
[    2.075824] raid6: sse2x1   xor()  8157 MB/s
[    2.075825] raid6: using algorithm sse2x4 gen() 9575 MB/s
[    2.075826] raid6: .... xor() 5844 MB/s, rmw enabled
[    2.075827] raid6: using ssse3x2 recovery algorithm
[    2.076298] xor: automatically using best checksumming function   avx       
[    2.096604] Btrfs loaded, crc32c=crc32c-intel
[    2.213374] dracut: root was live:LABEL=CLD-20211015, is now live:/dev/disk/by-label/CLD-20211015
[    2.227823] usb 1-1.1: new high-speed USB device number 3 using ehci-pci
[    2.237867] usb 2-1.3: new low-speed USB device number 3 using ehci-pci
[    2.275297] Loading iSCSI transport class v2.0-870.
[    2.277466] iscsi: registered transport (tcp)
[    2.282713] iscsi: registered transport (qla4xxx)
[    2.282779] QLogic iSCSI HBA Driver
[    2.284205] libcxgbi:libcxgbi_init_module: Chelsio iSCSI driver library libcxgbi v0.9.1-ko (Apr. 2015)
[    2.287675] Chelsio T3 iSCSI Driver cxgb3i v2.0.1-ko (Apr. 2015)
[    2.287687] iscsi: registered transport (cxgb3i)
[    2.297635] Chelsio T4-T6 iSCSI Driver cxgb4i v0.9.5-ko (Apr. 2015)
[    2.297646] iscsi: registered transport (cxgb4i)
[    2.299072] cnic: QLogic cnicDriver v2.5.22 (July 20, 2015)
[    2.300010] QLogic NetXtreme II iSCSI Driver bnx2i v2.7.10.1 (Jul 16, 2014)
[    2.300025] iscsi: registered transport (bnx2i)
[    2.303261] iscsi: registered transport (be2iscsi)
[    2.303264] In beiscsi_module_init, tt=00000000bef38204
[    2.324068] usb 2-1.3: New USB device found, idVendor=04b4, idProduct=0510, bcdDevice= 2.01
[    2.324086] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.324087] usb 2-1.3: Product: HID Keyboard
[    2.324088] usb 2-1.3: Manufacturer: HID Keyboard
[    2.329061] dracut: ZFS: Using hostid from /etc/hostid: 007f0100
[    2.333200] input: HID Keyboard HID Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/0003:04B4:0510.0001/input/input3
[    2.365885] dracut: TuxOnIce premodule started
[    2.365963] dracut: Kernel has no tuxonice support, aborting
[    2.379504] RPC: Registered named UNIX socket transport module.
[    2.379506] RPC: Registered udp transport module.
[    2.379506] RPC: Registered tcp transport module.
[    2.379507] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    2.385047] hid-generic 0003:04B4:0510.0001: input,hidraw0: USB HID v1.11 Keyboard [HID Keyboard HID Keyboard] on usb-0000:00:1d.0-1.3/input0
[    2.395421] input: HID Keyboard HID Keyboard as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/0003:04B4:0510.0002/input/input4
[    2.419855] systemd-udevd[2158]: starting version 3.2.10
[    2.421712] udevd[2159]: starting eudev-3.2.10
[    2.446963] input: HID Keyboard HID Keyboard Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.1/0003:04B4:0510.0002/input/input5
[    2.447099] hid-generic 0003:04B4:0510.0002: input,hidraw1: USB HID v1.11 Keyboard [HID Keyboard HID Keyboard] on usb-0000:00:1d.0-1.3/input1
[    2.450524] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6
[    2.454833] ACPI: Power Button [PWRB]
[    2.454904] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input7
[    2.454963] ACPI: Power Button [PWRF]
[    2.511880] usb 2-1.4: new full-speed USB device number 4 using ehci-pci
[    2.514532] checking generic (b0000000 260000) vs hw (c6000000 1000000)
[    2.514535] checking generic (b0000000 260000) vs hw (b0000000 10000000)
[    2.514536] fb0: switching to nouveaufb from EFI VGA
[    2.514610] Console: switching to colour dummy device 80x25
[    2.514649] nouveau 0000:03:00.0: vgaarb: deactivate vga console
[    2.514866] nouveau 0000:03:00.0: NVIDIA TU116 (168000a1)
[    2.584691] nouveau 0000:03:00.0: bios: version 90.16.42.00.c2
[    2.585020] nouveau 0000:03:00.0: pmu: firmware unavailable
[    2.585641] nouveau 0000:03:00.0: fb: 6144 MiB GDDR6
[    2.601530] [TTM] Zone  kernel: Available graphics memory: 65928230 KiB
[    2.601540] [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
[    2.601541] [TTM] Initializing pool allocator
[    2.601544] [TTM] Initializing DMA pool allocator
[    2.601555] nouveau 0000:03:00.0: DRM: VRAM: 6144 MiB
[    2.601556] nouveau 0000:03:00.0: DRM: GART: 536870912 MiB
[    2.601557] nouveau 0000:03:00.0: DRM: BIT table 'A' not found
[    2.601558] nouveau 0000:03:00.0: DRM: BIT table 'L' not found
[    2.601559] nouveau 0000:03:00.0: DRM: TMDS table version 2.0
[    2.601560] nouveau 0000:03:00.0: DRM: DCB version 4.1
[    2.601562] nouveau 0000:03:00.0: DRM: DCB outp 00: 02800f66 04600020
[    2.601563] nouveau 0000:03:00.0: DRM: DCB outp 01: 02000f62 04620020
[    2.601564] nouveau 0000:03:00.0: DRM: DCB outp 03: 02011f52 00020010
[    2.601566] nouveau 0000:03:00.0: DRM: DCB outp 07: 01044f32 04620030
[    2.601567] nouveau 0000:03:00.0: DRM: DCB conn 00: 00020046
[    2.601568] nouveau 0000:03:00.0: DRM: DCB conn 01: 00010161
[    2.601569] nouveau 0000:03:00.0: DRM: DCB conn 04: 00001431
[    2.601953] nouveau 0000:03:00.0: DRM: MM: using COPY for buffer copies
[    2.616776] usb 2-1.4: New USB device found, idVendor=0a12, idProduct=0001, bcdDevice=52.76
[    2.616781] usb 2-1.4: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.815514] usb 1-1.1: New USB device found, idVendor=13fe, idProduct=6700, bcdDevice= 1.10
[    2.815519] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.815522] usb 1-1.1: Product: USB DISK 3.2
[    2.815524] usb 1-1.1: Manufacturer: Wilk
[    2.815526] usb 1-1.1: SerialNumber: 0718182B11F3F536
[    2.815964] usb-storage 1-1.1:1.0: USB Mass Storage device detected
[    2.816247] scsi host6: usb-storage 1-1.1:1.0
[    2.818246] usbcore: registered new interface driver uas
[    2.880821] usb 1-1.2: new low-speed USB device number 4 using ehci-pci
[    2.964212] usb 1-1.2: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[    2.964214] usb 1-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.964215] usb 1-1.2: Product: USB Optical Mouse
[    2.964216] usb 1-1.2: Manufacturer: Logitech
[    2.966512] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.2/1-1.2:1.0/0003:046D:C077.0003/input/input8
[    2.966647] hid-generic 0003:046D:C077.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1a.0-1.2/input0
[    3.131147] nouveau 0000:03:00.0: DRM: allocated 1920x1080 fb: 0x200000, bo 00000000002f1f60
[    3.131240] fbcon: nouveaudrmfb (fb0) is primary device
[    3.282198] Console: switching to colour frame buffer device 240x67
[    3.401827] nouveau 0000:03:00.0: [drm] fb0: nouveaudrmfb frame buffer device
[    3.408113] [drm] Initialized nouveau 1.3.1 20120801 for 0000:03:00.0 on minor 0
[    3.418039] dracut: Starting plymouth daemon
[    3.628308] dracut: rd.md=0: removing MD RAID activation
[    3.681554] xhci_hcd 0000:03:00.2: xHCI Host Controller
[    3.681610] dca service started, version 1.12.1
[    3.681639] xhci_hcd 0000:03:00.2: new USB bus registered, assigned bus number 3
[    3.682243] xhci_hcd 0000:03:00.2: hcc params 0x0180ff05 hci version 0x110 quirks 0x0000000000000010
[    3.682463] xhci_hcd 0000:03:00.2: xHCI Host Controller
[    3.682504] xhci_hcd 0000:03:00.2: new USB bus registered, assigned bus number 4
[    3.682507] xhci_hcd 0000:03:00.2: Host supports USB 3.1 Enhanced SuperSpeed
[    3.682545] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    3.682546] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.682547] usb usb3: Product: xHCI Host Controller
[    3.682548] usb usb3: Manufacturer: Linux 5.10.73-calculate xhci-hcd
[    3.682549] usb usb3: SerialNumber: 0000:03:00.2
[    3.682637] hub 3-0:1.0: USB hub found
[    3.682644] hub 3-0:1.0: 2 ports detected
[    3.682741] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    3.682757] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    3.682758] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.682759] usb usb4: Product: xHCI Host Controller
[    3.682760] usb usb4: Manufacturer: Linux 5.10.73-calculate xhci-hcd
[    3.682761] usb usb4: SerialNumber: 0000:03:00.2
[    3.682851] hub 4-0:1.0: USB hub found
[    3.682859] hub 4-0:1.0: 4 ports detected
[    3.683061] xhci_hcd 0000:0e:00.0: xHCI Host Controller
[    3.683111] xhci_hcd 0000:0e:00.0: new USB bus registered, assigned bus number 5
[    3.683341] xhci_hcd 0000:0e:00.0: hcc params 0x002841eb hci version 0x100 quirks 0x0000000000000890
[    3.683535] xhci_hcd 0000:0e:00.0: xHCI Host Controller
[    3.683566] xhci_hcd 0000:0e:00.0: new USB bus registered, assigned bus number 6
[    3.683569] xhci_hcd 0000:0e:00.0: Host supports USB 3.0 SuperSpeed
[    3.683592] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    3.683593] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.683594] usb usb5: Product: xHCI Host Controller
[    3.683595] usb usb5: Manufacturer: Linux 5.10.73-calculate xhci-hcd
[    3.683596] usb usb5: SerialNumber: 0000:0e:00.0
[    3.683662] hub 5-0:1.0: USB hub found
[    3.683669] hub 5-0:1.0: 1 port detected
[    3.683752] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    3.683753] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.683754] usb usb6: Product: xHCI Host Controller
[    3.683755] usb usb6: Manufacturer: Linux 5.10.73-calculate xhci-hcd
[    3.683756] usb usb6: SerialNumber: 0000:0e:00.0
[    3.683836] hub 6-0:1.0: USB hub found
[    3.683846] hub 6-0:1.0: 4 ports detected
[    3.684916] igb: Intel(R) Gigabit Ethernet Network Driver
[    3.684917] igb: Copyright (c) 2007-2014 Intel Corporation.
[    3.684965] igb 0000:0d:00.0: enabling device (0140 -> 0142)
[    3.694697] cryptd: max_cpu_qlen set to 1000
[    3.696784] AVX version of gcm_enc/dec engaged.
[    3.696786] AES CTR mode by8 optimization enabled
[    3.712360] pps pps0: new PPS source ptp0
[    3.712408] igb 0000:0d:00.0: added PHC on eth0
[    3.712409] igb 0000:0d:00.0: Intel(R) Gigabit Ethernet Network Connection
[    3.712411] igb 0000:0d:00.0: eth0: (PCIe:2.5Gb/s:Width x1) 00:13:32:08:f8:b2
[    3.712413] igb 0000:0d:00.0: eth0: PBA No: FFFFFF-0FF
[    3.712415] igb 0000:0d:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    3.712464] igb 0000:0f:00.0: enabling device (0140 -> 0142)
[    3.740349] pps pps1: new PPS source ptp1
[    3.740379] igb 0000:0f:00.0: added PHC on eth1
[    3.740380] igb 0000:0f:00.0: Intel(R) Gigabit Ethernet Network Connection
[    3.740382] igb 0000:0f:00.0: eth1: (PCIe:2.5Gb/s:Width x1) 00:13:32:08:f8:b3
[    3.740383] igb 0000:0f:00.0: eth1: PBA No: FFFFFF-0FF
[    3.740384] igb 0000:0f:00.0: Using MSI-X interrupts. 2 rx queue(s), 2 tx queue(s)
[    3.845860] scsi 6:0:0:0: Direct-Access     Wilk     USB DISK 3.2     PMAP PQ: 0 ANSI: 6
[    3.846683] sd 6:0:0:0: [sdb] 242075648 512-byte logical blocks: (124 GB/115 GiB)
[    3.847895] sd 6:0:0:0: [sdb] Write Protect is off
[    3.847897] sd 6:0:0:0: [sdb] Mode Sense: 45 00 00 00
[    3.849147] sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[    3.905969]  sdb: sdb1 sdb2
[    3.919403] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[    3.925851] usb 5-1: new high-speed USB device number 2 using xhci_hcd
[    4.054531] usb 5-1: New USB device found, idVendor=2109, idProduct=3431, bcdDevice= 4.20
[    4.054537] usb 5-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    4.054539] usb 5-1: Product: USB2.0 Hub
[    4.055977] hub 5-1:1.0: USB hub found
[    4.056314] hub 5-1:1.0: 4 ports detected
[    4.403356] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    4.481810] UDF-fs: warning (device sdb1): udf_load_vrs: No anchor found
[    4.481812] UDF-fs: Scanning with blocksize 512 failed
[    4.503597] UDF-fs: warning (device sdb1): udf_load_vrs: No anchor found
[    4.503602] UDF-fs: Scanning with blocksize 1024 failed
[    4.512727] UDF-fs: INFO Mounting volume 'CLD-20211015', timestamp 2021/10/15 15:30 (1000)
[    4.576653] dracut: TuxOnIce lvmfix started
[    4.621252] dracut: TuxOnIce udev should be now fully settled
[    4.669763] dracut: Mounted root filesystem none
[    4.859995] dracut: ZFS: There is an active pool, will export it.
[    4.902511] dracut: Switching root
[    6.161699] udevd[4900]: starting version 3.2.10
[    6.179450] udevd[4900]: starting eudev-3.2.10
[    6.338684] ioatdma: Intel(R) QuickData Technology Driver 5.00
[    6.354924] igb 0000:0d:00.0: DCA enabled
[    6.354935] igb 0000:0f:00.0: DCA enabled
[    6.436146] nvidia-gpu 0000:03:00.3: enabling device (0140 -> 0142)
[    6.436776] i801_smbus 0000:00:1f.3: enabling device (0141 -> 0143)
[    6.436984] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    6.437478] i2c i2c-19: 4/4 memory slots populated (from DMI)
[    6.641353] snd_hda_intel 0000:00:1b.0: enabling device (0140 -> 0142)
[    6.641668] snd_hda_intel 0000:03:00.1: enabling device (0140 -> 0142)
[    6.641710] snd_hda_intel 0000:03:00.1: Disabling MSI
[    6.641730] snd_hda_intel 0000:03:00.1: Handle vga_switcheroo audio client
[    6.647645] Bluetooth: Core ver 2.22
[    6.647662] NET: Registered protocol family 31
[    6.647662] Bluetooth: HCI device and connection manager initialized
[    6.647668] Bluetooth: HCI socket layer initialized
[    6.647670] Bluetooth: L2CAP socket layer initialized
[    6.647673] Bluetooth: SCO socket layer initialized
[    6.733873] usbcore: registered new interface driver btusb
[    6.738698] snd_hda_intel 0000:03:00.1: bound 0000:03:00.0 (ops nouveau_drm_exit [nouveau])
[    6.740266] iTCO_vendor_support: vendor-support=0
[    6.751887] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input9
[    6.751930] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input10
[    6.751972] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input11
[    6.752014] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input12
[    6.752121] input: HDA NVidia HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input13
[    6.752330] input: HDA NVidia HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:02.0/0000:03:00.1/sound/card1/input14
[    6.769532] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    6.769563] iTCO_wdt: Found a Patsburg TCO device (Version=2, TCOBASE=0x0460)
[    6.769665] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    6.770825] EDAC MC: Ver: 3.0.0
[    6.808316] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[    6.808350] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[    6.808376] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
[    6.808381] EDAC sbridge: Seeking for: PCI ID 8086:0e60
[    6.808394] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[    6.808402] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[    6.808409] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
[    6.808411] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[    6.808419] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[    6.808427] EDAC sbridge: Seeking for: PCI ID 8086:0e71
[    6.808428] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[    6.808436] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[    6.808444] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
[    6.808445] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[    6.808453] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[    6.808460] EDAC sbridge: Seeking for: PCI ID 8086:0eab
[    6.808462] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[    6.808470] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[    6.808477] EDAC sbridge: Seeking for: PCI ID 8086:0eac
[    6.808479] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[    6.808487] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[    6.808494] EDAC sbridge: Seeking for: PCI ID 8086:0ead
[    6.808496] EDAC sbridge: Seeking for: PCI ID 8086:0e68
[    6.808509] EDAC sbridge: Seeking for: PCI ID 8086:0e79
[    6.808521] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
[    6.808533] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
[    6.808546] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
[    6.808558] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
[    6.808571] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
[    6.808583] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
[    6.808595] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[    6.808603] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[    6.808611] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
[    6.808612] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[    6.808620] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[    6.808628] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
[    6.808629] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[    6.808637] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[    6.808644] EDAC sbridge: Seeking for: PCI ID 8086:0eca
[    6.808761] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT)
[    6.808901] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:ff:0e.0 (INTERRUPT)
[    6.808902] EDAC sbridge:  Ver: 1.1.2 
[    6.809864] snd_hda_codec_realtek hdaudioC0D2: autoconfig for ALC662 rev3: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[    6.809866] snd_hda_codec_realtek hdaudioC0D2:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    6.809867] snd_hda_codec_realtek hdaudioC0D2:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    6.809868] snd_hda_codec_realtek hdaudioC0D2:    mono: mono_out=0x0
[    6.809869] snd_hda_codec_realtek hdaudioC0D2:    dig-out=0x1e/0x0
[    6.809870] snd_hda_codec_realtek hdaudioC0D2:    inputs:
[    6.809871] snd_hda_codec_realtek hdaudioC0D2:      Front Mic=0x19
[    6.809872] snd_hda_codec_realtek hdaudioC0D2:      Rear Mic=0x18
[    6.809873] snd_hda_codec_realtek hdaudioC0D2:      Line=0x1a
[    6.843577] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[    6.843680] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[    6.843764] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[    6.843874] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
[    6.843959] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card0/input19
[    6.844073] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card0/input20
[    6.844324] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input21
[    7.544824] zram: Added device: zram0
[    7.769854] nvidia-gpu 0000:03:00.3: i2c timeout error e0000000
[    7.769874] ucsi_ccg 18-0008: i2c_transfer failed -110
[    7.769876] ucsi_ccg 18-0008: ucsi_ccg_init failed - -110
[    7.769885] ucsi_ccg: probe of 18-0008 failed with error -110
[    7.858014] zram0: detected capacity change from 0 to 270042030080
[    7.932873] Adding 263712916k swap on /dev/zram0.  Priority:100 extents:1 across:263712916k SSFS
[   24.365070] fuse: init (API version 7.32)
[   24.466034] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   24.466036] Bluetooth: BNEP filters: protocol multicast
[   24.466040] Bluetooth: BNEP socket layer initialized
[   26.874204] Key type encrypted registered
[   27.473355] igb 0000:0d:00.0 eth0: igb: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
[   27.473667] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   41.293178] Bluetooth: RFCOMM TTY layer initialized
[   41.293186] Bluetooth: RFCOMM socket layer initialized
[   41.293191] Bluetooth: RFCOMM ver 1.11
[   41.451924] kmix[8041]: segfault at 0 ip 000055e1f6bf3c9e sp 00007fff95cd6af0 error 4 in kmix[55e1f6be3000+43000]
[   41.451933] Code: e8 e7 03 ff ff 48 85 c0 0f 84 d6 05 00 00 48 8d 7c 24 40 48 89 c6 48 89 c3 e8 1e f9 fe ff 48 8b 7c 24 40 48 8d 15 62 d2 ff ff <48> 8b 07 48 8b 80 b0 00 00 00 48 39 d0 0f 85 27 06 00 00 48 8d 47
Add Comment
Author