ubuntuusers.de

syslog

Autor:
Tabea
Datum:
15. Juni 2012 20:23
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
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
Jun 15 13:33:57 ks384632 bluez: Stopping rfcomm
Jun 15 13:33:59 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 13:33:59 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 13:33:59 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 13:33:59 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 13:33:59 ks384632 kernel: init: plymouth-stop pre-start process (3349) terminated with status 1
Jun 15 13:34:00 ks384632 named[3046]: success resolving 'liebelein.dyndns.org/A' (in 'dyndns.org'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 13:34:01 ks384632 CRON[3357]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:34:01 ks384632 CRON[3358]: (pyload) CMD (chmod o-r ~/downloads/*)
Jun 15 13:34:01 ks384632 CRON[3359]: (pyload) CMD (/home/pyload/iptablezeugs.sh)
Jun 15 13:34:01 ks384632 CRON[3356]: (pyload) CMD (chmod g+w ~/downloads/*)
Jun 15 13:34:01 ks384632 CRON[3355]: (CRON) info (No MTA installed, discarding output)
Jun 15 13:34:01 ks384632 CRON[3354]: (CRON) info (No MTA installed, discarding output)
Jun 15 13:34:01 ks384632 CRON[3353]: (CRON) info (No MTA installed, discarding output)
Jun 15 13:34:04 ks384632 named[3046]: success resolving 'sns-pb.isc.org/AAAA' (in 'isc.org'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 13:34:04 ks384632 named[3046]: success resolving 'sns-pb.isc.org/A' (in 'isc.org'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 13:34:06 ks384632 ntpdate[2931]: step time server 213.251.128.249 offset 0.415762 sec
Jun 15 13:34:06 ks384632 kernel: grsec: time set by /usr/sbin/ntpdate[ntpdate:2931] uid/euid:0/0 gid/egid:0/0, parent /etc/network/if-up.d/ntpdate[ntpdate:2894] uid/euid:0/0 gid/egid:0/0
Jun 15 13:34:11 ks384632 dbus[2974]: [system] Activating service name='org.freedesktop.ConsoleKit' (using servicehelper)
Jun 15 13:34:11 ks384632 dbus[2974]: [system] Activating service name='org.freedesktop.PolicyKit1' (using servicehelper)
Jun 15 13:34:11 ks384632 polkitd[3552]: started daemon version 0.104 using authority implementation `local' version `0.104'
Jun 15 13:34:11 ks384632 dbus[2974]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Jun 15 13:34:11 ks384632 dbus[2974]: [system] Successfully activated service 'org.freedesktop.ConsoleKit'
Jun 15 13:34:16 ks384632 crontab[3805]: (pyload) BEGIN EDIT (pyload)
Jun 15 13:34:34 ks384632 crontab[3805]: (pyload) REPLACE (pyload)
Jun 15 13:34:34 ks384632 crontab[3805]: (pyload) END EDIT (pyload)
Jun 15 13:34:47 ks384632 crontab[3816]: (root) BEGIN EDIT (root)
Jun 15 13:34:52 ks384632 crontab[3816]: (root) END EDIT (root)
Jun 15 13:35:02 ks384632 cron[3001]: (pyload) RELOAD (crontabs/pyload)
Jun 15 13:35:02 ks384632 CRON[3827]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:35:42 ks384632 named[3046]: success resolving 'share-online.biz/DS' (in 'biz'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 13:36:01 ks384632 CRON[3938]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:37:01 ks384632 CRON[4064]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:37:55 ks384632 kernel: EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
Jun 15 13:38:01 ks384632 CRON[4206]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:39:02 ks384632 CRON[4290]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:40:01 ks384632 CRON[4372]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:41:01 ks384632 CRON[4471]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:42:01 ks384632 CRON[4553]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:43:01 ks384632 CRON[4635]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:44:01 ks384632 CRON[4717]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:45:01 ks384632 CRON[4800]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:46:01 ks384632 CRON[4882]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:47:01 ks384632 CRON[4964]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:48:01 ks384632 CRON[5046]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:49:01 ks384632 CRON[5128]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:50:01 ks384632 CRON[5173]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:51:01 ks384632 CRON[5216]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:52:01 ks384632 CRON[5259]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:53:01 ks384632 CRON[5302]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:54:01 ks384632 CRON[5345]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:55:01 ks384632 CRON[5388]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:56:01 ks384632 CRON[5431]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:57:01 ks384632 CRON[5474]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:58:01 ks384632 CRON[5517]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 13:59:01 ks384632 CRON[5560]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:00:01 ks384632 CRON[5603]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:01:01 ks384632 CRON[5685]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:02:01 ks384632 CRON[5767]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:03:01 ks384632 CRON[5849]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:04:01 ks384632 CRON[5936]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:04:08 ks384632 named[3046]: success resolving '251.122.105.46.in-addr.arpa/PTR' (in '122.105.46.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:11 ks384632 named[3046]: success resolving '250.122.105.46.in-addr.arpa/PTR' (in '122.105.46.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:13 ks384632 named[3046]: success resolving 'ns.ovh.net/A' (in 'ovh.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:13 ks384632 named[3046]: success resolving 'dns.ovh.net/A' (in 'ovh.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:13 ks384632 named[3046]: success resolving 'ns.ovh.net/AAAA' (in 'ovh.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:13 ks384632 named[3046]: success resolving 'dns.ovh.net/AAAA' (in 'ovh.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:14 ks384632 named[3046]: success resolving 'sec4.apnic.net/A' (in 'apnic.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:14 ks384632 named[3046]: success resolving 'sec4.apnic.net/AAAA' (in 'apnic.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:15 ks384632 named[3046]: success resolving '86.119.203.in-addr.arpa/DS' (in '203.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:15 ks384632 named[3046]: success resolving '1.4.5.192.in-addr.arpa/PTR' (in '4.5.192.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:22 ks384632 named[3046]: validating @0x7f1c7c45dd10: 2.0-24.194.243.63.in-addr.arpa PTR: no valid signature found
Jun 15 14:04:22 ks384632 named[3046]: success resolving '2.0-24.194.243.63.in-addr.arpa/PTR' (in '0-24.194.243.63.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:23 ks384632 named[3046]: success resolving 'sunic.sunet.se/A' (in 'sunet.se'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:23 ks384632 named[3046]: success resolving 'sunic.sunet.se/AAAA' (in 'sunet.se'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS1.HE.NET/A' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS2.HE.NET/A' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS1.HE.NET/AAAA' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS2.HE.NET/AAAA' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS4.HE.NET/A' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS3.HE.NET/AAAA' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS5.HE.NET/AAAA' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS3.HE.NET/A' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS4.HE.NET/AAAA' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving 'NS5.HE.NET/A' (in 'HE.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:26 ks384632 named[3046]: success resolving '1.71.52.72.in-addr.arpa/PTR' (in '71.52.72.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:27 ks384632 named[3046]: validating @0x7f1c7c45dd10: 1.0-255.71.52.72.in-addr.arpa PTR: no valid signature found
Jun 15 14:04:28 ks384632 named[3046]: lame server resolving '53.2.71.194.in-addr.arpa' (in '2.71.194.in-addr.arpa'?): 194.71.2.53#53
Jun 15 14:04:30 ks384632 named[3046]: error (unexpected RCODE REFUSED) resolving '10.230.203.192.in-addr.arpa/PTR/IN': 198.116.4.189#53
Jun 15 14:04:30 ks384632 named[3046]: error (unexpected RCODE REFUSED) resolving '10.230.203.192.in-addr.arpa/PTR/IN': 198.116.4.181#53
Jun 15 14:04:30 ks384632 named[3046]: error (unexpected RCODE REFUSED) resolving '10.230.203.192.in-addr.arpa/PTR/IN': 198.116.4.185#53
Jun 15 14:04:31 ks384632 named[3046]: error (unexpected RCODE REFUSED) resolving '10.230.203.192.in-addr.arpa/PTR/IN': 198.116.4.181#53
Jun 15 14:04:31 ks384632 named[3046]: error (unexpected RCODE REFUSED) resolving '10.230.203.192.in-addr.arpa/PTR/IN': 198.116.4.189#53
Jun 15 14:04:31 ks384632 named[3046]: error (unexpected RCODE REFUSED) resolving '10.230.203.192.in-addr.arpa/PTR/IN': 198.116.4.185#53
Jun 15 14:04:33 ks384632 named[3046]:   validating @0x7f1c7c44e0c0: 2.216.196.in-addr.arpa SOA: got insecure response; parent indicates it should be secure
Jun 15 14:04:33 ks384632 named[3046]: error (no valid RRSIG) resolving '1.2.216.196.in-addr.arpa/DS/IN': 193.0.9.3#53
Jun 15 14:04:33 ks384632 named[3046]:   validating @0x7f1c7404f3a0: 2.216.196.in-addr.arpa SOA: got insecure response; parent indicates it should be secure
Jun 15 14:04:33 ks384632 named[3046]: error (no valid RRSIG) resolving '1.2.216.196.in-addr.arpa/DS/IN': 204.61.215.62#53
Jun 15 14:04:34 ks384632 named[3046]:   validating @0x7f1c7c496b80: 2.216.196.in-addr.arpa SOA: got insecure response; parent indicates it should be secure
Jun 15 14:04:34 ks384632 named[3046]: error (no valid RRSIG) resolving '1.2.216.196.in-addr.arpa/DS/IN': 196.216.168.10#53
Jun 15 14:04:44 ks384632 named[3046]: success resolving 'nn.uninett.no/A' (in 'uninett.no'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:44 ks384632 named[3046]: success resolving 'nn.uninett.no/AAAA' (in 'uninett.no'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:45 ks384632 named[3046]: success resolving '79.50.19.199.in-addr.arpa/PTR' (in '50.19.199.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:48 ks384632 named[3046]: success resolving '53.43.50.192.in-addr.arpa/PTR' (in '43.50.192.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:04:56 ks384632 named[3046]: success resolving '204.192/26.83.200.61.in-addr.arpa/PTR' (in '192/26.83.200.61.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:05:00 ks384632 named[3046]: success resolving 'udns1.ultradns.net/A' (in 'ultradns.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:05:00 ks384632 named[3046]: success resolving 'udns1.ultradns.net/AAAA' (in 'ultradns.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:05:00 ks384632 named[3046]: success resolving 'udns2.ultradns.net/A' (in 'ultradns.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:05:00 ks384632 named[3046]: success resolving 'udns2.ultradns.net/AAAA' (in 'ultradns.net'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:05:01 ks384632 named[3046]: success resolving '3.102.154.156.in-addr.arpa/PTR' (in '154.156.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:05:01 ks384632 CRON[6018]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:05:09 ks384632 named[3046]:   validating @0x7f1c7404f3a0: 129.in-addr.arpa SOA: got insecure response; parent indicates it should be secure
Jun 15 14:05:09 ks384632 named[3046]: error (no valid RRSIG) resolving '240.129.in-addr.arpa/DS/IN': 192.42.93.32#53
Jun 15 14:05:09 ks384632 named[3046]: success resolving '240.129.in-addr.arpa/DS' (in '129.in-addr.arpa'?) after disabling EDNS
Jun 15 14:05:16 ks384632 named[3046]: success resolving '24.74.192.207.in-addr.arpa/PTR' (in '24.74.192.207.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:05:17 ks384632 named[3046]: success resolving '10.70.192.207.in-addr.arpa/PTR' (in '10.70.192.207.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:06:01 ks384632 CRON[6100]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:07:01 ks384632 CRON[6143]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:08:01 ks384632 CRON[6186]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:09:01 ks384632 CRON[6229]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:10:01 ks384632 CRON[6272]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:11:01 ks384632 CRON[6315]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:12:01 ks384632 CRON[6358]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:13:01 ks384632 CRON[6401]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:13:44 ks384632 named[3046]: error (unexpected RCODE SERVFAIL) resolving '36.255.171.193.in-addr.arpa/PTR/IN': 193.0.9.6#53
Jun 15 14:13:47 ks384632 named[3046]: error (unexpected RCODE REFUSED) resolving '198.39.12.212.in-addr.arpa/PTR/IN': 212.12.35.3#53
Jun 15 14:14:01 ks384632 CRON[6453]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:15:01 ks384632 CRON[6498]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:16:01 ks384632 CRON[6541]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:17:01 ks384632 CRON[6585]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:17:01 ks384632 CRON[6586]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Jun 15 14:18:01 ks384632 CRON[6630]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:19:01 ks384632 CRON[6673]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:20:01 ks384632 CRON[6716]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:21:01 ks384632 CRON[6759]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:22:01 ks384632 CRON[6802]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:23:01 ks384632 CRON[6845]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:24:01 ks384632 CRON[6888]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 14:24:18 ks384632 named[3046]: success resolving 'NS1.ARPA.GLOBAL-DATACENTER.COM/AAAA' (in 'GLOBAL-DATACENTER.com'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:24:18 ks384632 named[3046]: success resolving 'NS2.ARPA.GLOBAL-DATACENTER.COM/AAAA' (in 'GLOBAL-DATACENTER.com'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:24:18 ks384632 named[3046]: success resolving 'NS1.ARPA.GLOBAL-DATACENTER.COM/A' (in 'GLOBAL-DATACENTER.com'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:24:18 ks384632 named[3046]: success resolving 'NS2.ARPA.GLOBAL-DATACENTER.COM/A' (in 'GLOBAL-DATACENTER.com'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:24:23 ks384632 named[3046]: success resolving '22.255.228.67.in-addr.arpa/PTR' (in '228.67.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:24:23 ks384632 named[3046]: success resolving '221.149.173.184.in-addr.arpa/PTR' (in '173.184.in-addr.arpa'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:24:32 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:24:32 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:24:32 ks384632 kernel: Kernel logging (proc) stopped.
Jun 15 14:24:32 ks384632 rsyslogd: [origin software="rsyslogd" swVersion="5.8.6" x-pid="2961" x-info="http://www.rsyslog.com"] exiting on signal 15.
Jun 15 14:25:13 ks384632 kernel: imklog 5.8.6, log source = /proc/kmsg started.
Jun 15 14:25:13 ks384632 rsyslogd: [origin software="rsyslogd" swVersion="5.8.6" x-pid="2968" x-info="http://www.rsyslog.com"] start
Jun 15 14:25:13 ks384632 rsyslogd: rsyslogd's groupid changed to 103
Jun 15 14:25:13 ks384632 rsyslogd: rsyslogd's userid changed to 101
Jun 15 14:25:13 ks384632 rsyslogd-2039: Could not open output pipe '/dev/xconsole' [try http://www.rsyslog.com/e/2039 ]
Jun 15 14:25:13 ks384632 kernel: Initializing cgroup subsys cpuset
Jun 15 14:25:13 ks384632 kernel: Linux version 3.2.13-grsec-xxxx-grs-ipv6-64 (root@kernel-64.ovh.net) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Thu Mar 29 09:48:59 UTC 2012
Jun 15 14:25:13 ks384632 kernel: Command line: BOOT_IMAGE=/boot/bzImage-3.2.13-xxxx-grs-ipv6-64 root=/dev/sda1 ro
Jun 15 14:25:13 ks384632 kernel: BIOS-provided physical RAM map:
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 0000000000000000 - 000000000008f000 (usable)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 000000000008f000 - 0000000000090000 (reserved)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 0000000000090000 - 000000000009ec00 (usable)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 0000000000100000 - 000000007ee98000 (usable)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 000000007ee98000 - 000000007eebf000 (reserved)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 000000007eebf000 - 000000007ef57000 (usable)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 000000007ef57000 - 000000007efbf000 (ACPI NVS)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 000000007efbf000 - 000000007eff1000 (usable)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 000000007eff1000 - 000000007efff000 (ACPI data)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 000000007efff000 - 000000007f000000 (usable)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 000000007f000000 - 0000000080000000 (reserved)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
Jun 15 14:25:13 ks384632 kernel: BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
Jun 15 14:25:13 ks384632 kernel: NX (Execute Disable) protection: active
Jun 15 14:25:13 ks384632 kernel: DMI 2.5 present.
Jun 15 14:25:13 ks384632 kernel: DMI: OVH KS/D425KT, BIOS MWPNT10N.86A.0083.2011.0524.1600 05/24/2011
Jun 15 14:25:13 ks384632 kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Jun 15 14:25:13 ks384632 kernel: e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Jun 15 14:25:13 ks384632 kernel: No AGP bridge found
Jun 15 14:25:13 ks384632 kernel: last_pfn = 0x7f000 max_arch_pfn = 0x400000000
Jun 15 14:25:13 ks384632 kernel: MTRR default type: uncachable
Jun 15 14:25:13 ks384632 kernel: MTRR fixed ranges enabled:
Jun 15 14:25:13 ks384632 kernel:  00000-9FFFF write-back
Jun 15 14:25:13 ks384632 kernel:  A0000-BFFFF uncachable
Jun 15 14:25:13 ks384632 kernel:  C0000-DFFFF write-protect
Jun 15 14:25:13 ks384632 kernel:  E0000-FFFFF uncachable
Jun 15 14:25:13 ks384632 kernel: MTRR variable ranges enabled:
Jun 15 14:25:13 ks384632 kernel:  0 base 000000000 mask F80000000 write-back
Jun 15 14:25:13 ks384632 kernel:  1 base 07F000000 mask FFF000000 uncachable
Jun 15 14:25:13 ks384632 kernel:  2 base 0FFFF0000 mask FFFFF0000 write-protect
Jun 15 14:25:13 ks384632 kernel:  3 base 0FFF10000 mask FFFFF0000 write-protect
Jun 15 14:25:13 ks384632 kernel:  4 base 0FFF20000 mask FFFFF0000 write-protect
Jun 15 14:25:13 ks384632 kernel:  5 disabled
Jun 15 14:25:13 ks384632 kernel:  6 disabled
Jun 15 14:25:13 ks384632 kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun 15 14:25:13 ks384632 kernel: found SMP MP-table at [ffff8800000fbe70] fbe70
Jun 15 14:25:13 ks384632 kernel: initial memory mapped : 0 - 20000000
Jun 15 14:25:13 ks384632 kernel: Base memory trampoline at [ffff880000099000] 99000 size 20480
Jun 15 14:25:13 ks384632 kernel: init_memory_mapping: 0000000000000000-000000007f000000
Jun 15 14:25:13 ks384632 kernel: 0000000000 - 007f000000 page 2M
Jun 15 14:25:13 ks384632 kernel: kernel direct mapping tables up to 7f000000 @ 1fffd000-20000000
Jun 15 14:25:13 ks384632 kernel: ACPI: RSDP 00000000000f2060 00024 (v02 INTEL )
Jun 15 14:25:13 ks384632 kernel: ACPI: XSDT 000000007effe120 0004C (v01 INTEL  D425KT   00000053      01000013)
Jun 15 14:25:13 ks384632 kernel: ACPI: FACP 000000007effd000 000F4 (v03 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:25:13 ks384632 kernel: ACPI: DSDT 000000007eff9000 03796 (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:25:13 ks384632 kernel: ACPI: FACS 000000007ef97000 00040
Jun 15 14:25:13 ks384632 kernel: ACPI: APIC 000000007eff8000 00084 (v02 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:25:13 ks384632 kernel: ACPI: MCFG 000000007eff7000 0003C (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:25:13 ks384632 kernel: ACPI: HPET 000000007eff6000 00038 (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:25:13 ks384632 kernel: ACPI: SSDT 000000007eff2000 0377C (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:25:13 ks384632 kernel: ACPI: Local APIC address 0xfee00000
Jun 15 14:25:13 ks384632 kernel: No NUMA configuration found
Jun 15 14:25:13 ks384632 kernel: Faking a node at 0000000000000000-000000007f000000
Jun 15 14:25:13 ks384632 kernel: Initmem setup node 0 0000000000000000-000000007f000000
Jun 15 14:25:13 ks384632 kernel:  NODE_DATA [000000007efec000 - 000000007eff0fff]
Jun 15 14:25:13 ks384632 kernel: [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007c600000-ffff88007e5fffff] on node 0
Jun 15 14:25:13 ks384632 kernel: Zone PFN ranges:
Jun 15 14:25:13 ks384632 kernel:  DMA      0x00000010 -> 0x00001000
Jun 15 14:25:13 ks384632 kernel:  DMA32    0x00001000 -> 0x00100000
Jun 15 14:25:13 ks384632 kernel:  Normal   empty
Jun 15 14:25:13 ks384632 kernel: Movable zone start PFN for each node
Jun 15 14:25:13 ks384632 kernel: early_node_map[6] active PFN ranges
Jun 15 14:25:13 ks384632 kernel:    0: 0x00000010 -> 0x0000008f
Jun 15 14:25:13 ks384632 kernel:    0: 0x00000090 -> 0x0000009e
Jun 15 14:25:13 ks384632 kernel:    0: 0x00000100 -> 0x0007ee98
Jun 15 14:25:13 ks384632 kernel:    0: 0x0007eebf -> 0x0007ef57
Jun 15 14:25:13 ks384632 kernel:    0: 0x0007efbf -> 0x0007eff1
Jun 15 14:25:13 ks384632 kernel:    0: 0x0007efff -> 0x0007f000
Jun 15 14:25:13 ks384632 kernel: On node 0 totalpages: 519920
Jun 15 14:25:13 ks384632 kernel:  DMA zone: 64 pages used for memmap
Jun 15 14:25:13 ks384632 kernel:  DMA zone: 5 pages reserved
Jun 15 14:25:13 ks384632 kernel:  DMA zone: 3912 pages, LIFO batch:0
Jun 15 14:25:13 ks384632 kernel:  DMA32 zone: 8064 pages used for memmap
Jun 15 14:25:13 ks384632 kernel:  DMA32 zone: 507875 pages, LIFO batch:31
Jun 15 14:25:13 ks384632 kernel: ACPI: PM-Timer IO Port: 0x408
Jun 15 14:25:13 ks384632 kernel: ACPI: Local APIC address 0xfee00000
Jun 15 14:25:13 ks384632 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun 15 14:25:13 ks384632 kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun 15 14:25:13 ks384632 kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] disabled)
Jun 15 14:25:13 ks384632 kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
Jun 15 14:25:13 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Jun 15 14:25:13 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Jun 15 14:25:13 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Jun 15 14:25:13 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Jun 15 14:25:13 ks384632 kernel: ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
Jun 15 14:25:13 ks384632 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jun 15 14:25:13 ks384632 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 15 14:25:13 ks384632 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 15 14:25:13 ks384632 kernel: ACPI: IRQ0 used by override.
Jun 15 14:25:13 ks384632 kernel: ACPI: IRQ2 used by override.
Jun 15 14:25:13 ks384632 kernel: ACPI: IRQ9 used by override.
Jun 15 14:25:13 ks384632 kernel: Using ACPI (MADT) for SMP configuration information
Jun 15 14:25:13 ks384632 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun 15 14:25:13 ks384632 kernel: SMP: Allowing 4 CPUs, 2 hotplug CPUs
Jun 15 14:25:13 ks384632 kernel: nr_irqs_gsi: 40
Jun 15 14:25:13 ks384632 kernel: PM: Registered nosave memory: 000000000008f000 - 0000000000090000
Jun 15 14:25:13 ks384632 kernel: PM: Registered nosave memory: 000000000009e000 - 000000000009f000
Jun 15 14:25:13 ks384632 kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
Jun 15 14:25:13 ks384632 kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
Jun 15 14:25:13 ks384632 kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
Jun 15 14:25:13 ks384632 kernel: PM: Registered nosave memory: 000000007ee98000 - 000000007eebf000
Jun 15 14:25:13 ks384632 kernel: PM: Registered nosave memory: 000000007ef57000 - 000000007efbf000
Jun 15 14:25:13 ks384632 kernel: PM: Registered nosave memory: 000000007eff1000 - 000000007efff000
Jun 15 14:25:13 ks384632 kernel: Allocating PCI resources starting at 80000000 (gap: 80000000:78000000)
Jun 15 14:25:13 ks384632 kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
Jun 15 14:25:13 ks384632 kernel: PERCPU: Embedded 20 pages/cpu @ffff88007ec00000 s59264 r0 d22656 u524288
Jun 15 14:25:13 ks384632 kernel: pcpu-alloc: s59264 r0 d22656 u524288 alloc=1*2097152
Jun 15 14:25:13 ks384632 kernel: pcpu-alloc: [0] 0 1 2 3 
Jun 15 14:25:13 ks384632 kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 511787
Jun 15 14:25:13 ks384632 kernel: Policy zone: DMA32
Jun 15 14:25:13 ks384632 kernel: Kernel command line: BOOT_IMAGE=/boot/bzImage-3.2.13-xxxx-grs-ipv6-64 root=/dev/sda1 ro
Jun 15 14:25:13 ks384632 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun 15 14:25:13 ks384632 kernel: Checking aperture...
Jun 15 14:25:13 ks384632 kernel: No AGP bridge found
Jun 15 14:25:13 ks384632 kernel: Memory: 2028192k/2080768k available (11641k kernel code, 1088k absent, 51488k reserved, 4563k data, 632k init)
Jun 15 14:25:13 ks384632 kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jun 15 14:25:13 ks384632 kernel: Hierarchical RCU implementation.
Jun 15 14:25:13 ks384632 kernel: NR_IRQS:4352 nr_irqs:712 16
Jun 15 14:25:13 ks384632 kernel: Extended CMOS year: 2000
Jun 15 14:25:13 ks384632 kernel: Console: colour VGA+ 80x25
Jun 15 14:25:13 ks384632 kernel: console [tty0] enabled
Jun 15 14:25:13 ks384632 kernel: allocated 16777216 bytes of page_cgroup
Jun 15 14:25:13 ks384632 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun 15 14:25:13 ks384632 kernel: hpet clockevent registered
Jun 15 14:25:13 ks384632 kernel: Fast TSC calibration using PIT
Jun 15 14:25:13 ks384632 kernel: Detected 1799.749 MHz processor.
Jun 15 14:25:13 ks384632 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3599.49 BogoMIPS (lpj=7198996)
Jun 15 14:25:13 ks384632 kernel: pid_max: default: 32768 minimum: 501
Jun 15 14:25:13 ks384632 kernel: Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
Jun 15 14:25:13 ks384632 kernel: Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
Jun 15 14:25:13 ks384632 kernel: Mount-cache hash table entries: 256
Jun 15 14:25:13 ks384632 kernel: Initializing cgroup subsys cpuacct
Jun 15 14:25:13 ks384632 kernel: Initializing cgroup subsys memory
Jun 15 14:25:13 ks384632 kernel: Initializing cgroup subsys devices
Jun 15 14:25:13 ks384632 kernel: Initializing cgroup subsys freezer
Jun 15 14:25:13 ks384632 kernel: Initializing cgroup subsys blkio
Jun 15 14:25:13 ks384632 kernel: CPU: Physical Processor ID: 0
Jun 15 14:25:13 ks384632 kernel: CPU: Processor Core ID: 0
Jun 15 14:25:13 ks384632 kernel: mce: CPU supports 5 MCE banks
Jun 15 14:25:13 ks384632 kernel: CPU0: Thermal monitoring enabled (TM1)
Jun 15 14:25:13 ks384632 kernel: using mwait in idle threads.
Jun 15 14:25:13 ks384632 kernel: ACPI: Core revision 20110623
Jun 15 14:25:13 ks384632 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 15 14:25:13 ks384632 kernel: CPU0: Intel(R) Atom(TM) CPU D425   @ 1.80GHz stepping 0a
Jun 15 14:25:13 ks384632 kernel: Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
Jun 15 14:25:13 ks384632 kernel: ... version:                3
Jun 15 14:25:13 ks384632 kernel: ... bit width:              40
Jun 15 14:25:13 ks384632 kernel: ... generic registers:      2
Jun 15 14:25:13 ks384632 kernel: ... value mask:             000000ffffffffff
Jun 15 14:25:13 ks384632 kernel: ... max period:             000000007fffffff
Jun 15 14:25:13 ks384632 kernel: ... fixed-purpose events:   3
Jun 15 14:25:13 ks384632 kernel: ... event mask:             0000000700000003
Jun 15 14:25:13 ks384632 kernel: Booting Node   0, Processors  #1
Jun 15 14:25:13 ks384632 kernel: smpboot cpu 1: start_ip = 99000
Jun 15 14:25:13 ks384632 kernel: Brought up 2 CPUs
Jun 15 14:25:13 ks384632 kernel: Total of 2 processors activated (7199.53 BogoMIPS).
Jun 15 14:25:13 ks384632 kernel: devtmpfs: initialized
Jun 15 14:25:13 ks384632 kernel: PM: Registering ACPI NVS region at 7ef57000 (425984 bytes)
Jun 15 14:25:13 ks384632 kernel: xor: automatically using best checksumming function: generic_sse
Jun 15 14:25:13 ks384632 kernel:   generic_sse:  5480.000 MB/sec
Jun 15 14:25:13 ks384632 kernel: xor: using function: generic_sse (5480.000 MB/sec)
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 16
Jun 15 14:25:13 ks384632 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 15 14:25:13 ks384632 kernel: ACPI: bus type pci registered
Jun 15 14:25:13 ks384632 kernel: dca service started, version 1.12.1
Jun 15 14:25:13 ks384632 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Jun 15 14:25:13 ks384632 kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Jun 15 14:25:13 ks384632 kernel: PCI: Using configuration type 1 for base access
Jun 15 14:25:13 ks384632 kernel: bio: create slab <bio-0> at 0
Jun 15 14:25:13 ks384632 kernel: raid6: int64x1    340 MB/s
Jun 15 14:25:13 ks384632 kernel: raid6: int64x2    528 MB/s
Jun 15 14:25:13 ks384632 kernel: raid6: int64x4    557 MB/s
Jun 15 14:25:13 ks384632 kernel: raid6: int64x8    707 MB/s
Jun 15 14:25:13 ks384632 kernel: raid6: sse2x1     684 MB/s
Jun 15 14:25:13 ks384632 kernel: raid6: sse2x2    1249 MB/s
Jun 15 14:25:13 ks384632 kernel: raid6: sse2x4    2179 MB/s
Jun 15 14:25:13 ks384632 kernel: raid6: using algorithm sse2x4 (2179 MB/s)
Jun 15 14:25:13 ks384632 kernel: ACPI: Added _OSI(Module Device)
Jun 15 14:25:13 ks384632 kernel: ACPI: Added _OSI(Processor Device)
Jun 15 14:25:13 ks384632 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 15 14:25:13 ks384632 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 15 14:25:13 ks384632 kernel: ACPI: EC: Look up EC in DSDT
Jun 15 14:25:13 ks384632 kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun 15 14:25:13 ks384632 kernel: ACPI: Interpreter enabled
Jun 15 14:25:13 ks384632 kernel: ACPI: (supports S0 S1 S3 S4 S5)
Jun 15 14:25:13 ks384632 kernel: ACPI: Using IOAPIC for interrupt routing
Jun 15 14:25:13 ks384632 kernel: ACPI: No dock devices found.
Jun 15 14:25:13 ks384632 kernel: HEST: Table not found.
Jun 15 14:25:13 ks384632 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Jun 15 14:25:13 ks384632 kernel: pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
Jun 15 14:25:13 ks384632 kernel: pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
Jun 15 14:25:13 ks384632 kernel: pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
Jun 15 14:25:13 ks384632 kernel: pci_root PNP0A03:00: host bridge window [mem 0xd0000000-0xf7ffffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:00.0: [8086:a000] type 0 class 0x000600
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:02.0: [8086:a001] type 0 class 0x000300
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:02.0: reg 10: [mem 0xe0200000-0xe027ffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:02.0: reg 14: [io  0x20c0-0x20c7]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:02.0: reg 1c: [mem 0xe0100000-0xe01fffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0: PME# disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: PME# disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: [8086:27d4] type 1 class 0x000604
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: PME# disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: [8086:27d6] type 1 class 0x000604
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: PME# disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.0: reg 20: [io  0x2080-0x209f]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.1: reg 20: [io  0x2060-0x207f]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.2: reg 20: [io  0x2040-0x205f]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.3: reg 20: [io  0x2020-0x203f]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.7: reg 10: [mem 0xe0280400-0xe02807ff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.7: PME# disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.0: [8086:27bc] type 0 class 0x000601
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.0: [Firmware Bug]: TigerPoint LPC.BM_STS cleared
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.2: [8086:27c0] type 0 class 0x000101
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.2: reg 10: [io  0x20b8-0x20bf]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.2: reg 14: [io  0x20cc-0x20cf]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.2: reg 18: [io  0x20b0-0x20b7]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.2: reg 1c: [io  0x20c8-0x20cb]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.2: reg 20: [io  0x20a0-0x20af]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.2: reg 24: [mem 0xe0280000-0xe02803ff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.2: PME# supported from D3hot
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.2: PME# disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1f.3: reg 20: [io  0x2000-0x201f]
Jun 15 14:25:13 ks384632 kernel: pci 0000:01:00.0: [10ec:8136] type 0 class 0x000200
Jun 15 14:25:13 ks384632 kernel: pci 0000:01:00.0: reg 10: [io  0x1000-0x10ff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:01:00.0: reg 18: [mem 0xe0004000-0xe0004fff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:01:00.0: reg 20: [mem 0xe0000000-0xe0003fff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:01:00.0: supports D1 D2
Jun 15 14:25:13 ks384632 kernel: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 15 14:25:13 ks384632 kernel: pci 0000:01:00.0: PME# disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0: PCI bridge to [bus 01-01]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0:   bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: PCI bridge to [bus 02-02]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: PCI bridge to [bus 04-04]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xf7ffffff] (subtractive decode)
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2._PRT]
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
Jun 15 14:25:13 ks384632 kernel: pci0000:00: Requesting ACPI _OSC control (0x1d)
Jun 15 14:25:13 ks384632 kernel: pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
Jun 15 14:25:13 ks384632 kernel: ACPI _OSC control for PCIe not granted, disabling ASPM
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 *10 11 12)
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:25:13 ks384632 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 *9 10 11 12)
Jun 15 14:25:13 ks384632 kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
Jun 15 14:25:13 ks384632 kernel: vgaarb: loaded
Jun 15 14:25:13 ks384632 kernel: vgaarb: bridge control possible 0000:00:02.0
Jun 15 14:25:13 ks384632 kernel: SCSI subsystem initialized
Jun 15 14:25:13 ks384632 kernel: libata version 3.00 loaded.
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new interface driver usbfs
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new interface driver hub
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new device driver usb
Jun 15 14:25:13 ks384632 kernel: wmi: Mapper loaded
Jun 15 14:25:13 ks384632 kernel: PCI: Using ACPI for IRQ routing
Jun 15 14:25:13 ks384632 kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 15 14:25:13 ks384632 kernel: reserve RAM buffer: 000000000008f000 - 000000000008ffff 
Jun 15 14:25:13 ks384632 kernel: reserve RAM buffer: 000000000009ec00 - 000000000009ffff 
Jun 15 14:25:13 ks384632 kernel: reserve RAM buffer: 000000007ee98000 - 000000007fffffff 
Jun 15 14:25:13 ks384632 kernel: reserve RAM buffer: 000000007ef57000 - 000000007fffffff 
Jun 15 14:25:13 ks384632 kernel: reserve RAM buffer: 000000007eff1000 - 000000007fffffff 
Jun 15 14:25:13 ks384632 kernel: reserve RAM buffer: 000000007f000000 - 000000007fffffff 
Jun 15 14:25:13 ks384632 kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Jun 15 14:25:13 ks384632 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Jun 15 14:25:13 ks384632 kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
Jun 15 14:25:13 ks384632 kernel: Switching to clocksource hpet
Jun 15 14:25:13 ks384632 kernel: FS-Cache: Loaded
Jun 15 14:25:13 ks384632 kernel: CacheFiles: Loaded
Jun 15 14:25:13 ks384632 kernel: pnp: PnP ACPI init
Jun 15 14:25:13 ks384632 kernel: ACPI: bus type pnp registered
Jun 15 14:25:13 ks384632 kernel: pnp 00:00: [bus 00-3f]
Jun 15 14:25:13 ks384632 kernel: pnp 00:00: [io  0x0cf8-0x0cff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:00: [io  0x0000-0x0cf7 window]
Jun 15 14:25:13 ks384632 kernel: pnp 00:00: [io  0x0d00-0xffff window]
Jun 15 14:25:13 ks384632 kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
Jun 15 14:25:13 ks384632 kernel: pnp 00:00: [mem 0xd0000000-0xf7ffffff window]
Jun 15 14:25:13 ks384632 kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:01: [mem 0xf8000000-0xfbffffff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:01: [mem 0xfed14000-0xfed17fff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:01: [mem 0xfed18000-0xfed18fff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:01: [mem 0xfed19000-0xfed19fff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:01: [mem 0x000c0000-0x000dffff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:01: [mem 0x000e0000-0x000fffff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:01: [mem 0xfff00000-0xffffffff]
Jun 15 14:25:13 ks384632 kernel: system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:01: [mem 0x000c0000-0x000dffff] could not be reserved
Jun 15 14:25:13 ks384632 kernel: system 00:01: [mem 0x000e0000-0x000fffff] could not be reserved
Jun 15 14:25:13 ks384632 kernel: system 00:01: [mem 0xfff00000-0xffffffff] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:02: [io  0x0000-0x000f]
Jun 15 14:25:13 ks384632 kernel: pnp 00:02: [io  0x0081-0x0083]
Jun 15 14:25:13 ks384632 kernel: pnp 00:02: [io  0x0087]
Jun 15 14:25:13 ks384632 kernel: pnp 00:02: [io  0x0089-0x008b]
Jun 15 14:25:13 ks384632 kernel: pnp 00:02: [io  0x008f]
Jun 15 14:25:13 ks384632 kernel: pnp 00:02: [io  0x00c0-0x00df]
Jun 15 14:25:13 ks384632 kernel: pnp 00:02: [dma 4]
Jun 15 14:25:13 ks384632 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:03: [io  0x0070-0x0071]
Jun 15 14:25:13 ks384632 kernel: pnp 00:03: [io  0x0074-0x0077]
Jun 15 14:25:13 ks384632 kernel: pnp 00:03: [irq 8]
Jun 15 14:25:13 ks384632 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:04: [io  0x00f0]
Jun 15 14:25:13 ks384632 kernel: pnp 00:04: [irq 13]
Jun 15 14:25:13 ks384632 kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:05: [io  0x0061]
Jun 15 14:25:13 ks384632 kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0500-0x053f]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0400-0x047f]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0092]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0680-0x06ff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0010-0x001f]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0072-0x0073]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0080]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0084-0x0086]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0088]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x008c-0x008e]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0090-0x009f]
Jun 15 14:25:13 ks384632 kernel: pnp 00:06: [io  0x0295-0x0296]
Jun 15 14:25:13 ks384632 kernel: system 00:06: [io  0x0500-0x053f] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:06: [io  0x0400-0x047f] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:06: [io  0x0680-0x06ff] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:06: [io  0x0295-0x0296] has been reserved
Jun 15 14:25:13 ks384632 kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:07: [io  0x0060]
Jun 15 14:25:13 ks384632 kernel: pnp 00:07: [io  0x0064]
Jun 15 14:25:13 ks384632 kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:08: [io  0x03f8-0x03ff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:08: [irq 4]
Jun 15 14:25:13 ks384632 kernel: pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:09: [io  0x02f8-0x02ff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:09: [irq 3]
Jun 15 14:25:13 ks384632 kernel: pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:0a: [mem 0xfec00000-0xfec000ff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0003 (active)
Jun 15 14:25:13 ks384632 kernel: pnp 00:0b: [mem 0xfed00000-0xfed03fff]
Jun 15 14:25:13 ks384632 kernel: pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
Jun 15 14:25:13 ks384632 kernel: pnp: PnP ACPI: found 12 devices
Jun 15 14:25:13 ks384632 kernel: ACPI: ACPI bus type pnp unregistered
Jun 15 14:25:13 ks384632 kernel: PCI: max bus depth: 1 pci_try_num: 2
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: BAR 14: assigned [mem 0xe0300000-0xe04fffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: BAR 15: assigned [mem 0xe0500000-0xe06fffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: BAR 13: assigned [io  0x3000-0x3fff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: BAR 14: assigned [mem 0xe0700000-0xe08fffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: BAR 15: assigned [mem 0xe0900000-0xe0afffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: BAR 13: assigned [io  0x4000-0x4fff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: BAR 14: assigned [mem 0xe0b00000-0xe0cfffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0xe0d00000-0xe0efffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xe0f00000-0xe12fffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0: PCI bridge to [bus 01-01]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0:   bridge window [mem 0xe0f00000-0xe12fffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0:   bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: PCI bridge to [bus 02-02]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1:   bridge window [mem 0xe0b00000-0xe0cfffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1:   bridge window [mem 0xe0d00000-0xe0efffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2:   bridge window [io  0x4000-0x4fff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2:   bridge window [mem 0xe0700000-0xe08fffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2:   bridge window [mem 0xe0900000-0xe0afffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: PCI bridge to [bus 04-04]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3:   bridge window [io  0x3000-0x3fff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3:   bridge window [mem 0xe0300000-0xe04fffff]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3:   bridge window [mem 0xe0500000-0xe06fffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1e.0: PCI bridge to [bus 05-05]
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.0: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: enabling device (0000 -> 0003)
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.1: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: enabling device (0000 -> 0003)
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.2: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: enabling device (0000 -> 0003)
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1c.3: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1e.0: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:00: resource 7 [mem 0xd0000000-0xf7ffffff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:01: resource 1 [mem 0xe0f00000-0xe12fffff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe00fffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:02: resource 0 [io  0x5000-0x5fff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:02: resource 1 [mem 0xe0b00000-0xe0cfffff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:02: resource 2 [mem 0xe0d00000-0xe0efffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:03: resource 1 [mem 0xe0700000-0xe08fffff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:03: resource 2 [mem 0xe0900000-0xe0afffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:04: resource 0 [io  0x3000-0x3fff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:04: resource 1 [mem 0xe0300000-0xe04fffff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:04: resource 2 [mem 0xe0500000-0xe06fffff 64bit pref]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:05: resource 5 [io  0x0d00-0xffff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
Jun 15 14:25:13 ks384632 kernel: pci_bus 0000:05: resource 7 [mem 0xd0000000-0xf7ffffff]
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 2
Jun 15 14:25:13 ks384632 kernel: IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
Jun 15 14:25:13 ks384632 kernel: TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
Jun 15 14:25:13 ks384632 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun 15 14:25:13 ks384632 kernel: TCP: Hash tables configured (established 262144 bind 65536)
Jun 15 14:25:13 ks384632 kernel: TCP reno registered
Jun 15 14:25:13 ks384632 kernel: UDP hash table entries: 1024 (order: 3, 32768 bytes)
Jun 15 14:25:13 ks384632 kernel: UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 1
Jun 15 14:25:13 ks384632 kernel: RPC: Registered named UNIX socket transport module.
Jun 15 14:25:13 ks384632 kernel: RPC: Registered udp transport module.
Jun 15 14:25:13 ks384632 kernel: RPC: Registered tcp transport module.
Jun 15 14:25:13 ks384632 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:02.0: Boot video device
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.0: PCI INT A disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.1: PCI INT B disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.2: PCI INT C disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.3: PCI INT D disabled
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:25:13 ks384632 kernel: pci 0000:00:1d.7: PCI INT A disabled
Jun 15 14:25:13 ks384632 kernel: PCI: CLS 64 bytes, default 64
Jun 15 14:25:13 ks384632 kernel: kvm: no hardware support
Jun 15 14:25:13 ks384632 kernel: has_svm: not amd
Jun 15 14:25:13 ks384632 kernel: kvm: no hardware support
Jun 15 14:25:13 ks384632 kernel: microcode: CPU0 sig=0x106ca, pf=0x1, revision=0x107
Jun 15 14:25:13 ks384632 kernel: microcode: CPU1 sig=0x106ca, pf=0x1, revision=0x107
Jun 15 14:25:13 ks384632 kernel: microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun 15 14:25:13 ks384632 kernel: Intel AES-NI instructions are not detected.
Jun 15 14:25:13 ks384632 kernel: VFS: Disk quotas dquot_6.5.2
Jun 15 14:25:13 ks384632 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 15 14:25:13 ks384632 kernel: DLM installed
Jun 15 14:25:13 ks384632 kernel: FS-Cache: Netfs 'nfs' registered for caching
Jun 15 14:25:13 ks384632 kernel: NTFS driver 2.1.30 [Flags: R/W].
Jun 15 14:25:13 ks384632 kernel: ROMFS MTD (C) 2007 Red Hat, Inc.
Jun 15 14:25:13 ks384632 kernel: fuse init (API version 7.17)
Jun 15 14:25:13 ks384632 kernel: JFS: nTxBlock = 8192, nTxLock = 65536
Jun 15 14:25:13 ks384632 kernel: SGI XFS with ACLs, security attributes, large block/inode numbers, no debug enabled
Jun 15 14:25:13 ks384632 kernel: SGI XFS Quota Management subsystem
Jun 15 14:25:13 ks384632 kernel: OCFS2 1.5.0
Jun 15 14:25:13 ks384632 kernel: ocfs2: Registered cluster interface o2cb
Jun 15 14:25:13 ks384632 kernel: ocfs2: Registered cluster interface user
Jun 15 14:25:13 ks384632 kernel: OCFS2 DLMFS 1.5.0
Jun 15 14:25:13 ks384632 kernel: OCFS2 User DLM kernel interface loaded
Jun 15 14:25:13 ks384632 kernel: OCFS2 Node Manager 1.5.0
Jun 15 14:25:13 ks384632 kernel: OCFS2 DLM 1.5.0
Jun 15 14:25:13 ks384632 kernel: Btrfs loaded
Jun 15 14:25:13 ks384632 kernel: GFS2 installed
Jun 15 14:25:13 ks384632 kernel: ceph: loaded (mds proto 32)
Jun 15 14:25:13 ks384632 kernel: msgmni has been set to 3961
Jun 15 14:25:13 ks384632 kernel: async_tx: api initialized (async)
Jun 15 14:25:13 ks384632 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Jun 15 14:25:13 ks384632 kernel: io scheduler noop registered
Jun 15 14:25:13 ks384632 kernel: io scheduler deadline registered (default)
Jun 15 14:25:13 ks384632 kernel: io scheduler cfq registered
Jun 15 14:25:13 ks384632 kernel: pcieport 0000:00:1c.0: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
Jun 15 14:25:13 ks384632 kernel: pcieport 0000:00:1c.1: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
Jun 15 14:25:13 ks384632 kernel: pcieport 0000:00:1c.2: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
Jun 15 14:25:13 ks384632 kernel: pcieport 0000:00:1c.3: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
Jun 15 14:25:13 ks384632 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun 15 14:25:13 ks384632 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun 15 14:25:13 ks384632 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 15 14:25:13 ks384632 kernel: Monitor-Mwait will be used to enter C-1 state
Jun 15 14:25:13 ks384632 kernel: ERST: Table is not found!
Jun 15 14:25:13 ks384632 kernel: GHES: HEST is not enabled!
Jun 15 14:25:13 ks384632 kernel: ioatdma: Intel(R) QuickData Technology Driver 4.00
Jun 15 14:25:13 ks384632 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
Jun 15 14:25:13 ks384632 kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Jun 15 14:25:13 ks384632 kernel: serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
Jun 15 14:25:13 ks384632 kernel: 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Jun 15 14:25:13 ks384632 kernel: 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
Jun 15 14:25:13 ks384632 kernel: Linux agpgart interface v0.103
Jun 15 14:25:13 ks384632 kernel: Refined TSC clocksource calibration: 1800.063 MHz.
Jun 15 14:25:13 ks384632 kernel: Switching to clocksource tsc
Jun 15 14:25:13 ks384632 kernel: floppy0: no floppy controllers found
Jun 15 14:25:13 ks384632 kernel: brd: module loaded
Jun 15 14:25:13 ks384632 kernel: loop: module loaded
Jun 15 14:25:13 ks384632 kernel: nbd: registered device at major 43
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new interface driver ub
Jun 15 14:25:13 ks384632 kernel: drbd: initialized. Version: 8.3.11 (api:88/proto:86-96)
Jun 15 14:25:13 ks384632 kernel: drbd: built-in
Jun 15 14:25:13 ks384632 kernel: drbd: registered as block device major 147
Jun 15 14:25:13 ks384632 kernel: drbd: minor_table @ 0xffff88007a28fa00
Jun 15 14:25:13 ks384632 kernel: Uniform Multi-Platform E-IDE driver
Jun 15 14:25:13 ks384632 kernel: ide_generic: please use "probe_mask=0x3f" module parameter for probing all legacy ISA IDE ports
Jun 15 14:25:13 ks384632 kernel: Probing IDE interface ide0...
Jun 15 14:25:13 ks384632 kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Jun 15 14:25:13 ks384632 kernel: Probing IDE interface ide1...
Jun 15 14:25:13 ks384632 kernel: ide1 at 0x170-0x177,0x376 on irq 15
Jun 15 14:25:13 ks384632 kernel: ide-gd driver 1.18
Jun 15 14:25:13 ks384632 kernel: Loading iSCSI transport class v2.0-870.
Jun 15 14:25:13 ks384632 kernel: iscsi: registered transport (tcp)
Jun 15 14:25:13 ks384632 kernel: megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
Jun 15 14:25:13 ks384632 kernel: megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
Jun 15 14:25:13 ks384632 kernel: megasas: 00.00.06.12-rc1 Wed. Oct. 5 17:00:00 PDT 2011
Jun 15 14:25:13 ks384632 kernel: mpt2sas version 10.100.00.00 loaded
Jun 15 14:25:13 ks384632 kernel: 3ware Storage Controller device driver for Linux v1.26.02.003.
Jun 15 14:25:13 ks384632 kernel: 3ware 9000 Storage Controller device driver for Linux v2.26.02.014.
Jun 15 14:25:13 ks384632 kernel: VMware PVSCSI driver - version 1.0.1.0-k
Jun 15 14:25:13 ks384632 kernel: ata_piix 0000:00:1f.2: version 2.13
Jun 15 14:25:13 ks384632 kernel: ata_piix 0000:00:1f.2: PCI INT A -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:25:13 ks384632 kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun 15 14:25:13 ks384632 kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: scsi0 : ata_piix
Jun 15 14:25:13 ks384632 kernel: scsi1 : ata_piix
Jun 15 14:25:13 ks384632 kernel: ata1: SATA max UDMA/133 cmd 0x20b8 ctl 0x20cc bmdma 0x20a0 irq 18
Jun 15 14:25:13 ks384632 kernel: ata2: SATA max UDMA/133 cmd 0x20b0 ctl 0x20c8 bmdma 0x20a8 irq 18
Jun 15 14:25:13 ks384632 kernel: slram: not enough parameters.
Jun 15 14:25:13 ks384632 kernel: tun: Universal TUN/TAP device driver, 1.6
Jun 15 14:25:13 ks384632 kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun 15 14:25:13 ks384632 kernel: pcnet32: pcnet32.c:v1.35 21.Apr.2008 tsbogend@alpha.franken.de
Jun 15 14:25:13 ks384632 kernel: e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
Jun 15 14:25:13 ks384632 kernel: e100: Copyright(c) 1999-2006 Intel Corporation
Jun 15 14:25:13 ks384632 kernel: e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
Jun 15 14:25:13 ks384632 kernel: e1000: Copyright (c) 1999-2006 Intel Corporation.
Jun 15 14:25:13 ks384632 kernel: e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
Jun 15 14:25:13 ks384632 kernel: e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
Jun 15 14:25:13 ks384632 kernel: Intel(R) Gigabit Ethernet Network Driver - version 3.2.10-k
Jun 15 14:25:13 ks384632 kernel: Copyright (c) 2007-2011 Intel Corporation.
Jun 15 14:25:13 ks384632 kernel: Intel(R) Gigabit Virtual Function Network Driver - version 2.0.1-k
Jun 15 14:25:13 ks384632 kernel: Copyright (c) 2009 - 2011 Intel Corporation.
Jun 15 14:25:13 ks384632 kernel: ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 3.6.7-k
Jun 15 14:25:13 ks384632 kernel: ixgbe: Copyright (c) 1999-2011 Intel Corporation.
Jun 15 14:25:13 ks384632 kernel: ixgb: Intel(R) PRO/10GbE Network Driver - version 1.0.135-k2-NAPI
Jun 15 14:25:13 ks384632 kernel: ixgb: Copyright (c) 1999-2008 Intel Corporation.
Jun 15 14:25:13 ks384632 kernel: sky2: driver version 1.30
Jun 15 14:25:13 ks384632 kernel: QLogic/NetXen Network Driver v4.0.77
Jun 15 14:25:13 ks384632 kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: irq 44 for MSI/MSI-X
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: RTL8168e/8111e at 0xffffc90000330000, 38:60:77:1b:2a:b2, XID 0c200000 IRQ 44
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jun 15 14:25:13 ks384632 kernel: PPP generic driver version 2.4.2
Jun 15 14:25:13 ks384632 kernel: PPP BSD Compression module registered
Jun 15 14:25:13 ks384632 kernel: PPP Deflate Compression module registered
Jun 15 14:25:13 ks384632 kernel: PPP MPPE Compression module registered
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 24
Jun 15 14:25:13 ks384632 kernel: VMware vmxnet3 virtual NIC driver - version 1.1.29.0-k-NAPI
Jun 15 14:25:13 ks384632 kernel: Fusion MPT base driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: Copyright (c) 1999-2008 LSI Corporation
Jun 15 14:25:13 ks384632 kernel: Fusion MPT SPI Host driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: Fusion MPT FC Host driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: Fusion MPT SAS Host driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: Fusion MPT misc device (ioctl) driver 3.04.20
Jun 15 14:25:13 ks384632 kernel: mptctl: Registered with Fusion MPT base driver
Jun 15 14:25:13 ks384632 kernel: mptctl: /dev/mptctl @ (major,minor=10,220)
Jun 15 14:25:13 ks384632 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: using broken periodic workaround
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: debug port 1
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe0280400
Jun 15 14:25:13 ks384632 kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun 15 14:25:13 ks384632 kernel: hub 1-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 1-0:1.0: 8 ports detected
Jun 15 14:25:13 ks384632 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun 15 14:25:13 ks384632 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x00002080
Jun 15 14:25:13 ks384632 kernel: hub 2-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 2-0:1.0: 2 ports detected
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00002060
Jun 15 14:25:13 ks384632 kernel: hub 3-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 3-0:1.0: 2 ports detected
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x00002040
Jun 15 14:25:13 ks384632 kernel: hub 4-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 4-0:1.0: 2 ports detected
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
Jun 15 14:25:13 ks384632 kernel: uhci_hcd 0000:00:1d.3: irq 16, io base 0x00002020
Jun 15 14:25:13 ks384632 kernel: hub 5-0:1.0: USB hub found
Jun 15 14:25:13 ks384632 kernel: hub 5-0:1.0: 2 ports detected
Jun 15 14:25:13 ks384632 kernel: Initializing USB Mass Storage driver...
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new interface driver usb-storage
Jun 15 14:25:13 ks384632 kernel: USB Mass Storage support registered.
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new interface driver libusual
Jun 15 14:25:13 ks384632 kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun 15 14:25:13 ks384632 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 15 14:25:13 ks384632 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jun 15 14:25:13 ks384632 kernel: mousedev: PS/2 mouse device common for all mice
Jun 15 14:25:13 ks384632 kernel: rtc_cmos 00:03: RTC can wake from S4
Jun 15 14:25:13 ks384632 kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun 15 14:25:13 ks384632 kernel: rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jun 15 14:25:13 ks384632 kernel: coretemp coretemp.0: Using relative temperature scale!
Jun 15 14:25:13 ks384632 kernel: via_cputemp: Not a VIA CPU
Jun 15 14:25:13 ks384632 kernel: w83627ehf: Found W83627DHG-P chip at 0x290
Jun 15 14:25:13 ks384632 kernel: Software Watchdog Timer: 0.07 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout= 0)
Jun 15 14:25:13 ks384632 kernel: md: linear personality registered for level -1
Jun 15 14:25:13 ks384632 kernel: md: raid0 personality registered for level 0
Jun 15 14:25:13 ks384632 kernel: md: raid1 personality registered for level 1
Jun 15 14:25:13 ks384632 kernel: md: raid10 personality registered for level 10
Jun 15 14:25:13 ks384632 kernel: md: raid6 personality registered for level 6
Jun 15 14:25:13 ks384632 kernel: md: raid5 personality registered for level 5
Jun 15 14:25:13 ks384632 kernel: md: raid4 personality registered for level 4
Jun 15 14:25:13 ks384632 kernel: md: multipath personality registered for level -4
Jun 15 14:25:13 ks384632 kernel: md: faulty personality registered for level -5
Jun 15 14:25:13 ks384632 kernel: device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
Jun 15 14:25:13 ks384632 kernel: device-mapper: multipath: version 1.3.0 loaded
Jun 15 14:25:13 ks384632 kernel: device-mapper: multipath round-robin: version 1.0.0 loaded
Jun 15 14:25:13 ks384632 kernel: EDAC MC: Ver: 2.1.0
Jun 15 14:25:13 ks384632 kernel: AMD64 EDAC driver v3.4.0
Jun 15 14:25:13 ks384632 kernel: cpuidle: using governor ladder
Jun 15 14:25:13 ks384632 kernel: cpuidle: using governor menu
Jun 15 14:25:13 ks384632 kernel: EFI Variables Facility v0.08 2004-May-17
Jun 15 14:25:13 ks384632 kernel: No iBFT detected.
Jun 15 14:25:13 ks384632 kernel: usbcore: registered new interface driver usbhid
Jun 15 14:25:13 ks384632 kernel: usbhid: USB HID core driver
Jun 15 14:25:13 ks384632 kernel: Netfilter messages via NETLINK v0.30.
Jun 15 14:25:13 ks384632 kernel: nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
Jun 15 14:25:13 ks384632 kernel: ctnetlink v0.93: registering with nfnetlink.
Jun 15 14:25:13 ks384632 kernel: xt_time: kernel timezone is -0000
Jun 15 14:25:13 ks384632 kernel: IPv4 over IPv4 tunneling driver
Jun 15 14:25:13 ks384632 kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Jun 15 14:25:13 ks384632 kernel: ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully
Jun 15 14:25:13 ks384632 kernel: TCP cubic registered
Jun 15 14:25:13 ks384632 kernel: Initializing XFRM netlink socket
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 10
Jun 15 14:25:13 ks384632 kernel: ip6_tables: (C) 2000-2006 Netfilter Core Team
Jun 15 14:25:13 ks384632 kernel: IPv6 over IPv4 tunneling driver
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 17
Jun 15 14:25:13 ks384632 kernel: NET: Registered protocol family 15
Jun 15 14:25:13 ks384632 kernel: Bridge firewalling registered
Jun 15 14:25:13 ks384632 kernel: L2TP core driver, V2.0
Jun 15 14:25:13 ks384632 kernel: PPPoL2TP kernel driver, V2.0
Jun 15 14:25:13 ks384632 kernel: L2TP IP encapsulation support (L2TPv3)
Jun 15 14:25:13 ks384632 kernel: L2TP netlink interface
Jun 15 14:25:13 ks384632 kernel: L2TP ethernet pseudowire support (L2TPv3)
Jun 15 14:25:13 ks384632 kernel: 8021q: 802.1Q VLAN Support v1.8
Jun 15 14:25:13 ks384632 kernel: sctp: Hash tables configured (established 65536 bind 65536)
Jun 15 14:25:13 ks384632 kernel: Registering the dns_resolver key type
Jun 15 14:25:13 ks384632 kernel: libceph: loaded (mon/osd proto 15/24, osdmap 5/6 5/6)
Jun 15 14:25:13 ks384632 kernel: registered taskstats version 1
Jun 15 14:25:13 ks384632 kernel: rtc_cmos 00:03: setting system clock to 2012-06-15 12:25:07 UTC (1339763107)
Jun 15 14:25:13 ks384632 kernel: ACPI Exception: AE_NOT_FOUND, Evaluating _PSS (20110623/processor_perflib-318)
Jun 15 14:25:13 ks384632 kernel: ata1.00: ATA-8: ST31000524AS, JC4B, max UDMA/133
Jun 15 14:25:13 ks384632 kernel: ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun 15 14:25:13 ks384632 kernel: ata1.00: configured for UDMA/133
Jun 15 14:25:13 ks384632 kernel: scsi 0:0:0:0: Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 15 14:25:13 ks384632 kernel: sda: sda1 sda2 sda3
Jun 15 14:25:13 ks384632 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 15 14:25:13 ks384632 kernel: md: Waiting for all devices to be available before autodetect
Jun 15 14:25:13 ks384632 kernel: md: If you don't use raid, use raid=noautodetect
Jun 15 14:25:13 ks384632 kernel: md: Autodetecting RAID arrays.
Jun 15 14:25:13 ks384632 kernel: md: Scanned 0 and added 0 devices.
Jun 15 14:25:13 ks384632 kernel: md: autorun ...
Jun 15 14:25:13 ks384632 kernel: md: ... autorun DONE.
Jun 15 14:25:13 ks384632 kernel: EXT3-fs (sda1): error: couldn't mount because of unsupported optional features (240)
Jun 15 14:25:13 ks384632 kernel: EXT2-fs (sda1): error: couldn't mount because of unsupported optional features (240)
Jun 15 14:25:13 ks384632 kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Jun 15 14:25:13 ks384632 kernel: VFS: Mounted root (ext4 filesystem) readonly on device 8:1.
Jun 15 14:25:13 ks384632 kernel: Freeing unused kernel memory: 632k freed
Jun 15 14:25:13 ks384632 kernel: usb 3-2: new low-speed USB device number 2 using uhci_hcd
Jun 15 14:25:13 ks384632 kernel: input: Cypress PS/2 to USB Adapter as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/input/input0
Jun 15 14:25:13 ks384632 kernel: generic-usb 0003:04B4:8081.0001: input: USB HID v1.00 Keyboard [Cypress PS/2 to USB Adapter] on usb-0000:00:1d.1-2/input0
Jun 15 14:25:13 ks384632 kernel: input: Cypress PS/2 to USB Adapter as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.1/input/input1
Jun 15 14:25:13 ks384632 kernel: generic-usb 0003:04B4:8081.0002: input: USB HID v1.00 Mouse [Cypress PS/2 to USB Adapter] on usb-0000:00:1d.1-2/input1
Jun 15 14:25:13 ks384632 kernel: grsec: time set by /sbin/hwclock[hwclock:1593] uid/euid:0/0 gid/egid:0/0, parent /sbin/init[init:1] uid/euid:0/0 gid/egid:0/0
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: link down
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: link down
Jun 15 14:25:13 ks384632 kernel: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun 15 14:25:13 ks384632 kernel: Adding 523260k swap on /dev/sda3.  Priority:-1 extents:1 across:523260k 
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: udev-fallback-graphics main process (2846) terminated with status 1
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: plymouth main process (1605) killed by SEGV signal
Jun 15 14:25:13 ks384632 kernel: init: plymouth-splash main process (2857) terminated with status 2
Jun 15 14:25:13 ks384632 kernel: r8169 0000:01:00.0: eth0: link up
Jun 15 14:25:13 ks384632 kernel: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun 15 14:25:13 ks384632 kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: plymouth-log main process (2934) terminated with status 1
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:13 ks384632 kernel: init: failsafe main process (2935) killed by TERM signal
Jun 15 14:25:13 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:13 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:14 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:14 ks384632 kernel: init: plymouth-upstart-bridge main process (2990) terminated with status 1
Jun 15 14:25:14 ks384632 cron[3015]: (CRON) INFO (pidfile fd = 3)
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Bluetooth daemon 4.98
Jun 15 14:25:14 ks384632 cron[3038]: (CRON) STARTUP (fork ok)
Jun 15 14:25:14 ks384632 acpid: starting up with netlink and the input layer
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Starting SDP server
Jun 15 14:25:14 ks384632 bluetoothd[2997]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Server initialization failed
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Failed to init alert plugin
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Failed to init time plugin
Jun 15 14:25:14 ks384632 acpid: 1 rule loaded
Jun 15 14:25:14 ks384632 acpid: waiting for events: event logging is off
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Failed to init proximity plugin
Jun 15 14:25:14 ks384632 cron[3038]: (CRON) INFO (Running @reboot jobs)
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Can't init bnep module
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Failed to init network plugin
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Unable to start SCO server socket
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Failed to init audio plugin
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Failed to init gatt_example plugin
Jun 15 14:25:14 ks384632 bluetoothd[2997]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[2997]: adapter_ops_setup failed
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (2997) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 bluez: Stopping uarts
Jun 15 14:25:14 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:14 ks384632 named[3106]: starting BIND 9.8.1-P1 -u bind
Jun 15 14:25:14 ks384632 named[3106]: built with '--prefix=/usr' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--sysconfdir=/etc/bind' '--localstatedir=/var' '--enable-threads' '--enable-largefile' '--with-libtool' '--enable-shared' '--enable-static' '--with-openssl=/usr' '--with-gssapi=/usr' '--with-gnu-ld' '--with-geoip=/usr' '--enable-ipv6' 'CFLAGS=-fno-strict-aliasing -DDIG_SIGCHASE -O2' 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,relro' 'CPPFLAGS=-D_FORTIFY_SOURCE=2'
Jun 15 14:25:14 ks384632 named[3106]: adjusted limit on open files from 4096 to 1048576
Jun 15 14:25:14 ks384632 named[3106]: found 2 CPUs, using 2 worker threads
Jun 15 14:25:14 ks384632 named[3106]: using up to 4096 sockets
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Bluetooth daemon 4.98
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Starting SDP server
Jun 15 14:25:14 ks384632 bluetoothd[3123]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Server initialization failed
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Failed to init alert plugin
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Failed to init time plugin
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Failed to init proximity plugin
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Can't init bnep module
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Failed to init network plugin
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Unable to start SCO server socket
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Failed to init audio plugin
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Failed to init gatt_example plugin
Jun 15 14:25:14 ks384632 bluetoothd[3123]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3123]: adapter_ops_setup failed
Jun 15 14:25:14 ks384632 named[3106]: loading configuration from '/etc/bind/named.conf'
Jun 15 14:25:14 ks384632 named[3106]: reading built-in trusted keys from file '/etc/bind/bind.keys'
Jun 15 14:25:14 ks384632 named[3106]: using default UDP/IPv4 port range: [1024, 65535]
Jun 15 14:25:14 ks384632 named[3106]: using default UDP/IPv6 port range: [1024, 65535]
Jun 15 14:25:14 ks384632 named[3106]: listening on IPv4 interface lo, 127.0.0.1#53
Jun 15 14:25:14 ks384632 named[3106]: listening on IPv6 interface lo, ::1#53
Jun 15 14:25:14 ks384632 named[3106]: generating session key for dynamic DNS
Jun 15 14:25:14 ks384632 named[3106]: sizing zone task pool based on 5 zones
Jun 15 14:25:14 ks384632 named[3106]: using built-in root key for view _default
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3123) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 named[3106]: set up managed keys zone for view _default, file 'managed-keys.bind'
Jun 15 14:25:14 ks384632 named[3106]: Warning: 'empty-zones-enable/disable-empty-zone' not set: disabling RFC 1918 empty zones
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 254.169.IN-ADDR.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 2.0.192.IN-ADDR.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 100.51.198.IN-ADDR.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 113.0.203.IN-ADDR.ARPA
Jun 15 14:25:14 ks384632 bluez: Stopping uarts
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 255.255.255.255.IN-ADDR.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: D.F.IP6.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 8.E.F.IP6.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 9.E.F.IP6.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: A.E.F.IP6.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: B.E.F.IP6.ARPA
Jun 15 14:25:14 ks384632 named[3106]: automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA
Jun 15 14:25:14 ks384632 named[3106]: command channel listening on 127.0.0.1#953
Jun 15 14:25:14 ks384632 named[3106]: command channel listening on ::1#953
Jun 15 14:25:14 ks384632 named[3106]: zone 0.in-addr.arpa/IN: loaded serial 1
Jun 15 14:25:14 ks384632 named[3106]: zone 127.in-addr.arpa/IN: loaded serial 1
Jun 15 14:25:14 ks384632 named[3106]: zone 255.in-addr.arpa/IN: loaded serial 1
Jun 15 14:25:14 ks384632 named[3106]: zone localhost/IN: loaded serial 2
Jun 15 14:25:14 ks384632 named[3106]: managed-keys-zone ./IN: loaded serial 9
Jun 15 14:25:14 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:14 ks384632 named[3106]: running
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Bluetooth daemon 4.98
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Starting SDP server
Jun 15 14:25:14 ks384632 bluetoothd[3153]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Server initialization failed
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Failed to init alert plugin
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Failed to init time plugin
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Failed to init proximity plugin
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Can't init bnep module
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Failed to init network plugin
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Unable to start SCO server socket
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Failed to init audio plugin
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Failed to init gatt_example plugin
Jun 15 14:25:14 ks384632 bluetoothd[3153]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3153]: adapter_ops_setup failed
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3153) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 bluez: Stopping uarts
Jun 15 14:25:14 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Bluetooth daemon 4.98
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Starting SDP server
Jun 15 14:25:14 ks384632 bluetoothd[3183]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Server initialization failed
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Failed to init alert plugin
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Failed to init time plugin
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Failed to init proximity plugin
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Can't init bnep module
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Failed to init network plugin
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Unable to start SCO server socket
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Failed to init audio plugin
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Failed to init gatt_example plugin
Jun 15 14:25:14 ks384632 bluetoothd[3183]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3183]: adapter_ops_setup failed
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3183) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 bluez: Stopping uarts
Jun 15 14:25:14 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Bluetooth daemon 4.98
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Starting SDP server
Jun 15 14:25:14 ks384632 bluetoothd[3218]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Server initialization failed
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Failed to init alert plugin
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Failed to init time plugin
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Failed to init proximity plugin
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Can't init bnep module
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Failed to init network plugin
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Unable to start SCO server socket
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Failed to init audio plugin
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Failed to init gatt_example plugin
Jun 15 14:25:14 ks384632 bluetoothd[3218]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3218]: adapter_ops_setup failed
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3218) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 bluez: Stopping uarts
Jun 15 14:25:14 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Bluetooth daemon 4.98
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Starting SDP server
Jun 15 14:25:14 ks384632 bluetoothd[3243]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Server initialization failed
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Failed to init alert plugin
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Failed to init time plugin
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Failed to init proximity plugin
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Can't init bnep module
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Failed to init network plugin
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Unable to start SCO server socket
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Failed to init audio plugin
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Failed to init gatt_example plugin
Jun 15 14:25:14 ks384632 bluetoothd[3243]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:14 ks384632 bluetoothd[3243]: adapter_ops_setup failed
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process (3243) terminated with status 1
Jun 15 14:25:14 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:14 ks384632 bluez: Stopping uarts
Jun 15 14:25:15 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Bluetooth daemon 4.98
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Starting SDP server
Jun 15 14:25:15 ks384632 bluetoothd[3267]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Server initialization failed
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Failed to init alert plugin
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Failed to init time plugin
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Failed to init proximity plugin
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Can't init bnep module
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Failed to init network plugin
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Unable to start SCO server socket
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Failed to init audio plugin
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Failed to init gatt_example plugin
Jun 15 14:25:15 ks384632 bluetoothd[3267]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3267]: adapter_ops_setup failed
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3267) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:15 ks384632 bluez: Stopping uarts
Jun 15 14:25:15 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Bluetooth daemon 4.98
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Starting SDP server
Jun 15 14:25:15 ks384632 bluetoothd[3295]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Server initialization failed
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Failed to init alert plugin
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Failed to init time plugin
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Failed to init proximity plugin
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Can't init bnep module
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Failed to init network plugin
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Unable to start SCO server socket
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Failed to init audio plugin
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Failed to init gatt_example plugin
Jun 15 14:25:15 ks384632 bluetoothd[3295]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3295]: adapter_ops_setup failed
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3295) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:15 ks384632 bluez: Stopping uarts
Jun 15 14:25:15 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Bluetooth daemon 4.98
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Starting SDP server
Jun 15 14:25:15 ks384632 bluetoothd[3323]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Server initialization failed
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Failed to init alert plugin
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Failed to init time plugin
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Failed to init proximity plugin
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Can't init bnep module
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Failed to init network plugin
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Unable to start SCO server socket
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Failed to init audio plugin
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Failed to init gatt_example plugin
Jun 15 14:25:15 ks384632 bluetoothd[3323]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3323]: adapter_ops_setup failed
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3323) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:15 ks384632 bluez: Stopping uarts
Jun 15 14:25:15 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Bluetooth daemon 4.98
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Starting SDP server
Jun 15 14:25:15 ks384632 bluetoothd[3332]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Server initialization failed
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Failed to init alert plugin
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Failed to init time plugin
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Failed to init proximity plugin
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Can't init bnep module
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Failed to init network plugin
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Unable to start SCO server socket
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Failed to init audio plugin
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Failed to init gatt_example plugin
Jun 15 14:25:15 ks384632 bluetoothd[3332]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3332]: adapter_ops_setup failed
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3332) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:25:15 ks384632 bluez: Stopping uarts
Jun 15 14:25:15 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Bluetooth daemon 4.98
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Starting SDP server
Jun 15 14:25:15 ks384632 bluetoothd[3341]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Server initialization failed
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Failed to init alert plugin
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Failed to init time plugin
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Failed to init proximity plugin
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Can't init bnep module
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Failed to init network plugin
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Unable to start SCO server socket
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Failed to init audio plugin
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Failed to init gatt_example plugin
Jun 15 14:25:15 ks384632 bluetoothd[3341]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:25:15 ks384632 bluetoothd[3341]: adapter_ops_setup failed
Jun 15 14:25:15 ks384632 kernel: init: bluetooth main process (3341) terminated with status 1
Jun 15 14:25:15 ks384632 kernel: init: bluetooth respawning too fast, stopped
Jun 15 14:25:15 ks384632 bluez: Stopping uarts
Jun 15 14:25:15 ks384632 bluez: Stopping rfcomm
Jun 15 14:25:16 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:16 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:16 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:25:16 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:25:16 ks384632 kernel: init: plymouth-stop pre-start process (3352) terminated with status 1
Jun 15 14:25:18 ks384632 named[3106]: success resolving './NS' (in '.'?) after reducing the advertised EDNS UDP packet size to 512Jun 15 14:26:20 ks384632 kernel: imklog 5.8.6, log source = /proc/kmsg started.
Jun 15 14:26:20 ks384632 rsyslogd: [origin software="rsyslogd" swVersion="5.8.6" x-pid="3272" x-info="http://www.rsyslog.com"] start
Jun 15 14:26:20 ks384632 rsyslogd: rsyslogd's groupid changed to 103
Jun 15 14:26:20 ks384632 rsyslogd: rsyslogd's userid changed to 101
Jun 15 14:26:20 ks384632 rsyslogd-2039: Could not open output pipe '/dev/xconsole' [try http://www.rsyslog.com/e/2039 ]
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys cpuset
Jun 15 14:26:20 ks384632 kernel: Linux version 3.2.13-xxxx-std-ipv6-64 (root@kernel-64.ovh.net) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Wed Mar 28 11:20:17 UTC 2012
Jun 15 14:26:20 ks384632 kernel: Command line: root=/dev/sda1 console=tty0 BOOT_IMAGE=bzImage-2.6-xxxx-std-ipv6-64 
Jun 15 14:26:20 ks384632 kernel: BIOS-provided physical RAM map:
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 0000000000000000 - 000000000008f000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000000008f000 - 0000000000090000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 0000000000090000 - 000000000009ec00 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 0000000000100000 - 000000007ee98000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007ee98000 - 000000007eebf000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007eebf000 - 000000007ef57000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007ef57000 - 000000007efbf000 (ACPI NVS)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007efbf000 - 000000007eff1000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007eff1000 - 000000007efff000 (ACPI data)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007efff000 - 000000007f000000 (usable)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 000000007f000000 - 0000000080000000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
Jun 15 14:26:20 ks384632 kernel: BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
Jun 15 14:26:20 ks384632 kernel: NX (Execute Disable) protection: active
Jun 15 14:26:20 ks384632 kernel: DMI 2.5 present.
Jun 15 14:26:20 ks384632 kernel: DMI: OVH KS/D425KT, BIOS MWPNT10N.86A.0083.2011.0524.1600 05/24/2011
Jun 15 14:26:20 ks384632 kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Jun 15 14:26:20 ks384632 kernel: e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Jun 15 14:26:20 ks384632 kernel: No AGP bridge found
Jun 15 14:26:20 ks384632 kernel: last_pfn = 0x7f000 max_arch_pfn = 0x400000000
Jun 15 14:26:20 ks384632 kernel: MTRR default type: uncachable
Jun 15 14:26:20 ks384632 kernel: MTRR fixed ranges enabled:
Jun 15 14:26:20 ks384632 kernel:  00000-9FFFF write-back
Jun 15 14:26:20 ks384632 kernel:  A0000-BFFFF uncachable
Jun 15 14:26:20 ks384632 kernel:  C0000-DFFFF write-protect
Jun 15 14:26:20 ks384632 kernel:  E0000-FFFFF uncachable
Jun 15 14:26:20 ks384632 kernel: MTRR variable ranges enabled:
Jun 15 14:26:20 ks384632 kernel:  0 base 000000000 mask F80000000 write-back
Jun 15 14:26:20 ks384632 kernel:  1 base 07F000000 mask FFF000000 uncachable
Jun 15 14:26:20 ks384632 kernel:  2 base 0FFFF0000 mask FFFFF0000 write-protect
Jun 15 14:26:20 ks384632 kernel:  3 base 0FFF10000 mask FFFFF0000 write-protect
Jun 15 14:26:20 ks384632 kernel:  4 base 0FFF20000 mask FFFFF0000 write-protect
Jun 15 14:26:20 ks384632 kernel:  5 disabled
Jun 15 14:26:20 ks384632 kernel:  6 disabled
Jun 15 14:26:20 ks384632 kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun 15 14:26:20 ks384632 kernel: found SMP MP-table at [ffff8800000fbe70] fbe70
Jun 15 14:26:20 ks384632 kernel: initial memory mapped : 0 - 20000000
Jun 15 14:26:20 ks384632 kernel: Base memory trampoline at [ffff880000098000] 98000 size 20480
Jun 15 14:26:20 ks384632 kernel: init_memory_mapping: 0000000000000000-000000007f000000
Jun 15 14:26:20 ks384632 kernel: 0000000000 - 007f000000 page 2M
Jun 15 14:26:20 ks384632 kernel: kernel direct mapping tables up to 7f000000 @ 1fffd000-20000000
Jun 15 14:26:20 ks384632 kernel: ACPI: RSDP 00000000000f2060 00024 (v02 INTEL )
Jun 15 14:26:20 ks384632 kernel: ACPI: XSDT 000000007effe120 0004C (v01 INTEL  D425KT   00000053      01000013)
Jun 15 14:26:20 ks384632 kernel: ACPI: FACP 000000007effd000 000F4 (v03 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: DSDT 000000007eff9000 03796 (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: FACS 000000007ef97000 00040
Jun 15 14:26:20 ks384632 kernel: ACPI: APIC 000000007eff8000 00084 (v02 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: MCFG 000000007eff7000 0003C (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: HPET 000000007eff6000 00038 (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: SSDT 000000007eff2000 0377C (v01 INTEL  D425KT   00000053 MSFT 0100000D)
Jun 15 14:26:20 ks384632 kernel: ACPI: Local APIC address 0xfee00000
Jun 15 14:26:20 ks384632 kernel: No NUMA configuration found
Jun 15 14:26:20 ks384632 kernel: Faking a node at 0000000000000000-000000007f000000
Jun 15 14:26:20 ks384632 kernel: Initmem setup node 0 0000000000000000-000000007f000000
Jun 15 14:26:20 ks384632 kernel:  NODE_DATA [000000007efec000 - 000000007eff0fff]
Jun 15 14:26:20 ks384632 kernel: [ffffea0000000000-ffffea0001ffffff] PMD -> [ffff88007c600000-ffff88007e5fffff] on node 0
Jun 15 14:26:20 ks384632 kernel: Zone PFN ranges:
Jun 15 14:26:20 ks384632 kernel:  DMA      0x00000010 -> 0x00001000
Jun 15 14:26:20 ks384632 kernel:  DMA32    0x00001000 -> 0x00100000
Jun 15 14:26:20 ks384632 kernel:  Normal   empty
Jun 15 14:26:20 ks384632 kernel: Movable zone start PFN for each node
Jun 15 14:26:20 ks384632 kernel: early_node_map[6] active PFN ranges
Jun 15 14:26:20 ks384632 kernel:    0: 0x00000010 -> 0x0000008f
Jun 15 14:26:20 ks384632 kernel:    0: 0x00000090 -> 0x0000009e
Jun 15 14:26:20 ks384632 kernel:    0: 0x00000100 -> 0x0007ee98
Jun 15 14:26:20 ks384632 kernel:    0: 0x0007eebf -> 0x0007ef57
Jun 15 14:26:20 ks384632 kernel:    0: 0x0007efbf -> 0x0007eff1
Jun 15 14:26:20 ks384632 kernel:    0: 0x0007efff -> 0x0007f000
Jun 15 14:26:20 ks384632 kernel: On node 0 totalpages: 519920
Jun 15 14:26:20 ks384632 kernel:  DMA zone: 64 pages used for memmap
Jun 15 14:26:20 ks384632 kernel:  DMA zone: 6 pages reserved
Jun 15 14:26:20 ks384632 kernel:  DMA zone: 3911 pages, LIFO batch:0
Jun 15 14:26:20 ks384632 kernel:  DMA32 zone: 8064 pages used for memmap
Jun 15 14:26:20 ks384632 kernel:  DMA32 zone: 507875 pages, LIFO batch:31
Jun 15 14:26:20 ks384632 kernel: ACPI: PM-Timer IO Port: 0x408
Jun 15 14:26:20 ks384632 kernel: ACPI: Local APIC address 0xfee00000
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] disabled)
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] disabled)
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high level lint[0x1])
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high level lint[0x1])
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high level lint[0x1])
Jun 15 14:26:20 ks384632 kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high level lint[0x1])
Jun 15 14:26:20 ks384632 kernel: ACPI: IOAPIC (id[0x08] address[0xfec00000] gsi_base[0])
Jun 15 14:26:20 ks384632 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Jun 15 14:26:20 ks384632 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun 15 14:26:20 ks384632 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun 15 14:26:20 ks384632 kernel: ACPI: IRQ0 used by override.
Jun 15 14:26:20 ks384632 kernel: ACPI: IRQ2 used by override.
Jun 15 14:26:20 ks384632 kernel: ACPI: IRQ9 used by override.
Jun 15 14:26:20 ks384632 kernel: Using ACPI (MADT) for SMP configuration information
Jun 15 14:26:20 ks384632 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun 15 14:26:20 ks384632 kernel: SMP: Allowing 4 CPUs, 2 hotplug CPUs
Jun 15 14:26:20 ks384632 kernel: nr_irqs_gsi: 40
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000000008f000 - 0000000000090000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000000009e000 - 000000000009f000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000007ee98000 - 000000007eebf000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000007ef57000 - 000000007efbf000
Jun 15 14:26:20 ks384632 kernel: PM: Registered nosave memory: 000000007eff1000 - 000000007efff000
Jun 15 14:26:20 ks384632 kernel: Allocating PCI resources starting at 80000000 (gap: 80000000:78000000)
Jun 15 14:26:20 ks384632 kernel: setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:4 nr_node_ids:1
Jun 15 14:26:20 ks384632 kernel: PERCPU: Embedded 23 pages/cpu @ffff88007ec00000 s72192 r0 d22016 u524288
Jun 15 14:26:20 ks384632 kernel: pcpu-alloc: s72192 r0 d22016 u524288 alloc=1*2097152
Jun 15 14:26:20 ks384632 kernel: pcpu-alloc: [0] 0 1 2 3 
Jun 15 14:26:20 ks384632 kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 511786
Jun 15 14:26:20 ks384632 kernel: Policy zone: DMA32
Jun 15 14:26:20 ks384632 kernel: Kernel command line: root=/dev/sda1 console=tty0 BOOT_IMAGE=bzImage-2.6-xxxx-std-ipv6-64 
Jun 15 14:26:20 ks384632 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun 15 14:26:20 ks384632 kernel: Checking aperture...
Jun 15 14:26:20 ks384632 kernel: No AGP bridge found
Jun 15 14:26:20 ks384632 kernel: Memory: 2029556k/2080768k available (11387k kernel code, 1088k absent, 50124k reserved, 3649k data, 624k init)
Jun 15 14:26:20 ks384632 kernel: SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Jun 15 14:26:20 ks384632 kernel: Hierarchical RCU implementation.
Jun 15 14:26:20 ks384632 kernel: NR_IRQS:4352 nr_irqs:712 16
Jun 15 14:26:20 ks384632 kernel: Extended CMOS year: 2000
Jun 15 14:26:20 ks384632 kernel: Console: colour VGA+ 80x25
Jun 15 14:26:20 ks384632 kernel: console [tty0] enabled
Jun 15 14:26:20 ks384632 kernel: allocated 16777216 bytes of page_cgroup
Jun 15 14:26:20 ks384632 kernel: please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun 15 14:26:20 ks384632 kernel: hpet clockevent registered
Jun 15 14:26:20 ks384632 kernel: Fast TSC calibration using PIT
Jun 15 14:26:20 ks384632 kernel: Detected 1799.705 MHz processor.
Jun 15 14:26:20 ks384632 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 3599.41 BogoMIPS (lpj=7198820)
Jun 15 14:26:20 ks384632 kernel: pid_max: default: 32768 minimum: 301
Jun 15 14:26:20 ks384632 kernel: Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
Jun 15 14:26:20 ks384632 kernel: Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
Jun 15 14:26:20 ks384632 kernel: Mount-cache hash table entries: 256
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys cpuacct
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys memory
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys devices
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys freezer
Jun 15 14:26:20 ks384632 kernel: Initializing cgroup subsys blkio
Jun 15 14:26:20 ks384632 kernel: CPU: Physical Processor ID: 0
Jun 15 14:26:20 ks384632 kernel: CPU: Processor Core ID: 0
Jun 15 14:26:20 ks384632 kernel: mce: CPU supports 5 MCE banks
Jun 15 14:26:20 ks384632 kernel: CPU0: Thermal monitoring enabled (TM1)
Jun 15 14:26:20 ks384632 kernel: using mwait in idle threads.
Jun 15 14:26:20 ks384632 kernel: ACPI: Core revision 20110623
Jun 15 14:26:20 ks384632 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun 15 14:26:20 ks384632 kernel: CPU0: Intel(R) Atom(TM) CPU D425   @ 1.80GHz stepping 0a
Jun 15 14:26:20 ks384632 kernel: Performance Events: PEBS fmt0+, Atom events, Intel PMU driver.
Jun 15 14:26:20 ks384632 kernel: ... version:                3
Jun 15 14:26:20 ks384632 kernel: ... bit width:              40
Jun 15 14:26:20 ks384632 kernel: ... generic registers:      2
Jun 15 14:26:20 ks384632 kernel: ... value mask:             000000ffffffffff
Jun 15 14:26:20 ks384632 kernel: ... max period:             000000007fffffff
Jun 15 14:26:20 ks384632 kernel: ... fixed-purpose events:   3
Jun 15 14:26:20 ks384632 kernel: ... event mask:             0000000700000003
Jun 15 14:26:20 ks384632 kernel: Booting Node   0, Processors  #1
Jun 15 14:26:20 ks384632 kernel: smpboot cpu 1: start_ip = 98000
Jun 15 14:26:20 ks384632 kernel: Brought up 2 CPUs
Jun 15 14:26:20 ks384632 kernel: Total of 2 processors activated (7199.44 BogoMIPS).
Jun 15 14:26:20 ks384632 kernel: devtmpfs: initialized
Jun 15 14:26:20 ks384632 kernel: PM: Registering ACPI NVS region at 7ef57000 (425984 bytes)
Jun 15 14:26:20 ks384632 kernel: xor: automatically using best checksumming function: generic_sse
Jun 15 14:26:20 ks384632 kernel:   generic_sse:  5454.000 MB/sec
Jun 15 14:26:20 ks384632 kernel: xor: using function: generic_sse (5454.000 MB/sec)
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 16
Jun 15 14:26:20 ks384632 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Jun 15 14:26:20 ks384632 kernel: ACPI: bus type pci registered
Jun 15 14:26:20 ks384632 kernel: dca service started, version 1.12.1
Jun 15 14:26:20 ks384632 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Jun 15 14:26:20 ks384632 kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Jun 15 14:26:20 ks384632 kernel: PCI: Using configuration type 1 for base access
Jun 15 14:26:20 ks384632 kernel: bio: create slab <bio-0> at 0
Jun 15 14:26:20 ks384632 kernel: raid6: int64x1    338 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: int64x2    539 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: int64x4    630 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: int64x8    730 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: sse2x1     577 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: sse2x2    1038 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: sse2x4    1909 MB/s
Jun 15 14:26:20 ks384632 kernel: raid6: using algorithm sse2x4 (1909 MB/s)
Jun 15 14:26:20 ks384632 kernel: ACPI: Added _OSI(Module Device)
Jun 15 14:26:20 ks384632 kernel: ACPI: Added _OSI(Processor Device)
Jun 15 14:26:20 ks384632 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jun 15 14:26:20 ks384632 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jun 15 14:26:20 ks384632 kernel: ACPI: EC: Look up EC in DSDT
Jun 15 14:26:20 ks384632 kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun 15 14:26:20 ks384632 kernel: ACPI: Interpreter enabled
Jun 15 14:26:20 ks384632 kernel: ACPI: (supports S0 S1 S3 S4 S5)
Jun 15 14:26:20 ks384632 kernel: ACPI: Using IOAPIC for interrupt routing
Jun 15 14:26:20 ks384632 kernel: ACPI: No dock devices found.
Jun 15 14:26:20 ks384632 kernel: HEST: Table not found.
Jun 15 14:26:20 ks384632 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Jun 15 14:26:20 ks384632 kernel: pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
Jun 15 14:26:20 ks384632 kernel: pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
Jun 15 14:26:20 ks384632 kernel: pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
Jun 15 14:26:20 ks384632 kernel: pci_root PNP0A03:00: host bridge window [mem 0xd0000000-0xf7ffffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:00.0: [8086:a000] type 0 class 0x000600
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: [8086:a001] type 0 class 0x000300
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: reg 10: [mem 0xe0200000-0xe027ffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: reg 14: [io  0x20c0-0x20c7]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: reg 18: [mem 0xd0000000-0xdfffffff pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: reg 1c: [mem 0xe0100000-0xe01fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: [8086:27d0] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: [8086:27d2] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: [8086:27d4] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: [8086:27d6] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.0: [8086:27c8] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.0: reg 20: [io  0x2080-0x209f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.1: [8086:27c9] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.1: reg 20: [io  0x2060-0x207f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.2: [8086:27ca] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.2: reg 20: [io  0x2040-0x205f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.3: [8086:27cb] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.3: reg 20: [io  0x2020-0x203f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: [8086:27cc] type 0 class 0x000c03
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: reg 10: [mem 0xe0280400-0xe02807ff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0: [8086:2448] type 1 class 0x000604
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.0: [8086:27bc] type 0 class 0x000601
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.0: [Firmware Bug]: TigerPoint LPC.BM_STS cleared
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: [8086:27c0] type 0 class 0x000101
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 10: [io  0x20b8-0x20bf]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 14: [io  0x20cc-0x20cf]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 18: [io  0x20b0-0x20b7]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 1c: [io  0x20c8-0x20cb]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 20: [io  0x20a0-0x20af]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: reg 24: [mem 0xe0280000-0xe02803ff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: PME# supported from D3hot
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.2: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.3: [8086:27da] type 0 class 0x000c05
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1f.3: reg 20: [io  0x2000-0x201f]
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: [10ec:8136] type 0 class 0x000200
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: reg 10: [io  0x1000-0x10ff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: reg 18: [mem 0xe0004000-0xe0004fff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: reg 20: [mem 0xe0000000-0xe0003fff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: supports D1 D2
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Jun 15 14:26:20 ks384632 kernel: pci 0000:01:00.0: PME# disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PCI bridge to [bus 01-01]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PCI bridge to [bus 02-02]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PCI bridge to [bus 04-04]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xf7ffffff] (subtractive decode)
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P32_._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX1._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX2._PRT]
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
Jun 15 14:26:20 ks384632 kernel: pci0000:00: Requesting ACPI _OSC control (0x1d)
Jun 15 14:26:20 ks384632 kernel: pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
Jun 15 14:26:20 ks384632 kernel: ACPI _OSC control for PCIe not granted, disabling ASPM
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 *10 11 12)
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
Jun 15 14:26:20 ks384632 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 *9 10 11 12)
Jun 15 14:26:20 ks384632 kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
Jun 15 14:26:20 ks384632 kernel: vgaarb: loaded
Jun 15 14:26:20 ks384632 kernel: vgaarb: bridge control possible 0000:00:02.0
Jun 15 14:26:20 ks384632 kernel: SCSI subsystem initialized
Jun 15 14:26:20 ks384632 kernel: libata version 3.00 loaded.
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver usbfs
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver hub
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new device driver usb
Jun 15 14:26:20 ks384632 kernel: wmi: Mapper loaded
Jun 15 14:26:20 ks384632 kernel: PCI: Using ACPI for IRQ routing
Jun 15 14:26:20 ks384632 kernel: PCI: pci_cache_line_size set to 64 bytes
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000000008f000 - 000000000008ffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000000009ec00 - 000000000009ffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000007ee98000 - 000000007fffffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000007ef57000 - 000000007fffffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000007eff1000 - 000000007fffffff 
Jun 15 14:26:20 ks384632 kernel: reserve RAM buffer: 000000007f000000 - 000000007fffffff 
Jun 15 14:26:20 ks384632 kernel: HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Jun 15 14:26:20 ks384632 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Jun 15 14:26:20 ks384632 kernel: hpet0: 3 comparators, 64-bit 14.318180 MHz counter
Jun 15 14:26:20 ks384632 kernel: Switching to clocksource hpet
Jun 15 14:26:20 ks384632 kernel: FS-Cache: Loaded
Jun 15 14:26:20 ks384632 kernel: CacheFiles: Loaded
Jun 15 14:26:20 ks384632 kernel: pnp: PnP ACPI init
Jun 15 14:26:20 ks384632 kernel: ACPI: bus type pnp registered
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [bus 00-3f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [io  0x0cf8-0x0cff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [io  0x0000-0x0cf7 window]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [io  0x0d00-0xffff window]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [mem 0x000a0000-0x000bffff window]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: [mem 0xd0000000-0xf7ffffff window]
Jun 15 14:26:20 ks384632 kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xf8000000-0xfbffffff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfed14000-0xfed17fff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfed18000-0xfed18fff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfed19000-0xfed19fff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfed1c000-0xfed1ffff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0x000c0000-0x000dffff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0x000e0000-0x000fffff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:01: [mem 0xfff00000-0xffffffff]
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfed14000-0xfed17fff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0x000c0000-0x000dffff] could not be reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0x000e0000-0x000fffff] could not be reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: [mem 0xfff00000-0xffffffff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x0000-0x000f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x0081-0x0083]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x0087]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x0089-0x008b]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x008f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [io  0x00c0-0x00df]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: [dma 4]
Jun 15 14:26:20 ks384632 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:03: [io  0x0070-0x0071]
Jun 15 14:26:20 ks384632 kernel: pnp 00:03: [io  0x0074-0x0077]
Jun 15 14:26:20 ks384632 kernel: pnp 00:03: [irq 8]
Jun 15 14:26:20 ks384632 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:04: [io  0x00f0]
Jun 15 14:26:20 ks384632 kernel: pnp 00:04: [irq 13]
Jun 15 14:26:20 ks384632 kernel: pnp 00:04: Plug and Play ACPI device, IDs PNP0c04 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:05: [io  0x0061]
Jun 15 14:26:20 ks384632 kernel: pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0500-0x053f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0400-0x047f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0092]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0680-0x06ff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0010-0x001f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0072-0x0073]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0080]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0084-0x0086]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0088]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x008c-0x008e]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0090-0x009f]
Jun 15 14:26:20 ks384632 kernel: pnp 00:06: [io  0x0295-0x0296]
Jun 15 14:26:20 ks384632 kernel: system 00:06: [io  0x0500-0x053f] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:06: [io  0x0400-0x047f] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:06: [io  0x0680-0x06ff] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:06: [io  0x0295-0x0296] has been reserved
Jun 15 14:26:20 ks384632 kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:07: [io  0x0060]
Jun 15 14:26:20 ks384632 kernel: pnp 00:07: [io  0x0064]
Jun 15 14:26:20 ks384632 kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:08: [io  0x03f8-0x03ff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:08: [irq 4]
Jun 15 14:26:20 ks384632 kernel: pnp 00:08: Plug and Play ACPI device, IDs PNP0501 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:09: [io  0x02f8-0x02ff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:09: [irq 3]
Jun 15 14:26:20 ks384632 kernel: pnp 00:09: Plug and Play ACPI device, IDs PNP0501 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:0a: [mem 0xfec00000-0xfec000ff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:0a: Plug and Play ACPI device, IDs PNP0003 (active)
Jun 15 14:26:20 ks384632 kernel: pnp 00:0b: [mem 0xfed00000-0xfed03fff]
Jun 15 14:26:20 ks384632 kernel: pnp 00:0b: Plug and Play ACPI device, IDs PNP0103 (active)
Jun 15 14:26:20 ks384632 kernel: pnp: PnP ACPI: found 12 devices
Jun 15 14:26:20 ks384632 kernel: ACPI: ACPI bus type pnp unregistered
Jun 15 14:26:20 ks384632 kernel: PCI: max bus depth: 1 pci_try_num: 2
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: BAR 14: assigned [mem 0xe0300000-0xe04fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: BAR 15: assigned [mem 0xe0500000-0xe06fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: BAR 13: assigned [io  0x3000-0x3fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: BAR 14: assigned [mem 0xe0700000-0xe08fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: BAR 15: assigned [mem 0xe0900000-0xe0afffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: BAR 13: assigned [io  0x4000-0x4fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: BAR 14: assigned [mem 0xe0b00000-0xe0cfffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: BAR 15: assigned [mem 0xe0d00000-0xe0efffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: BAR 14: assigned [mem 0xe0f00000-0xe12fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PCI bridge to [bus 01-01]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [mem 0xe0f00000-0xe12fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0:   bridge window [mem 0xe0000000-0xe00fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PCI bridge to [bus 02-02]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1:   bridge window [mem 0xe0b00000-0xe0cfffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1:   bridge window [mem 0xe0d00000-0xe0efffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PCI bridge to [bus 03-03]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2:   bridge window [io  0x4000-0x4fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2:   bridge window [mem 0xe0700000-0xe08fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2:   bridge window [mem 0xe0900000-0xe0afffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PCI bridge to [bus 04-04]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3:   bridge window [io  0x3000-0x3fff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3:   bridge window [mem 0xe0300000-0xe04fffff]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3:   bridge window [mem 0xe0500000-0xe06fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0: PCI bridge to [bus 05-05]
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: enabling device (0000 -> 0003)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: PCI INT B -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.1: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: enabling device (0000 -> 0003)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.2: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: enabling device (0000 -> 0003)
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1c.3: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1e.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:00: resource 7 [mem 0xd0000000-0xf7ffffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:01: resource 1 [mem 0xe0f00000-0xe12fffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:01: resource 2 [mem 0xe0000000-0xe00fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:02: resource 0 [io  0x5000-0x5fff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:02: resource 1 [mem 0xe0b00000-0xe0cfffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:02: resource 2 [mem 0xe0d00000-0xe0efffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:03: resource 0 [io  0x4000-0x4fff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:03: resource 1 [mem 0xe0700000-0xe08fffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:03: resource 2 [mem 0xe0900000-0xe0afffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:04: resource 0 [io  0x3000-0x3fff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:04: resource 1 [mem 0xe0300000-0xe04fffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:04: resource 2 [mem 0xe0500000-0xe06fffff 64bit pref]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:05: resource 5 [io  0x0d00-0xffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
Jun 15 14:26:20 ks384632 kernel: pci_bus 0000:05: resource 7 [mem 0xd0000000-0xf7ffffff]
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 2
Jun 15 14:26:20 ks384632 kernel: IP route cache hash table entries: 65536 (order: 7, 524288 bytes)
Jun 15 14:26:20 ks384632 kernel: TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
Jun 15 14:26:20 ks384632 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun 15 14:26:20 ks384632 kernel: TCP: Hash tables configured (established 262144 bind 65536)
Jun 15 14:26:20 ks384632 kernel: TCP reno registered
Jun 15 14:26:20 ks384632 kernel: UDP hash table entries: 1024 (order: 3, 32768 bytes)
Jun 15 14:26:20 ks384632 kernel: UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 1
Jun 15 14:26:20 ks384632 kernel: RPC: Registered named UNIX socket transport module.
Jun 15 14:26:20 ks384632 kernel: RPC: Registered udp transport module.
Jun 15 14:26:20 ks384632 kernel: RPC: Registered tcp transport module.
Jun 15 14:26:20 ks384632 kernel: RPC: Registered tcp NFSv4.1 backchannel transport module.
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:02.0: Boot video device
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.0: PCI INT A disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.1: PCI INT B disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.2: PCI INT C disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.3: PCI INT D disabled
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:26:20 ks384632 kernel: pci 0000:00:1d.7: PCI INT A disabled
Jun 15 14:26:20 ks384632 kernel: PCI: CLS 64 bytes, default 64
Jun 15 14:26:20 ks384632 kernel: kvm: no hardware support
Jun 15 14:26:20 ks384632 kernel: has_svm: not amd
Jun 15 14:26:20 ks384632 kernel: kvm: no hardware support
Jun 15 14:26:20 ks384632 kernel: microcode: CPU0 sig=0x106ca, pf=0x1, revision=0x107
Jun 15 14:26:20 ks384632 kernel: microcode: CPU1 sig=0x106ca, pf=0x1, revision=0x107
Jun 15 14:26:20 ks384632 kernel: microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun 15 14:26:20 ks384632 kernel: Intel AES-NI instructions are not detected.
Jun 15 14:26:20 ks384632 kernel: VFS: Disk quotas dquot_6.5.2
Jun 15 14:26:20 ks384632 kernel: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun 15 14:26:20 ks384632 kernel: DLM installed
Jun 15 14:26:20 ks384632 kernel: FS-Cache: Netfs 'nfs' registered for caching
Jun 15 14:26:20 ks384632 kernel: NTFS driver 2.1.30 [Flags: R/W].
Jun 15 14:26:20 ks384632 kernel: ROMFS MTD (C) 2007 Red Hat, Inc.
Jun 15 14:26:20 ks384632 kernel: fuse init (API version 7.17)
Jun 15 14:26:20 ks384632 kernel: JFS: nTxBlock = 8192, nTxLock = 65536
Jun 15 14:26:20 ks384632 kernel: SGI XFS with ACLs, security attributes, large block/inode numbers, no debug enabled
Jun 15 14:26:20 ks384632 kernel: SGI XFS Quota Management subsystem
Jun 15 14:26:20 ks384632 kernel: OCFS2 1.5.0
Jun 15 14:26:20 ks384632 kernel: ocfs2: Registered cluster interface o2cb
Jun 15 14:26:20 ks384632 kernel: ocfs2: Registered cluster interface user
Jun 15 14:26:20 ks384632 kernel: OCFS2 DLMFS 1.5.0
Jun 15 14:26:20 ks384632 kernel: OCFS2 User DLM kernel interface loaded
Jun 15 14:26:20 ks384632 kernel: OCFS2 Node Manager 1.5.0
Jun 15 14:26:20 ks384632 kernel: OCFS2 DLM 1.5.0
Jun 15 14:26:20 ks384632 kernel: Btrfs loaded
Jun 15 14:26:20 ks384632 kernel: GFS2 installed
Jun 15 14:26:20 ks384632 kernel: ceph: loaded (mds proto 32)
Jun 15 14:26:20 ks384632 kernel: msgmni has been set to 3963
Jun 15 14:26:20 ks384632 kernel: async_tx: api initialized (async)
Jun 15 14:26:20 ks384632 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Jun 15 14:26:20 ks384632 kernel: io scheduler noop registered
Jun 15 14:26:20 ks384632 kernel: io scheduler deadline registered (default)
Jun 15 14:26:20 ks384632 kernel: io scheduler cfq registered
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.1: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.2: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.2: irq 42 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.3: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: pcieport 0000:00:1c.3: irq 43 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun 15 14:26:20 ks384632 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun 15 14:26:20 ks384632 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun 15 14:26:20 ks384632 kernel: Monitor-Mwait will be used to enter C-1 state
Jun 15 14:26:20 ks384632 kernel: ERST: Table is not found!
Jun 15 14:26:20 ks384632 kernel: GHES: HEST is not enabled!
Jun 15 14:26:20 ks384632 kernel: ioatdma: Intel(R) QuickData Technology Driver 4.00
Jun 15 14:26:20 ks384632 kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
Jun 15 14:26:20 ks384632 kernel: serial8250: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Jun 15 14:26:20 ks384632 kernel: serial8250: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
Jun 15 14:26:20 ks384632 kernel: 00:08: ttyS0 at I/O 0x3f8 (irq = 4) is a 16550A
Jun 15 14:26:20 ks384632 kernel: 00:09: ttyS1 at I/O 0x2f8 (irq = 3) is a 16550A
Jun 15 14:26:20 ks384632 kernel: Linux agpgart interface v0.103
Jun 15 14:26:20 ks384632 kernel: Refined TSC clocksource calibration: 1800.063 MHz.
Jun 15 14:26:20 ks384632 kernel: Switching to clocksource tsc
Jun 15 14:26:20 ks384632 kernel: floppy0: no floppy controllers found
Jun 15 14:26:20 ks384632 kernel: brd: module loaded
Jun 15 14:26:20 ks384632 kernel: loop: module loaded
Jun 15 14:26:20 ks384632 kernel: nbd: registered device at major 43
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver ub
Jun 15 14:26:20 ks384632 kernel: drbd: initialized. Version: 8.3.11 (api:88/proto:86-96)
Jun 15 14:26:20 ks384632 kernel: drbd: built-in
Jun 15 14:26:20 ks384632 kernel: drbd: registered as block device major 147
Jun 15 14:26:20 ks384632 kernel: drbd: minor_table @ 0xffff88007acc2f00
Jun 15 14:26:20 ks384632 kernel: Uniform Multi-Platform E-IDE driver
Jun 15 14:26:20 ks384632 kernel: ide_generic: please use "probe_mask=0x3f" module parameter for probing all legacy ISA IDE ports
Jun 15 14:26:20 ks384632 kernel: Probing IDE interface ide0...
Jun 15 14:26:20 ks384632 kernel: ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
Jun 15 14:26:20 ks384632 kernel: Probing IDE interface ide1...
Jun 15 14:26:20 ks384632 kernel: ide1 at 0x170-0x177,0x376 on irq 15
Jun 15 14:26:20 ks384632 kernel: ide-gd driver 1.18
Jun 15 14:26:20 ks384632 kernel: Loading iSCSI transport class v2.0-870.
Jun 15 14:26:20 ks384632 kernel: iscsi: registered transport (tcp)
Jun 15 14:26:20 ks384632 kernel: megaraid cmm: 2.20.2.7 (Release Date: Sun Jul 16 00:01:03 EST 2006)
Jun 15 14:26:20 ks384632 kernel: megaraid: 2.20.5.1 (Release Date: Thu Nov 16 15:32:35 EST 2006)
Jun 15 14:26:20 ks384632 kernel: megasas: 00.00.06.12-rc1 Wed. Oct. 5 17:00:00 PDT 2011
Jun 15 14:26:20 ks384632 kernel: mpt2sas version 10.100.00.00 loaded
Jun 15 14:26:20 ks384632 kernel: 3ware Storage Controller device driver for Linux v1.26.02.003.
Jun 15 14:26:20 ks384632 kernel: 3ware 9000 Storage Controller device driver for Linux v2.26.02.014.
Jun 15 14:26:20 ks384632 kernel: VMware PVSCSI driver - version 1.0.1.0-k
Jun 15 14:26:20 ks384632 kernel: ata_piix 0000:00:1f.2: version 2.13
Jun 15 14:26:20 ks384632 kernel: ata_piix 0000:00:1f.2: PCI INT A -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:26:20 ks384632 kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun 15 14:26:20 ks384632 kernel: ata_piix 0000:00:1f.2: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: scsi0 : ata_piix
Jun 15 14:26:20 ks384632 kernel: scsi1 : ata_piix
Jun 15 14:26:20 ks384632 kernel: ata1: SATA max UDMA/133 cmd 0x20b8 ctl 0x20cc bmdma 0x20a0 irq 18
Jun 15 14:26:20 ks384632 kernel: ata2: SATA max UDMA/133 cmd 0x20b0 ctl 0x20c8 bmdma 0x20a8 irq 18
Jun 15 14:26:20 ks384632 kernel: slram: not enough parameters.
Jun 15 14:26:20 ks384632 kernel: bonding: Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)
Jun 15 14:26:20 ks384632 kernel: tun: Universal TUN/TAP device driver, 1.6
Jun 15 14:26:20 ks384632 kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun 15 14:26:20 ks384632 kernel: pcnet32: pcnet32.c:v1.35 21.Apr.2008 tsbogend@alpha.franken.de
Jun 15 14:26:20 ks384632 kernel: e100: Intel(R) PRO/100 Network Driver, 3.5.24-k2-NAPI
Jun 15 14:26:20 ks384632 kernel: e100: Copyright(c) 1999-2006 Intel Corporation
Jun 15 14:26:20 ks384632 kernel: e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
Jun 15 14:26:20 ks384632 kernel: e1000: Copyright (c) 1999-2006 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: e1000e: Intel(R) PRO/1000 Network Driver - 1.5.1-k
Jun 15 14:26:20 ks384632 kernel: e1000e: Copyright(c) 1999 - 2011 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: Intel(R) Gigabit Ethernet Network Driver - version 3.2.10-k
Jun 15 14:26:20 ks384632 kernel: Copyright (c) 2007-2011 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: Intel(R) Gigabit Virtual Function Network Driver - version 2.0.1-k
Jun 15 14:26:20 ks384632 kernel: Copyright (c) 2009 - 2011 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: ixgbe: Intel(R) 10 Gigabit PCI Express Network Driver - version 3.6.7-k
Jun 15 14:26:20 ks384632 kernel: ixgbe: Copyright (c) 1999-2011 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: ixgb: Intel(R) PRO/10GbE Network Driver - version 1.0.135-k2-NAPI
Jun 15 14:26:20 ks384632 kernel: ixgb: Copyright (c) 1999-2008 Intel Corporation.
Jun 15 14:26:20 ks384632 kernel: sky2: driver version 1.30
Jun 15 14:26:20 ks384632 kernel: QLogic/NetXen Network Driver v4.0.77
Jun 15 14:26:20 ks384632 kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: irq 44 for MSI/MSI-X
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: RTL8168e/8111e at 0xffffc90000330000, 38:60:77:1b:2a:b2, XID 0c200000 IRQ 44
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Jun 15 14:26:20 ks384632 kernel: PPP generic driver version 2.4.2
Jun 15 14:26:20 ks384632 kernel: PPP BSD Compression module registered
Jun 15 14:26:20 ks384632 kernel: PPP Deflate Compression module registered
Jun 15 14:26:20 ks384632 kernel: PPP MPPE Compression module registered
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 24
Jun 15 14:26:20 ks384632 kernel: VMware vmxnet3 virtual NIC driver - version 1.1.29.0-k-NAPI
Jun 15 14:26:20 ks384632 kernel: Fusion MPT base driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: Copyright (c) 1999-2008 LSI Corporation
Jun 15 14:26:20 ks384632 kernel: Fusion MPT SPI Host driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: Fusion MPT FC Host driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: Fusion MPT SAS Host driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: Fusion MPT misc device (ioctl) driver 3.04.20
Jun 15 14:26:20 ks384632 kernel: mptctl: Registered with Fusion MPT base driver
Jun 15 14:26:20 ks384632 kernel: mptctl: /dev/mptctl @ (major,minor=10,220)
Jun 15 14:26:20 ks384632 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: EHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 1
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: using broken periodic workaround
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: debug port 1
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: cache line size of 64 is not supported
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: irq 23, io mem 0xe0280400
Jun 15 14:26:20 ks384632 kernel: ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun 15 14:26:20 ks384632 kernel: hub 1-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 1-0:1.0: 8 ports detected
Jun 15 14:26:20 ks384632 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun 15 14:26:20 ks384632 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.0: irq 23, io base 0x00002080
Jun 15 14:26:20 ks384632 kernel: hub 2-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 2-0:1.0: 2 ports detected
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.1: irq 19, io base 0x00002060
Jun 15 14:26:20 ks384632 kernel: hub 3-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 3-0:1.0: 2 ports detected
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x00002040
Jun 15 14:26:20 ks384632 kernel: hub 4-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 4-0:1.0: 2 ports detected
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 16 (level, low) -> IRQ 16
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: setting latency timer to 64
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: UHCI Host Controller
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
Jun 15 14:26:20 ks384632 kernel: uhci_hcd 0000:00:1d.3: irq 16, io base 0x00002020
Jun 15 14:26:20 ks384632 kernel: hub 5-0:1.0: USB hub found
Jun 15 14:26:20 ks384632 kernel: hub 5-0:1.0: 2 ports detected
Jun 15 14:26:20 ks384632 kernel: Initializing USB Mass Storage driver...
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver usb-storage
Jun 15 14:26:20 ks384632 kernel: USB Mass Storage support registered.
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver libusual
Jun 15 14:26:20 ks384632 kernel: i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun 15 14:26:20 ks384632 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jun 15 14:26:20 ks384632 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jun 15 14:26:20 ks384632 kernel: mousedev: PS/2 mouse device common for all mice
Jun 15 14:26:20 ks384632 kernel: rtc_cmos 00:03: RTC can wake from S4
Jun 15 14:26:20 ks384632 kernel: rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun 15 14:26:20 ks384632 kernel: rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Jun 15 14:26:20 ks384632 kernel: coretemp coretemp.0: Using relative temperature scale!
Jun 15 14:26:20 ks384632 kernel: via_cputemp: Not a VIA CPU
Jun 15 14:26:20 ks384632 kernel: w83627ehf: Found W83627DHG-P chip at 0x290
Jun 15 14:26:20 ks384632 kernel: Software Watchdog Timer: 0.07 initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout= 0)
Jun 15 14:26:20 ks384632 kernel: md: linear personality registered for level -1
Jun 15 14:26:20 ks384632 kernel: md: raid0 personality registered for level 0
Jun 15 14:26:20 ks384632 kernel: md: raid1 personality registered for level 1
Jun 15 14:26:20 ks384632 kernel: md: raid10 personality registered for level 10
Jun 15 14:26:20 ks384632 kernel: md: raid6 personality registered for level 6
Jun 15 14:26:20 ks384632 kernel: md: raid5 personality registered for level 5
Jun 15 14:26:20 ks384632 kernel: md: raid4 personality registered for level 4
Jun 15 14:26:20 ks384632 kernel: md: multipath personality registered for level -4
Jun 15 14:26:20 ks384632 kernel: md: faulty personality registered for level -5
Jun 15 14:26:20 ks384632 kernel: device-mapper: ioctl: 4.22.0-ioctl (2011-10-19) initialised: dm-devel@redhat.com
Jun 15 14:26:20 ks384632 kernel: device-mapper: multipath: version 1.3.0 loaded
Jun 15 14:26:20 ks384632 kernel: device-mapper: multipath round-robin: version 1.0.0 loaded
Jun 15 14:26:20 ks384632 kernel: EDAC MC: Ver: 2.1.0
Jun 15 14:26:20 ks384632 kernel: AMD64 EDAC driver v3.4.0
Jun 15 14:26:20 ks384632 kernel: cpuidle: using governor ladder
Jun 15 14:26:20 ks384632 kernel: cpuidle: using governor menu
Jun 15 14:26:20 ks384632 kernel: EFI Variables Facility v0.08 2004-May-17
Jun 15 14:26:20 ks384632 kernel: No iBFT detected.
Jun 15 14:26:20 ks384632 kernel: usbcore: registered new interface driver usbhid
Jun 15 14:26:20 ks384632 kernel: usbhid: USB HID core driver
Jun 15 14:26:20 ks384632 kernel: Netfilter messages via NETLINK v0.30.
Jun 15 14:26:20 ks384632 kernel: nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
Jun 15 14:26:20 ks384632 kernel: ctnetlink v0.93: registering with nfnetlink.
Jun 15 14:26:20 ks384632 kernel: xt_time: kernel timezone is -0000
Jun 15 14:26:20 ks384632 kernel: IPv4 over IPv4 tunneling driver
Jun 15 14:26:20 ks384632 kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
Jun 15 14:26:20 ks384632 kernel: ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully
Jun 15 14:26:20 ks384632 kernel: TCP cubic registered
Jun 15 14:26:20 ks384632 kernel: Initializing XFRM netlink socket
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 10
Jun 15 14:26:20 ks384632 kernel: ip6_tables: (C) 2000-2006 Netfilter Core Team
Jun 15 14:26:20 ks384632 kernel: IPv6 over IPv4 tunneling driver
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 17
Jun 15 14:26:20 ks384632 kernel: NET: Registered protocol family 15
Jun 15 14:26:20 ks384632 kernel: Bridge firewalling registered
Jun 15 14:26:20 ks384632 kernel: L2TP core driver, V2.0
Jun 15 14:26:20 ks384632 kernel: PPPoL2TP kernel driver, V2.0
Jun 15 14:26:20 ks384632 kernel: L2TP IP encapsulation support (L2TPv3)
Jun 15 14:26:20 ks384632 kernel: L2TP netlink interface
Jun 15 14:26:20 ks384632 kernel: L2TP ethernet pseudowire support (L2TPv3)
Jun 15 14:26:20 ks384632 kernel: 8021q: 802.1Q VLAN Support v1.8
Jun 15 14:26:20 ks384632 kernel: sctp: Hash tables configured (established 65536 bind 65536)
Jun 15 14:26:20 ks384632 kernel: Registering the dns_resolver key type
Jun 15 14:26:20 ks384632 kernel: libceph: loaded (mon/osd proto 15/24, osdmap 5/6 5/6)
Jun 15 14:26:20 ks384632 kernel: registered taskstats version 1
Jun 15 14:26:20 ks384632 kernel: rtc_cmos 00:03: setting system clock to 2012-06-15 12:26:13 UTC (1339763173)
Jun 15 14:26:20 ks384632 kernel: ACPI Exception: AE_NOT_FOUND, Evaluating _PSS (20110623/processor_perflib-318)
Jun 15 14:26:20 ks384632 kernel: ata1.00: ATA-8: ST31000524AS, JC4B, max UDMA/133
Jun 15 14:26:20 ks384632 kernel: ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun 15 14:26:20 ks384632 kernel: ata1.00: configured for UDMA/133
Jun 15 14:26:20 ks384632 kernel: scsi 0:0:0:0: Direct-Access     ATA      ST31000524AS     JC4B PQ: 0 ANSI: 5
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] Write Protect is off
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun 15 14:26:20 ks384632 kernel: sda: sda1 sda2 sda3
Jun 15 14:26:20 ks384632 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Jun 15 14:26:20 ks384632 kernel: md: Waiting for all devices to be available before autodetect
Jun 15 14:26:20 ks384632 kernel: md: If you don't use raid, use raid=noautodetect
Jun 15 14:26:20 ks384632 kernel: md: Autodetecting RAID arrays.
Jun 15 14:26:20 ks384632 kernel: md: Scanned 0 and added 0 devices.
Jun 15 14:26:20 ks384632 kernel: md: autorun ...
Jun 15 14:26:20 ks384632 kernel: md: ... autorun DONE.
Jun 15 14:26:20 ks384632 kernel: EXT3-fs (sda1): error: couldn't mount because of unsupported optional features (240)
Jun 15 14:26:20 ks384632 kernel: EXT2-fs (sda1): error: couldn't mount because of unsupported optional features (244)
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): INFO: recovery required on readonly filesystem
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): write access will be enabled during recovery
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): recovery complete
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Jun 15 14:26:20 ks384632 kernel: VFS: Mounted root (ext4 filesystem) readonly on device 8:1.
Jun 15 14:26:20 ks384632 kernel: Freeing unused kernel memory: 624k freed
Jun 15 14:26:20 ks384632 kernel: usb 3-2: new low-speed USB device number 2 using uhci_hcd
Jun 15 14:26:20 ks384632 kernel: input: Cypress PS/2 to USB Adapter as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.0/input/input0
Jun 15 14:26:20 ks384632 kernel: generic-usb 0003:04B4:8081.0001: input: USB HID v1.00 Keyboard [Cypress PS/2 to USB Adapter] on usb-0000:00:1d.1-2/input0
Jun 15 14:26:20 ks384632 kernel: input: Cypress PS/2 to USB Adapter as /devices/pci0000:00/0000:00:1d.1/usb3/3-2/3-2:1.1/input/input1
Jun 15 14:26:20 ks384632 kernel: generic-usb 0003:04B4:8081.0002: input: USB HID v1.00 Mouse [Cypress PS/2 to USB Adapter] on usb-0000:00:1d.1-2/input1
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: link down
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: link down
Jun 15 14:26:20 ks384632 kernel: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun 15 14:26:20 ks384632 kernel: Adding 523260k swap on /dev/sda3.  Priority:-1 extents:1 across:523260k 
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: udev-fallback-graphics main process (3038) terminated with status 1
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: plymouth main process (1785) killed by SEGV signal
Jun 15 14:26:20 ks384632 kernel: init: plymouth-splash main process (3043) terminated with status 2
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: r8169 0000:01:00.0: eth0: link up
Jun 15 14:26:20 ks384632 kernel: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: plymouth-log main process (3242) terminated with status 1
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: failsafe main process (3243) killed by TERM signal
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: plymouth-upstart-bridge main process (3283) terminated with status 1
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Bluetooth daemon 4.98
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Starting SDP server
Jun 15 14:26:20 ks384632 bluetoothd[3287]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Server initialization failed
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Failed to init alert plugin
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Failed to init time plugin
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Failed to init proximity plugin
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Can't init bnep module
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Failed to init network plugin
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Unable to start SCO server socket
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Failed to init audio plugin
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Failed to init gatt_example plugin
Jun 15 14:26:20 ks384632 bluetoothd[3287]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:20 ks384632 bluetoothd[3287]: adapter_ops_setup failed
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:20 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:20 ks384632 kernel: init: bluetooth main process (3287) terminated with status 1
Jun 15 14:26:20 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:20 ks384632 cron[3307]: (CRON) INFO (pidfile fd = 3)
Jun 15 14:26:20 ks384632 cron[3316]: (CRON) STARTUP (fork ok)
Jun 15 14:26:20 ks384632 acpid: starting up with netlink and the input layer
Jun 15 14:26:20 ks384632 bluez: Stopping uarts
Jun 15 14:26:20 ks384632 cron[3316]: (CRON) INFO (Running @reboot jobs)
Jun 15 14:26:20 ks384632 acpid: 1 rule loaded
Jun 15 14:26:20 ks384632 acpid: waiting for events: event logging is off
Jun 15 14:26:20 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Bluetooth daemon 4.98
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Starting SDP server
Jun 15 14:26:20 ks384632 bluetoothd[3343]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Server initialization failed
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Failed to init alert plugin
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Failed to init time plugin
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Failed to init proximity plugin
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Can't init bnep module
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Failed to init network plugin
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Unable to start SCO server socket
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Failed to init audio plugin
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Failed to init gatt_example plugin
Jun 15 14:26:20 ks384632 bluetoothd[3343]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:20 ks384632 bluetoothd[3343]: adapter_ops_setup failed
Jun 15 14:26:20 ks384632 kernel: init: bluetooth main process (3343) terminated with status 1
Jun 15 14:26:20 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:20 ks384632 named[3356]: starting BIND 9.8.1-P1 -u bind
Jun 15 14:26:20 ks384632 named[3356]: built with '--prefix=/usr' '--mandir=/usr/share/man' '--infodir=/usr/share/info' '--sysconfdir=/etc/bind' '--localstatedir=/var' '--enable-threads' '--enable-largefile' '--with-libtool' '--enable-shared' '--enable-static' '--with-openssl=/usr' '--with-gssapi=/usr' '--with-gnu-ld' '--with-geoip=/usr' '--enable-ipv6' 'CFLAGS=-fno-strict-aliasing -DDIG_SIGCHASE -O2' 'LDFLAGS=-Wl,-Bsymbolic-functions -Wl,-z,relro' 'CPPFLAGS=-D_FORTIFY_SOURCE=2'
Jun 15 14:26:20 ks384632 named[3356]: adjusted limit on open files from 4096 to 1048576
Jun 15 14:26:20 ks384632 named[3356]: found 2 CPUs, using 2 worker threads
Jun 15 14:26:20 ks384632 named[3356]: using up to 4096 sockets
Jun 15 14:26:20 ks384632 bluez: Stopping uarts
Jun 15 14:26:20 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:20 ks384632 named[3356]: loading configuration from '/etc/bind/named.conf'
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Bluetooth daemon 4.98
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Starting SDP server
Jun 15 14:26:20 ks384632 bluetoothd[3371]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Server initialization failed
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Failed to init alert plugin
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Failed to init time plugin
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Failed to init proximity plugin
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Can't init bnep module
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Failed to init network plugin
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Unable to start SCO server socket
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Failed to init audio plugin
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Failed to init gatt_example plugin
Jun 15 14:26:20 ks384632 bluetoothd[3371]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:20 ks384632 bluetoothd[3371]: adapter_ops_setup failed
Jun 15 14:26:20 ks384632 named[3356]: reading built-in trusted keys from file '/etc/bind/bind.keys'
Jun 15 14:26:20 ks384632 named[3356]: using default UDP/IPv4 port range: [1024, 65535]
Jun 15 14:26:20 ks384632 named[3356]: using default UDP/IPv6 port range: [1024, 65535]
Jun 15 14:26:20 ks384632 named[3356]: listening on IPv4 interface lo, 127.0.0.1#53
Jun 15 14:26:20 ks384632 named[3356]: listening on IPv6 interface lo, ::1#53
Jun 15 14:26:20 ks384632 named[3356]: generating session key for dynamic DNS
Jun 15 14:26:20 ks384632 named[3356]: sizing zone task pool based on 5 zones
Jun 15 14:26:20 ks384632 named[3356]: using built-in root key for view _default
Jun 15 14:26:20 ks384632 named[3356]: set up managed keys zone for view _default, file 'managed-keys.bind'
Jun 15 14:26:20 ks384632 named[3356]: Warning: 'empty-zones-enable/disable-empty-zone' not set: disabling RFC 1918 empty zones
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 254.169.IN-ADDR.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 2.0.192.IN-ADDR.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 100.51.198.IN-ADDR.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 113.0.203.IN-ADDR.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 255.255.255.255.IN-ADDR.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: D.F.IP6.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 8.E.F.IP6.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 9.E.F.IP6.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: A.E.F.IP6.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: B.E.F.IP6.ARPA
Jun 15 14:26:20 ks384632 named[3356]: automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA
Jun 15 14:26:20 ks384632 named[3356]: command channel listening on 127.0.0.1#953
Jun 15 14:26:20 ks384632 named[3356]: command channel listening on ::1#953
Jun 15 14:26:20 ks384632 named[3356]: zone 0.in-addr.arpa/IN: loaded serial 1
Jun 15 14:26:20 ks384632 named[3356]: zone 127.in-addr.arpa/IN: loaded serial 1
Jun 15 14:26:20 ks384632 named[3356]: zone 255.in-addr.arpa/IN: loaded serial 1
Jun 15 14:26:20 ks384632 named[3356]: zone localhost/IN: loaded serial 2
Jun 15 14:26:20 ks384632 named[3356]: managed-keys-zone ./IN: loaded serial 9
Jun 15 14:26:20 ks384632 named[3356]: running
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3371) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 bluez: Stopping uarts
Jun 15 14:26:21 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Bluetooth daemon 4.98
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Starting SDP server
Jun 15 14:26:21 ks384632 bluetoothd[3385]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Server initialization failed
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Failed to init alert plugin
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Failed to init time plugin
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Failed to init proximity plugin
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Can't init bnep module
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Failed to init network plugin
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Unable to start SCO server socket
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Failed to init audio plugin
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Failed to init gatt_example plugin
Jun 15 14:26:21 ks384632 bluetoothd[3385]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3385]: adapter_ops_setup failed
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3385) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 bluez: Stopping uarts
Jun 15 14:26:21 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Bluetooth daemon 4.98
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Starting SDP server
Jun 15 14:26:21 ks384632 bluetoothd[3416]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Server initialization failed
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Failed to init alert plugin
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Failed to init time plugin
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Failed to init proximity plugin
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Can't init bnep module
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Failed to init network plugin
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Unable to start SCO server socket
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Failed to init audio plugin
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Failed to init gatt_example plugin
Jun 15 14:26:21 ks384632 bluetoothd[3416]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3416]: adapter_ops_setup failed
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3416) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 bluez: Stopping uarts
Jun 15 14:26:21 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Bluetooth daemon 4.98
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Starting SDP server
Jun 15 14:26:21 ks384632 bluetoothd[3433]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Server initialization failed
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Failed to init alert plugin
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Failed to init time plugin
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Failed to init proximity plugin
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Can't init bnep module
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Failed to init network plugin
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Unable to start SCO server socket
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Failed to init audio plugin
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Failed to init gatt_example plugin
Jun 15 14:26:21 ks384632 bluetoothd[3433]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3433]: adapter_ops_setup failed
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3433) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 bluez: Stopping uarts
Jun 15 14:26:21 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Bluetooth daemon 4.98
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Starting SDP server
Jun 15 14:26:21 ks384632 bluetoothd[3471]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Server initialization failed
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Failed to init alert plugin
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Failed to init time plugin
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Failed to init proximity plugin
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Can't init bnep module
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Failed to init network plugin
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Unable to start SCO server socket
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Failed to init audio plugin
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Failed to init gatt_example plugin
Jun 15 14:26:21 ks384632 bluetoothd[3471]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3471]: adapter_ops_setup failed
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3471) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 bluez: Stopping uarts
Jun 15 14:26:21 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Bluetooth daemon 4.98
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Starting SDP server
Jun 15 14:26:21 ks384632 bluetoothd[3504]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Server initialization failed
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Failed to init alert plugin
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Failed to init time plugin
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Failed to init proximity plugin
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Can't init bnep module
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Failed to init network plugin
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Unable to start SCO server socket
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Failed to init audio plugin
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Failed to init gatt_example plugin
Jun 15 14:26:21 ks384632 bluetoothd[3504]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3504]: adapter_ops_setup failed
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3504) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 bluez: Stopping uarts
Jun 15 14:26:21 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Bluetooth daemon 4.98
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Starting SDP server
Jun 15 14:26:21 ks384632 bluetoothd[3513]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Server initialization failed
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Failed to init alert plugin
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Failed to init time plugin
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Failed to init proximity plugin
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Can't init bnep module
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Failed to init network plugin
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Unable to start SCO server socket
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Failed to init audio plugin
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Failed to init gatt_example plugin
Jun 15 14:26:21 ks384632 bluetoothd[3513]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3513]: adapter_ops_setup failed
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process (3513) terminated with status 1
Jun 15 14:26:21 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:21 ks384632 bluez: Stopping uarts
Jun 15 14:26:21 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Bluetooth daemon 4.98
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Starting SDP server
Jun 15 14:26:21 ks384632 bluetoothd[3522]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Server initialization failed
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Failed to init alert plugin
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Failed to init time plugin
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Failed to init proximity plugin
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Can't init bnep module
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Failed to init network plugin
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Unable to start SCO server socket
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Failed to init audio plugin
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Failed to init gatt_example plugin
Jun 15 14:26:21 ks384632 bluetoothd[3522]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:21 ks384632 bluetoothd[3522]: adapter_ops_setup failed
Jun 15 14:26:22 ks384632 kernel: init: bluetooth main process (3522) terminated with status 1
Jun 15 14:26:22 ks384632 kernel: init: bluetooth main process ended, respawning
Jun 15 14:26:22 ks384632 bluez: Stopping uarts
Jun 15 14:26:22 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Bluetooth daemon 4.98
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Starting SDP server
Jun 15 14:26:22 ks384632 bluetoothd[3531]: opening L2CAP socket: Address family not supported by protocol
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Server initialization failed
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Failed to init alert plugin
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Failed to init time plugin
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Failed to init proximity plugin
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Failed to open control socket: Address family not supported by protocol (97)
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Can't init bnep module
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Failed to init network plugin
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Unable to start SCO server socket
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Failed to init audio plugin
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Failed to init gatt_example plugin
Jun 15 14:26:22 ks384632 bluetoothd[3531]: Can't open HCI socket: Address family not supported by protocol (97)
Jun 15 14:26:22 ks384632 bluetoothd[3531]: adapter_ops_setup failed
Jun 15 14:26:22 ks384632 kernel: init: bluetooth main process (3531) terminated with status 1
Jun 15 14:26:22 ks384632 kernel: init: bluetooth respawning too fast, stopped
Jun 15 14:26:22 ks384632 bluez: Stopping uarts
Jun 15 14:26:22 ks384632 bluez: Stopping rfcomm
Jun 15 14:26:22 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:22 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:22 ks384632 kernel: init: Failed to create pty - disabling logging for job
Jun 15 14:26:22 ks384632 kernel: init: Temporary process spawn error: No such file or directory
Jun 15 14:26:22 ks384632 kernel: init: plymouth-stop pre-start process (3542) terminated with status 1
Jun 15 14:26:24 ks384632 named[3356]: success resolving 'liebelein.dyndns.org/A' (in 'dyndns.org'?) after reducing the advertised EDNS UDP packet size to 512 octets
Jun 15 14:26:27 ks384632 ntpdate[3095]: step time server 213.251.128.249 offset 0.234786 sec
Jun 15 14:27:02 ks384632 CRON[3548]: (root) CMD (/usr/local/rtm/bin/rtm 24 > /dev/null 2> /dev/null)
Jun 15 20:06:08 ks384632 kernel: imklog 5.8.6, log source = /proc/kmsg started.
Jun 15 20:06:08 ks384632 rsyslogd: [origin software="rsyslogd" swVersion="5.8.6" x-pid="2961" x-info="http://www.rsyslog.com"] start
Jun 15 20:06:08 ks384632 rsyslogd: rsyslogd's groupid changed to 103
Jun 15 20:06:08 ks384632 rsyslogd: rsyslogd's userid changed to 101
Jun 15 20:06:08 ks384632 rsyslogd-2039: Could not open output pipe '/dev/xconsole' [try http://www.rsyslog.com/e/2039 ]
Jun 15 20:06:08 ks384632 kernel: Initializing cgroup subsys cpuset
Jun 15 20:06:08 ks384632 kernel: Linux version 3.2.13-grsec-xxxx-grs-ipv6-64 (root@kernel-64.ovh.net) (gcc version 4.3.2 (Debian 4.3.2-1.1) ) #1 SMP Thu Mar 29 09:48:59 UTC 2012
Jun 15 20:06:08 ks384632 kernel: Command line: BOOT_IMAGE=/boot/bzImage-3.2.13-xxxx-grs-ipv6-64 root=/dev/sda1 ro
Jun 15 20:06:08 ks384632 kernel: BIOS-provided physical RAM map:
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 0000000000000000 - 000000000008f000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000000008f000 - 0000000000090000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 0000000000090000 - 000000000009ec00 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 00000000000e0000 - 0000000000100000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 0000000000100000 - 000000007ee98000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007ee98000 - 000000007eebf000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007eebf000 - 000000007ef57000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007ef57000 - 000000007efbf000 (ACPI NVS)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007efbf000 - 000000007eff1000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007eff1000 - 000000007efff000 (ACPI data)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007efff000 - 000000007f000000 (usable)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 000000007f000000 - 0000000080000000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 00000000f8000000 - 00000000fc000000 (reserved)
Jun 15 20:06:08 ks384632 kernel: BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
Jun 15 20:06:08 ks384632 kernel: NX (Execute Disable) protection: active
Jun 15 20:06:08 ks384632 kernel: DMI 2.5 present.
Jun 15 20:06:08 ks384632 kernel: DMI: OVH KS/D425KT, BIOS MWPNT10N.86A.0083.2011.0524.1600 05/24/2011
Jun 15 20:06:08 ks384632 kernel: e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Jun 15 20:06:08 ks384632 kernel: e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Jun 15 20:06:08 ks384632 kernel: No AGP bridge found
Jun 15 20:06:08 ks384632 kernel: last_pfn = 0x7f000 max_arch_pfn = 0x400000000
Jun 15 20:06:08 ks384632 kernel: MTRR default type: uncachable
Jun 15 20:06:08 ks384632 kernel: MTRR fixed ranges enabled:
Jun 15 20:06:08 ks384632 kernel:  00000-9FFFF write-back
Jun 15 20:06:08 ks384632 kernel:  A0000-BFFFF uncachable
Jun 15 20:06:08 ks384632 kernel:  C0000-DFFFF write-protect
Jun 15 20:06:08 ks384632 kernel:  E0000-FFFFF uncachable
Jun 15 20:06:08 ks384632 kernel: MTRR variable ranges enabled:
Jun 15 20:06:08 ks384632 kernel:  0 base 000000000 mask F80000000 write-back
Jun 15 20:06:08 ks384632 kernel:  1 base 07F000000 mask FFF000000 uncachable
Jun 15 20:06:08 ks384632 kernel:  2 base 0FFFF0000 mask FFFFF0000 write-protect
Jun 15 20:06:08 ks384632 kernel:  3 base 0FFF10000 mask FFFFF0000 write-protect
Jun 15 20:06:08 ks384632 kernel:  4 base 0FFF20000 mask FFFFF0000 write-protect
Jun 15 20:06:08 ks384632 kernel:  5 disabled
Jun 15 20:06:08 ks384632 kernel:  6 disabled
Jun 15 20:06:08 ks384632 kernel: x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun 15 20:06:08 ks384632 kernel: found SMP MP-table at [ffff8800000fbe70] fbe70
Jun 15 20:06:08 ks384632 kernel: initial memory mapped : 0 - 20000000
Jun 15 20:06:08 ks384632 kernel: Base memory trampoline at [ffff880000099000] 99000 size 20480
Jun 15 20:06:08 ks384632 kernel: init_memory_mapping: 0000000000000000-000000007f000000
Jun 15 20:06:08 ks384632 kernel: 0000000000 - 007f000000 page 2M
Jun 15 20:06:08 ks384632 kernel: kernel direct mapping tables up to 7f000000 @ 1fffd000-20000000