ubuntuusers.de

/var/log/ kern.log.2.gz

Autor:
thomas.g
Datum:
19. September 2018 17:27
Code:
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
Aug  7 17:50:29 thomas-MS-7375 gnome-session-binary[5892]: Entering running state
Aug  7 17:50:50 thomas-MS-7375 kernel: [  671.733072] nouveau 0000:07:00.0: DRM: DDC responded, but no EDID for DVI-I-1
Aug  7 17:54:26 thomas-MS-7375 kernel: [  887.866168] systemd: 37 output lines suppressed due to ratelimiting
Aug  7 18:09:32 thomas-MS-7375 kernel: [ 1794.204054] Valid eCryptfs headers not found in file header region or xattr region, inode 47207743
Aug  7 18:11:36 thomas-MS-7375 kernel: [ 1917.557899] Valid eCryptfs headers not found in file header region or xattr region, inode 47207743
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Linux version 4.15.0-30-generic (buildd@lcy01-amd64-003) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10)) #32~16.04.1-Ubuntu SMP Thu Jul 26 20:25:39 UTC 2018 (Ubuntu 4.15.0-30.32~16.04.1-generic 4.15.18)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.15.0-30-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] KERNEL supported cpus:
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   Intel GenuineIntel
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   AMD AuthenticAMD
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   Centaur CentaurHauls
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] x86/fpu: x87 FPU will use FXSAVE
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000aff9ffff] usable
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000affa0000-0x00000000affadfff] ACPI data
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000affae000-0x00000000affeffff] ACPI NVS
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000afff0000-0x00000000afffffff] reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000024fffffff] usable
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] NX (Execute Disable) protection: active
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] SMBIOS 2.5 present.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] DMI: MSI MS-7375/K9N2 Diamond (MS-7375), BIOS V2.8 10/12/2010
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] AGP: No AGP bridge found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] e820: last_pfn = 0x250000 max_arch_pfn = 0x400000000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] MTRR default type: uncachable
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] MTRR fixed ranges enabled:
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   00000-9FFFF write-back
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   A0000-BFFFF uncachable
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   C0000-CFFFF write-protect
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   D0000-EFFFF uncachable
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   F0000-FFFFF write-protect
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] MTRR variable ranges enabled:
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   1 base 000080000000 mask FFFFE0000000 write-back
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   2 base 0000A0000000 mask FFFFF0000000 write-back
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   3 disabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   4 disabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   5 disabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   6 disabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   7 disabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] TOM2: 0000000250000000 aka 9472M
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] e820: update [mem 0xb0000000-0xffffffff] usable ==> reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] e820: last_pfn = 0xaffa0 max_arch_pfn = 0x400000000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [        (ptrval)]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Scanning 1 areas for low memory corruption
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Base memory trampoline at [        (ptrval)] 99000 size 24576
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Using GB pages for direct mapping
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BRK [0x2273d000, 0x2273dfff] PGTABLE
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BRK [0x2273e000, 0x2273efff] PGTABLE
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BRK [0x2273f000, 0x2273ffff] PGTABLE
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BRK [0x22740000, 0x22740fff] PGTABLE
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] BRK [0x22741000, 0x22741fff] PGTABLE
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] RAMDISK: [mem 0x31386000-0x349bafff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: Early table checksum verification disabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: RSDP 0x00000000000FACC0 000014 (v00 ACPIAM)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: RSDT 0x00000000AFFA0000 000040 (v01 101210 RSDT1415 20101012 MSFT 00000097)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: FACP 0x00000000AFFA0200 000084 (v01 101210 FACP1415 20101012 MSFT 00000097)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: DSDT 0x00000000AFFA0460 00A663 (v01 1ADYW  1ADYW003 00000003 INTL 20051117)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: FACS 0x00000000AFFAE000 000040
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: APIC 0x00000000AFFA0390 000090 (v01 101210 APIC1415 20101012 MSFT 00000097)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: MCFG 0x00000000AFFA0420 00003C (v01 101210 OEMMCFG  20101012 MSFT 00000097)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: OEMB 0x00000000AFFAE040 000073 (v01 101210 OEMB1415 20101012 MSFT 00000097)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: SRAT 0x00000000AFFAAAD0 0000E8 (v03 AMD    FAM_F_10 00000002 AMD  00000001)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: INFO 0x00000000AFFAE0C0 000124 (v01 101210 AMDINFO  20101012 MSFT 00000097)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: NVHD 0x00000000AFFAE1F0 000284 (v01 101210 NVHDCP   20101012 MSFT 00000097)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xafffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x24fffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xafffffff] -> [mem 0x00000000-0xafffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] NUMA: Node 0 [mem 0x00000000-0xafffffff] + [mem 0x100000000-0x24fffffff] -> [mem 0x00000000-0x24fffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] NODE_DATA(0) allocated [mem 0x24ffd3000-0x24fffdfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Zone ranges:
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   Normal   [mem 0x0000000100000000-0x000000024fffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   Device   empty
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Movable zone start for each node
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Early memory node ranges
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   node   0: [mem 0x0000000000100000-0x00000000aff9ffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   node   0: [mem 0x0000000100000000-0x000000024fffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000024fffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] On node 0 totalpages: 2096958
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   DMA zone: 21 pages reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   DMA32 zone: 11199 pages used for memmap
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   DMA32 zone: 716704 pages, LIFO batch:31
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   Normal zone: 21504 pages used for memmap
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000]   Normal zone: 1376256 pages, LIFO batch:31
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Reserved but unavailable: 98 pages
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Nvidia board detected. Ignoring ACPI timer override.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] If you got timer trouble try acpi_use_timer_override
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x2008
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] IOAPIC[0]: apic_id 4, version 17, address 0xfec00000, GSI 0-23
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: BIOS IRQ0 override ignored.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: IRQ9 used by override.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: IRQ14 used by override.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: IRQ15 used by override.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] smpboot: Allowing 6 CPUs, 2 hotplug CPUs
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xaffa0000-0xaffadfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xaffae000-0xaffeffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xafff0000-0xafffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xb0000000-0xfebfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xffefffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfff00000-0xffffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] e820: [mem 0xb0000000-0xfebfffff] available for PCI devices
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] random: get_random_bytes called from start_kernel+0x99/0x51b with crng_init=0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:6 nr_cpu_ids:6 nr_node_ids:1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] percpu: Embedded 46 pages/cpu @        (ptrval) s151552 r8192 d28672 u262144
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] pcpu-alloc: s151552 r8192 d28672 u262144 alloc=1*2097152
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 - - 
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064170
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Policy zone: Normal
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.15.0-30-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] AGP: Checking aperture...
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] AGP: No AGP bridge found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] AGP: Node 0: aperture [bus addr 0x8226000000-0x8227ffffff] (32MB)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Aperture beyond 4GB. Ignoring.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] AGP: Your BIOS doesn't leave an aperture memory hole
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] AGP: Please enable the IOMMU option in the BIOS setup
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] AGP: This costs you 64MB of RAM
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] AGP: Mapping aperture over RAM [mem 0xa4000000-0xa7ffffff] (65536KB)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xa4000000-0xa7ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Memory: 8040396K/8387832K available (12300K kernel code, 2470K rwdata, 4252K rodata, 2400K init, 2416K bss, 347436K reserved, 0K cma-reserved)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ftrace: allocating 39099 entries in 153 pages
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Hierarchical RCU implementation.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=6.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] 	Tasks RCU enabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] NR_IRQS: 524544, nr_irqs: 472, preallocated irqs: 16
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] spurious 8259A interrupt: IRQ7.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] vt handoff: transparent VT on vt#7
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] Console: colour dummy device 80x25
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] console [tty0] enabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: Core revision 20170831
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ACPI: 1 ACPI AML tables successfully acquired and loaded
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] APIC: Switch to symmetric I/O mode setup
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.000000] do_IRQ: 0.55 No irq handler for vector
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.020000] tsc: Fast TSC calibration using PIT
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.024000] tsc: Detected 3609.355 MHz processor
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.024000] Calibrating delay loop (skipped), value calculated using timer frequency.. 7218.71 BogoMIPS (lpj=14437420)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.024000] pid_max: default: 32768 minimum: 301
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.024000] Security Framework initialized
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.024000] Yama: becoming mindful.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.024000] AppArmor: AppArmor initialized
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.029657] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.030823] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.030872] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.030910] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.031122] CPU: Physical Processor ID: 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.031123] CPU: Processor Core ID: 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.031124] mce: CPU supports 6 MCE banks
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.031129] LVT offset 0 assigned for vector 0xf9
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.031133] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.031133] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.031135] Spectre V2 : Mitigation: Full AMD retpoline
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.031136] Spectre V2 : Spectre v2 mitigation: Filling RSB on context switch
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.031252] Freeing SMP alternatives memory: 36K
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] smpboot: CPU0: AMD Phenom(tm) II X4 940 Processor (family: 0x10, model: 0x4, stepping: 0x2)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] Performance Events: AMD PMU driver.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] ... version:                0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] ... bit width:              48
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] ... generic registers:      4
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] ... value mask:             0000ffffffffffff
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] ... max period:             00007fffffffffff
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] ... fixed-purpose events:   0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] ... event mask:             000000000000000f
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] Hierarchical SRCU implementation.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] smp: Bringing up secondary CPUs ...
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] x86: Booting SMP configuration:
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] .... node  #0, CPUs:      #1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.036000]  #2 #3
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.040061] smp: Brought up 1 node, 4 CPUs
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.040061] smpboot: Max logical packages: 2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.040061] smpboot: Total of 4 processors activated (28874.84 BogoMIPS)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044504] devtmpfs: initialized
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044504] x86/mm: Memory block size: 128MB
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044647] evm: security.selinux
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044647] evm: security.SMACK64
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044648] evm: security.SMACK64EXEC
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044648] evm: security.SMACK64TRANSMUTE
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044648] evm: security.SMACK64MMAP
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044649] evm: security.apparmor
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044649] evm: security.ima
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044649] evm: security.capability
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] PM: Registering ACPI NVS region [mem 0xaffae000-0xaffeffff] (270336 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] futex hash table entries: 2048 (order: 5, 131072 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] pinctrl core: initialized pinctrl subsystem
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] RTC time: 16:16:38, date: 08/07/18
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] NET: Registered protocol family 16
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] audit: initializing netlink subsys (disabled)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] audit: type=2000 audit(1533658597.044:1): state=initialized audit_enabled=0 res=1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] cpuidle: using governor ladder
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] cpuidle: using governor menu
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] node 0 link 0: io port [1000, ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] TOM: 00000000b0000000 aka 2816M
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] node 0 link 0: mmio [e0000000, efffffff] ==> none
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] node 0 link 0: mmio [b0000000, dfffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] node 0 link 0: mmio [f0000000, fe0bffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] node 0 link 0: mmio [a0000, bffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] TOM2: 0000000250000000 aka 9472M
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] bus: [bus 00-07] on node 0 link 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] bus: 00 [io  0x0000-0xffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] bus: 00 [mem 0xb0000000-0xdfffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] bus: 00 [mem 0xf0000000-0xffffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] bus: 00 [mem 0x000a0000-0x000bffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] bus: 00 [mem 0x250000000-0xfcffffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] ACPI: bus type PCI registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] PCI: not using MMCONFIG
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] PCI: Using configuration type 1 for base access
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] PCI: Using configuration type 1 for extended access
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] mtrr: your CPUs had inconsistent variable MTRR settings
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] mtrr: probably your BIOS does not setup all CPUs.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.044673] mtrr: corrected configuration.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.048041] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.048041] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.048079] ACPI: Added _OSI(Module Device)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.048080] ACPI: Added _OSI(Processor Device)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.048080] ACPI: Added _OSI(3.0 _SCP Extensions)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.048081] ACPI: Added _OSI(Processor Aggregator Device)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.048082] ACPI: Added _OSI(Linux-Dell-Video)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.048328] ACPI: Executed 1 blocks of module-level executable AML code
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.052642] ACPI: Interpreter enabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.052657] ACPI: (supports S0 S1 S4 S5)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.052658] ACPI: Using IOAPIC for interrupt routing
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.052684] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.056003] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.056003] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.056003] ACPI: Enabled 10 GPEs in block 00 to 1F
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.067670] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.067675] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.067892] acpi PNP0A03:00: _OSC: platform does not support [PCIeHotplug PCIeCapability]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.067997] acpi PNP0A03:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.067999] acpi PNP0A03:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068003] acpi PNP0A03:00: _OSC: platform willing to grant [PME AER]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068004] acpi PNP0A03:00: _OSC failed (AE_SUPPORT); disabling ASPM
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068313] PCI host bridge to bus 0000:00
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068315] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068316] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068317] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068318] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068319] pci_bus 0000:00: root bus resource [mem 0xb0000000-0xdfffffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068320] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfed44fff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068321] pci_bus 0000:00: root bus resource [bus 00-ff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068345] pci 0000:00:00.0: [10de:0754] type 00 class 0x050000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068620] pci 0000:00:01.0: [10de:075d] type 00 class 0x060100
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068628] pci 0000:00:01.0: reg 0x10: [io  0x2f00-0x2fff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068718] pci 0000:00:01.1: [10de:0752] type 00 class 0x0c0500
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068728] pci 0000:00:01.1: reg 0x10: [io  0x2900-0x293f]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068742] pci 0000:00:01.1: reg 0x20: [io  0x2d00-0x2d3f]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068746] pci 0000:00:01.1: reg 0x24: [io  0x2e00-0x2e3f]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068772] pci 0000:00:01.1: PME# supported from D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068847] pci 0000:00:01.2: [10de:0751] type 00 class 0x050000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068941] pci 0000:00:01.3: [10de:0753] type 00 class 0x0b4000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.068964] pci 0000:00:01.3: reg 0x10: [mem 0xdfe80000-0xdfefffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069126] pci 0000:00:01.4: [10de:0568] type 00 class 0x050000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069240] pci 0000:00:02.0: [10de:077b] type 00 class 0x0c0310
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069249] pci 0000:00:02.0: reg 0x10: [mem 0xdfe7f000-0xdfe7ffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069282] pci 0000:00:02.0: supports D1 D2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069283] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069350] pci 0000:00:02.1: [10de:077c] type 00 class 0x0c0320
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069360] pci 0000:00:02.1: reg 0x10: [mem 0xdfe7ec00-0xdfe7ecff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069398] pci 0000:00:02.1: supports D1 D2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069399] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069471] pci 0000:00:04.0: [10de:077d] type 00 class 0x0c0310
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069480] pci 0000:00:04.0: reg 0x10: [mem 0xdfe7d000-0xdfe7dfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069513] pci 0000:00:04.0: supports D1 D2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069514] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069581] pci 0000:00:04.1: [10de:077e] type 00 class 0x0c0320
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069591] pci 0000:00:04.1: reg 0x10: [mem 0xdfe7e800-0xdfe7e8ff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069629] pci 0000:00:04.1: supports D1 D2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069629] pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069702] pci 0000:00:06.0: [10de:0759] type 00 class 0x01018a
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069723] pci 0000:00:06.0: reg 0x20: [io  0xffa0-0xffaf]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069733] pci 0000:00:06.0: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069733] pci 0000:00:06.0: legacy IDE quirk: reg 0x14: [io  0x03f6]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069734] pci 0000:00:06.0: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069735] pci 0000:00:06.0: legacy IDE quirk: reg 0x1c: [io  0x0376]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069809] pci 0000:00:07.0: [10de:0774] type 00 class 0x040300
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069818] pci 0000:00:07.0: reg 0x10: [mem 0xdfe78000-0xdfe7bfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069852] pci 0000:00:07.0: PME# supported from D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.069917] pci 0000:00:08.0: [10de:075a] type 01 class 0x060401
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070011] pci 0000:00:09.0: [10de:0ad0] type 00 class 0x010185
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070019] pci 0000:00:09.0: reg 0x10: [io  0x9080-0x9087]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070022] pci 0000:00:09.0: reg 0x14: [io  0x9000-0x9003]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070025] pci 0000:00:09.0: reg 0x18: [io  0x8c00-0x8c07]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070028] pci 0000:00:09.0: reg 0x1c: [io  0x8880-0x8883]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070031] pci 0000:00:09.0: reg 0x20: [io  0x8800-0x880f]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070035] pci 0000:00:09.0: reg 0x24: [mem 0xdfe76000-0xdfe77fff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070115] pci 0000:00:0a.0: [10de:0760] type 00 class 0x020000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070123] pci 0000:00:0a.0: reg 0x10: [mem 0xdfe7c000-0xdfe7cfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070127] pci 0000:00:0a.0: reg 0x14: [io  0x8480-0x8487]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070130] pci 0000:00:0a.0: reg 0x18: [mem 0xdfe7e400-0xdfe7e4ff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070133] pci 0000:00:0a.0: reg 0x1c: [mem 0xdfe7e000-0xdfe7e00f]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070159] pci 0000:00:0a.0: supports D1 D2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070160] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070263] pci 0000:00:10.0: [10de:0778] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070367] pci 0000:00:10.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070499] pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070633] pci 0000:00:12.0: [10de:075b] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070738] pci 0000:00:12.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070867] pci 0000:00:12.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.070999] pci 0000:00:13.0: [10de:077a] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071104] pci 0000:00:13.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071233] pci 0000:00:13.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071367] pci 0000:00:14.0: [10de:077a] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071472] pci 0000:00:14.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071601] pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071703] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071773] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071837] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071904] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.071973] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072079] pci 0000:01:09.0: [1106:3044] type 00 class 0x0c0010
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072093] pci 0000:01:09.0: reg 0x10: [mem 0xdffff800-0xdfffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072100] pci 0000:01:09.0: reg 0x14: [io  0xac00-0xac7f]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072150] pci 0000:01:09.0: supports D2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072151] pci 0000:01:09.0: PME# supported from D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072193] pci 0000:00:08.0: PCI bridge to [bus 01] (subtractive decode)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072195] pci 0000:00:08.0:   bridge window [io  0xa000-0xafff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072197] pci 0000:00:08.0:   bridge window [mem 0xdff00000-0xdfffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072199] pci 0000:00:08.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072200] pci 0000:00:08.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072201] pci 0000:00:08.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072202] pci 0000:00:08.0:   bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072203] pci 0000:00:08.0:   bridge window [mem 0xb0000000-0xdfffffff window] (subtractive decode)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072204] pci 0000:00:08.0:   bridge window [mem 0xf0000000-0xfed44fff window] (subtractive decode)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072296] pci 0000:02:00.0: [10de:05b1] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072324] pci 0000:02:00.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.072350] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084027] pci 0000:00:10.0: PCI bridge to [bus 02-08]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084040] pci 0000:00:10.0:   bridge window [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084047] pci 0000:00:10.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084059] pci 0000:00:10.0:   bridge window [mem 0xb0000000-0xdeefffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084100] pci 0000:03:00.0: [10de:05b1] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084126] pci 0000:03:00.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084155] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084194] pci 0000:03:02.0: [10de:05b1] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084215] pci 0000:03:02.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084238] pci 0000:03:02.0: PME# supported from D0 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084283] pci 0000:02:00.0: PCI bridge to [bus 03-08]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084287] pci 0000:02:00.0:   bridge window [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084289] pci 0000:02:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084292] pci 0000:02:00.0:   bridge window [mem 0xb0000000-0xdeefffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084322] pci 0000:04:00.0: [10de:05b8] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084360] pci 0000:04:00.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.084397] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096016] pci 0000:03:00.0: PCI bridge to [bus 04-07]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096021] pci 0000:03:00.0:   bridge window [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096023] pci 0000:03:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096026] pci 0000:03:00.0:   bridge window [mem 0xb0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096073] pci 0000:05:00.0: [10de:05b8] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096106] pci 0000:05:00.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096141] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096185] pci 0000:05:02.0: [10de:05b8] type 01 class 0x060400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096216] pci 0000:05:02.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096245] pci 0000:05:02.0: PME# supported from D0 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096296] pci 0000:04:00.0: PCI bridge to [bus 05-07]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096300] pci 0000:04:00.0:   bridge window [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096303] pci 0000:04:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096307] pci 0000:04:00.0:   bridge window [mem 0xb0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096343] pci 0000:06:00.0: [10de:05e0] type 00 class 0x030200
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096366] pci 0000:06:00.0: reg 0x10: [mem 0xf3000000-0xf3ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096379] pci 0000:06:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096392] pci 0000:06:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096400] pci 0000:06:00.0: reg 0x24: [io  0xbc00-0xbc7f]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096409] pci 0000:06:00.0: reg 0x30: [mem 0xf2f80000-0xf2ffffff pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.096416] pci 0000:06:00.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108024] pci 0000:05:00.0: PCI bridge to [bus 06]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108028] pci 0000:05:00.0:   bridge window [io  0xb000-0xbfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108031] pci 0000:05:00.0:   bridge window [mem 0xf0000000-0xf3ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108035] pci 0000:05:00.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108084] pci 0000:07:00.0: [10de:05e0] type 00 class 0x030000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108108] pci 0000:07:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108121] pci 0000:07:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108134] pci 0000:07:00.0: reg 0x1c: [mem 0xf4000000-0xf5ffffff 64bit]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108142] pci 0000:07:00.0: reg 0x24: [io  0xcc00-0xcc7f]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108151] pci 0000:07:00.0: reg 0x30: [mem 0xf7d80000-0xf7dfffff pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.108158] pci 0000:07:00.0: enabling Extended Tags
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120021] pci 0000:05:02.0: PCI bridge to [bus 07]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120026] pci 0000:05:02.0:   bridge window [io  0xc000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120029] pci 0000:05:02.0:   bridge window [mem 0xf4000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120033] pci 0000:05:02.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120078] pci 0000:03:02.0: PCI bridge to [bus 08]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120194] pci 0000:09:00.0: [10ec:8168] type 00 class 0x020000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120214] pci 0000:09:00.0: reg 0x10: [io  0xd800-0xd8ff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120232] pci 0000:09:00.0: reg 0x18: [mem 0xdefff000-0xdeffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120243] pci 0000:09:00.0: reg 0x20: [mem 0xdefe0000-0xdefeffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120251] pci 0000:09:00.0: reg 0x30: [mem 0xf7ef0000-0xf7efffff pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120313] pci 0000:09:00.0: supports D1 D2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.120314] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132031] pci 0000:00:12.0: PCI bridge to [bus 09]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132044] pci 0000:00:12.0:   bridge window [io  0xd000-0xdfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132050] pci 0000:00:12.0:   bridge window [mem 0xf7e00000-0xf7efffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132062] pci 0000:00:12.0:   bridge window [mem 0xdef00000-0xdeffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132196] pci 0000:0a:00.0: [197b:2363] type 00 class 0x010185
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132266] pci 0000:0a:00.0: reg 0x24: [mem 0xf7ffe000-0xf7ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132322] pci 0000:0a:00.0: PME# supported from D3hot
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132374] pci 0000:0a:00.1: [197b:2363] type 00 class 0x010185
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132392] pci 0000:0a:00.1: reg 0x10: [io  0xec00-0xec07]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132399] pci 0000:0a:00.1: reg 0x14: [io  0xe880-0xe883]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132406] pci 0000:0a:00.1: reg 0x18: [io  0xe800-0xe807]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132412] pci 0000:0a:00.1: reg 0x1c: [io  0xe480-0xe483]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132419] pci 0000:0a:00.1: reg 0x20: [io  0xe400-0xe40f]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132496] pci 0000:0a:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132506] pci 0000:00:13.0: PCI bridge to [bus 0a]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132518] pci 0000:00:13.0:   bridge window [io  0xe000-0xefff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132524] pci 0000:00:13.0:   bridge window [mem 0xf7f00000-0xf7ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132638] pci 0000:0b:00.0: [1102:000b] type 00 class 0x040300
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132664] pci 0000:0b:00.0: reg 0x10: [mem 0xfebf0000-0xfebfffff 64bit]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132677] pci 0000:0b:00.0: reg 0x18: [mem 0xfe800000-0xfe9fffff 64bit]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.132690] pci 0000:0b:00.0: reg 0x20: [mem 0xf8000000-0xfbffffff 64bit]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.148030] pci 0000:00:14.0: PCI bridge to [bus 0b]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.148049] pci 0000:00:14.0:   bridge window [mem 0xf8000000-0xfebfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.149005] ACPI: PCI Interrupt Link [LNKA] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.149132] ACPI: PCI Interrupt Link [LNKB] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.149259] ACPI: PCI Interrupt Link [LNKC] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.149386] ACPI: PCI Interrupt Link [LNKD] (IRQs 16 17 18 19) *11
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.149513] ACPI: PCI Interrupt Link [LN0A] (IRQs 16 17 18 19) *10
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.149638] ACPI: PCI Interrupt Link [LN0B] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.149765] ACPI: PCI Interrupt Link [LN0C] (IRQs 16 17 18 19) *10
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.149890] ACPI: PCI Interrupt Link [LN0D] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.150015] ACPI: PCI Interrupt Link [LN1A] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.150139] ACPI: PCI Interrupt Link [LN1B] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.150264] ACPI: PCI Interrupt Link [LN1C] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.150389] ACPI: PCI Interrupt Link [LN1D] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.150516] ACPI: PCI Interrupt Link [LN2A] (IRQs 16 17 18 19) *11
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.150640] ACPI: PCI Interrupt Link [LN2B] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.150766] ACPI: PCI Interrupt Link [LN2C] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.150890] ACPI: PCI Interrupt Link [LN2D] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.151018] ACPI: PCI Interrupt Link [LN3A] (IRQs 16 17 18 19) *15
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.151142] ACPI: PCI Interrupt Link [LN3B] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.151268] ACPI: PCI Interrupt Link [LN3C] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.151392] ACPI: PCI Interrupt Link [LN3D] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.151520] ACPI: PCI Interrupt Link [LN4A] (IRQs 16 17 18 19) *7
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.151644] ACPI: PCI Interrupt Link [LN4B] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.151769] ACPI: PCI Interrupt Link [LN4C] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.151894] ACPI: PCI Interrupt Link [LN4D] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.152029] ACPI: PCI Interrupt Link [LN5A] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.152154] ACPI: PCI Interrupt Link [LN5B] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.152280] ACPI: PCI Interrupt Link [LN5C] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.152406] ACPI: PCI Interrupt Link [LN5D] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.152531] ACPI: PCI Interrupt Link [LN6A] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.152656] ACPI: PCI Interrupt Link [LN6B] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.152782] ACPI: PCI Interrupt Link [LN6C] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.152907] ACPI: PCI Interrupt Link [LN6D] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.153033] ACPI: PCI Interrupt Link [LN7A] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.153158] ACPI: PCI Interrupt Link [LN7B] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.153283] ACPI: PCI Interrupt Link [LN7C] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.153408] ACPI: PCI Interrupt Link [LN7D] (IRQs 16 17 18 19) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.153537] ACPI: PCI Interrupt Link [LUB0] (IRQs 20 21 22 23) *10
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.153663] ACPI: PCI Interrupt Link [LUB2] (IRQs 20 21 22 23) *10
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.153791] ACPI: PCI Interrupt Link [LMAC] (IRQs 20 21 22 23) *10
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.153918] ACPI: PCI Interrupt Link [LAZA] (IRQs 20 21 22 23) *10
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.154043] ACPI: PCI Interrupt Link [SGRU] (IRQs 20 21 22 23) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.154171] ACPI: PCI Interrupt Link [LSMB] (IRQs 20 21 22 23) *11
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.154298] ACPI: PCI Interrupt Link [LPMU] (IRQs 20 21 22 23) *15
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.154425] ACPI: PCI Interrupt Link [LSA0] (IRQs 20 21 22 23) *5
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.154565] ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22 23) *0, disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.154692] ACPI: PCI Interrupt Link [UB11] (IRQs 20 21 22 23) *11
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.154823] ACPI: PCI Interrupt Link [UB12] (IRQs 20 21 22 23) *15
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156001] SCSI subsystem initialized
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156015] libata version 3.00 loaded.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156025] pci 0000:07:00.0: vgaarb: setting as boot VGA device
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156025] pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156025] pci 0000:07:00.0: vgaarb: bridge control possible
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156025] vgaarb: loaded
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156032] ACPI: bus type USB registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156044] usbcore: registered new interface driver usbfs
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156050] usbcore: registered new interface driver hub
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156068] usbcore: registered new device driver usb
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156097] EDAC MC: Ver: 3.0.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.156124] PCI: Using ACPI for IRQ routing
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.162862] PCI: pci_cache_line_size set to 64 bytes
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.162946] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.162947] e820: reserve RAM buffer [mem 0xaffa0000-0xafffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.164001] NetLabel: Initializing
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.164001] NetLabel:  domain hash size = 128
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.164001] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.164001] NetLabel:  unlabeled traffic allowed by default
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.164069] clocksource: Switched to clocksource refined-jiffies
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.173886] VFS: Disk quotas dquot_6.6.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.173901] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.174000] AppArmor: AppArmor Filesystem Enabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.174024] pnp: PnP ACPI init
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.174342] pnp 00:00: [dma 0 disabled]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.174391] pnp 00:00: Plug and Play ACPI device, IDs PNP0501 (active)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175054] system 00:01: [io  0x04d0-0x04d1] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175055] system 00:01: [io  0x0800-0x080f] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175056] system 00:01: [io  0x2000-0x207f] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175057] system 00:01: [io  0x2080-0x20ff] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175058] system 00:01: [io  0x2400-0x247f] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175059] system 00:01: [io  0x2480-0x24ff] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175060] system 00:01: [io  0x2800-0x287f] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175061] system 00:01: [io  0x2880-0x28ff] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175063] system 00:01: [mem 0x000d0000-0x000d3fff window] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175064] system 00:01: [mem 0x000d4000-0x000d7fff window] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175065] system 00:01: [mem 0x000de000-0x000dffff window] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175066] system 00:01: [mem 0xfed04000-0xfed04fff] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175067] system 00:01: [mem 0xfee01000-0xfeefffff] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175071] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175139] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175255] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175256] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175259] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175413] system 00:04: [io  0x0a00-0x0adf] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175414] system 00:04: [io  0x0ae0-0x0aef] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175417] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175502] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175504] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175709] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175710] system 00:06: [mem 0x000c0000-0x000cffff] could not be reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175711] system 00:06: [mem 0x000e0000-0x000fffff] could not be reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175712] system 00:06: [mem 0x00100000-0xafffffff] could not be reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175713] system 00:06: [mem 0xfed45000-0xffffffff] could not be reserved
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.175716] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.176503] pnp: PnP ACPI: found 7 devices
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.182238] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] clocksource: Switched to clocksource acpi_pm
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:08.0: PCI bridge to [bus 01]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:08.0:   bridge window [io  0xa000-0xafff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:08.0:   bridge window [mem 0xdff00000-0xdfffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:05:00.0: PCI bridge to [bus 06]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:05:00.0:   bridge window [io  0xb000-0xbfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:05:00.0:   bridge window [mem 0xf0000000-0xf3ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:05:00.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:05:02.0: PCI bridge to [bus 07]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:05:02.0:   bridge window [io  0xc000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:05:02.0:   bridge window [mem 0xf4000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:05:02.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:04:00.0: PCI bridge to [bus 05-07]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:04:00.0:   bridge window [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:04:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:04:00.0:   bridge window [mem 0xb0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:03:00.0: PCI bridge to [bus 04-07]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:03:00.0:   bridge window [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:03:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:03:00.0:   bridge window [mem 0xb0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:03:02.0: PCI bridge to [bus 08]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:02:00.0: PCI bridge to [bus 03-08]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:02:00.0:   bridge window [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:02:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:02:00.0:   bridge window [mem 0xb0000000-0xdeefffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:10.0: PCI bridge to [bus 02-08]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:10.0:   bridge window [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:10.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:10.0:   bridge window [mem 0xb0000000-0xdeefffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:12.0: PCI bridge to [bus 09]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:12.0:   bridge window [io  0xd000-0xdfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:12.0:   bridge window [mem 0xf7e00000-0xf7efffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:12.0:   bridge window [mem 0xdef00000-0xdeffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:13.0: PCI bridge to [bus 0a]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:13.0:   bridge window [io  0xe000-0xefff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:13.0:   bridge window [mem 0xf7f00000-0xf7ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:14.0: PCI bridge to [bus 0b]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci 0000:00:14.0:   bridge window [mem 0xf8000000-0xfebfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:00: resource 8 [mem 0xb0000000-0xdfffffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed44fff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:01: resource 0 [io  0xa000-0xafff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:01: resource 1 [mem 0xdff00000-0xdfffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:01: resource 4 [io  0x0000-0x0cf7 window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:01: resource 5 [io  0x0d00-0xffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:01: resource 7 [mem 0x000d0000-0x000dffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:01: resource 8 [mem 0xb0000000-0xdfffffff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:01: resource 9 [mem 0xf0000000-0xfed44fff window]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:02: resource 0 [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:02: resource 1 [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:02: resource 2 [mem 0xb0000000-0xdeefffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:03: resource 0 [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:03: resource 1 [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:03: resource 2 [mem 0xb0000000-0xdeefffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:04: resource 0 [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:04: resource 1 [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:04: resource 2 [mem 0xb0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:05: resource 0 [io  0xb000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:05: resource 1 [mem 0xf0000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:05: resource 2 [mem 0xb0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:06: resource 0 [io  0xb000-0xbfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:06: resource 1 [mem 0xf0000000-0xf3ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:06: resource 2 [mem 0xb0000000-0xbfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:07: resource 0 [io  0xc000-0xcfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:07: resource 1 [mem 0xf4000000-0xf7dfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:07: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:09: resource 0 [io  0xd000-0xdfff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:09: resource 1 [mem 0xf7e00000-0xf7efffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:09: resource 2 [mem 0xdef00000-0xdeffffff 64bit pref]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:0a: resource 0 [io  0xe000-0xefff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:0a: resource 1 [mem 0xf7f00000-0xf7ffffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] pci_bus 0000:0b: resource 1 [mem 0xf8000000-0xfebfffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184005] NET: Registered protocol family 2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184474] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184474] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184474] TCP: Hash tables configured (established 65536 bind 65536)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184474] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184474] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184474] NET: Registered protocol family 1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.184474] ACPI: PCI Interrupt Link [LUB0] enabled at IRQ 23
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.260420] ACPI: PCI Interrupt Link [LUB2] enabled at IRQ 22
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.260789] ACPI: PCI Interrupt Link [UB11] enabled at IRQ 21
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.340438] ACPI: PCI Interrupt Link [UB12] enabled at IRQ 20
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.340635] pci 0000:00:08.0: Enabling HT MSI Mapping
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.340724] pci 0000:00:09.0: Enabling HT MSI Mapping
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.340817] pci 0000:00:0a.0: Enabling HT MSI Mapping
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.341061] pci 0000:07:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.341065] pci 0000:0a:00.0: async suspend disabled to avoid multi-function power-on ordering issue
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.341068] pci 0000:0a:00.1: async suspend disabled to avoid multi-function power-on ordering issue
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.341073] PCI: CLS 64 bytes, default 64
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.341114] Unpacking initramfs...
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.998693] Freeing initrd memory: 55508K
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.999758] PCI-DMA: Disabling AGP.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.999856] PCI-DMA: aperture base @ a4000000 size 65536 KB
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.999856] PCI-DMA: using GART IOMMU.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    0.999859] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.002671] LVT offset 1 assigned for vector 0x400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.002681] IBS: LVT offset 1 assigned
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.002816] perf: AMD IBS detected (0x0000001f)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.002896] Scanning for low memory corruption every 60 seconds
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.003401] Initialise system trusted keyrings
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.003410] Key type blacklist registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.003493] workingset: timestamp_bits=36 max_order=21 bucket_order=0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.004462] zbud: loaded
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.004802] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.004970] fuse init (API version 7.26)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.006869] Key type asymmetric registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.006870] Asymmetric key parser 'x509' registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.006891] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.006941] io scheduler noop registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.006941] io scheduler deadline registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.006974] io scheduler cfq registered (default)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.007467] ACPI: PCI Interrupt Link [LN0A] enabled at IRQ 19
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.007905] ACPI: PCI Interrupt Link [LN2A] enabled at IRQ 18
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.008332] ACPI: PCI Interrupt Link [LN3A] enabled at IRQ 17
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.008723] ACPI: PCI Interrupt Link [LN4A] enabled at IRQ 16
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009164] vesafb: mode is 640x480x32, linelength=2560, pages=0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009165] vesafb: scrolling: redraw
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009166] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009176] vesafb: framebuffer at 0xf5000000, mapped to 0x        (ptrval), using 1216k, total 1216k
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009245] Console: switching to colour frame buffer device 80x30
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009253] fb0: VESA VGA frame buffer device
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009344] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009391] ACPI: Power Button [PWRB]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009455] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009484] ACPI: Power Button [PWRF]
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.009848] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.030298] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.031958] Linux agpgart interface v0.103
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033385] loop: module loaded
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033581] libphy: Fixed MDIO Bus: probed
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033581] tun: Universal TUN/TAP device driver, 1.6
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033611] PPP generic driver version 2.4.2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033647] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033649] ehci-pci: EHCI PCI platform driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033792] ehci-pci 0000:00:02.1: EHCI Host Controller
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033800] ehci-pci 0000:00:02.1: new USB bus registered, assigned bus number 1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033806] ehci-pci 0000:00:02.1: debug port 1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033831] ehci-pci 0000:00:02.1: cache line size of 64 is not supported
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.033851] ehci-pci 0000:00:02.1: irq 22, io mem 0xdfe7ec00
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048054] ehci-pci 0000:00:02.1: USB 2.0 started, EHCI 1.00
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048100] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048101] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048102] usb usb1: Product: EHCI Host Controller
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048103] usb usb1: Manufacturer: Linux 4.15.0-30-generic ehci_hcd
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048103] usb usb1: SerialNumber: 0000:00:02.1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048205] hub 1-0:1.0: USB hub found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048210] hub 1-0:1.0: 6 ports detected
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048454] ehci-pci 0000:00:04.1: EHCI Host Controller
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048459] ehci-pci 0000:00:04.1: new USB bus registered, assigned bus number 2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048465] ehci-pci 0000:00:04.1: debug port 1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048486] ehci-pci 0000:00:04.1: cache line size of 64 is not supported
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.048503] ehci-pci 0000:00:04.1: irq 20, io mem 0xdfe7e800
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064042] ehci-pci 0000:00:04.1: USB 2.0 started, EHCI 1.00
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064083] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064084] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064085] usb usb2: Product: EHCI Host Controller
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064086] usb usb2: Manufacturer: Linux 4.15.0-30-generic ehci_hcd
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064086] usb usb2: SerialNumber: 0000:00:04.1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064175] hub 2-0:1.0: USB hub found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064179] hub 2-0:1.0: 6 ports detected
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064288] ehci-platform: EHCI generic platform driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064296] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064298] ohci-pci: OHCI PCI platform driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064427] ohci-pci 0000:00:02.0: OHCI PCI host controller
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064431] ohci-pci 0000:00:02.0: new USB bus registered, assigned bus number 3
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.064457] ohci-pci 0000:00:02.0: irq 23, io mem 0xdfe7f000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126059] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126061] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126062] usb usb3: Product: OHCI PCI host controller
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126063] usb usb3: Manufacturer: Linux 4.15.0-30-generic ohci_hcd
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126063] usb usb3: SerialNumber: 0000:00:02.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126166] hub 3-0:1.0: USB hub found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126171] hub 3-0:1.0: 6 ports detected
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126396] ohci-pci 0000:00:04.0: OHCI PCI host controller
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126400] ohci-pci 0000:00:04.0: new USB bus registered, assigned bus number 4
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.126426] ohci-pci 0000:00:04.0: irq 21, io mem 0xdfe7d000
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186057] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186058] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186059] usb usb4: Product: OHCI PCI host controller
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186060] usb usb4: Manufacturer: Linux 4.15.0-30-generic ohci_hcd
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186061] usb usb4: SerialNumber: 0000:00:04.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186163] hub 4-0:1.0: USB hub found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186168] hub 4-0:1.0: 6 ports detected
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186278] ohci-platform: OHCI generic platform driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186285] uhci_hcd: USB Universal Host Controller Interface driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186322] i8042: PNP: No PS/2 controller found.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.186322] i8042: Probing ports directly.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.188653] serio: i8042 KBD port at 0x60,0x64 irq 1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.188657] serio: i8042 AUX port at 0x60,0x64 irq 12
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.188772] mousedev: PS/2 mouse device common for all mice
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.188899] rtc_cmos 00:02: RTC can wake from S4
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.189128] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.189175] rtc_cmos 00:02: alarms up to one year, y3k, 114 bytes nvram
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.189181] i2c /dev entries driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.189215] device-mapper: uevent: version 1.0.3
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.189266] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.189337] ledtrig-cpu: registered to indicate activity on CPUs
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.189700] NET: Registered protocol family 10
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193122] Segment Routing with IPv6
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193139] NET: Registered protocol family 17
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193183] Key type dns_resolver registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193400] RAS: Correctable Errors collector initialized.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193418] microcode: microcode updated early to new patch_level=0x010000db
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193436] microcode: CPU0: patch_level=0x010000db
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193444] microcode: CPU1: patch_level=0x010000db
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193455] microcode: CPU2: patch_level=0x010000db
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193464] microcode: CPU3: patch_level=0x010000db
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193496] microcode: Microcode Update Driver: v2.2.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193502] sched_clock: Marking stable (1193492959, 0)->(1274674289, -81181330)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193759] registered taskstats version 1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.193767] Loading compiled-in X.509 certificates
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.196091] Loaded X.509 cert 'Build time autogenerated kernel key: feb1be905f03d3d8b1734d031dd3f1fc0eb6b5d2'
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.196112] zswap: loaded using pool lzo/zbud
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.199034] Key type big_key registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.199038] Key type trusted registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.200511] Key type encrypted registered
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.200514] AppArmor: AppArmor sha1 policy hashing enabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.200517] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.200535] evm: HMAC attrs: 0x1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.200943]   Magic number: 14:952:286
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.200953] ppp ppp: hash matches
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.201112] rtc_cmos 00:02: setting system clock to 2018-08-07 16:16:39 UTC (1533658599)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.201206] powernow_k8: This CPU is not supported anymore, using acpi-cpufreq instead.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.201905] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.201906] EDD information not available.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.204865] Freeing unused kernel memory: 2400K
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.216093] Write protecting the kernel read-only data: 20480k
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.216825] Freeing unused kernel memory: 2008K
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.221153] Freeing unused kernel memory: 1892K
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.227677] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.237429] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.237491] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.237500] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.237511] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.237958] random: udevadm: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.237975] random: udevadm: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.244789] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.244809] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.244814] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.245038] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.275698] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.285834] pata_amd 0000:00:06.0: version 0.4.1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.288208] scsi host0: pata_amd
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.288380] scsi host1: pata_amd
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.288410] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.288411] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.288456] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.288785] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 23
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.299249] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 19
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.304116] pata_jmicron 0000:0a:00.1: enabling device (0000 -> 0001)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.304349] ACPI: PCI Interrupt Link [LN3B] enabled at IRQ 18
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.308858] scsi host2: pata_jmicron
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.310296] scsi host3: pata_jmicron
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.310338] ata3: PATA max UDMA/100 cmd 0xec00 ctl 0xe880 bmdma 0xe400 irq 18
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.310339] ata4: PATA max UDMA/100 cmd 0xe800 ctl 0xe480 bmdma 0xe408 irq 18
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.329562] MXM: GUID detected in BIOS
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.334315] checking generic (f5000000 130000) vs hw (b0000000 10000000)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.334316] checking generic (f5000000 130000) vs hw (f0000000 2000000)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.334355] nouveau 0000:06:00.0: NVIDIA GT200 (0a0000b1)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.388041] usb 1-4: new high-speed USB device number 2 using ehci-pci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.459190] nouveau 0000:06:00.0: bios: version 62.00.45.00.01
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.459633] firewire_ohci 0000:01:09.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.462828] ata2: port disabled--ignoring
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.564166] usb 2-3: new high-speed USB device number 2 using ehci-pci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.564479] nouveau 0000:06:00.0: fb: 896 MiB GDDR3
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606276] [TTM] Zone  kernel: Available graphics memory: 4084096 kiB
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606277] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606278] [TTM] Initializing pool allocator
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606280] [TTM] Initializing DMA pool allocator
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606292] nouveau 0000:06:00.0: DRM: VRAM: 896 MiB
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606293] nouveau 0000:06:00.0: DRM: GART: 1048576 MiB
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606296] nouveau 0000:06:00.0: DRM: TMDS table version 2.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606297] nouveau 0000:06:00.0: DRM: DCB version 4.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606298] nouveau 0000:06:00.0: DRM: DCB outp 00: 02000312 00020010
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606300] nouveau 0000:06:00.0: DRM: DCB conn 00: 00001061
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.606301] nouveau 0000:06:00.0: DRM: DCB conn 01: 00000162
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.607661] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.607661] [drm] Driver supports precise vblank timestamp query.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.609126] nouveau 0000:06:00.0: DRM: MM: using CRYPT for buffer copies
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.609135] [drm] Initialized nouveau 1.3.1 20120801 for 0000:06:00.0 on minor 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.609468] ACPI: PCI Interrupt Link [LN0C] enabled at IRQ 17
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.609516] checking generic (f5000000 130000) vs hw (c0000000 10000000)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.609517] checking generic (f5000000 130000) vs hw (f4000000 2000000)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.609518] fb: switching to nouveaufb from VESA VGA
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.609540] Console: switching to colour dummy device 80x25
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.609651] nouveau 0000:07:00.0: NVIDIA GT200 (0a0000b1)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.669125] usb 1-4: New USB device found, idVendor=048d, idProduct=1336
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.669127] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.669128] usb 1-4: Product: Mass Storage Device
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.669129] usb 1-4: Manufacturer: Generic   
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.669129] usb 1-4: SerialNumber: 00000000000006
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.673004] usb-storage 1-4:1.0: USB Mass Storage device detected
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.673154] scsi host4: usb-storage 1-4:1.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.673222] usbcore: registered new interface driver usb-storage
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.674403] usbcore: registered new interface driver uas
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.752646] nouveau 0000:07:00.0: bios: version 62.00.45.00.02
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.773628] nouveau 0000:07:00.0: fb: 896 MiB GDDR3
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.798946] usb 2-3: New USB device found, idVendor=04fc, idProduct=0c15
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.798948] usb 2-3: New USB device strings: Mfr=2, Product=3, SerialNumber=1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.798948] usb 2-3: Product: USB to Serial-ATA bridge
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.798949] usb 2-3: Manufacturer: Sunplus Technology Inc.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.798950] usb 2-3: SerialNumber: ST96812AS             5PJ364WF
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.801734] usb-storage 2-3:1.0: USB Mass Storage device detected
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.802533] scsi host5: usb-storage 2-3:1.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815250] nouveau 0000:07:00.0: DRM: VRAM: 896 MiB
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815251] nouveau 0000:07:00.0: DRM: GART: 1048576 MiB
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815253] nouveau 0000:07:00.0: DRM: TMDS table version 2.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815254] nouveau 0000:07:00.0: DRM: DCB version 4.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815256] nouveau 0000:07:00.0: DRM: DCB outp 00: 02000310 00000028
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815257] nouveau 0000:07:00.0: DRM: DCB outp 01: 02000312 00020030
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815258] nouveau 0000:07:00.0: DRM: DCB outp 02: 04011320 00000028
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815259] nouveau 0000:07:00.0: DRM: DCB outp 03: 01011322 00020030
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815260] nouveau 0000:07:00.0: DRM: DCB conn 00: 00002130
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.815261] nouveau 0000:07:00.0: DRM: DCB conn 01: 00001030
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.830190] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.830191] [drm] Driver supports precise vblank timestamp query.
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.831625] nouveau 0000:07:00.0: DRM: MM: using CRYPT for buffer copies
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.862537] forcedeth 0000:00:0a.0: ifname eth0, PHY OUI 0x732 @ 1, addr 00:21:85:62:26:4e
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.862539] forcedeth 0000:00:0a.0: highdma csum pwrctl mgmt gbit lnktim msi desc-v3
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.863101] forcedeth 0000:00:0a.0 enp0s10: renamed from eth0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.893594] nouveau 0000:07:00.0: DRM: allocated 1440x1024 fb: 0x80000, bo         (ptrval)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.923738] fbcon: nouveaufb (fb0) is primary device
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.923788] Console: switching to colour frame buffer device 160x56
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.923805] nouveau 0000:07:00.0: fb0: nouveaufb frame buffer device
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.953984] usb 2-4: new high-speed USB device number 3 using ehci-pci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.955983] ACPI: PCI Interrupt Link [LSA0] enabled at IRQ 22
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.956185] ahci 0000:00:09.0: version 3.0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.956280] ahci 0000:00:09.0: controller can't do PMP, turning off CAP_PMP
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.956347] ahci 0000:00:09.0: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl IDE mode
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.956349] ahci 0000:00:09.0: flags: 64bit ncq sntf led clo pio boh 
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.957848] scsi host6: ahci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958013] scsi host7: ahci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958167] scsi host8: ahci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958280] scsi host9: ahci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958383] scsi host10: ahci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958500] scsi host11: ahci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958530] ata5: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76100 irq 26
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958531] ata6: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76180 irq 26
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958532] ata7: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76200 irq 26
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958533] ata8: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76280 irq 26
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958534] ata9: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76300 irq 26
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.958535] ata10: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76380 irq 26
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.960051] [drm] Initialized nouveau 1.3.1 20120801 for 0000:07:00.0 on minor 1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.968730] ahci 0000:0a:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.968732] ahci 0000:0a:00.0: flags: 64bit ncq pm led clo pmp pio slum part 
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.969056] scsi host12: ahci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.969222] scsi host13: ahci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.969256] ata11: SATA max UDMA/133 abar m8192@0xf7ffe000 port 0xf7ffe100 irq 17
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.969258] ata12: SATA max UDMA/133 abar m8192@0xf7ffe000 port 0xf7ffe180 irq 17
Aug  7 18:19:08 thomas-MS-7375 kernel: [    1.980105] firewire_core 0000:01:09.0: created device fw0: GUID 0010dc00016a903c, S400
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.012041] tsc: Refined TSC clocksource calibration: 3609.374 MHz
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.012059] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3406eb007cf, max_idle_ns: 440795344194 ns
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.124679] usb 2-4: New USB device found, idVendor=0bda, idProduct=5411
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.124681] usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.124682] usb 2-4: Product: 4-Port USB 2.0 Hub
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.124683] usb 2-4: Manufacturer: Generic
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.125188] hub 2-4:1.0: USB hub found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.126049] hub 2-4:1.0: 4 ports detected
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.270615] ata7: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.270631] ata8: SATA link down (SStatus 0 SControl 300)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.270649] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.270662] ata10: SATA link down (SStatus 0 SControl 300)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.270676] ata9: SATA link down (SStatus 0 SControl 300)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.271758] ata7.00: ATAPI: HL-DT-STDVD-RAM GH22NS30, 1.01, max UDMA/100
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.273220] ata7.00: configured for UDMA/100
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.274453] ata6: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.274710] ata5.00: ATA-8: WDC WD1500HLFS-01G6U0, 04.04V01, max UDMA/133
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.274712] ata5.00: 293046768 sectors, multi 16: LBA48 NCQ (depth 31/32)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.275232] ata6.00: ATA-8: WDC WD10EZEX-00RKKA0, 80.00A80, max UDMA/133
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.275233] ata6.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.276032] ata6.00: configured for UDMA/133
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.278707] ata5.00: configured for UDMA/133
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.278945] scsi 6:0:0:0: Direct-Access     ATA      WDC WD1500HLFS-0 4V01 PQ: 0 ANSI: 5
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279208] sd 6:0:0:0: [sda] 293046768 512-byte logical blocks: (150 GB/140 GiB)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279209] sd 6:0:0:0: Attached scsi generic sg0 type 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279222] sd 6:0:0:0: [sda] Write Protect is off
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279223] sd 6:0:0:0: [sda] Mode Sense: 00 3a 00 00
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279241] sd 6:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279381] scsi 7:0:0:0: Direct-Access     ATA      WDC WD10EZEX-00R 0A80 PQ: 0 ANSI: 5
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279573] sd 7:0:0:0: Attached scsi generic sg1 type 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279848] sd 7:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279849] sd 7:0:0:0: [sdb] 4096-byte physical blocks
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279858] sd 7:0:0:0: [sdb] Write Protect is off
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279859] sd 7:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.279875] sd 7:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.280787] scsi 8:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GH22NS30 1.01 PQ: 0 ANSI: 5
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.282465] ata12: SATA link down (SStatus 0 SControl 300)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.286470] ata11: SATA link down (SStatus 0 SControl 300)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.292001]  sda: sda1 sda2 < sda5 >
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.292423] sd 6:0:0:0: [sda] Attached SCSI disk
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.298318]  sdb: sdb1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.298664] sd 7:0:0:0: [sdb] Attached SCSI disk
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.353629] sr 8:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.353632] cdrom: Uniform CD-ROM driver Revision: 3.20
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.353767] sr 8:0:0:0: Attached scsi CD-ROM sr0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.353838] sr 8:0:0:0: Attached scsi generic sg2 type 5
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.420039] usb 2-4.3: new full-speed USB device number 4 using ehci-pci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.430585] random: fast init done
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.533787] usb 2-4.3: New USB device found, idVendor=046d, idProduct=c049
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.533789] usb 2-4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.533790] usb 2-4.3: Product: USB Gaming Mouse
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.533791] usb 2-4.3: Manufacturer: Logitech
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.537572] hidraw: raw HID events driver (C) Jiri Kosina
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.543283] usbcore: registered new interface driver usbhid
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.543283] usbhid: USB HID core driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.544724] input: Logitech USB Gaming Mouse as /devices/pci0000:00/0000:00:04.1/usb2/2-4/2-4.3/2-4.3:1.0/0003:046D:C049.0001/input/input5
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.544812] hid-generic 0003:046D:C049.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Gaming Mouse] on usb-0000:00:04.1-4.3/input0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.544951] hid-generic 0003:046D:C049.0002: hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Gaming Mouse] on usb-0000:00:04.1-4.3/input1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.620043] usb 2-4.4: new full-speed USB device number 5 using ehci-pci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.686157] scsi 4:0:0:0: Direct-Access     Generic  Storage Device   0.00 PQ: 0 ANSI: 2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.686408] sd 4:0:0:0: Attached scsi generic sg3 type 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.688770] sd 4:0:0:0: [sdc] Attached SCSI removable disk
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.729923] usb 2-4.4: New USB device found, idVendor=046d, idProduct=c223
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.729925] usb 2-4.4: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.729926] usb 2-4.4: Product: G15 Keyboard Hub
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.730170] hub 2-4.4:1.0: USB hub found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.730401] hub 2-4.4:1.0: 4 ports detected
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.817564] scsi 5:0:0:0: Direct-Access     ST96812A S                     PQ: 0 ANSI: 2
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.817803] sd 5:0:0:0: Attached scsi generic sg4 type 0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.840422] sd 5:0:0:0: [sdd] 117210240 512-byte logical blocks: (60.0 GB/55.9 GiB)
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.844685] sd 5:0:0:0: [sdd] Write Protect is off
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.844687] sd 5:0:0:0: [sdd] Mode Sense: 38 00 00 00
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.847675] sd 5:0:0:0: [sdd] No Caching mode page found
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.847680] sd 5:0:0:0: [sdd] Assuming drive cache: write through
Aug  7 18:19:08 thomas-MS-7375 kernel: [    2.988682]  sdd: sdd1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.016036] usb 2-4.4.1: new low-speed USB device number 6 using ehci-pci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.024705] sd 5:0:0:0: [sdd] Attached SCSI disk
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.036106] clocksource: Switched to clocksource tsc
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.130662] usb 2-4.4.1: New USB device found, idVendor=046d, idProduct=c226
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.130664] usb 2-4.4.1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.130665] usb 2-4.4.1: Product: G15 Gaming Keyboard
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.134144] input: G15 Gaming Keyboard as /devices/pci0000:00/0000:00:04.1/usb2/2-4/2-4.4/2-4.4.1/2-4.4.1:1.0/0003:046D:C226.0003/input/input6
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.192125] hid-generic 0003:046D:C226.0003: input,hidraw2: USB HID v1.10 Keyboard [G15 Gaming Keyboard] on usb-0000:00:04.1-4.4.1/input0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.196261] input: G15 Gaming Keyboard as /devices/pci0000:00/0000:00:04.1/usb2/2-4/2-4.4/2-4.4.1/2-4.4.1:1.1/0003:046D:C226.0004/input/input7
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.256108] hid-generic 0003:046D:C226.0004: input,hiddev1,hidraw3: USB HID v1.10 Device [G15 Gaming Keyboard] on usb-0000:00:04.1-4.4.1/input1
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.336023] usb 2-4.4.4: new full-speed USB device number 7 using ehci-pci
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.449295] usb 2-4.4.4: New USB device found, idVendor=046d, idProduct=c227
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.449297] usb 2-4.4.4: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.449298] usb 2-4.4.4: Product: G15 GamePanel LCD
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.467692] input: G15 GamePanel LCD as /devices/pci0000:00/0000:00:04.1/usb2/2-4/2-4.4/2-4.4.4/2-4.4.4:1.0/0003:046D:C227.0005/input/input8
Aug  7 18:19:08 thomas-MS-7375 kernel: [    3.524129] hid-generic 0003:046D:C227.0005: input,hiddev2,hidraw4: USB HID v1.11 Keypad [G15 GamePanel LCD] on usb-0000:00:04.1-4.4.4/input0
Aug  7 18:19:08 thomas-MS-7375 kernel: [  108.412944] random: crng init done
Aug  7 18:19:08 thomas-MS-7375 kernel: [  116.356552] NET: Registered protocol family 38
Aug  7 18:19:08 thomas-MS-7375 kernel: [  136.316207] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
Aug  7 18:19:08 thomas-MS-7375 kernel: [  138.954953] lp: driver loaded but no devices found
Aug  7 18:19:08 thomas-MS-7375 kernel: [  139.091487] ppdev: user-space parallel port driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [  139.227372] f71882fg: Found f71882fg chip at 0xa00, revision 32
Aug  7 18:19:08 thomas-MS-7375 kernel: [  139.227450] f71882fg f71882fg.2560: Fan: 1 is in duty-cycle mode
Aug  7 18:19:08 thomas-MS-7375 kernel: [  139.227459] f71882fg f71882fg.2560: Fan: 2 is in duty-cycle mode
Aug  7 18:19:08 thomas-MS-7375 kernel: [  139.227467] f71882fg f71882fg.2560: Fan: 3 is in duty-cycle mode
Aug  7 18:19:08 thomas-MS-7375 kernel: [  139.227475] f71882fg f71882fg.2560: Fan: 4 is in duty-cycle mode
Aug  7 18:19:08 thomas-MS-7375 kernel: [  139.227481] f71882fg f71882fg.2560: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
Aug  7 18:19:08 thomas-MS-7375 kernel: [  140.068657] EXT4-fs (dm-1): re-mounted. Opts: errors=remount-ro
Aug  7 18:19:08 thomas-MS-7375 kernel: [  140.620041] i2c i2c-12: nForce2 SMBus adapter at 0x2d00
Aug  7 18:19:08 thomas-MS-7375 kernel: [  140.620049] ACPI Warning: SystemIO range 0x0000000000002E00-0x0000000000002E3F conflicts with OpRegion 0x0000000000002E00-0x0000000000002E3F (\SM00) (20170831/utaddress-247)
Aug  7 18:19:08 thomas-MS-7375 kernel: [  140.620054] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Aug  7 18:19:08 thomas-MS-7375 kernel: [  140.694335] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Aug  7 18:19:08 thomas-MS-7375 kernel: [  141.159520] k10temp 0000:00:18.3: unreliable CPU thermal sensor; monitoring disabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [  141.562705] kvm: Nested Virtualization enabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [  141.562708] kvm: Nested Paging enabled
Aug  7 18:19:08 thomas-MS-7375 kernel: [  141.850014] snd_ctxfi 0000:0b:00.0: chip 20K2 model SB0880 (1102:0043) is found
Aug  7 18:19:08 thomas-MS-7375 kernel: [  141.891809] MCE: In-kernel MCE decoding enabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [  141.987467] EDAC amd64: Node 0: DRAM ECC disabled.
Aug  7 18:19:08 thomas-MS-7375 kernel: [  141.987469] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Aug  7 18:19:08 thomas-MS-7375 kernel: [  141.987469]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Aug  7 18:19:08 thomas-MS-7375 kernel: [  141.987469]  (Note that use of the override may cause unknown side effects.)
Aug  7 18:19:08 thomas-MS-7375 kernel: [  142.165466] snd_ctxfi 0000:0b:00.0: Use xfi-native timer
Aug  7 18:19:08 thomas-MS-7375 kernel: [  142.177457] ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
Aug  7 18:19:08 thomas-MS-7375 kernel: [  142.177466] snd_hda_intel 0000:00:07.0: Disabling MSI
Aug  7 18:19:08 thomas-MS-7375 kernel: [  143.676579] Adding 8383996k swap on /dev/mapper/cryptswap1.  Priority:-2 extents:1 across:8383996k FS
Aug  7 18:19:08 thomas-MS-7375 kernel: [  144.494596] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
Aug  7 18:19:08 thomas-MS-7375 kernel: [  144.524854] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
Aug  7 18:19:08 thomas-MS-7375 kernel: [  146.608276] EXT4-fs (dm-4): 24 orphan inodes deleted
Aug  7 18:19:08 thomas-MS-7375 kernel: [  146.608278] EXT4-fs (dm-4): recovery complete
Aug  7 18:19:08 thomas-MS-7375 kernel: [  146.744533] EXT4-fs (dm-4): mounted filesystem with ordered data mode. Opts: (null)
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.813965] audit: type=1400 audit(1533658747.107:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=1091 comm="apparmor_parser"
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.813970] audit: type=1400 audit(1533658747.107:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=1091 comm="apparmor_parser"
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.822142] audit: type=1400 audit(1533658747.115:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1092 comm="apparmor_parser"
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.822146] audit: type=1400 audit(1533658747.115:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1092 comm="apparmor_parser"
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.822149] audit: type=1400 audit(1533658747.115:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1092 comm="apparmor_parser"
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.822150] audit: type=1400 audit(1533658747.115:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1092 comm="apparmor_parser"
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.840981] audit: type=1400 audit(1533658747.135:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="system_tor" pid=1093 comm="apparmor_parser"
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.905716] audit: type=1400 audit(1533658747.199:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1098 comm="apparmor_parser"
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.908372] audit: type=1400 audit(1533658747.203:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="webbrowser-app" pid=1096 comm="apparmor_parser"
Aug  7 18:19:08 thomas-MS-7375 kernel: [  148.908375] audit: type=1400 audit(1533658747.203:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="webbrowser-app//oxide_helper" pid=1096 comm="apparmor_parser"
Aug  7 18:19:10 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658750.5949] NetworkManager (version 1.2.6) is starting...
Aug  7 18:19:10 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658750.6102] Read config: /etc/NetworkManager/NetworkManager.conf (etc: default-wifi-powersave-on.conf)
Aug  7 18:19:10 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658750.6640] manager[0x27011c0]: monitoring kernel firmware directory '/lib/firmware'.
Aug  7 18:19:10 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658750.6640] monitoring ifupdown state file '/run/network/ifstate'.
Aug  7 18:19:10 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658750.8127] dns-mgr[0x26e0160]: init: dns=dnsmasq, rc-manager=resolvconf, plugin=dnsmasq
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1551] init!
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1553] management mode: unmanaged
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1555] devices added (path: /sys/devices/pci0000:00/0000:00:0a.0/net/enp0s10, iface: enp0s10)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1555] device added (path: /sys/devices/pci0000:00/0000:00:0a.0/net/enp0s10, iface: enp0s10): no ifupdown configuration found.
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1556] devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1556] device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1556] end _init.
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1556] settings: loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list. (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-settings-plugin-ifupdown.so)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1556] settings: loaded plugin keyfile: (c) 2007 - 2015 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1851] SettingsPlugin-Ofono: init!
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <warn>  [1533658752.1852] SettingsPlugin-Ofono: file doesn't exist: /var/lib/ofono
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1852] SettingsPlugin-Ofono: end _init.
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1852] settings: loaded plugin ofono: (C) 2013-2016 Canonical Ltd.  To report bugs please use the NetworkManager mailing list. (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-settings-plugin-ofono.so)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1852] (41018272) ... get_connections.
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.1852] (41018272) ... get_connections (managed=false): return empty list.
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.2239] keyfile: new connection /etc/NetworkManager/system-connections/Kabelnetzwerkverbindung 2 (f22865b6-2f10-38c3-8bb6-49fe0352a669,"Kabelnetzwerkverbindung 2")
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.2500] keyfile: new connection /etc/NetworkManager/system-connections/Kabelnetzwerkverbindung 3 (f2f4b8ff-aaee-39b7-80bc-6af114d28c6e,"Kabelnetzwerkverbindung 3")
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.4414] SettingsPlugin-Ofono: (41018496) ... get_connections.
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.4414] SettingsPlugin-Ofono: (41018496) connections count: 0
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.4414] get unmanaged devices count: 0
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5212] settings: hostname: using hostnamed
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5212] settings: hostname changed from (none) to "thomas-MS-7375"
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5214] Using DHCP client 'dhclient'
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5214] manager: WiFi enabled by radio killswitch; enabled by state file
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5214] manager: WWAN enabled by radio killswitch; enabled by state file
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5214] manager: Networking is enabled by state file
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5215] Loaded device plugin: NMVxlanFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5215] Loaded device plugin: NMVlanFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5215] Loaded device plugin: NMVethFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5215] Loaded device plugin: NMTunFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5216] Loaded device plugin: NMMacvlanFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5216] Loaded device plugin: NMIPTunnelFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5216] Loaded device plugin: NMInfinibandFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5216] Loaded device plugin: NMEthernetFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5216] Loaded device plugin: NMBridgeFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.5217] Loaded device plugin: NMBondFactory (internal)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.7510] Loaded device plugin: NMBluezManager (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-device-plugin-bluetooth.so)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.7685] Loaded device plugin: NMAtmManager (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-device-plugin-adsl.so)
Aug  7 18:19:12 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658752.7824] Loaded device plugin: NMWifiFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-device-plugin-wifi.so)
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.0882] Loaded device plugin: NMWwanFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-device-plugin-wwan.so)
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.1251] manager: (enp0s10): new Ethernet device (/org/freedesktop/NetworkManager/Devices/0)
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.1261] device (enp0s10): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Aug  7 18:19:13 thomas-MS-7375 kernel: [  154.827460] IPv6: ADDRCONF(NETDEV_UP): enp0s10: link is not ready
Aug  7 18:19:13 thomas-MS-7375 kernel: [  154.827984] forcedeth 0000:00:0a.0 enp0s10: MSI enabled
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.1279] device (enp0s10): link connected
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: nm_device_get_device_type: assertion 'NM_IS_DEVICE (self)' failed
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.1287] device (lo): link connected
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.1292] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Aug  7 18:19:13 thomas-MS-7375 kernel: [  154.828764] IPv6: ADDRCONF(NETDEV_UP): enp0s10: link is not ready
Aug  7 18:19:13 thomas-MS-7375 kernel: [  154.828769] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s10: link becomes ready
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.4778] urfkill disappeared from the bus
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.4806] device (enp0s10): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.4813] policy: auto-activating connection 'Kabelnetzwerkverbindung 2'
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.4821] device (enp0s10): Activation: starting connection 'Kabelnetzwerkverbindung 2' (f22865b6-2f10-38c3-8bb6-49fe0352a669)
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.4822] device (enp0s10): state change: disconnected -> prepare (reason 'none') [30 40 0]
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.4823] manager: NetworkManager state is now CONNECTING
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.4825] device (enp0s10): state change: prepare -> config (reason 'none') [40 50 0]
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.4829] device (enp0s10): state change: config -> ip-config (reason 'none') [50 70 0]
Aug  7 18:19:13 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658753.5041] dhcp4 (enp0s10): activation: beginning transaction (timeout in 45 seconds)
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.0182] dhcp4 (enp0s10): dhclient started with pid 1393
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.1231] ofono is now available
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.1232] ModemManager available in the bus
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <warn>  [1533658754.1236] failed to enumerate oFono devices: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided by any .service files
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8384]   address 192.168.2.122
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8384]   plen 24 (255.255.255.0)
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8384]   gateway 192.168.2.1
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8384]   server identifier 192.168.2.1
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8384]   lease time 86400
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8384]   nameserver '192.168.2.1'
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8385]   domain name 'Speedport_W_921V_1_44_000'
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8385] dhcp4 (enp0s10): state changed unknown -> bound
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8393] device (enp0s10): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8397] device (enp0s10): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8399] device (enp0s10): state change: secondaries -> activated (reason 'none') [90 100 0]
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.8400] manager: NetworkManager state is now CONNECTED_LOCAL
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.9710] manager: NetworkManager state is now CONNECTED_GLOBAL
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.9711] policy: set 'Kabelnetzwerkverbindung 2' (enp0s10) as default for IPv4 routing and DNS
Aug  7 18:19:14 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658754.9859] dns-plugin[0x270f100]: starting dnsmasq...
Aug  7 18:19:15 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658755.0778] dns-mgr: Writing DNS information to /sbin/resolvconf
Aug  7 18:19:15 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658755.5824] device (enp0s10): Activation: successful, device activated.
Aug  7 18:19:15 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658755.5842] dnsmasq[0x270f100]: dnsmasq appeared as :1.21
Aug  7 18:19:16 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658756.7449] dhcp6 (enp0s10): activation: beginning transaction (timeout in 45 seconds)
Aug  7 18:19:17 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658757.3673] dhcp6 (enp0s10): dhclient started with pid 1590
Aug  7 18:19:17 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658757.3683] policy: set 'Kabelnetzwerkverbindung 2' (enp0s10) as default for IPv6 routing and DNS
Aug  7 18:19:18 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658758.1434]   nameserver 'fe80::1'
Aug  7 18:19:18 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658758.1434] dhcp6 (enp0s10): state changed unknown -> bound
Aug  7 18:19:18 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658758.1444] dns-mgr: Writing DNS information to /sbin/resolvconf
Aug  7 18:19:18 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658758.1714] dhcp6 (enp0s10): client pid 1590 exited with status 0
Aug  7 18:19:18 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658758.1715] dhcp6 (enp0s10): state changed bound -> done
Aug  7 18:19:18 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658758.2997] manager: startup complete
Aug  7 18:19:19 thomas-MS-7375 kernel: [  161.236712] ip_tables: (C) 2000-2006 Netfilter Core Team
Aug  7 18:19:19 thomas-MS-7375 kernel: [  161.349871] ip6_tables: (C) 2000-2006 Netfilter Core Team
Aug  7 18:19:21 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658761.3008] manager: WiFi hardware radio set enabled
Aug  7 18:19:21 thomas-MS-7375 NetworkManager[1173]: <info>  [1533658761.3009] manager: WWAN hardware radio set enabled
Aug  7 18:19:53 thomas-MS-7375 kernel: [  195.236148] vboxdrv: loading out-of-tree module taints kernel.
Aug  7 18:19:53 thomas-MS-7375 kernel: [  195.236448] vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
Aug  7 18:19:53 thomas-MS-7375 kernel: [  195.239953] vboxdrv: Found 4 processor cores
Aug  7 18:19:53 thomas-MS-7375 kernel: [  195.259437] vboxdrv: TSC mode is Invariant, tentative frequency 3621650366 Hz
Aug  7 18:19:53 thomas-MS-7375 kernel: [  195.259438] vboxdrv: Successfully loaded version 5.2.12 (interface 0x00290001)
Aug  7 18:19:53 thomas-MS-7375 kernel: [  195.463141] VBoxNetFlt: Successfully started.
Aug  7 18:19:53 thomas-MS-7375 kernel: [  195.464372] VBoxNetAdp: Successfully started.
Aug  7 18:19:53 thomas-MS-7375 kernel: [  195.465514] VBoxPciLinuxInit
Aug  7 18:19:53 thomas-MS-7375 kernel: [  195.467877] vboxpci: IOMMU not found (not registered)
Aug  7 18:19:58 thomas-MS-7375 gnome-session-binary[10231]: Entering running state
Aug  7 18:20:10 thomas-MS-7375 kernel: [  212.515694] EXT4-fs (dm-5): recovery complete
Aug  7 18:20:10 thomas-MS-7375 kernel: [  212.516087] EXT4-fs (dm-5): mounted filesystem with ordered data mode. Opts: (null)
Aug  7 18:21:01 thomas-MS-7375 kernel: [  263.520966] Valid eCryptfs headers not found in file header region or xattr region, inode 47317011
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Linux version 4.15.0-30-generic (buildd@lcy01-amd64-003) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10)) #32~16.04.1-Ubuntu SMP Thu Jul 26 20:25:39 UTC 2018 (Ubuntu 4.15.0-30.32~16.04.1-generic 4.15.18)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Command line: BOOT_IMAGE=/vmlinuz-4.15.0-30-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] KERNEL supported cpus:
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   Intel GenuineIntel
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   AMD AuthenticAMD
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   Centaur CentaurHauls
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] x86/fpu: x87 FPU will use FXSAVE
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x000000000009f000-0x000000000009ffff] reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000aff9ffff] usable
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000affa0000-0x00000000affadfff] ACPI data
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000affae000-0x00000000affeffff] ACPI NVS
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000afff0000-0x00000000afffffff] reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x00000000fff00000-0x00000000ffffffff] reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000024fffffff] usable
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] NX (Execute Disable) protection: active
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] SMBIOS 2.5 present.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] DMI: MSI MS-7375/K9N2 Diamond (MS-7375), BIOS V2.8 10/12/2010
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] AGP: No AGP bridge found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] e820: last_pfn = 0x250000 max_arch_pfn = 0x400000000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] MTRR default type: uncachable
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] MTRR fixed ranges enabled:
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   00000-9FFFF write-back
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   A0000-BFFFF uncachable
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   C0000-CFFFF write-protect
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   D0000-EFFFF uncachable
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   F0000-FFFFF write-protect
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] MTRR variable ranges enabled:
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   1 base 000080000000 mask FFFFE0000000 write-back
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   2 base 0000A0000000 mask FFFFF0000000 write-back
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   3 disabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   4 disabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   5 disabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   6 disabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   7 disabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] TOM2: 0000000250000000 aka 9472M
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] e820: update [mem 0xb0000000-0xffffffff] usable ==> reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] e820: last_pfn = 0xaffa0 max_arch_pfn = 0x400000000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [        (ptrval)]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Scanning 1 areas for low memory corruption
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Base memory trampoline at [        (ptrval)] 99000 size 24576
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Using GB pages for direct mapping
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BRK [0x16bd3d000, 0x16bd3dfff] PGTABLE
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BRK [0x16bd3e000, 0x16bd3efff] PGTABLE
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BRK [0x16bd3f000, 0x16bd3ffff] PGTABLE
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BRK [0x16bd40000, 0x16bd40fff] PGTABLE
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BRK [0x16bd41000, 0x16bd41fff] PGTABLE
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BRK [0x16bd42000, 0x16bd42fff] PGTABLE
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] BRK [0x16bd43000, 0x16bd43fff] PGTABLE
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] RAMDISK: [mem 0x31386000-0x349bafff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: Early table checksum verification disabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: RSDP 0x00000000000FACC0 000014 (v00 ACPIAM)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: RSDT 0x00000000AFFA0000 000040 (v01 101210 RSDT1415 20101012 MSFT 00000097)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: FACP 0x00000000AFFA0200 000084 (v01 101210 FACP1415 20101012 MSFT 00000097)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: DSDT 0x00000000AFFA0460 00A663 (v01 1ADYW  1ADYW003 00000003 INTL 20051117)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: FACS 0x00000000AFFAE000 000040
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: APIC 0x00000000AFFA0390 000090 (v01 101210 APIC1415 20101012 MSFT 00000097)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: MCFG 0x00000000AFFA0420 00003C (v01 101210 OEMMCFG  20101012 MSFT 00000097)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: OEMB 0x00000000AFFAE040 000073 (v01 101210 OEMB1415 20101012 MSFT 00000097)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: SRAT 0x00000000AFFAAAD0 0000E8 (v03 AMD    FAM_F_10 00000002 AMD  00000001)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: INFO 0x00000000AFFAE0C0 000124 (v01 101210 AMDINFO  20101012 MSFT 00000097)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: NVHD 0x00000000AFFAE1F0 000284 (v01 101210 NVHDCP   20101012 MSFT 00000097)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] SRAT: PXM 0 -> APIC 0x00 -> Node 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] SRAT: PXM 0 -> APIC 0x01 -> Node 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] SRAT: PXM 0 -> APIC 0x02 -> Node 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] SRAT: PXM 0 -> APIC 0x03 -> Node 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x00000000-0x0009ffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x00100000-0xafffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: SRAT: Node 0 PXM 0 [mem 0x100000000-0x24fffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] NUMA: Node 0 [mem 0x00000000-0x0009ffff] + [mem 0x00100000-0xafffffff] -> [mem 0x00000000-0xafffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] NUMA: Node 0 [mem 0x00000000-0xafffffff] + [mem 0x100000000-0x24fffffff] -> [mem 0x00000000-0x24fffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] NODE_DATA(0) allocated [mem 0x24ffd5000-0x24fffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Zone ranges:
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   Normal   [mem 0x0000000100000000-0x000000024fffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   Device   empty
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Movable zone start for each node
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Early memory node ranges
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   node   0: [mem 0x0000000000100000-0x00000000aff9ffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   node   0: [mem 0x0000000100000000-0x000000024fffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000024fffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] On node 0 totalpages: 2096958
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   DMA zone: 21 pages reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   DMA32 zone: 11199 pages used for memmap
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   DMA32 zone: 716704 pages, LIFO batch:31
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   Normal zone: 21504 pages used for memmap
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000]   Normal zone: 1376256 pages, LIFO batch:31
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Reserved but unavailable: 98 pages
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Nvidia board detected. Ignoring ACPI timer override.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] If you got timer trouble try acpi_use_timer_override
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x2008
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] IOAPIC[0]: apic_id 4, version 17, address 0xfec00000, GSI 0-23
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: BIOS IRQ0 override ignored.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: IRQ9 used by override.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: IRQ14 used by override.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: IRQ15 used by override.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] smpboot: Allowing 6 CPUs, 2 hotplug CPUs
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xaffa0000-0xaffadfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xaffae000-0xaffeffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xafff0000-0xafffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xb0000000-0xfebfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfef00000-0xffefffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfff00000-0xffffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] e820: [mem 0xb0000000-0xfebfffff] available for PCI devices
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] random: get_random_bytes called from start_kernel+0x99/0x51b with crng_init=0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:6 nr_cpu_ids:6 nr_node_ids:1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] percpu: Embedded 46 pages/cpu @        (ptrval) s151552 r8192 d28672 u262144
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] pcpu-alloc: s151552 r8192 d28672 u262144 alloc=1*2097152
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 - - 
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 2064170
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Policy zone: Normal
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-4.15.0-30-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] AGP: Checking aperture...
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] AGP: No AGP bridge found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] AGP: Node 0: aperture [bus addr 0x87b6000000-0x87b7ffffff] (32MB)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Aperture beyond 4GB. Ignoring.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] AGP: Your BIOS doesn't leave an aperture memory hole
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] AGP: Please enable the IOMMU option in the BIOS setup
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] AGP: This costs you 64MB of RAM
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] AGP: Mapping aperture over RAM [mem 0xa4000000-0xa7ffffff] (65536KB)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] PM: Registered nosave memory: [mem 0xa4000000-0xa7ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Memory: 8040404K/8387832K available (12300K kernel code, 2470K rwdata, 4252K rodata, 2400K init, 2416K bss, 347428K reserved, 0K cma-reserved)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ftrace: allocating 39099 entries in 153 pages
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Hierarchical RCU implementation.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=6.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] 	Tasks RCU enabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=6
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] NR_IRQS: 524544, nr_irqs: 472, preallocated irqs: 16
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] spurious 8259A interrupt: IRQ7.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] vt handoff: transparent VT on vt#7
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] Console: colour dummy device 80x25
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] console [tty0] enabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: Core revision 20170831
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ACPI: 1 ACPI AML tables successfully acquired and loaded
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] APIC: Switch to symmetric I/O mode setup
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.000000] do_IRQ: 0.55 No irq handler for vector
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.020000] tsc: Fast TSC calibration using PIT
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.024000] tsc: Detected 3506.496 MHz processor
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.024000] Calibrating delay loop (skipped), value calculated using timer frequency.. 7012.99 BogoMIPS (lpj=14025984)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.024000] pid_max: default: 32768 minimum: 301
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.024000] Security Framework initialized
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.024000] Yama: becoming mindful.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.024000] AppArmor: AppArmor initialized
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.029431] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030591] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030640] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030678] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030891] CPU: Physical Processor ID: 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030892] CPU: Processor Core ID: 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030893] mce: CPU supports 6 MCE banks
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030899] LVT offset 0 assigned for vector 0xf9
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030902] Last level iTLB entries: 4KB 512, 2MB 16, 4MB 8
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030903] Last level dTLB entries: 4KB 512, 2MB 128, 4MB 64, 1GB 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030904] Spectre V2 : Mitigation: Full AMD retpoline
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.030905] Spectre V2 : Spectre v2 mitigation: Filling RSB on context switch
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.031730] Freeing SMP alternatives memory: 36K
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] smpboot: CPU0: AMD Phenom(tm) II X4 940 Processor (family: 0x10, model: 0x4, stepping: 0x2)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] Performance Events: AMD PMU driver.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] ... version:                0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] ... bit width:              48
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] ... generic registers:      4
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] ... value mask:             0000ffffffffffff
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] ... max period:             00007fffffffffff
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] ... fixed-purpose events:   0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] ... event mask:             000000000000000f
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] Hierarchical SRCU implementation.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] smp: Bringing up secondary CPUs ...
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] x86: Booting SMP configuration:
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] .... node  #0, CPUs:      #1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.036000]  #2 #3
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.040062] smp: Brought up 1 node, 4 CPUs
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.040062] smpboot: Max logical packages: 2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.040062] smpboot: Total of 4 processors activated (28051.96 BogoMIPS)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044496] devtmpfs: initialized
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044496] x86/mm: Memory block size: 128MB
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044651] evm: security.selinux
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044651] evm: security.SMACK64
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044652] evm: security.SMACK64EXEC
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044652] evm: security.SMACK64TRANSMUTE
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044652] evm: security.SMACK64MMAP
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044653] evm: security.apparmor
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044653] evm: security.ima
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044653] evm: security.capability
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] PM: Registering ACPI NVS region [mem 0xaffae000-0xaffeffff] (270336 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] futex hash table entries: 2048 (order: 5, 131072 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] pinctrl core: initialized pinctrl subsystem
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] RTC time: 14:18:19, date: 08/13/18
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] NET: Registered protocol family 16
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] audit: initializing netlink subsys (disabled)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] audit: type=2000 audit(1534169899.044:1): state=initialized audit_enabled=0 res=1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] cpuidle: using governor ladder
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] cpuidle: using governor menu
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] node 0 link 0: io port [1000, ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] TOM: 00000000b0000000 aka 2816M
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] Fam 10h mmconf [mem 0xe0000000-0xefffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] node 0 link 0: mmio [e0000000, efffffff] ==> none
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] node 0 link 0: mmio [b0000000, dfffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] node 0 link 0: mmio [f0000000, fe0bffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] node 0 link 0: mmio [a0000, bffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] TOM2: 0000000250000000 aka 9472M
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] bus: [bus 00-07] on node 0 link 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] bus: 00 [io  0x0000-0xffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] bus: 00 [mem 0xb0000000-0xdfffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] bus: 00 [mem 0xf0000000-0xffffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] bus: 00 [mem 0x000a0000-0x000bffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] bus: 00 [mem 0x250000000-0xfcffffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] ACPI: bus type PCI registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] PCI: not using MMCONFIG
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] PCI: Using configuration type 1 for base access
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] PCI: Using configuration type 1 for extended access
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] mtrr: your CPUs had inconsistent variable MTRR settings
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] mtrr: probably your BIOS does not setup all CPUs.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.044677] mtrr: corrected configuration.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.048040] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.048040] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.048080] ACPI: Added _OSI(Module Device)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.048080] ACPI: Added _OSI(Processor Device)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.048081] ACPI: Added _OSI(3.0 _SCP Extensions)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.048082] ACPI: Added _OSI(Processor Aggregator Device)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.048082] ACPI: Added _OSI(Linux-Dell-Video)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.048329] ACPI: Executed 1 blocks of module-level executable AML code
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.052815] ACPI: Interpreter enabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.052831] ACPI: (supports S0 S1 S4 S5)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.052832] ACPI: Using IOAPIC for interrupt routing
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.052859] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.056003] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.056003] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.056003] ACPI: Enabled 10 GPEs in block 00 to 1F
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068246] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068251] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068472] acpi PNP0A03:00: _OSC: platform does not support [PCIeHotplug PCIeCapability]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068579] acpi PNP0A03:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068581] acpi PNP0A03:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068582] acpi PNP0A03:00: _OSC: platform willing to grant [PME AER]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068583] acpi PNP0A03:00: _OSC failed (AE_SUPPORT); disabling ASPM
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068897] PCI host bridge to bus 0000:00
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068899] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068900] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068901] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068902] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000dffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068903] pci_bus 0000:00: root bus resource [mem 0xb0000000-0xdfffffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068904] pci_bus 0000:00: root bus resource [mem 0xf0000000-0xfed44fff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068906] pci_bus 0000:00: root bus resource [bus 00-ff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.068929] pci 0000:00:00.0: [10de:0754] type 00 class 0x050000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069206] pci 0000:00:01.0: [10de:075d] type 00 class 0x060100
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069214] pci 0000:00:01.0: reg 0x10: [io  0x2f00-0x2fff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069305] pci 0000:00:01.1: [10de:0752] type 00 class 0x0c0500
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069315] pci 0000:00:01.1: reg 0x10: [io  0x2900-0x293f]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069329] pci 0000:00:01.1: reg 0x20: [io  0x2d00-0x2d3f]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069333] pci 0000:00:01.1: reg 0x24: [io  0x2e00-0x2e3f]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069359] pci 0000:00:01.1: PME# supported from D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069429] pci 0000:00:01.2: [10de:0751] type 00 class 0x050000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069525] pci 0000:00:01.3: [10de:0753] type 00 class 0x0b4000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069549] pci 0000:00:01.3: reg 0x10: [mem 0xdfe80000-0xdfefffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069711] pci 0000:00:01.4: [10de:0568] type 00 class 0x050000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069825] pci 0000:00:02.0: [10de:077b] type 00 class 0x0c0310
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069834] pci 0000:00:02.0: reg 0x10: [mem 0xdfe7f000-0xdfe7ffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069867] pci 0000:00:02.0: supports D1 D2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069868] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069936] pci 0000:00:02.1: [10de:077c] type 00 class 0x0c0320
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069945] pci 0000:00:02.1: reg 0x10: [mem 0xdfe7ec00-0xdfe7ecff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069983] pci 0000:00:02.1: supports D1 D2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.069984] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070059] pci 0000:00:04.0: [10de:077d] type 00 class 0x0c0310
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070068] pci 0000:00:04.0: reg 0x10: [mem 0xdfe7d000-0xdfe7dfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070101] pci 0000:00:04.0: supports D1 D2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070102] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070169] pci 0000:00:04.1: [10de:077e] type 00 class 0x0c0320
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070179] pci 0000:00:04.1: reg 0x10: [mem 0xdfe7e800-0xdfe7e8ff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070217] pci 0000:00:04.1: supports D1 D2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070218] pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070290] pci 0000:00:06.0: [10de:0759] type 00 class 0x01018a
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070312] pci 0000:00:06.0: reg 0x20: [io  0xffa0-0xffaf]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070321] pci 0000:00:06.0: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070322] pci 0000:00:06.0: legacy IDE quirk: reg 0x14: [io  0x03f6]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070323] pci 0000:00:06.0: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070323] pci 0000:00:06.0: legacy IDE quirk: reg 0x1c: [io  0x0376]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070398] pci 0000:00:07.0: [10de:0774] type 00 class 0x040300
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070408] pci 0000:00:07.0: reg 0x10: [mem 0xdfe78000-0xdfe7bfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070441] pci 0000:00:07.0: PME# supported from D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070510] pci 0000:00:08.0: [10de:075a] type 01 class 0x060401
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070604] pci 0000:00:09.0: [10de:0ad0] type 00 class 0x010185
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070612] pci 0000:00:09.0: reg 0x10: [io  0x9080-0x9087]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070615] pci 0000:00:09.0: reg 0x14: [io  0x9000-0x9003]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070618] pci 0000:00:09.0: reg 0x18: [io  0x8c00-0x8c07]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070621] pci 0000:00:09.0: reg 0x1c: [io  0x8880-0x8883]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070624] pci 0000:00:09.0: reg 0x20: [io  0x8800-0x880f]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070627] pci 0000:00:09.0: reg 0x24: [mem 0xdfe76000-0xdfe77fff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070710] pci 0000:00:0a.0: [10de:0760] type 00 class 0x020000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070719] pci 0000:00:0a.0: reg 0x10: [mem 0xdfe7c000-0xdfe7cfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070725] pci 0000:00:0a.0: reg 0x14: [io  0x8480-0x8487]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070728] pci 0000:00:0a.0: reg 0x18: [mem 0xdfe7e400-0xdfe7e4ff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070731] pci 0000:00:0a.0: reg 0x1c: [mem 0xdfe7e000-0xdfe7e00f]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070757] pci 0000:00:0a.0: supports D1 D2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070758] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070861] pci 0000:00:10.0: [10de:0778] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.070964] pci 0000:00:10.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.071097] pci 0000:00:10.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.071232] pci 0000:00:12.0: [10de:075b] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.071337] pci 0000:00:12.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.071466] pci 0000:00:12.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.071598] pci 0000:00:13.0: [10de:077a] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.071703] pci 0000:00:13.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.071832] pci 0000:00:13.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.071964] pci 0000:00:14.0: [10de:077a] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072071] pci 0000:00:14.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072201] pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072303] pci 0000:00:18.0: [1022:1200] type 00 class 0x060000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072373] pci 0000:00:18.1: [1022:1201] type 00 class 0x060000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072439] pci 0000:00:18.2: [1022:1202] type 00 class 0x060000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072507] pci 0000:00:18.3: [1022:1203] type 00 class 0x060000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072582] pci 0000:00:18.4: [1022:1204] type 00 class 0x060000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072686] pci 0000:01:09.0: [1106:3044] type 00 class 0x0c0010
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072700] pci 0000:01:09.0: reg 0x10: [mem 0xdffff800-0xdfffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072707] pci 0000:01:09.0: reg 0x14: [io  0xac00-0xac7f]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072757] pci 0000:01:09.0: supports D2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072758] pci 0000:01:09.0: PME# supported from D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072800] pci 0000:00:08.0: PCI bridge to [bus 01] (subtractive decode)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072802] pci 0000:00:08.0:   bridge window [io  0xa000-0xafff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072804] pci 0000:00:08.0:   bridge window [mem 0xdff00000-0xdfffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072806] pci 0000:00:08.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072807] pci 0000:00:08.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072808] pci 0000:00:08.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072809] pci 0000:00:08.0:   bridge window [mem 0x000d0000-0x000dffff window] (subtractive decode)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072810] pci 0000:00:08.0:   bridge window [mem 0xb0000000-0xdfffffff window] (subtractive decode)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072811] pci 0000:00:08.0:   bridge window [mem 0xf0000000-0xfed44fff window] (subtractive decode)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072905] pci 0000:02:00.0: [10de:05b1] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072933] pci 0000:02:00.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.072959] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088025] pci 0000:00:10.0: PCI bridge to [bus 02-08]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088038] pci 0000:00:10.0:   bridge window [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088045] pci 0000:00:10.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088057] pci 0000:00:10.0:   bridge window [mem 0xb0000000-0xdeefffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088096] pci 0000:03:00.0: [10de:05b1] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088122] pci 0000:03:00.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088151] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088193] pci 0000:03:02.0: [10de:05b1] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088214] pci 0000:03:02.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088237] pci 0000:03:02.0: PME# supported from D0 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088282] pci 0000:02:00.0: PCI bridge to [bus 03-08]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088286] pci 0000:02:00.0:   bridge window [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088288] pci 0000:02:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088291] pci 0000:02:00.0:   bridge window [mem 0xb0000000-0xdeefffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088322] pci 0000:04:00.0: [10de:05b8] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088361] pci 0000:04:00.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.088398] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100019] pci 0000:03:00.0: PCI bridge to [bus 04-07]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100023] pci 0000:03:00.0:   bridge window [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100025] pci 0000:03:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100028] pci 0000:03:00.0:   bridge window [mem 0xb0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100076] pci 0000:05:00.0: [10de:05b8] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100109] pci 0000:05:00.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100144] pci 0000:05:00.0: PME# supported from D0 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100186] pci 0000:05:02.0: [10de:05b8] type 01 class 0x060400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100218] pci 0000:05:02.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100247] pci 0000:05:02.0: PME# supported from D0 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100299] pci 0000:04:00.0: PCI bridge to [bus 05-07]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100303] pci 0000:04:00.0:   bridge window [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100306] pci 0000:04:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100310] pci 0000:04:00.0:   bridge window [mem 0xb0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100346] pci 0000:06:00.0: [10de:05e0] type 00 class 0x030200
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100370] pci 0000:06:00.0: reg 0x10: [mem 0xf3000000-0xf3ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100383] pci 0000:06:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100396] pci 0000:06:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100404] pci 0000:06:00.0: reg 0x24: [io  0xbc00-0xbc7f]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100412] pci 0000:06:00.0: reg 0x30: [mem 0xf2f80000-0xf2ffffff pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.100419] pci 0000:06:00.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112022] pci 0000:05:00.0: PCI bridge to [bus 06]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112027] pci 0000:05:00.0:   bridge window [io  0xb000-0xbfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112029] pci 0000:05:00.0:   bridge window [mem 0xf0000000-0xf3ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112034] pci 0000:05:00.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112081] pci 0000:07:00.0: [10de:05e0] type 00 class 0x030000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112105] pci 0000:07:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112118] pci 0000:07:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112131] pci 0000:07:00.0: reg 0x1c: [mem 0xf4000000-0xf5ffffff 64bit]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112139] pci 0000:07:00.0: reg 0x24: [io  0xcc00-0xcc7f]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112147] pci 0000:07:00.0: reg 0x30: [mem 0xf7d80000-0xf7dfffff pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.112155] pci 0000:07:00.0: enabling Extended Tags
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124024] pci 0000:05:02.0: PCI bridge to [bus 07]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124028] pci 0000:05:02.0:   bridge window [io  0xc000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124031] pci 0000:05:02.0:   bridge window [mem 0xf4000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124035] pci 0000:05:02.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124079] pci 0000:03:02.0: PCI bridge to [bus 08]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124198] pci 0000:09:00.0: [10ec:8168] type 00 class 0x020000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124218] pci 0000:09:00.0: reg 0x10: [io  0xd800-0xd8ff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124236] pci 0000:09:00.0: reg 0x18: [mem 0xdefff000-0xdeffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124248] pci 0000:09:00.0: reg 0x20: [mem 0xdefe0000-0xdefeffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124255] pci 0000:09:00.0: reg 0x30: [mem 0xf7ef0000-0xf7efffff pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124318] pci 0000:09:00.0: supports D1 D2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.124319] pci 0000:09:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136029] pci 0000:00:12.0: PCI bridge to [bus 09]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136042] pci 0000:00:12.0:   bridge window [io  0xd000-0xdfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136049] pci 0000:00:12.0:   bridge window [mem 0xf7e00000-0xf7efffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136061] pci 0000:00:12.0:   bridge window [mem 0xdef00000-0xdeffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136194] pci 0000:0a:00.0: [197b:2363] type 00 class 0x010185
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136264] pci 0000:0a:00.0: reg 0x24: [mem 0xf7ffe000-0xf7ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136320] pci 0000:0a:00.0: PME# supported from D3hot
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136374] pci 0000:0a:00.1: [197b:2363] type 00 class 0x010185
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136393] pci 0000:0a:00.1: reg 0x10: [io  0xec00-0xec07]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136400] pci 0000:0a:00.1: reg 0x14: [io  0xe880-0xe883]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136406] pci 0000:0a:00.1: reg 0x18: [io  0xe800-0xe807]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136413] pci 0000:0a:00.1: reg 0x1c: [io  0xe480-0xe483]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136420] pci 0000:0a:00.1: reg 0x20: [io  0xe400-0xe40f]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136502] pci 0000:0a:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136512] pci 0000:00:13.0: PCI bridge to [bus 0a]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136524] pci 0000:00:13.0:   bridge window [io  0xe000-0xefff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136531] pci 0000:00:13.0:   bridge window [mem 0xf7f00000-0xf7ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136644] pci 0000:0b:00.0: [1102:000b] type 00 class 0x040300
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136670] pci 0000:0b:00.0: reg 0x10: [mem 0xfebf0000-0xfebfffff 64bit]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136683] pci 0000:0b:00.0: reg 0x18: [mem 0xfe800000-0xfe9fffff 64bit]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.136696] pci 0000:0b:00.0: reg 0x20: [mem 0xf8000000-0xfbffffff 64bit]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.152029] pci 0000:00:14.0: PCI bridge to [bus 0b]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.152047] pci 0000:00:14.0:   bridge window [mem 0xf8000000-0xfebfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.153018] ACPI: PCI Interrupt Link [LNKA] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.153149] ACPI: PCI Interrupt Link [LNKB] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.153278] ACPI: PCI Interrupt Link [LNKC] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.153409] ACPI: PCI Interrupt Link [LNKD] (IRQs 16 17 18 19) *11
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.153539] ACPI: PCI Interrupt Link [LN0A] (IRQs 16 17 18 19) *10
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.153667] ACPI: PCI Interrupt Link [LN0B] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.153798] ACPI: PCI Interrupt Link [LN0C] (IRQs 16 17 18 19) *10
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.153925] ACPI: PCI Interrupt Link [LN0D] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.154053] ACPI: PCI Interrupt Link [LN1A] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.154181] ACPI: PCI Interrupt Link [LN1B] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.154309] ACPI: PCI Interrupt Link [LN1C] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.154437] ACPI: PCI Interrupt Link [LN1D] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.154567] ACPI: PCI Interrupt Link [LN2A] (IRQs 16 17 18 19) *11
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.154694] ACPI: PCI Interrupt Link [LN2B] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.154822] ACPI: PCI Interrupt Link [LN2C] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.154950] ACPI: PCI Interrupt Link [LN2D] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.155081] ACPI: PCI Interrupt Link [LN3A] (IRQs 16 17 18 19) *15
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.155208] ACPI: PCI Interrupt Link [LN3B] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.155336] ACPI: PCI Interrupt Link [LN3C] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.155464] ACPI: PCI Interrupt Link [LN3D] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.155595] ACPI: PCI Interrupt Link [LN4A] (IRQs 16 17 18 19) *7
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.155723] ACPI: PCI Interrupt Link [LN4B] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.155851] ACPI: PCI Interrupt Link [LN4C] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.155979] ACPI: PCI Interrupt Link [LN4D] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.156118] ACPI: PCI Interrupt Link [LN5A] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.156246] ACPI: PCI Interrupt Link [LN5B] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.156374] ACPI: PCI Interrupt Link [LN5C] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.156504] ACPI: PCI Interrupt Link [LN5D] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.156632] ACPI: PCI Interrupt Link [LN6A] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.156760] ACPI: PCI Interrupt Link [LN6B] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.156889] ACPI: PCI Interrupt Link [LN6C] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.157017] ACPI: PCI Interrupt Link [LN6D] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.157146] ACPI: PCI Interrupt Link [LN7A] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.157274] ACPI: PCI Interrupt Link [LN7B] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.157402] ACPI: PCI Interrupt Link [LN7C] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.157531] ACPI: PCI Interrupt Link [LN7D] (IRQs 16 17 18 19) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.157662] ACPI: PCI Interrupt Link [LUB0] (IRQs 20 21 22 23) *10
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.157792] ACPI: PCI Interrupt Link [LUB2] (IRQs 20 21 22 23) *10
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.157922] ACPI: PCI Interrupt Link [LMAC] (IRQs 20 21 22 23) *10
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.158052] ACPI: PCI Interrupt Link [LAZA] (IRQs 20 21 22 23) *10
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.158180] ACPI: PCI Interrupt Link [SGRU] (IRQs 20 21 22 23) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.158311] ACPI: PCI Interrupt Link [LSMB] (IRQs 20 21 22 23) *11
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.158441] ACPI: PCI Interrupt Link [LPMU] (IRQs 20 21 22 23) *15
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.158571] ACPI: PCI Interrupt Link [LSA0] (IRQs 20 21 22 23) *5
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.158713] ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22 23) *0, disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.158845] ACPI: PCI Interrupt Link [UB11] (IRQs 20 21 22 23) *11
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.158975] ACPI: PCI Interrupt Link [UB12] (IRQs 20 21 22 23) *15
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160003] SCSI subsystem initialized
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160021] libata version 3.00 loaded.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160024] pci 0000:07:00.0: vgaarb: setting as boot VGA device
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160024] pci 0000:07:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160024] pci 0000:07:00.0: vgaarb: bridge control possible
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160024] vgaarb: loaded
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160032] ACPI: bus type USB registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160045] usbcore: registered new interface driver usbfs
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160051] usbcore: registered new interface driver hub
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160067] usbcore: registered new device driver usb
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160096] EDAC MC: Ver: 3.0.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.160125] PCI: Using ACPI for IRQ routing
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.167029] PCI: pci_cache_line_size set to 64 bytes
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.167113] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.167114] e820: reserve RAM buffer [mem 0xaffa0000-0xafffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.168003] NetLabel: Initializing
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.168003] NetLabel:  domain hash size = 128
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.168003] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.168003] NetLabel:  unlabeled traffic allowed by default
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.168069] clocksource: Switched to clocksource refined-jiffies
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] VFS: Disk quotas dquot_6.6.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] AppArmor: AppArmor Filesystem Enabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] pnp: PnP ACPI init
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] pnp 00:00: [dma 0 disabled]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] pnp 00:00: Plug and Play ACPI device, IDs PNP0501 (active)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [io  0x04d0-0x04d1] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [io  0x0800-0x080f] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [io  0x2000-0x207f] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [io  0x2080-0x20ff] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [io  0x2400-0x247f] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [io  0x2480-0x24ff] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [io  0x2800-0x287f] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [io  0x2880-0x28ff] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [mem 0x000d0000-0x000d3fff window] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [mem 0x000d4000-0x000d7fff window] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [mem 0x000de000-0x000dffff window] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [mem 0xfed04000-0xfed04fff] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: [mem 0xfee01000-0xfeefffff] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:03: [mem 0xfec00000-0xfec00fff] could not be reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:03: [mem 0xfee00000-0xfee00fff] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:04: [io  0x0a00-0x0adf] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:04: [io  0x0ae0-0x0aef] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180011] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180071] system 00:06: [mem 0x00000000-0x0009ffff] could not be reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180072] system 00:06: [mem 0x000c0000-0x000cffff] could not be reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180073] system 00:06: [mem 0x000e0000-0x000fffff] could not be reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180074] system 00:06: [mem 0x00100000-0xafffffff] could not be reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180076] system 00:06: [mem 0xfed45000-0xffffffff] could not be reserved
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180078] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.180882] pnp: PnP ACPI: found 7 devices
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.186646] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] clocksource: Switched to clocksource acpi_pm
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:08.0: PCI bridge to [bus 01]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:08.0:   bridge window [io  0xa000-0xafff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:08.0:   bridge window [mem 0xdff00000-0xdfffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:05:00.0: PCI bridge to [bus 06]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:05:00.0:   bridge window [io  0xb000-0xbfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:05:00.0:   bridge window [mem 0xf0000000-0xf3ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:05:00.0:   bridge window [mem 0xb0000000-0xbfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:05:02.0: PCI bridge to [bus 07]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:05:02.0:   bridge window [io  0xc000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:05:02.0:   bridge window [mem 0xf4000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:05:02.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:04:00.0: PCI bridge to [bus 05-07]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:04:00.0:   bridge window [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:04:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:04:00.0:   bridge window [mem 0xb0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:03:00.0: PCI bridge to [bus 04-07]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:03:00.0:   bridge window [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:03:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:03:00.0:   bridge window [mem 0xb0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:03:02.0: PCI bridge to [bus 08]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:02:00.0: PCI bridge to [bus 03-08]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:02:00.0:   bridge window [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:02:00.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:02:00.0:   bridge window [mem 0xb0000000-0xdeefffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:10.0: PCI bridge to [bus 02-08]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:10.0:   bridge window [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:10.0:   bridge window [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:10.0:   bridge window [mem 0xb0000000-0xdeefffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:12.0: PCI bridge to [bus 09]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:12.0:   bridge window [io  0xd000-0xdfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:12.0:   bridge window [mem 0xf7e00000-0xf7efffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:12.0:   bridge window [mem 0xdef00000-0xdeffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:13.0: PCI bridge to [bus 0a]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:13.0:   bridge window [io  0xe000-0xefff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:13.0:   bridge window [mem 0xf7f00000-0xf7ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:14.0: PCI bridge to [bus 0b]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci 0000:00:14.0:   bridge window [mem 0xf8000000-0xfebfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:00: resource 8 [mem 0xb0000000-0xdfffffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfed44fff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:01: resource 0 [io  0xa000-0xafff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:01: resource 1 [mem 0xdff00000-0xdfffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:01: resource 4 [io  0x0000-0x0cf7 window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:01: resource 5 [io  0x0d00-0xffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:01: resource 7 [mem 0x000d0000-0x000dffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:01: resource 8 [mem 0xb0000000-0xdfffffff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:01: resource 9 [mem 0xf0000000-0xfed44fff window]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:02: resource 0 [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:02: resource 1 [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:02: resource 2 [mem 0xb0000000-0xdeefffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:03: resource 0 [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:03: resource 1 [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:03: resource 2 [mem 0xb0000000-0xdeefffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:04: resource 0 [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:04: resource 1 [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:04: resource 2 [mem 0xb0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:05: resource 0 [io  0xb000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:05: resource 1 [mem 0xf0000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:05: resource 2 [mem 0xb0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:06: resource 0 [io  0xb000-0xbfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:06: resource 1 [mem 0xf0000000-0xf3ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:06: resource 2 [mem 0xb0000000-0xbfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:07: resource 0 [io  0xc000-0xcfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:07: resource 1 [mem 0xf4000000-0xf7dfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:07: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:09: resource 0 [io  0xd000-0xdfff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:09: resource 1 [mem 0xf7e00000-0xf7efffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:09: resource 2 [mem 0xdef00000-0xdeffffff 64bit pref]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:0a: resource 0 [io  0xe000-0xefff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:0a: resource 1 [mem 0xf7f00000-0xf7ffffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] pci_bus 0000:0b: resource 1 [mem 0xf8000000-0xfebfffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188002] NET: Registered protocol family 2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188061] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188061] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188061] TCP: Hash tables configured (established 65536 bind 65536)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188061] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188061] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.188061] NET: Registered protocol family 1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.189691] ACPI: PCI Interrupt Link [LUB0] enabled at IRQ 23
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.264426] ACPI: PCI Interrupt Link [LUB2] enabled at IRQ 22
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.264804] ACPI: PCI Interrupt Link [UB11] enabled at IRQ 21
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.344446] ACPI: PCI Interrupt Link [UB12] enabled at IRQ 20
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.344646] pci 0000:00:08.0: Enabling HT MSI Mapping
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.344735] pci 0000:00:09.0: Enabling HT MSI Mapping
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.344828] pci 0000:00:0a.0: Enabling HT MSI Mapping
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.345074] pci 0000:07:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.345079] pci 0000:0a:00.0: async suspend disabled to avoid multi-function power-on ordering issue
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.345082] pci 0000:0a:00.1: async suspend disabled to avoid multi-function power-on ordering issue
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.345086] PCI: CLS 64 bytes, default 64
Aug 13 16:19:11 thomas-MS-7375 kernel: [    0.345128] Unpacking initramfs...
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.019861] Freeing initrd memory: 55508K
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.020950] PCI-DMA: Disabling AGP.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.021047] PCI-DMA: aperture base @ a4000000 size 65536 KB
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.021047] PCI-DMA: using GART IOMMU.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.021049] PCI-DMA: Reserving 64MB of IOMMU area in the AGP aperture
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.023855] LVT offset 1 assigned for vector 0x400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.023864] IBS: LVT offset 1 assigned
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.023998] perf: AMD IBS detected (0x0000001f)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.024133] Scanning for low memory corruption every 60 seconds
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.024635] Initialise system trusted keyrings
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.024643] Key type blacklist registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.024741] workingset: timestamp_bits=36 max_order=21 bucket_order=0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.025689] zbud: loaded
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.026038] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.026198] fuse init (API version 7.26)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.028120] Key type asymmetric registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.028120] Asymmetric key parser 'x509' registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.028142] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.028179] io scheduler noop registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.028180] io scheduler deadline registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.028213] io scheduler cfq registered (default)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.028716] ACPI: PCI Interrupt Link [LN0A] enabled at IRQ 19
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.029158] ACPI: PCI Interrupt Link [LN2A] enabled at IRQ 18
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.029560] ACPI: PCI Interrupt Link [LN3A] enabled at IRQ 17
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.029961] ACPI: PCI Interrupt Link [LN4A] enabled at IRQ 16
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030403] vesafb: mode is 640x480x32, linelength=2560, pages=0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030404] vesafb: scrolling: redraw
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030405] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030416] vesafb: framebuffer at 0xf5000000, mapped to 0x        (ptrval), using 1216k, total 1216k
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030498] Console: switching to colour frame buffer device 80x30
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030507] fb0: VESA VGA frame buffer device
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030596] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030631] ACPI: Power Button [PWRB]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030664] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.030692] ACPI: Power Button [PWRF]
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.031065] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.051507] 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.053220] Linux agpgart interface v0.103
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.054627] loop: module loaded
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.054836] libphy: Fixed MDIO Bus: probed
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.054837] tun: Universal TUN/TAP device driver, 1.6
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.054866] PPP generic driver version 2.4.2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.054903] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.054905] ehci-pci: EHCI PCI platform driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.055054] ehci-pci 0000:00:02.1: EHCI Host Controller
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.055062] ehci-pci 0000:00:02.1: new USB bus registered, assigned bus number 1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.055070] ehci-pci 0000:00:02.1: debug port 1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.055094] ehci-pci 0000:00:02.1: cache line size of 64 is not supported
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.055115] ehci-pci 0000:00:02.1: irq 22, io mem 0xdfe7ec00
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072044] ehci-pci 0000:00:02.1: USB 2.0 started, EHCI 1.00
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072091] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072092] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072093] usb usb1: Product: EHCI Host Controller
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072094] usb usb1: Manufacturer: Linux 4.15.0-30-generic ehci_hcd
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072095] usb usb1: SerialNumber: 0000:00:02.1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072197] hub 1-0:1.0: USB hub found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072202] hub 1-0:1.0: 6 ports detected
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072467] ehci-pci 0000:00:04.1: EHCI Host Controller
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072472] ehci-pci 0000:00:04.1: new USB bus registered, assigned bus number 2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072478] ehci-pci 0000:00:04.1: debug port 1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072499] ehci-pci 0000:00:04.1: cache line size of 64 is not supported
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.072516] ehci-pci 0000:00:04.1: irq 20, io mem 0xdfe7e800
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088047] ehci-pci 0000:00:04.1: USB 2.0 started, EHCI 1.00
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088090] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088091] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088092] usb usb2: Product: EHCI Host Controller
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088092] usb usb2: Manufacturer: Linux 4.15.0-30-generic ehci_hcd
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088093] usb usb2: SerialNumber: 0000:00:04.1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088192] hub 2-0:1.0: USB hub found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088196] hub 2-0:1.0: 6 ports detected
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088321] ehci-platform: EHCI generic platform driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088329] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088332] ohci-pci: OHCI PCI platform driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088466] ohci-pci 0000:00:02.0: OHCI PCI host controller
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088471] ohci-pci 0000:00:02.0: new USB bus registered, assigned bus number 3
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.088497] ohci-pci 0000:00:02.0: irq 23, io mem 0xdfe7f000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150060] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150062] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150063] usb usb3: Product: OHCI PCI host controller
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150063] usb usb3: Manufacturer: Linux 4.15.0-30-generic ohci_hcd
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150064] usb usb3: SerialNumber: 0000:00:02.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150170] hub 3-0:1.0: USB hub found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150176] hub 3-0:1.0: 6 ports detected
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150422] ohci-pci 0000:00:04.0: OHCI PCI host controller
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150425] ohci-pci 0000:00:04.0: new USB bus registered, assigned bus number 4
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.150452] ohci-pci 0000:00:04.0: irq 21, io mem 0xdfe7d000
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210057] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210058] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210059] usb usb4: Product: OHCI PCI host controller
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210060] usb usb4: Manufacturer: Linux 4.15.0-30-generic ohci_hcd
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210061] usb usb4: SerialNumber: 0000:00:04.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210169] hub 4-0:1.0: USB hub found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210174] hub 4-0:1.0: 6 ports detected
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210302] ohci-platform: OHCI generic platform driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210309] uhci_hcd: USB Universal Host Controller Interface driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210352] i8042: PNP: No PS/2 controller found.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.210352] i8042: Probing ports directly.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.212744] serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.212748] serio: i8042 AUX port at 0x60,0x64 irq 12
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.212870] mousedev: PS/2 mouse device common for all mice
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.213008] rtc_cmos 00:02: RTC can wake from S4
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.213241] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.213287] rtc_cmos 00:02: alarms up to one year, y3k, 114 bytes nvram
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.213292] i2c /dev entries driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.213326] device-mapper: uevent: version 1.0.3
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.213383] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.213471] ledtrig-cpu: registered to indicate activity on CPUs
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.213862] NET: Registered protocol family 10
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.217637] Segment Routing with IPv6
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.217654] NET: Registered protocol family 17
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.217700] Key type dns_resolver registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.217923] RAS: Correctable Errors collector initialized.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.217941] microcode: microcode updated early to new patch_level=0x010000db
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.217964] microcode: CPU0: patch_level=0x010000db
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.217974] microcode: CPU1: patch_level=0x010000db
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.217983] microcode: CPU2: patch_level=0x010000db
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.217987] microcode: CPU3: patch_level=0x010000db
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.218018] microcode: Microcode Update Driver: v2.2.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.218030] sched_clock: Marking stable (1218014561, 0)->(1299726021, -81711460)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.218276] registered taskstats version 1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.218284] Loading compiled-in X.509 certificates
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.220614] Loaded X.509 cert 'Build time autogenerated kernel key: feb1be905f03d3d8b1734d031dd3f1fc0eb6b5d2'
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.220633] zswap: loaded using pool lzo/zbud
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.223627] Key type big_key registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.223631] Key type trusted registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.225072] Key type encrypted registered
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.225075] AppArmor: AppArmor sha1 policy hashing enabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.225078] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.225102] evm: HMAC attrs: 0x1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.225501]   Magic number: 14:743:333
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.225528] tty tty54: hash matches
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.225666] rtc_cmos 00:02: setting system clock to 2018-08-13 14:18:20 UTC (1534169900)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.225762] powernow_k8: This CPU is not supported anymore, using acpi-cpufreq instead.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.226475] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.226476] EDD information not available.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.229469] Freeing unused kernel memory: 2400K
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.248057] Write protecting the kernel read-only data: 20480k
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.248795] Freeing unused kernel memory: 2008K
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.253247] Freeing unused kernel memory: 1892K
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.259975] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.269537] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.269602] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.269611] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.269622] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.270137] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.270156] random: udevadm: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.277076] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.277096] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.277100] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.277330] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.308647] acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.319732] pata_amd 0000:00:06.0: version 0.4.1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.323557] scsi host0: pata_amd
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.328076] scsi host1: pata_amd
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.328116] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.328117] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.328209] ahci 0000:00:09.0: version 3.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.328603] ACPI: PCI Interrupt Link [LSA0] enabled at IRQ 23
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.328628] ahci 0000:00:09.0: controller can't do PMP, turning off CAP_PMP
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.328704] ahci 0000:00:09.0: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl IDE mode
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.328706] ahci 0000:00:09.0: flags: 64bit ncq sntf led clo pio boh 
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329341] scsi host2: ahci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329435] scsi host3: ahci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329524] scsi host4: ahci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329674] scsi host5: ahci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329818] scsi host6: ahci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329905] scsi host7: ahci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329942] ata3: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76100 irq 24
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329943] ata4: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76180 irq 24
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329944] ata5: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76200 irq 24
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329945] ata6: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76280 irq 24
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329946] ata7: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76300 irq 24
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329947] ata8: SATA max UDMA/133 abar m8192@0xdfe76000 port 0xdfe76380 irq 24
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.329985] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.330288] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 22
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.341371] ahci 0000:0a:00.0: AHCI 0001.0000 32 slots 2 ports 3 Gbps 0x3 impl SATA mode
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.341374] ahci 0000:0a:00.0: flags: 64bit ncq pm led clo pmp pio slum part 
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.344028] scsi host8: ahci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.346040] scsi host9: ahci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.346083] ata9: SATA max UDMA/133 abar m8192@0xf7ffe000 port 0xf7ffe100 irq 17
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.346085] ata10: SATA max UDMA/133 abar m8192@0xf7ffe000 port 0xf7ffe180 irq 17
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.348501] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 19
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.352121] pata_jmicron 0000:0a:00.1: enabling device (0000 -> 0001)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.352420] ACPI: PCI Interrupt Link [LN3B] enabled at IRQ 18
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.355277] scsi host10: pata_jmicron
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.355359] scsi host11: pata_jmicron
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.355387] ata11: PATA max UDMA/100 cmd 0xec00 ctl 0xe880 bmdma 0xe400 irq 18
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.355388] ata12: PATA max UDMA/100 cmd 0xe800 ctl 0xe480 bmdma 0xe408 irq 18
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.369129] MXM: GUID detected in BIOS
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.369386] checking generic (f5000000 130000) vs hw (b0000000 10000000)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.369388] checking generic (f5000000 130000) vs hw (f0000000 2000000)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.369427] nouveau 0000:06:00.0: NVIDIA GT200 (0a0000b1)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.408025] usb 1-4: new high-speed USB device number 2 using ehci-pci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.494097] nouveau 0000:06:00.0: bios: version 62.00.45.00.01
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.494149] firewire_ohci 0000:01:09.0: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x11
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.494160] usb 2-3: new high-speed USB device number 2 using ehci-pci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.501172] ata2: port disabled--ignoring
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.596117] nouveau 0000:06:00.0: fb: 896 MiB GDDR3
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638265] [TTM] Zone  kernel: Available graphics memory: 4084100 kiB
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638266] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638266] [TTM] Initializing pool allocator
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638269] [TTM] Initializing DMA pool allocator
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638280] nouveau 0000:06:00.0: DRM: VRAM: 896 MiB
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638281] nouveau 0000:06:00.0: DRM: GART: 1048576 MiB
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638283] nouveau 0000:06:00.0: DRM: TMDS table version 2.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638284] nouveau 0000:06:00.0: DRM: DCB version 4.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638285] nouveau 0000:06:00.0: DRM: DCB outp 00: 02000312 00020010
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638287] nouveau 0000:06:00.0: DRM: DCB conn 00: 00001061
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.638288] nouveau 0000:06:00.0: DRM: DCB conn 01: 00000162
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.639644] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.639644] [drm] Driver supports precise vblank timestamp query.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.641090] nouveau 0000:06:00.0: DRM: MM: using CRYPT for buffer copies
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.641105] [drm] Initialized nouveau 1.3.1 20120801 for 0000:06:00.0 on minor 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.641438] ACPI: PCI Interrupt Link [LN0C] enabled at IRQ 17
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.641487] checking generic (f5000000 130000) vs hw (c0000000 10000000)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.641488] checking generic (f5000000 130000) vs hw (f4000000 2000000)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.641488] fb: switching to nouveaufb from VESA VGA
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.641510] Console: switching to colour dummy device 80x25
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.641619] nouveau 0000:07:00.0: NVIDIA GT200 (0a0000b1)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.650415] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.653405] ata3.00: ATA-8: WDC WD1500HLFS-01G6U0, 04.04V01, max UDMA/133
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.653406] ata3.00: 293046768 sectors, multi 16: LBA48 NCQ (depth 31/32)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.654503] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.655288] ata4.00: ATA-8: WDC WD10EZEX-00RKKA0, 80.00A80, max UDMA/133
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.655289] ata4.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.657073] ata4.00: configured for UDMA/133
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.657436] ata3.00: configured for UDMA/133
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.657630] scsi 2:0:0:0: Direct-Access     ATA      WDC WD1500HLFS-0 4V01 PQ: 0 ANSI: 5
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.657823] sd 2:0:0:0: Attached scsi generic sg0 type 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.657839] sd 2:0:0:0: [sda] 293046768 512-byte logical blocks: (150 GB/140 GiB)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.657851] sd 2:0:0:0: [sda] Write Protect is off
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.657852] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.657869] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.657998] scsi 3:0:0:0: Direct-Access     ATA      WDC WD10EZEX-00R 0A80 PQ: 0 ANSI: 5
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.658197] sd 3:0:0:0: Attached scsi generic sg1 type 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.658291] sd 3:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.658292] sd 3:0:0:0: [sdb] 4096-byte physical blocks
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.658320] ata6: SATA link down (SStatus 0 SControl 300)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.658331] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.658340] sd 3:0:0:0: [sdb] Write Protect is off
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.658341] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.658371] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.659468] ata5.00: ATAPI: HL-DT-STDVD-RAM GH22NS30, 1.01, max UDMA/100
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.660901] ata5.00: configured for UDMA/100
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.662416] scsi 4:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GH22NS30 1.01 PQ: 0 ANSI: 5
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.662484] ata7: SATA link down (SStatus 0 SControl 300)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.674048]  sdb: sdb1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.674421] sd 3:0:0:0: [sdb] Attached SCSI disk
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.677798]  sda: sda1 sda2 < sda5 >
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.678197] sd 2:0:0:0: [sda] Attached SCSI disk
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.678599] ata8: SATA link down (SStatus 0 SControl 300)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.678601] ata10: SATA link down (SStatus 0 SControl 300)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.678628] ata9: SATA link down (SStatus 0 SControl 300)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.688974] usb 1-4: New USB device found, idVendor=048d, idProduct=1336
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.688976] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.688977] usb 1-4: Product: Mass Storage Device
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.688978] usb 1-4: Manufacturer: Generic   
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.688979] usb 1-4: SerialNumber: 00000000000006
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.692863] usb-storage 1-4:1.0: USB Mass Storage device detected
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.692988] scsi host12: usb-storage 1-4:1.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.693048] usbcore: registered new interface driver usb-storage
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.694264] usbcore: registered new interface driver uas
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.784323] nouveau 0000:07:00.0: bios: version 62.00.45.00.02
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.805066] nouveau 0000:07:00.0: fb: 896 MiB GDDR3
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.818919] usb 2-3: New USB device found, idVendor=04fc, idProduct=0c15
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.818920] usb 2-3: New USB device strings: Mfr=2, Product=3, SerialNumber=1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.818921] usb 2-3: Product: USB to Serial-ATA bridge
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.818922] usb 2-3: Manufacturer: Sunplus Technology Inc.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.818923] usb 2-3: SerialNumber: ST96812AS             5PJ364WF
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.825191] usb-storage 2-3:1.0: USB Mass Storage device detected
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.828950] scsi host13: usb-storage 2-3:1.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.846997] nouveau 0000:07:00.0: DRM: VRAM: 896 MiB
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.846998] nouveau 0000:07:00.0: DRM: GART: 1048576 MiB
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.847000] nouveau 0000:07:00.0: DRM: TMDS table version 2.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.847001] nouveau 0000:07:00.0: DRM: DCB version 4.0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.847003] nouveau 0000:07:00.0: DRM: DCB outp 00: 02000310 00000028
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.847004] nouveau 0000:07:00.0: DRM: DCB outp 01: 02000312 00020030
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.847005] nouveau 0000:07:00.0: DRM: DCB outp 02: 04011320 00000028
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.847006] nouveau 0000:07:00.0: DRM: DCB outp 03: 01011322 00020030
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.847007] nouveau 0000:07:00.0: DRM: DCB conn 00: 00002130
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.847008] nouveau 0000:07:00.0: DRM: DCB conn 01: 00001030
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.849566] sr 4:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.849568] cdrom: Uniform CD-ROM driver Revision: 3.20
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.849670] sr 4:0:0:0: Attached scsi CD-ROM sr0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.849719] sr 4:0:0:0: Attached scsi generic sg2 type 5
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.859757] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.859758] [drm] Driver supports precise vblank timestamp query.
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.861214] nouveau 0000:07:00.0: DRM: MM: using CRYPT for buffer copies
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.892124] forcedeth 0000:00:0a.0: ifname eth0, PHY OUI 0x732 @ 1, addr 00:21:85:62:26:4e
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.892125] forcedeth 0000:00:0a.0: highdma csum pwrctl mgmt gbit lnktim msi desc-v3
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.894490] forcedeth 0000:00:0a.0 enp0s10: renamed from eth0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.923235] nouveau 0000:07:00.0: DRM: allocated 1440x1024 fb: 0x80000, bo         (ptrval)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.953432] fbcon: nouveaufb (fb0) is primary device
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.953489] Console: switching to colour frame buffer device 160x56
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.953506] nouveau 0000:07:00.0: fb0: nouveaufb frame buffer device
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.983690] usb 2-4: new high-speed USB device number 3 using ehci-pci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    1.987999] [drm] Initialized nouveau 1.3.1 20120801 for 0000:07:00.0 on minor 1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.012056] firewire_core 0000:01:09.0: created device fw0: GUID 0010dc00016a903c, S400
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.043995] tsc: Refined TSC clocksource calibration: 3506.250 MHz
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.044005] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x328a60b8dda, max_idle_ns: 440795213316 ns
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.153373] usb 2-4: New USB device found, idVendor=0bda, idProduct=5411
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.153375] usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.153376] usb 2-4: Product: 4-Port USB 2.0 Hub
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.153377] usb 2-4: Manufacturer: Generic
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.153888] hub 2-4:1.0: USB hub found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.154746] hub 2-4:1.0: 4 ports detected
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.276018] random: fast init done
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.443982] usb 2-4.3: new full-speed USB device number 4 using ehci-pci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.557741] usb 2-4.3: New USB device found, idVendor=046d, idProduct=c049
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.557743] usb 2-4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.557744] usb 2-4.3: Product: USB Gaming Mouse
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.557745] usb 2-4.3: Manufacturer: Logitech
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.561601] hidraw: raw HID events driver (C) Jiri Kosina
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.567243] usbcore: registered new interface driver usbhid
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.567244] usbhid: USB HID core driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.568727] input: Logitech USB Gaming Mouse as /devices/pci0000:00/0000:00:04.1/usb2/2-4/2-4.3/2-4.3:1.0/0003:046D:C049.0001/input/input5
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.568813] hid-generic 0003:046D:C049.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Gaming Mouse] on usb-0000:00:04.1-4.3/input0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.568955] hid-generic 0003:046D:C049.0002: hiddev0,hidraw1: USB HID v1.11 Device [Logitech USB Gaming Mouse] on usb-0000:00:04.1-4.3/input1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.639981] usb 2-4.4: new full-speed USB device number 5 using ehci-pci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.718365] scsi 12:0:0:0: Direct-Access     Generic  Storage Device   0.00 PQ: 0 ANSI: 2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.718614] sd 12:0:0:0: Attached scsi generic sg3 type 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.720004] sd 12:0:0:0: [sdc] Attached SCSI removable disk
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.753871] usb 2-4.4: New USB device found, idVendor=046d, idProduct=c223
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.753873] usb 2-4.4: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.753874] usb 2-4.4: Product: G15 Keyboard Hub
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.754123] hub 2-4.4:1.0: USB hub found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.754354] hub 2-4.4:1.0: 4 ports detected
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.849637] scsi 13:0:0:0: Direct-Access     ST96812A S                     PQ: 0 ANSI: 2
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.849871] sd 13:0:0:0: Attached scsi generic sg4 type 0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.872502] sd 13:0:0:0: [sdd] 117210240 512-byte logical blocks: (60.0 GB/55.9 GiB)
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.877641] sd 13:0:0:0: [sdd] Write Protect is off
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.877643] sd 13:0:0:0: [sdd] Mode Sense: 38 00 00 00
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.881637] sd 13:0:0:0: [sdd] No Caching mode page found
Aug 13 16:19:11 thomas-MS-7375 kernel: [    2.881641] sd 13:0:0:0: [sdd] Assuming drive cache: write through
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.039976] usb 2-4.4.1: new low-speed USB device number 6 using ehci-pci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.068050] clocksource: Switched to clocksource tsc
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.154862] usb 2-4.4.1: New USB device found, idVendor=046d, idProduct=c226
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.154864] usb 2-4.4.1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.154864] usb 2-4.4.1: Product: G15 Gaming Keyboard
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.158347] input: G15 Gaming Keyboard as /devices/pci0000:00/0000:00:04.1/usb2/2-4/2-4.4/2-4.4.1/2-4.4.1:1.0/0003:046D:C226.0003/input/input6
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.185624]  sdd: sdd1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.216052] hid-generic 0003:046D:C226.0003: input,hidraw2: USB HID v1.10 Keyboard [G15 Gaming Keyboard] on usb-0000:00:04.1-4.4.1/input0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.220207] input: G15 Gaming Keyboard as /devices/pci0000:00/0000:00:04.1/usb2/2-4/2-4.4/2-4.4.1/2-4.4.1:1.1/0003:046D:C226.0004/input/input7
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.221637] sd 13:0:0:0: [sdd] Attached SCSI disk
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.280060] hid-generic 0003:046D:C226.0004: input,hiddev1,hidraw3: USB HID v1.10 Device [G15 Gaming Keyboard] on usb-0000:00:04.1-4.4.1/input1
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.363956] usb 2-4.4.4: new full-speed USB device number 7 using ehci-pci
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.477368] usb 2-4.4.4: New USB device found, idVendor=046d, idProduct=c227
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.477370] usb 2-4.4.4: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.477371] usb 2-4.4.4: Product: G15 GamePanel LCD
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.495771] input: G15 GamePanel LCD as /devices/pci0000:00/0000:00:04.1/usb2/2-4/2-4.4/2-4.4.4/2-4.4.4:1.0/0003:046D:C227.0005/input/input8
Aug 13 16:19:11 thomas-MS-7375 kernel: [    3.552068] hid-generic 0003:046D:C227.0005: input,hiddev2,hidraw4: USB HID v1.11 Keypad [G15 GamePanel LCD] on usb-0000:00:04.1-4.4.4/input0
Aug 13 16:19:11 thomas-MS-7375 kernel: [   17.716865] random: crng init done
Aug 13 16:19:11 thomas-MS-7375 kernel: [   24.504889] NET: Registered protocol family 38
Aug 13 16:19:11 thomas-MS-7375 kernel: [   30.136826] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
Aug 13 16:19:11 thomas-MS-7375 kernel: [   32.818473] lp: driver loaded but no devices found
Aug 13 16:19:11 thomas-MS-7375 kernel: [   32.853001] ppdev: user-space parallel port driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [   33.210935] f71882fg: Found f71882fg chip at 0xa00, revision 32
Aug 13 16:19:11 thomas-MS-7375 kernel: [   33.211017] f71882fg f71882fg.2560: Fan: 1 is in duty-cycle mode
Aug 13 16:19:11 thomas-MS-7375 kernel: [   33.211025] f71882fg f71882fg.2560: Fan: 2 is in duty-cycle mode
Aug 13 16:19:11 thomas-MS-7375 kernel: [   33.211033] f71882fg f71882fg.2560: Fan: 3 is in duty-cycle mode
Aug 13 16:19:11 thomas-MS-7375 kernel: [   33.211042] f71882fg f71882fg.2560: Fan: 4 is in duty-cycle mode
Aug 13 16:19:11 thomas-MS-7375 kernel: [   33.211049] f71882fg f71882fg.2560: hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
Aug 13 16:19:11 thomas-MS-7375 kernel: [   45.152639] EXT4-fs (dm-1): re-mounted. Opts: errors=remount-ro
Aug 13 16:19:11 thomas-MS-7375 kernel: [   45.591967] i2c i2c-12: nForce2 SMBus adapter at 0x2d00
Aug 13 16:19:11 thomas-MS-7375 kernel: [   45.591974] ACPI Warning: SystemIO range 0x0000000000002E00-0x0000000000002E3F conflicts with OpRegion 0x0000000000002E00-0x0000000000002E3F (\SM00) (20170831/utaddress-247)
Aug 13 16:19:11 thomas-MS-7375 kernel: [   45.591980] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Aug 13 16:19:11 thomas-MS-7375 kernel: [   45.592061] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Aug 13 16:19:11 thomas-MS-7375 kernel: [   45.620497] ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
Aug 13 16:19:11 thomas-MS-7375 kernel: [   45.620506] snd_hda_intel 0000:00:07.0: Disabling MSI
Aug 13 16:19:11 thomas-MS-7375 kernel: [   45.705146] k10temp 0000:00:18.3: unreliable CPU thermal sensor; monitoring disabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [   45.729047] snd_ctxfi 0000:0b:00.0: chip 20K2 model SB0880 (1102:0043) is found
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.044932] snd_ctxfi 0000:0b:00.0: Use xfi-native timer
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.096482] kvm: Nested Virtualization enabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.096484] kvm: Nested Paging enabled
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.097956] MCE: In-kernel MCE decoding enabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.099273] EDAC amd64: Node 0: DRAM ECC disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.099275] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.099275]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.099275]  (Note that use of the override may cause unknown side effects.)
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.140286] EDAC amd64: Node 0: DRAM ECC disabled.
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.140288] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.140288]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
Aug 13 16:19:11 thomas-MS-7375 kernel: [   46.140288]  (Note that use of the override may cause unknown side effects.)
Aug 13 16:19:11 thomas-MS-7375 kernel: [   47.547540] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
Aug 13 16:19:11 thomas-MS-7375 kernel: [   47.557445] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
Aug 13 16:19:11 thomas-MS-7375 kernel: [   47.625858] Adding 8383996k swap on /dev/mapper/cryptswap1.  Priority:-2 extents:1 across:8383996k FS
Aug 13 16:19:11 thomas-MS-7375 kernel: [   49.572663] EXT4-fs (dm-4): mounted filesystem with ordered data mode. Opts: (null)
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.086669] audit: type=1400 audit(1534169950.354:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1060 comm="apparmor_parser"
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.086678] audit: type=1400 audit(1534169950.354:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1060 comm="apparmor_parser"
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.086682] audit: type=1400 audit(1534169950.354:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1060 comm="apparmor_parser"
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.086684] audit: type=1400 audit(1534169950.354:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1060 comm="apparmor_parser"
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.099495] audit: type=1400 audit(1534169950.366:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="system_tor" pid=1061 comm="apparmor_parser"
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.120711] audit: type=1400 audit(1534169950.390:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=1062 comm="apparmor_parser"
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.120715] audit: type=1400 audit(1534169950.390:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince//sanitized_helper" pid=1062 comm="apparmor_parser"
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.120717] audit: type=1400 audit(1534169950.390:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=1062 comm="apparmor_parser"
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.120719] audit: type=1400 audit(1534169950.390:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer//sanitized_helper" pid=1062 comm="apparmor_parser"
Aug 13 16:19:11 thomas-MS-7375 kernel: [   51.120721] audit: type=1400 audit(1534169950.390:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-thumbnailer" pid=1062 comm="apparmor_parser"
Aug 13 16:19:13 thomas-MS-7375 kernel: [   54.387211] vboxdrv: loading out-of-tree module taints kernel.
Aug 13 16:19:13 thomas-MS-7375 kernel: [   54.387489] vboxdrv: module verification failed: signature and/or required key missing - tainting kernel
Aug 13 16:19:13 thomas-MS-7375 kernel: [   54.390682] vboxdrv: Found 4 processor cores
Aug 13 16:19:13 thomas-MS-7375 kernel: [   54.408107] vboxdrv: TSC mode is Invariant, tentative frequency 3506250234 Hz
Aug 13 16:19:13 thomas-MS-7375 kernel: [   54.408108] vboxdrv: Successfully loaded version 5.2.12 (interface 0x00290001)
Aug 13 16:19:13 thomas-MS-7375 kernel: [   54.611014] VBoxNetFlt: Successfully started.
Aug 13 16:19:13 thomas-MS-7375 kernel: [   54.612173] VBoxNetAdp: Successfully started.
Aug 13 16:19:13 thomas-MS-7375 kernel: [   54.613297] VBoxPciLinuxInit
Aug 13 16:19:13 thomas-MS-7375 kernel: [   54.615413] vboxpci: IOMMU not found (not registered)
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.1750] NetworkManager (version 1.2.6) is starting...
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.1923] Read config: /etc/NetworkManager/NetworkManager.conf (etc: default-wifi-powersave-on.conf)
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.2220] manager[0xcee1c0]: monitoring kernel firmware directory '/lib/firmware'.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.2220] monitoring ifupdown state file '/run/network/ifstate'.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.2867] dns-mgr[0xcd0160]: init: dns=dnsmasq, rc-manager=resolvconf, plugin=dnsmasq
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7471] init!
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7473] management mode: unmanaged
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7475] devices added (path: /sys/devices/pci0000:00/0000:00:0a.0/net/enp0s10, iface: enp0s10)
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7475] device added (path: /sys/devices/pci0000:00/0000:00:0a.0/net/enp0s10, iface: enp0s10): no ifupdown configuration found.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7476] devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7476] device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7476] end _init.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7476] settings: loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list. (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-settings-plugin-ifupdown.so)
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7476] settings: loaded plugin keyfile: (c) 2007 - 2015 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7483] SettingsPlugin-Ofono: init!
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <warn>  [1534169954.7484] SettingsPlugin-Ofono: file doesn't exist: /var/lib/ofono
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7484] SettingsPlugin-Ofono: end _init.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7484] settings: loaded plugin ofono: (C) 2013-2016 Canonical Ltd.  To report bugs please use the NetworkManager mailing list. (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-settings-plugin-ofono.so)
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7484] (13689760) ... get_connections.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.7484] (13689760) ... get_connections (managed=false): return empty list.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.8523] keyfile: new connection /etc/NetworkManager/system-connections/Kabelnetzwerkverbindung 2 (f22865b6-2f10-38c3-8bb6-49fe0352a669,"Kabelnetzwerkverbindung 2")
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.9142] keyfile: new connection /etc/NetworkManager/system-connections/Kabelnetzwerkverbindung 3 (f2f4b8ff-aaee-39b7-80bc-6af114d28c6e,"Kabelnetzwerkverbindung 3")
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.9973] SettingsPlugin-Ofono: (13689984) ... get_connections.
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.9973] SettingsPlugin-Ofono: (13689984) connections count: 0
Aug 13 16:19:14 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169954.9973] get unmanaged devices count: 0
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7791] settings: hostname: using hostnamed
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7792] settings: hostname changed from (none) to "thomas-MS-7375"
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7793] Using DHCP client 'dhclient'
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7794] manager: WiFi enabled by radio killswitch; enabled by state file
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7794] manager: WWAN enabled by radio killswitch; enabled by state file
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7794] manager: Networking is enabled by state file
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7795] Loaded device plugin: NMVxlanFactory (internal)
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7795] Loaded device plugin: NMVlanFactory (internal)
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7795] Loaded device plugin: NMVethFactory (internal)
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7795] Loaded device plugin: NMTunFactory (internal)
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7795] Loaded device plugin: NMMacvlanFactory (internal)
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7795] Loaded device plugin: NMIPTunnelFactory (internal)
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7796] Loaded device plugin: NMInfinibandFactory (internal)
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7796] Loaded device plugin: NMEthernetFactory (internal)
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7796] Loaded device plugin: NMBridgeFactory (internal)
Aug 13 16:19:15 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169955.7796] Loaded device plugin: NMBondFactory (internal)
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.0800] Loaded device plugin: NMBluezManager (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-device-plugin-bluetooth.so)
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.1653] Loaded device plugin: NMAtmManager (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-device-plugin-adsl.so)
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.2445] Loaded device plugin: NMWifiFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-device-plugin-wifi.so)
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.3204] Loaded device plugin: NMWwanFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/libnm-device-plugin-wwan.so)
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: nm_device_get_device_type: assertion 'NM_IS_DEVICE (self)' failed
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.3406] device (lo): link connected
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.3412] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/0)
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.3421] manager: (enp0s10): new Ethernet device (/org/freedesktop/NetworkManager/Devices/1)
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.3430] device (enp0s10): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.3449] device (enp0s10): link connected
Aug 13 16:19:16 thomas-MS-7375 kernel: [   57.068874] IPv6: ADDRCONF(NETDEV_UP): enp0s10: link is not ready
Aug 13 16:19:16 thomas-MS-7375 kernel: [   57.069376] forcedeth 0000:00:0a.0 enp0s10: MSI enabled
Aug 13 16:19:16 thomas-MS-7375 kernel: [   57.070147] IPv6: ADDRCONF(NETDEV_UP): enp0s10: link is not ready
Aug 13 16:19:16 thomas-MS-7375 kernel: [   57.070151] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s10: link becomes ready
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.5017] urfkill disappeared from the bus
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.5044] device (enp0s10): state change: unavailable -> disconnected (reason 'none') [20 30 0]
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.5051] policy: auto-activating connection 'Kabelnetzwerkverbindung 2'
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.5059] device (enp0s10): Activation: starting connection 'Kabelnetzwerkverbindung 2' (f22865b6-2f10-38c3-8bb6-49fe0352a669)
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.5060] device (enp0s10): state change: disconnected -> prepare (reason 'none') [30 40 0]
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.5061] manager: NetworkManager state is now CONNECTING
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.5064] device (enp0s10): state change: prepare -> config (reason 'none') [40 50 0]
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.5067] device (enp0s10): state change: config -> ip-config (reason 'none') [50 70 0]
Aug 13 16:19:16 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169956.5161] dhcp4 (enp0s10): activation: beginning transaction (timeout in 45 seconds)
Aug 13 16:19:17 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169957.0782] dhcp4 (enp0s10): dhclient started with pid 1405
Aug 13 16:19:17 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169957.0793] ofono is now available
Aug 13 16:19:17 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169957.0794] ModemManager available in the bus
Aug 13 16:19:17 thomas-MS-7375 NetworkManager[1188]: <warn>  [1534169957.0800] failed to enumerate oFono devices: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided by any .service files
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1181]   address 192.168.2.122
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1181]   plen 24 (255.255.255.0)
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1181]   gateway 192.168.2.1
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1181]   server identifier 192.168.2.1
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1181]   lease time 86400
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1182]   nameserver '192.168.2.1'
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1182]   domain name 'Speedport_W_921V_1_44_000'
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1182] dhcp4 (enp0s10): state changed unknown -> bound
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1191] device (enp0s10): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1195] device (enp0s10): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1197] device (enp0s10): state change: secondaries -> activated (reason 'none') [90 100 0]
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.1198] manager: NetworkManager state is now CONNECTED_LOCAL
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.3000] manager: NetworkManager state is now CONNECTED_GLOBAL
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.3001] policy: set 'Kabelnetzwerkverbindung 2' (enp0s10) as default for IPv4 routing and DNS
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.3160] dns-plugin[0xcfc900]: starting dnsmasq...
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.3539] dns-mgr: Writing DNS information to /sbin/resolvconf
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.6065] device (enp0s10): Activation: successful, device activated.
Aug 13 16:19:18 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169958.6102] dnsmasq[0xcfc900]: dnsmasq appeared as :1.22
Aug 13 16:19:19 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169959.5769] dhcp6 (enp0s10): activation: beginning transaction (timeout in 45 seconds)
Aug 13 16:19:19 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169959.6794] dhcp6 (enp0s10): dhclient started with pid 2964
Aug 13 16:19:19 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169959.6803] policy: set 'Kabelnetzwerkverbindung 2' (enp0s10) as default for IPv6 routing and DNS
Aug 13 16:19:20 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169960.5098]   nameserver 'fe80::1'
Aug 13 16:19:20 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169960.5098] dhcp6 (enp0s10): state changed unknown -> bound
Aug 13 16:19:20 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169960.5108] dns-mgr: Writing DNS information to /sbin/resolvconf
Aug 13 16:19:20 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169960.6734] dhcp6 (enp0s10): client pid 2964 exited with status 0
Aug 13 16:19:20 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169960.6734] dhcp6 (enp0s10): state changed bound -> done
Aug 13 16:19:21 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169961.2751] manager: startup complete
Aug 13 16:19:23 thomas-MS-7375 kernel: [   64.391725] ip_tables: (C) 2000-2006 Netfilter Core Team
Aug 13 16:19:23 thomas-MS-7375 kernel: [   64.452689] ip6_tables: (C) 2000-2006 Netfilter Core Team
Aug 13 16:19:24 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169964.2767] manager: WiFi hardware radio set enabled
Aug 13 16:19:24 thomas-MS-7375 NetworkManager[1188]: <info>  [1534169964.2768] manager: WWAN hardware radio set enabled
Aug 13 16:19:47 thomas-MS-7375 gnome-session-binary[5856]: Entering running state
Aug 13 16:19:56 thomas-MS-7375 kernel: [   94.108276] EXT4-fs (dm-5): mounted filesystem with ordered data mode. Opts: (null)