ubuntuusers.de

kern.log

Autor:
peterst
Datum:
7. Juni 2015 13:46
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
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
May 31 13:08:16 iMac kernel: [  821.006345] perf interrupt took too long (2502 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
Jun  2 11:48:14 iMac kernel: [    0.000000] Initializing cgroup subsys cpuset
Jun  2 11:48:14 iMac kernel: [    0.000000] Initializing cgroup subsys cpu
Jun  2 11:48:14 iMac kernel: [    0.000000] Initializing cgroup subsys cpuacct
Jun  2 11:48:14 iMac kernel: [    0.000000] Linux version 3.16.0-38-generic (buildd@allspice) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #52~14.04.1-Ubuntu SMP Fri May 8 09:43:57 UTC 2015 (Ubuntu 3.16.0-38.52~14.04.1-generic 3.16.7-ckt10)
Jun  2 11:48:14 iMac kernel: [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=a0523afa-1512-41aa-8660-804fbe235596 ro quiet splash vt.handoff=7
Jun  2 11:48:14 iMac kernel: [    0.000000] KERNEL supported cpus:
Jun  2 11:48:14 iMac kernel: [    0.000000]   Intel GenuineIntel
Jun  2 11:48:14 iMac kernel: [    0.000000]   AMD AuthenticAMD
Jun  2 11:48:14 iMac kernel: [    0.000000]   Centaur CentaurHauls
Jun  2 11:48:14 iMac kernel: [    0.000000] Disabled fast string operations
Jun  2 11:48:14 iMac kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf65cfff] usable
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf65d000-0x00000000bf6eefff] ACPI NVS
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf6ef000-0x00000000bf7f5fff] ACPI data
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7f6000-0x00000000bf7fefff] reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7ff000-0x00000000bf7fffff] ACPI data
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
Jun  2 11:48:14 iMac kernel: [    0.000000] NX (Execute Disable) protection: active
Jun  2 11:48:14 iMac kernel: [    0.000000] SMBIOS 2.4 present.
Jun  2 11:48:14 iMac kernel: [    0.000000] DMI: Apple Inc. iMac11,1/Mac-F2268DAE, BIOS    IM111.88Z.0034.B02.1003171314 03/17/10
Jun  2 11:48:14 iMac kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun  2 11:48:14 iMac kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Jun  2 11:48:14 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  2 11:48:14 iMac kernel: [    0.000000] e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000
Jun  2 11:48:14 iMac kernel: [    0.000000] MTRR default type: write-back
Jun  2 11:48:14 iMac kernel: [    0.000000] MTRR fixed ranges enabled:
Jun  2 11:48:14 iMac kernel: [    0.000000]   00000-9FFFF write-back
Jun  2 11:48:14 iMac kernel: [    0.000000]   A0000-BFFFF uncachable
Jun  2 11:48:14 iMac kernel: [    0.000000]   C0000-DFFFF write-protect
Jun  2 11:48:14 iMac kernel: [    0.000000]   E0000-FFFFF uncachable
Jun  2 11:48:14 iMac kernel: [    0.000000] MTRR variable ranges enabled:
Jun  2 11:48:14 iMac kernel: [    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
Jun  2 11:48:14 iMac kernel: [    0.000000]   1 disabled
Jun  2 11:48:14 iMac kernel: [    0.000000]   2 disabled
Jun  2 11:48:14 iMac kernel: [    0.000000]   3 disabled
Jun  2 11:48:14 iMac kernel: [    0.000000]   4 disabled
Jun  2 11:48:14 iMac kernel: [    0.000000]   5 disabled
Jun  2 11:48:14 iMac kernel: [    0.000000]   6 disabled
Jun  2 11:48:14 iMac kernel: [    0.000000]   7 disabled
Jun  2 11:48:14 iMac kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun  2 11:48:14 iMac kernel: [    0.000000] e820: last_pfn = 0xbf65d max_arch_pfn = 0x400000000
Jun  2 11:48:14 iMac kernel: [    0.000000] Scanning 1 areas for low memory corruption
Jun  2 11:48:14 iMac kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
Jun  2 11:48:14 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
Jun  2 11:48:14 iMac kernel: [    0.000000]  [mem 0x00000000-0x000fffff] page 4k
Jun  2 11:48:14 iMac kernel: [    0.000000] BRK [0x01fbd000, 0x01fbdfff] PGTABLE
Jun  2 11:48:14 iMac kernel: [    0.000000] BRK [0x01fbe000, 0x01fbefff] PGTABLE
Jun  2 11:48:14 iMac kernel: [    0.000000] BRK [0x01fbf000, 0x01fbffff] PGTABLE
Jun  2 11:48:14 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23fe00000-0x23fffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000]  [mem 0x23fe00000-0x23fffffff] page 2M
Jun  2 11:48:14 iMac kernel: [    0.000000] BRK [0x01fc0000, 0x01fc0fff] PGTABLE
Jun  2 11:48:14 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23c000000-0x23fdfffff]
Jun  2 11:48:14 iMac kernel: [    0.000000]  [mem 0x23c000000-0x23fdfffff] page 2M
Jun  2 11:48:14 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000]  [mem 0x200000000-0x23bffffff] page 2M
Jun  2 11:48:14 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00100000-0xbf65cfff]
Jun  2 11:48:14 iMac kernel: [    0.000000]  [mem 0x00100000-0x001fffff] page 4k
Jun  2 11:48:14 iMac kernel: [    0.000000]  [mem 0x00200000-0xbf5fffff] page 2M
Jun  2 11:48:14 iMac kernel: [    0.000000]  [mem 0xbf600000-0xbf65cfff] page 4k
Jun  2 11:48:14 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
Jun  2 11:48:14 iMac kernel: [    0.000000] BRK [0x01fc1000, 0x01fc1fff] PGTABLE
Jun  2 11:48:14 iMac kernel: [    0.000000] BRK [0x01fc2000, 0x01fc2fff] PGTABLE
Jun  2 11:48:14 iMac kernel: [    0.000000] RAMDISK: [mem 0x35ad8000-0x36d63fff]
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: Early table checksum verification disabled
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 APPLE )
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: XSDT 0x00000000BF70E1C0 00008C (v01 APPLE  Apple00  00000034      01000013)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: FACP 0x00000000BF70B000 0000F4 (v04 APPLE  Apple00  00000034 Loki 0000005F)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: DSDT 0x00000000BF6FF000 0050F3 (v01 APPLE  iMac     00110001 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: FACS 0x00000000BF665000 000040
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: ASF! 0x00000000BF70D000 0000A5 (v32 APPLE  Apple00  00000001 Loki 0000005F)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: HPET 0x00000000BF70A000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF709000 0000BC (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF708000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: MCFG 0x00000000BF707000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: SBST 0x00000000BF706000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: ECDT 0x00000000BF705000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FB000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FA000 000774 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6F8000 000A10 (v01 PmRef  CpuPm    00003000 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FE000 0000FA (v01 SataRe SataPri  00001000 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FD000 0000FA (v01 SataRe SataSec  00001000 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  2 11:48:14 iMac kernel: [    0.000000] No NUMA configuration found
Jun  2 11:48:14 iMac kernel: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] Initmem setup node 0 [mem 0x00000000-0x23fffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000]   NODE_DATA [mem 0x23fff6000-0x23fffafff]
Jun  2 11:48:14 iMac kernel: [    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237600000-ffff88023f5fffff] on node 0
Jun  2 11:48:14 iMac kernel: [    0.000000] Zone ranges:
Jun  2 11:48:14 iMac kernel: [    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000]   Normal   [mem 0x100000000-0x23fffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] Movable zone start for each node
Jun  2 11:48:14 iMac kernel: [    0.000000] Early memory node ranges
Jun  2 11:48:14 iMac kernel: [    0.000000]   node   0: [mem 0x00001000-0x0009efff]
Jun  2 11:48:14 iMac kernel: [    0.000000]   node   0: [mem 0x00100000-0xbf65cfff]
Jun  2 11:48:14 iMac kernel: [    0.000000]   node   0: [mem 0x100000000-0x23fffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] On node 0 totalpages: 2094587
Jun  2 11:48:14 iMac kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Jun  2 11:48:14 iMac kernel: [    0.000000]   DMA zone: 21 pages reserved
Jun  2 11:48:14 iMac kernel: [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
Jun  2 11:48:14 iMac kernel: [    0.000000]   DMA32 zone: 12186 pages used for memmap
Jun  2 11:48:14 iMac kernel: [    0.000000]   DMA32 zone: 779869 pages, LIFO batch:31
Jun  2 11:48:14 iMac kernel: [    0.000000]   Normal zone: 20480 pages used for memmap
Jun  2 11:48:14 iMac kernel: [    0.000000]   Normal zone: 1310720 pages, LIFO batch:31
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Jun  2 11:48:14 iMac kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: IRQ0 used by override.
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: IRQ2 used by override.
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: IRQ9 used by override.
Jun  2 11:48:14 iMac kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Jun  2 11:48:14 iMac kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun  2 11:48:14 iMac kernel: [    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jun  2 11:48:14 iMac kernel: [    0.000000] nr_irqs_gsi: 40
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf65d000-0xbf6eefff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf6ef000-0xbf7f5fff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7f6000-0xbf7fefff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7ff000-0xbf7fffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xbfffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed1afff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
Jun  2 11:48:14 iMac kernel: [    0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun  2 11:48:14 iMac kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Jun  2 11:48:14 iMac kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Jun  2 11:48:14 iMac kernel: [    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88023fc00000 s81408 r8192 d20992 u262144
Jun  2 11:48:14 iMac kernel: [    0.000000] pcpu-alloc: s81408 r8192 d20992 u262144 alloc=1*2097152
Jun  2 11:48:14 iMac kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Jun  2 11:48:14 iMac kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2061836
Jun  2 11:48:14 iMac kernel: [    0.000000] Policy zone: Normal
Jun  2 11:48:14 iMac kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=a0523afa-1512-41aa-8660-804fbe235596 ro quiet splash vt.handoff=7
Jun  2 11:48:14 iMac kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun  2 11:48:14 iMac kernel: [    0.000000] AGP: Checking aperture...
Jun  2 11:48:14 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  2 11:48:14 iMac kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Jun  2 11:48:14 iMac kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jun  2 11:48:14 iMac kernel: [    0.000000] Memory: 8144852K/8378348K available (7626K kernel code, 1131K rwdata, 3596K rodata, 1352K init, 1300K bss, 233496K reserved)
Jun  2 11:48:14 iMac kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jun  2 11:48:14 iMac kernel: [    0.000000] Hierarchical RCU implementation.
Jun  2 11:48:14 iMac kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Jun  2 11:48:14 iMac kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Jun  2 11:48:14 iMac kernel: [    0.000000] 	Offload RCU callbacks from all CPUs
Jun  2 11:48:14 iMac kernel: [    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
Jun  2 11:48:14 iMac kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jun  2 11:48:14 iMac kernel: [    0.000000] NR_IRQS:16640 nr_irqs:744 16
Jun  2 11:48:14 iMac kernel: [    0.000000] vt handoff: transparent VT on vt#7
Jun  2 11:48:14 iMac kernel: [    0.000000] Console: colour dummy device 80x25
Jun  2 11:48:14 iMac kernel: [    0.000000] console [tty0] enabled
Jun  2 11:48:14 iMac kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Jun  2 11:48:14 iMac kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun  2 11:48:14 iMac kernel: [    0.000000] hpet clockevent registered
Jun  2 11:48:14 iMac kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Jun  2 11:48:14 iMac kernel: [    0.000000] tsc: Detected 2793.040 MHz processor
Jun  2 11:48:14 iMac kernel: [    0.000030] Calibrating delay loop (skipped), value calculated using timer frequency.. 5586.08 BogoMIPS (lpj=11172160)
Jun  2 11:48:14 iMac kernel: [    0.000033] pid_max: default: 32768 minimum: 301
Jun  2 11:48:14 iMac kernel: [    0.000040] ACPI: Core revision 20140424
Jun  2 11:48:14 iMac kernel: [    0.004383] ACPI: All ACPI Tables successfully acquired
Jun  2 11:48:14 iMac kernel: [    0.004612] Security Framework initialized
Jun  2 11:48:14 iMac kernel: [    0.004631] AppArmor: AppArmor initialized
Jun  2 11:48:14 iMac kernel: [    0.004632] Yama: becoming mindful.
Jun  2 11:48:14 iMac kernel: [    0.005109] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun  2 11:48:14 iMac kernel: [    0.006813] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Jun  2 11:48:14 iMac kernel: [    0.007597] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  2 11:48:14 iMac kernel: [    0.007605] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  2 11:48:14 iMac kernel: [    0.007835] Initializing cgroup subsys memory
Jun  2 11:48:14 iMac kernel: [    0.007856] Initializing cgroup subsys devices
Jun  2 11:48:14 iMac kernel: [    0.007861] Initializing cgroup subsys freezer
Jun  2 11:48:14 iMac kernel: [    0.007864] Initializing cgroup subsys net_cls
Jun  2 11:48:14 iMac kernel: [    0.007868] Initializing cgroup subsys blkio
Jun  2 11:48:14 iMac kernel: [    0.007871] Initializing cgroup subsys perf_event
Jun  2 11:48:14 iMac kernel: [    0.007873] Initializing cgroup subsys net_prio
Jun  2 11:48:14 iMac kernel: [    0.007879] Initializing cgroup subsys hugetlb
Jun  2 11:48:14 iMac kernel: [    0.007898] Disabled fast string operations
Jun  2 11:48:14 iMac kernel: [    0.007900] CPU: Physical Processor ID: 0
Jun  2 11:48:14 iMac kernel: [    0.007901] CPU: Processor Core ID: 0
Jun  2 11:48:14 iMac kernel: [    0.007905] mce: CPU supports 9 MCE banks
Jun  2 11:48:14 iMac kernel: [    0.007913] CPU0: Thermal monitoring enabled (TM1)
Jun  2 11:48:14 iMac kernel: [    0.007921] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jun  2 11:48:14 iMac kernel: [    0.007921] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jun  2 11:48:14 iMac kernel: [    0.007921] tlb_flushall_shift: 6
Jun  2 11:48:14 iMac kernel: [    0.008007] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
Jun  2 11:48:14 iMac kernel: [    0.008683] ftrace: allocating 29244 entries in 115 pages
Jun  2 11:48:14 iMac kernel: [    0.020619] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun  2 11:48:14 iMac kernel: [    0.060344] smpboot: CPU0: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz (fam: 06, model: 1e, stepping: 05)
Jun  2 11:48:14 iMac kernel: [    0.165619] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
Jun  2 11:48:14 iMac kernel: [    0.165633] perf_event_intel: CPU erratum AAJ80 worked around
Jun  2 11:48:14 iMac kernel: [    0.165634] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
Jun  2 11:48:14 iMac kernel: [    0.165636] ... version:                3
Jun  2 11:48:14 iMac kernel: [    0.165636] ... bit width:              48
Jun  2 11:48:14 iMac kernel: [    0.165637] ... generic registers:      4
Jun  2 11:48:14 iMac kernel: [    0.165638] ... value mask:             0000ffffffffffff
Jun  2 11:48:14 iMac kernel: [    0.165639] ... max period:             000000007fffffff
Jun  2 11:48:14 iMac kernel: [    0.165639] ... fixed-purpose events:   3
Jun  2 11:48:14 iMac kernel: [    0.165640] ... event mask:             000000070000000f
Jun  2 11:48:14 iMac kernel: [    0.167196] x86: Booting SMP configuration:
Jun  2 11:48:14 iMac kernel: [    0.167197] .... node  #0, CPUs:      #1
Jun  2 11:48:14 iMac kernel: [    0.178292] Disabled fast string operations
Jun  2 11:48:14 iMac kernel: [    0.180489] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun  2 11:48:14 iMac kernel: [    0.180570]  #2
Jun  2 11:48:14 iMac kernel: [    0.191611] Disabled fast string operations
Jun  2 11:48:14 iMac kernel: [    0.193807]  #3<6>[    0.204849] Disabled fast string operations
Jun  2 11:48:14 iMac kernel: [    0.218080]  #4
Jun  2 11:48:14 iMac kernel: [    0.218080] Disabled fast string operations
Jun  2 11:48:14 iMac kernel: [    0.231312]  #5
Jun  2 11:48:14 iMac kernel: [    0.231312] Disabled fast string operations
Jun  2 11:48:14 iMac kernel: [    0.244540]  #6
Jun  2 11:48:14 iMac kernel: [    0.244540] Disabled fast string operations
Jun  2 11:48:14 iMac kernel: [    0.257776]  #7
Jun  2 11:48:14 iMac kernel: [    0.257776] Disabled fast string operations
Jun  2 11:48:14 iMac kernel: [    0.259893] x86: Booted up 1 node, 8 CPUs
Jun  2 11:48:14 iMac kernel: [    0.259896] smpboot: Total of 8 processors activated (44688.64 BogoMIPS)
Jun  2 11:48:14 iMac kernel: [    0.265235] devtmpfs: initialized
Jun  2 11:48:14 iMac kernel: [    0.269006] evm: security.selinux
Jun  2 11:48:14 iMac kernel: [    0.269007] evm: security.SMACK64
Jun  2 11:48:14 iMac kernel: [    0.269008] evm: security.SMACK64EXEC
Jun  2 11:48:14 iMac kernel: [    0.269009] evm: security.SMACK64TRANSMUTE
Jun  2 11:48:14 iMac kernel: [    0.269009] evm: security.SMACK64MMAP
Jun  2 11:48:14 iMac kernel: [    0.269010] evm: security.ima
Jun  2 11:48:14 iMac kernel: [    0.269010] evm: security.capability
Jun  2 11:48:14 iMac kernel: [    0.269055] PM: Registering ACPI NVS region [mem 0xbf65d000-0xbf6eefff] (598016 bytes)
Jun  2 11:48:14 iMac kernel: [    0.269837] pinctrl core: initialized pinctrl subsystem
Jun  2 11:48:14 iMac kernel: [    0.269900] regulator-dummy: no parameters
Jun  2 11:48:14 iMac kernel: [    0.269931] RTC time:  9:47:59, date: 06/02/15
Jun  2 11:48:14 iMac kernel: [    0.269973] NET: Registered protocol family 16
Jun  2 11:48:14 iMac kernel: [    0.270104] cpuidle: using governor ladder
Jun  2 11:48:14 iMac kernel: [    0.270106] cpuidle: using governor menu
Jun  2 11:48:14 iMac kernel: [    0.270149] ACPI: bus type PCI registered
Jun  2 11:48:14 iMac kernel: [    0.270150] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun  2 11:48:14 iMac kernel: [    0.270214] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jun  2 11:48:14 iMac kernel: [    0.270216] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jun  2 11:48:14 iMac kernel: [    0.270650] PCI: Using configuration type 1 for base access
Jun  2 11:48:14 iMac kernel: [    0.274124] ACPI: Added _OSI(Module Device)
Jun  2 11:48:14 iMac kernel: [    0.274125] ACPI: Added _OSI(Processor Device)
Jun  2 11:48:14 iMac kernel: [    0.274127] ACPI: Added _OSI(3.0 _SCP Extensions)
Jun  2 11:48:14 iMac kernel: [    0.274127] ACPI: Added _OSI(Processor Aggregator Device)
Jun  2 11:48:14 iMac kernel: [    0.274846] ACPI : EC: EC description table is found, configuring boot EC
Jun  2 11:48:14 iMac kernel: [    0.277699] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun  2 11:48:14 iMac kernel: [    0.277983] ACPI: Dynamic OEM Table Load:
Jun  2 11:48:14 iMac kernel: [    0.277990] ACPI: SSDT 0xFFFF880233FA0000 0004BD (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.278262] ACPI: Dynamic OEM Table Load:
Jun  2 11:48:14 iMac kernel: [    0.278268] ACPI: SSDT 0xFFFF880233FA0800 0006E5 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.285958] ACPI: Dynamic OEM Table Load:
Jun  2 11:48:14 iMac kernel: [    0.285964] ACPI: SSDT 0xFFFF880233C19000 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.289855] ACPI: Dynamic OEM Table Load:
Jun  2 11:48:14 iMac kernel: [    0.289860] ACPI: SSDT 0xFFFF880233F78A00 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
Jun  2 11:48:14 iMac kernel: [    0.294650] ACPI: Interpreter enabled
Jun  2 11:48:14 iMac kernel: [    0.294655] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
Jun  2 11:48:14 iMac kernel: [    0.294658] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
Jun  2 11:48:14 iMac kernel: [    0.294669] ACPI: (supports S0 S3 S4 S5)
Jun  2 11:48:14 iMac kernel: [    0.294670] ACPI: Using IOAPIC for interrupt routing
Jun  2 11:48:14 iMac kernel: [    0.294691] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun  2 11:48:14 iMac kernel: [    0.298262] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Jun  2 11:48:14 iMac kernel: [    0.298267] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  2 11:48:14 iMac kernel: [    0.298293] \_SB_.PCI0:_OSC invalid UUID
Jun  2 11:48:14 iMac kernel: [    0.298294] _OSC request data:1 1f 0 
Jun  2 11:48:14 iMac kernel: [    0.298297] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Jun  2 11:48:14 iMac kernel: [    0.298832] PCI host bridge to bus 0000:00
Jun  2 11:48:14 iMac kernel: [    0.298834] pci_bus 0000:00: root bus resource [bus 00-fe]
Jun  2 11:48:14 iMac kernel: [    0.298836] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
Jun  2 11:48:14 iMac kernel: [    0.298837] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
Jun  2 11:48:14 iMac kernel: [    0.298838] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Jun  2 11:48:14 iMac kernel: [    0.298839] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
Jun  2 11:48:14 iMac kernel: [    0.298847] pci 0000:00:00.0: [8086:d131] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.298937] pci 0000:00:03.0: [8086:d138] type 01 class 0x060400
Jun  2 11:48:14 iMac kernel: [    0.298984] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.299015] pci 0000:00:03.0: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.299050] pci 0000:00:08.0: [8086:d155] type 00 class 0x088000
Jun  2 11:48:14 iMac kernel: [    0.299136] pci 0000:00:08.1: [8086:d156] type 00 class 0x088000
Jun  2 11:48:14 iMac kernel: [    0.299222] pci 0000:00:08.2: [8086:d157] type 00 class 0x088000
Jun  2 11:48:14 iMac kernel: [    0.299300] pci 0000:00:08.3: [8086:d158] type 00 class 0x088000
Jun  2 11:48:14 iMac kernel: [    0.299374] pci 0000:00:10.0: [8086:d150] type 00 class 0x088000
Jun  2 11:48:14 iMac kernel: [    0.299443] pci 0000:00:10.1: [8086:d151] type 00 class 0x088000
Jun  2 11:48:14 iMac kernel: [    0.299526] pci 0000:00:1a.0: [8086:3b3b] type 00 class 0x0c0300
Jun  2 11:48:14 iMac kernel: [    0.299564] pci 0000:00:1a.0: reg 0x20: [io  0x3060-0x307f]
Jun  2 11:48:14 iMac kernel: [    0.299657] pci 0000:00:1a.7: [8086:3b3c] type 00 class 0x0c0320
Jun  2 11:48:14 iMac kernel: [    0.299676] pci 0000:00:1a.7: reg 0x10: [mem 0xd0705c00-0xd0705fff]
Jun  2 11:48:14 iMac kernel: [    0.299756] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.299801] pci 0000:00:1a.7: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.299839] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
Jun  2 11:48:14 iMac kernel: [    0.299854] pci 0000:00:1b.0: reg 0x10: [mem 0xd0700000-0xd0703fff 64bit]
Jun  2 11:48:14 iMac kernel: [    0.299919] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.299951] pci 0000:00:1b.0: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.299985] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
Jun  2 11:48:14 iMac kernel: [    0.300048] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.300080] pci 0000:00:1c.0: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.300115] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
Jun  2 11:48:14 iMac kernel: [    0.300178] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.300210] pci 0000:00:1c.1: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.300243] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
Jun  2 11:48:14 iMac kernel: [    0.300307] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.300339] pci 0000:00:1c.2: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.300371] pci 0000:00:1c.3: [8086:3b48] type 01 class 0x060400
Jun  2 11:48:14 iMac kernel: [    0.300430] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.300462] pci 0000:00:1c.3: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.300496] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
Jun  2 11:48:14 iMac kernel: [    0.300555] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.300619] pci 0000:00:1d.0: [8086:3b36] type 00 class 0x0c0300
Jun  2 11:48:14 iMac kernel: [    0.300657] pci 0000:00:1d.0: reg 0x20: [io  0x3040-0x305f]
Jun  2 11:48:14 iMac kernel: [    0.300750] pci 0000:00:1d.7: [8086:3b34] type 00 class 0x0c0320
Jun  2 11:48:14 iMac kernel: [    0.300769] pci 0000:00:1d.7: reg 0x10: [mem 0xd0705800-0xd0705bff]
Jun  2 11:48:14 iMac kernel: [    0.300849] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.300891] pci 0000:00:1d.7: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.300925] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jun  2 11:48:14 iMac kernel: [    0.301019] pci 0000:00:1f.0: [8086:3b02] type 00 class 0x060100
Jun  2 11:48:14 iMac kernel: [    0.301167] pci 0000:00:1f.2: [8086:3b20] type 00 class 0x01018f
Jun  2 11:48:14 iMac kernel: [    0.301181] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
Jun  2 11:48:14 iMac kernel: [    0.301187] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
Jun  2 11:48:14 iMac kernel: [    0.301194] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
Jun  2 11:48:14 iMac kernel: [    0.301200] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
Jun  2 11:48:14 iMac kernel: [    0.301206] pci 0000:00:1f.2: reg 0x20: [io  0x3020-0x302f]
Jun  2 11:48:14 iMac kernel: [    0.301213] pci 0000:00:1f.2: reg 0x24: [io  0xffe0-0xffef]
Jun  2 11:48:14 iMac kernel: [    0.301292] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
Jun  2 11:48:14 iMac kernel: [    0.301305] pci 0000:00:1f.3: reg 0x10: [mem 0xd0706000-0xd07060ff 64bit]
Jun  2 11:48:14 iMac kernel: [    0.301323] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Jun  2 11:48:14 iMac kernel: [    0.301393] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
Jun  2 11:48:14 iMac kernel: [    0.301413] pci 0000:00:1f.6: reg 0x10: [mem 0xd0704000-0xd0704fff 64bit]
Jun  2 11:48:14 iMac kernel: [    0.301575] pci 0000:01:00.0: [1002:944a] type 00 class 0x030000
Jun  2 11:48:14 iMac kernel: [    0.301587] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.301595] pci 0000:01:00.0: reg 0x18: [mem 0xd0620000-0xd062ffff 64bit]
Jun  2 11:48:14 iMac kernel: [    0.301601] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
Jun  2 11:48:14 iMac kernel: [    0.301611] pci 0000:01:00.0: reg 0x30: [mem 0xd0600000-0xd061ffff pref]
Jun  2 11:48:14 iMac kernel: [    0.301637] pci 0000:01:00.0: supports D1 D2
Jun  2 11:48:14 iMac kernel: [    0.301653] pci 0000:01:00.0: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.301688] pci 0000:01:00.1: [1002:aa30] type 00 class 0x040300
Jun  2 11:48:14 iMac kernel: [    0.301699] pci 0000:01:00.1: reg 0x10: [mem 0xd0630000-0xd0633fff 64bit]
Jun  2 11:48:14 iMac kernel: [    0.301746] pci 0000:01:00.1: supports D1 D2
Jun  2 11:48:14 iMac kernel: [    0.311098] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  2 11:48:14 iMac kernel: [    0.311104] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  2 11:48:14 iMac kernel: [    0.311108] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  2 11:48:14 iMac kernel: [    0.311115] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.311215] pci 0000:02:00.0: [14e4:1684] type 00 class 0x020000
Jun  2 11:48:14 iMac kernel: [    0.311240] pci 0000:02:00.0: reg 0x10: [mem 0xd0500000-0xd050ffff 64bit]
Jun  2 11:48:14 iMac kernel: [    0.311384] pci 0000:02:00.0: PME# supported from D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.311422] pci 0000:02:00.0: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.319113] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  2 11:48:14 iMac kernel: [    0.319121] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  2 11:48:14 iMac kernel: [    0.319219] pci 0000:03:00.0: [168c:002a] type 00 class 0x028000
Jun  2 11:48:14 iMac kernel: [    0.319243] pci 0000:03:00.0: reg 0x10: [mem 0xd0400000-0xd040ffff 64bit]
Jun  2 11:48:14 iMac kernel: [    0.319364] pci 0000:03:00.0: supports D1
Jun  2 11:48:14 iMac kernel: [    0.319365] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
Jun  2 11:48:14 iMac kernel: [    0.319394] pci 0000:03:00.0: System wakeup disabled by ACPI
Jun  2 11:48:14 iMac kernel: [    0.319423] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
Jun  2 11:48:14 iMac kernel: [    0.319431] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  2 11:48:14 iMac kernel: [    0.319435] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  2 11:48:14 iMac kernel: [    0.319513] pci 0000:04:00.0: [104c:823e] type 01 class 0x060400
Jun  2 11:48:14 iMac kernel: [    0.319637] pci 0000:04:00.0: supports D1 D2
Jun  2 11:48:14 iMac kernel: [    0.327123] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  2 11:48:14 iMac kernel: [    0.327131] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  2 11:48:14 iMac kernel: [    0.327242] pci 0000:05:00.0: [104c:823f] type 00 class 0x0c0010
Jun  2 11:48:14 iMac kernel: [    0.327267] pci 0000:05:00.0: reg 0x10: [mem 0xd0304000-0xd03047ff]
Jun  2 11:48:14 iMac kernel: [    0.327281] pci 0000:05:00.0: reg 0x14: [mem 0xd0300000-0xd0303fff]
Jun  2 11:48:14 iMac kernel: [    0.327383] pci 0000:05:00.0: supports D1 D2
Jun  2 11:48:14 iMac kernel: [    0.327385] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot
Jun  2 11:48:14 iMac kernel: [    0.327480] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  2 11:48:14 iMac kernel: [    0.327491] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  2 11:48:14 iMac kernel: [    0.327572] acpiphp: Slot [1] registered
Jun  2 11:48:14 iMac kernel: [    0.327576] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  2 11:48:14 iMac kernel: [    0.327580] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  2 11:48:14 iMac kernel: [    0.327629] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  2 11:48:14 iMac kernel: [    0.327633] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  2 11:48:14 iMac kernel: [    0.327698] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
Jun  2 11:48:14 iMac kernel: [    0.327703] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  2 11:48:14 iMac kernel: [    0.327707] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun  2 11:48:14 iMac kernel: [    0.327708] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun  2 11:48:14 iMac kernel: [    0.327710] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun  2 11:48:14 iMac kernel: [    0.327711] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
Jun  2 11:48:14 iMac kernel: [    0.328064] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  2 11:48:14 iMac kernel: [    0.328105] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  2 11:48:14 iMac kernel: [    0.328145] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  2 11:48:14 iMac kernel: [    0.328184] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  2 11:48:14 iMac kernel: [    0.328223] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  2 11:48:14 iMac kernel: [    0.328264] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
Jun  2 11:48:14 iMac kernel: [    0.328303] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  2 11:48:14 iMac kernel: [    0.328342] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  2 11:48:14 iMac kernel: [    0.328417] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
Jun  2 11:48:14 iMac kernel: [    0.328420] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  2 11:48:14 iMac kernel: [    0.328424] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Jun  2 11:48:14 iMac kernel: [    0.328459] PCI host bridge to bus 0000:ff
Jun  2 11:48:14 iMac kernel: [    0.328461] pci_bus 0000:ff: root bus resource [bus ff]
Jun  2 11:48:14 iMac kernel: [    0.328465] pci 0000:ff:00.0: [8086:2c51] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328504] pci 0000:ff:00.1: [8086:2c81] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328545] pci 0000:ff:02.0: [8086:2c90] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328582] pci 0000:ff:02.1: [8086:2c91] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328620] pci 0000:ff:03.0: [8086:2c98] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328655] pci 0000:ff:03.1: [8086:2c99] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328692] pci 0000:ff:03.4: [8086:2c9c] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328728] pci 0000:ff:04.0: [8086:2ca0] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328763] pci 0000:ff:04.1: [8086:2ca1] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328799] pci 0000:ff:04.2: [8086:2ca2] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328834] pci 0000:ff:04.3: [8086:2ca3] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328872] pci 0000:ff:05.0: [8086:2ca8] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328908] pci 0000:ff:05.1: [8086:2ca9] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328944] pci 0000:ff:05.2: [8086:2caa] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.328980] pci 0000:ff:05.3: [8086:2cab] type 00 class 0x060000
Jun  2 11:48:14 iMac kernel: [    0.329058] ACPI: Enabled 4 GPEs in block 00 to 3F
Jun  2 11:48:14 iMac kernel: [    0.329077] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
Jun  2 11:48:14 iMac kernel: [    0.329158] vgaarb: setting as boot device: PCI:0000:01:00.0
Jun  2 11:48:14 iMac kernel: [    0.329160] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Jun  2 11:48:14 iMac kernel: [    0.329163] vgaarb: loaded
Jun  2 11:48:14 iMac kernel: [    0.329164] vgaarb: bridge control possible 0000:01:00.0
Jun  2 11:48:14 iMac kernel: [    0.329360] SCSI subsystem initialized
Jun  2 11:48:14 iMac kernel: [    0.329399] libata version 3.00 loaded.
Jun  2 11:48:14 iMac kernel: [    0.329420] ACPI: bus type USB registered
Jun  2 11:48:14 iMac kernel: [    0.329435] usbcore: registered new interface driver usbfs
Jun  2 11:48:14 iMac kernel: [    0.329443] usbcore: registered new interface driver hub
Jun  2 11:48:14 iMac kernel: [    0.329461] usbcore: registered new device driver usb
Jun  2 11:48:14 iMac kernel: [    0.329577] PCI: Using ACPI for IRQ routing
Jun  2 11:48:14 iMac kernel: [    0.335047] PCI: pci_cache_line_size set to 64 bytes
Jun  2 11:48:14 iMac kernel: [    0.335115] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Jun  2 11:48:14 iMac kernel: [    0.335116] e820: reserve RAM buffer [mem 0xbf65d000-0xbfffffff]
Jun  2 11:48:14 iMac kernel: [    0.335206] NetLabel: Initializing
Jun  2 11:48:14 iMac kernel: [    0.335207] NetLabel:  domain hash size = 128
Jun  2 11:48:14 iMac kernel: [    0.335208] NetLabel:  protocols = UNLABELED CIPSOv4
Jun  2 11:48:14 iMac kernel: [    0.335218] NetLabel:  unlabeled traffic allowed by default
Jun  2 11:48:14 iMac kernel: [    0.335282] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
Jun  2 11:48:14 iMac kernel: [    0.335288] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0
Jun  2 11:48:14 iMac kernel: [    0.335292] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Jun  2 11:48:14 iMac kernel: [    0.337328] hpet: hpet2 irq 40 for MSI
Jun  2 11:48:14 iMac kernel: [    0.337363] hpet: hpet3 irq 41 for MSI
Jun  2 11:48:14 iMac kernel: [    0.337397] hpet: hpet4 irq 42 for MSI
Jun  2 11:48:14 iMac kernel: [    0.337427] hpet: hpet5 irq 43 for MSI
Jun  2 11:48:14 iMac kernel: [    0.337472] hpet: hpet6 irq 44 for MSI
Jun  2 11:48:14 iMac kernel: [    0.337577] Switched to clocksource hpet
Jun  2 11:48:14 iMac kernel: [    0.342086] AppArmor: AppArmor Filesystem Enabled
Jun  2 11:48:14 iMac kernel: [    0.342114] pnp: PnP ACPI init
Jun  2 11:48:14 iMac kernel: [    0.342127] ACPI: bus type PNP registered
Jun  2 11:48:14 iMac kernel: [    0.342266] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342270] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
Jun  2 11:48:14 iMac kernel: [    0.342318] system 00:01: [io  0x0680-0x069f] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342320] system 00:01: [io  0x1000-0x100f] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342322] system 00:01: [io  0xffff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342323] system 00:01: [io  0xffff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342325] system 00:01: [io  0x0400-0x047f] could not be reserved
Jun  2 11:48:14 iMac kernel: [    0.342326] system 00:01: [io  0x0500-0x057f] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342327] system 00:01: [io  0x164e-0x164f] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342329] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  2 11:48:14 iMac kernel: [    0.342379] system 00:02: [io  0x06a0-0x06af] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342381] system 00:02: [io  0x06b0-0x06ff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342383] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  2 11:48:14 iMac kernel: [    0.342405] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun  2 11:48:14 iMac kernel: [    0.342583] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342585] system 00:04: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342586] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342588] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342589] system 00:04: [mem 0xfeb00000-0xfeb03fff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342590] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
Jun  2 11:48:14 iMac kernel: [    0.342592] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
Jun  2 11:48:14 iMac kernel: [    0.342593] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun  2 11:48:14 iMac kernel: [    0.342595] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  2 11:48:14 iMac kernel: [    0.342747] pnp: PnP ACPI: found 5 devices
Jun  2 11:48:14 iMac kernel: [    0.342748] ACPI: bus type PNP unregistered
Jun  2 11:48:14 iMac kernel: [    0.349011] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349015] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349021] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349023] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349039] pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 04-05] add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349041] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04-05] add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349047] pci 0000:00:1c.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349048] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349055] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349056] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349066] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349067] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349069] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349070] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349071] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  2 11:48:14 iMac kernel: [    0.349073] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349074] pci 0000:00:1c.1: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349075] pci 0000:00:1c.2: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349077] pci 0000:00:1c.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349078] pci 0000:00:1c.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  2 11:48:14 iMac kernel: [    0.349082] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349085] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349088] pci 0000:00:1c.2: BAR 15: assigned [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349090] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349092] pci 0000:00:1c.4: BAR 15: assigned [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349094] pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jun  2 11:48:14 iMac kernel: [    0.349096] pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun  2 11:48:14 iMac kernel: [    0.349098] pci 0000:00:1c.2: BAR 13: assigned [io  0x6000-0x6fff]
Jun  2 11:48:14 iMac kernel: [    0.349100] pci 0000:00:1c.3: BAR 13: assigned [io  0x7000-0x7fff]
Jun  2 11:48:14 iMac kernel: [    0.349101] pci 0000:00:1c.4: BAR 13: assigned [io  0x8000-0x8fff]
Jun  2 11:48:14 iMac kernel: [    0.349104] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  2 11:48:14 iMac kernel: [    0.349106] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  2 11:48:14 iMac kernel: [    0.349109] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  2 11:48:14 iMac kernel: [    0.349111] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349114] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  2 11:48:14 iMac kernel: [    0.349116] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun  2 11:48:14 iMac kernel: [    0.349120] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  2 11:48:14 iMac kernel: [    0.349123] pci 0000:00:1c.0:   bridge window [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349127] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  2 11:48:14 iMac kernel: [    0.349129] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun  2 11:48:14 iMac kernel: [    0.349132] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  2 11:48:14 iMac kernel: [    0.349135] pci 0000:00:1c.1:   bridge window [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349139] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  2 11:48:14 iMac kernel: [    0.349145] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  2 11:48:14 iMac kernel: [    0.349156] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  2 11:48:14 iMac kernel: [    0.349157] pci 0000:00:1c.2:   bridge window [io  0x6000-0x6fff]
Jun  2 11:48:14 iMac kernel: [    0.349161] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  2 11:48:14 iMac kernel: [    0.349164] pci 0000:00:1c.2:   bridge window [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349168] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  2 11:48:14 iMac kernel: [    0.349170] pci 0000:00:1c.3:   bridge window [io  0x7000-0x7fff]
Jun  2 11:48:14 iMac kernel: [    0.349173] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  2 11:48:14 iMac kernel: [    0.349176] pci 0000:00:1c.3:   bridge window [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349180] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  2 11:48:14 iMac kernel: [    0.349182] pci 0000:00:1c.4:   bridge window [io  0x8000-0x8fff]
Jun  2 11:48:14 iMac kernel: [    0.349186] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  2 11:48:14 iMac kernel: [    0.349188] pci 0000:00:1c.4:   bridge window [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349193] pci 0000:00:1e.0: PCI bridge to [bus 08]
Jun  2 11:48:14 iMac kernel: [    0.349196] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  2 11:48:14 iMac kernel: [    0.349202] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun  2 11:48:14 iMac kernel: [    0.349204] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun  2 11:48:14 iMac kernel: [    0.349205] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun  2 11:48:14 iMac kernel: [    0.349206] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  2 11:48:14 iMac kernel: [    0.349208] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jun  2 11:48:14 iMac kernel: [    0.349209] pci_bus 0000:01: resource 1 [mem 0xd0600000-0xd06fffff]
Jun  2 11:48:14 iMac kernel: [    0.349210] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349211] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
Jun  2 11:48:14 iMac kernel: [    0.349213] pci_bus 0000:02: resource 1 [mem 0xd0500000-0xd05fffff]
Jun  2 11:48:14 iMac kernel: [    0.349214] pci_bus 0000:02: resource 2 [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349215] pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
Jun  2 11:48:14 iMac kernel: [    0.349217] pci_bus 0000:03: resource 1 [mem 0xd0400000-0xd04fffff]
Jun  2 11:48:14 iMac kernel: [    0.349218] pci_bus 0000:03: resource 2 [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349219] pci_bus 0000:04: resource 0 [io  0x6000-0x6fff]
Jun  2 11:48:14 iMac kernel: [    0.349220] pci_bus 0000:04: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  2 11:48:14 iMac kernel: [    0.349222] pci_bus 0000:04: resource 2 [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349223] pci_bus 0000:05: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  2 11:48:14 iMac kernel: [    0.349224] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
Jun  2 11:48:14 iMac kernel: [    0.349225] pci_bus 0000:06: resource 1 [mem 0xd0200000-0xd02fffff]
Jun  2 11:48:14 iMac kernel: [    0.349227] pci_bus 0000:06: resource 2 [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349228] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
Jun  2 11:48:14 iMac kernel: [    0.349229] pci_bus 0000:07: resource 1 [mem 0xd0100000-0xd01fffff]
Jun  2 11:48:14 iMac kernel: [    0.349231] pci_bus 0000:07: resource 2 [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  2 11:48:14 iMac kernel: [    0.349232] pci_bus 0000:08: resource 1 [mem 0xd0000000-0xd00fffff]
Jun  2 11:48:14 iMac kernel: [    0.349233] pci_bus 0000:08: resource 4 [io  0x0000-0x0cf7]
Jun  2 11:48:14 iMac kernel: [    0.349234] pci_bus 0000:08: resource 5 [io  0x0d00-0xffff]
Jun  2 11:48:14 iMac kernel: [    0.349236] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
Jun  2 11:48:14 iMac kernel: [    0.349237] pci_bus 0000:08: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  2 11:48:14 iMac kernel: [    0.349261] NET: Registered protocol family 2
Jun  2 11:48:14 iMac kernel: [    0.349450] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Jun  2 11:48:14 iMac kernel: [    0.349648] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun  2 11:48:14 iMac kernel: [    0.349902] TCP: Hash tables configured (established 65536 bind 65536)
Jun  2 11:48:14 iMac kernel: [    0.349929] TCP: reno registered
Jun  2 11:48:14 iMac kernel: [    0.349938] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Jun  2 11:48:14 iMac kernel: [    0.349991] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Jun  2 11:48:14 iMac kernel: [    0.350073] NET: Registered protocol family 1
Jun  2 11:48:14 iMac kernel: [    0.350913] pci 0000:01:00.0: Video device with shadowed ROM
Jun  2 11:48:14 iMac kernel: [    0.350925] PCI: CLS mismatch (256 != 64), using 64 bytes
Jun  2 11:48:14 iMac kernel: [    0.350978] Trying to unpack rootfs image as initramfs...
Jun  2 11:48:14 iMac kernel: [    0.624464] Freeing initrd memory: 18992K (ffff880035ad8000 - ffff880036d64000)
Jun  2 11:48:14 iMac kernel: [    0.624507] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun  2 11:48:14 iMac kernel: [    0.624509] software IO TLB [mem 0xbb65d000-0xbf65d000] (64MB) mapped at [ffff8800bb65d000-ffff8800bf65cfff]
Jun  2 11:48:14 iMac kernel: [    0.624831] microcode: CPU0 sig=0x106e5, pf=0x2, revision=0x3
Jun  2 11:48:14 iMac kernel: [    0.624836] microcode: CPU1 sig=0x106e5, pf=0x2, revision=0x3
Jun  2 11:48:14 iMac kernel: [    0.624842] microcode: CPU2 sig=0x106e5, pf=0x2, revision=0x3
Jun  2 11:48:14 iMac kernel: [    0.624847] microcode: CPU3 sig=0x106e5, pf=0x2, revision=0x3
Jun  2 11:48:14 iMac kernel: [    0.624852] microcode: CPU4 sig=0x106e5, pf=0x2, revision=0x3
Jun  2 11:48:14 iMac kernel: [    0.624857] microcode: CPU5 sig=0x106e5, pf=0x2, revision=0x3
Jun  2 11:48:14 iMac kernel: [    0.624863] microcode: CPU6 sig=0x106e5, pf=0x2, revision=0x3
Jun  2 11:48:14 iMac kernel: [    0.624868] microcode: CPU7 sig=0x106e5, pf=0x2, revision=0x3
Jun  2 11:48:14 iMac kernel: [    0.624913] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun  2 11:48:14 iMac kernel: [    0.624934] Scanning for low memory corruption every 60 seconds
Jun  2 11:48:14 iMac kernel: [    0.624956] efifb: dmi detected iMac11,1 - framebuffer at 0xc0000000 (1920x1440, stride 7680)
Jun  2 11:48:14 iMac kernel: [    0.625244] futex hash table entries: 2048 (order: 5, 131072 bytes)
Jun  2 11:48:14 iMac kernel: [    0.625272] Initialise system trusted keyring
Jun  2 11:48:14 iMac kernel: [    0.625292] audit: initializing netlink subsys (disabled)
Jun  2 11:48:14 iMac kernel: [    0.625307] audit: type=2000 audit(1433238479.516:1): initialized
Jun  2 11:48:14 iMac kernel: [    0.625568] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun  2 11:48:14 iMac kernel: [    0.626890] zpool: loaded
Jun  2 11:48:14 iMac kernel: [    0.626891] zbud: loaded
Jun  2 11:48:14 iMac kernel: [    0.627021] VFS: Disk quotas dquot_6.5.2
Jun  2 11:48:14 iMac kernel: [    0.627053] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun  2 11:48:14 iMac kernel: [    0.627480] fuse init (API version 7.23)
Jun  2 11:48:14 iMac kernel: [    0.627557] msgmni has been set to 15945
Jun  2 11:48:14 iMac kernel: [    0.627612] Key type big_key registered
Jun  2 11:48:14 iMac kernel: [    0.627900] Key type asymmetric registered
Jun  2 11:48:14 iMac kernel: [    0.627902] Asymmetric key parser 'x509' registered
Jun  2 11:48:14 iMac kernel: [    0.627934] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Jun  2 11:48:14 iMac kernel: [    0.627984] io scheduler noop registered
Jun  2 11:48:14 iMac kernel: [    0.627987] io scheduler deadline registered (default)
Jun  2 11:48:14 iMac kernel: [    0.628029] io scheduler cfq registered
Jun  2 11:48:14 iMac kernel: [    0.628563] pcieport 0000:00:1c.3: enabling device (0000 -> 0003)
Jun  2 11:48:14 iMac kernel: [    0.628667] pcieport 0000:00:1c.4: enabling device (0000 -> 0003)
Jun  2 11:48:14 iMac kernel: [    0.628798] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun  2 11:48:14 iMac kernel: [    0.628811] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun  2 11:48:14 iMac kernel: [    0.628854] vesafb: mode is 1920x1440x32, linelength=7680, pages=0
Jun  2 11:48:14 iMac kernel: [    0.628855] vesafb: scrolling: redraw
Jun  2 11:48:14 iMac kernel: [    0.628856] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
Jun  2 11:48:14 iMac kernel: [    0.633240] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 10816k, total 10816k
Jun  2 11:48:14 iMac kernel: [    0.633370] Console: switching to colour frame buffer device 240x90
Jun  2 11:48:14 iMac kernel: [    0.633428] fb0: VESA VGA frame buffer device
Jun  2 11:48:14 iMac kernel: [    0.633454] intel_idle: MWAIT substates: 0x1120
Jun  2 11:48:14 iMac kernel: [    0.633466] intel_idle: v0.4 model 0x1E
Jun  2 11:48:14 iMac kernel: [    0.633467] intel_idle: lapic_timer_reliable_states 0x2
Jun  2 11:48:14 iMac kernel: [    0.633789] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun  2 11:48:14 iMac kernel: [    0.633793] ACPI: Power Button [PWRB]
Jun  2 11:48:14 iMac kernel: [    0.633827] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun  2 11:48:14 iMac kernel: [    0.633828] ACPI: Sleep Button [SLPB]
Jun  2 11:48:14 iMac kernel: [    0.633859] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun  2 11:48:14 iMac kernel: [    0.633860] ACPI: Power Button [PWRF]
Jun  2 11:48:14 iMac kernel: [    0.634280] GHES: HEST is not enabled!
Jun  2 11:48:14 iMac kernel: [    0.634368] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun  2 11:48:14 iMac kernel: [    0.635702] Linux agpgart interface v0.103
Jun  2 11:48:14 iMac kernel: [    0.636789] brd: module loaded
Jun  2 11:48:14 iMac kernel: [    0.637337] loop: module loaded
Jun  2 11:48:14 iMac kernel: [    0.637463] ata_piix 0000:00:1f.2: version 2.13
Jun  2 11:48:14 iMac kernel: [    0.637547] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun  2 11:48:14 iMac kernel: [    0.790413] scsi0 : ata_piix
Jun  2 11:48:14 iMac kernel: [    0.790823] scsi1 : ata_piix
Jun  2 11:48:14 iMac kernel: [    0.790918] ata1: SATA max UDMA/133 cmd 0x3088 ctl 0x3094 bmdma 0x3020 irq 19
Jun  2 11:48:14 iMac kernel: [    0.790924] ata2: SATA max UDMA/133 cmd 0x3080 ctl 0x3090 bmdma 0x3028 irq 19
Jun  2 11:48:14 iMac kernel: [    0.791030] libphy: Fixed MDIO Bus: probed
Jun  2 11:48:14 iMac kernel: [    0.791033] tun: Universal TUN/TAP device driver, 1.6
Jun  2 11:48:14 iMac kernel: [    0.791034] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun  2 11:48:14 iMac kernel: [    0.791176] PPP generic driver version 2.4.2
Jun  2 11:48:14 iMac kernel: [    0.791294] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun  2 11:48:14 iMac kernel: [    0.791303] ehci-pci: EHCI PCI platform driver
Jun  2 11:48:14 iMac kernel: [    0.791423] ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun  2 11:48:14 iMac kernel: [    0.791430] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jun  2 11:48:14 iMac kernel: [    0.791441] ehci-pci 0000:00:1a.7: debug port 2
Jun  2 11:48:14 iMac kernel: [    0.795355] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
Jun  2 11:48:14 iMac kernel: [    0.795367] ehci-pci 0000:00:1a.7: irq 16, io mem 0xd0705c00
Jun  2 11:48:14 iMac kernel: [    0.806230] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun  2 11:48:14 iMac kernel: [    0.806305] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jun  2 11:48:14 iMac kernel: [    0.806310] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  2 11:48:14 iMac kernel: [    0.806313] usb usb1: Product: EHCI Host Controller
Jun  2 11:48:14 iMac kernel: [    0.806316] usb usb1: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  2 11:48:14 iMac kernel: [    0.806319] usb usb1: SerialNumber: 0000:00:1a.7
Jun  2 11:48:14 iMac kernel: [    0.806687] hub 1-0:1.0: USB hub found
Jun  2 11:48:14 iMac kernel: [    0.806693] hub 1-0:1.0: 6 ports detected
Jun  2 11:48:14 iMac kernel: [    0.806885] ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun  2 11:48:14 iMac kernel: [    0.806889] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jun  2 11:48:14 iMac kernel: [    0.806899] ehci-pci 0000:00:1d.7: debug port 2
Jun  2 11:48:14 iMac kernel: [    0.810809] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
Jun  2 11:48:14 iMac kernel: [    0.810823] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd0705800
Jun  2 11:48:14 iMac kernel: [    0.822245] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun  2 11:48:14 iMac kernel: [    0.822323] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Jun  2 11:48:14 iMac kernel: [    0.822327] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  2 11:48:14 iMac kernel: [    0.822331] usb usb2: Product: EHCI Host Controller
Jun  2 11:48:14 iMac kernel: [    0.822334] usb usb2: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  2 11:48:14 iMac kernel: [    0.822337] usb usb2: SerialNumber: 0000:00:1d.7
Jun  2 11:48:14 iMac kernel: [    0.822702] hub 2-0:1.0: USB hub found
Jun  2 11:48:14 iMac kernel: [    0.822706] hub 2-0:1.0: 8 ports detected
Jun  2 11:48:14 iMac kernel: [    0.822840] ehci-platform: EHCI generic platform driver
Jun  2 11:48:14 iMac kernel: [    0.822846] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun  2 11:48:14 iMac kernel: [    0.822850] ohci-pci: OHCI PCI platform driver
Jun  2 11:48:14 iMac kernel: [    0.822859] ohci-platform: OHCI generic platform driver
Jun  2 11:48:14 iMac kernel: [    0.822866] uhci_hcd: USB Universal Host Controller Interface driver
Jun  2 11:48:14 iMac kernel: [    0.822947] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun  2 11:48:14 iMac kernel: [    0.822951] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jun  2 11:48:14 iMac kernel: [    0.822956] uhci_hcd 0000:00:1a.0: detected 2 ports
Jun  2 11:48:14 iMac kernel: [    0.822980] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00003060
Jun  2 11:48:14 iMac kernel: [    0.823012] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Jun  2 11:48:14 iMac kernel: [    0.823014] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  2 11:48:14 iMac kernel: [    0.823015] usb usb3: Product: UHCI Host Controller
Jun  2 11:48:14 iMac kernel: [    0.823016] usb usb3: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  2 11:48:14 iMac kernel: [    0.823017] usb usb3: SerialNumber: 0000:00:1a.0
Jun  2 11:48:14 iMac kernel: [    0.823378] hub 3-0:1.0: USB hub found
Jun  2 11:48:14 iMac kernel: [    0.823382] hub 3-0:1.0: 2 ports detected
Jun  2 11:48:14 iMac kernel: [    0.823529] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun  2 11:48:14 iMac kernel: [    0.823533] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun  2 11:48:14 iMac kernel: [    0.823537] uhci_hcd 0000:00:1d.0: detected 2 ports
Jun  2 11:48:14 iMac kernel: [    0.823553] uhci_hcd 0000:00:1d.0: irq 19, io base 0x00003040
Jun  2 11:48:14 iMac kernel: [    0.823584] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Jun  2 11:48:14 iMac kernel: [    0.823585] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  2 11:48:14 iMac kernel: [    0.823586] usb usb4: Product: UHCI Host Controller
Jun  2 11:48:14 iMac kernel: [    0.823587] usb usb4: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  2 11:48:14 iMac kernel: [    0.823588] usb usb4: SerialNumber: 0000:00:1d.0
Jun  2 11:48:14 iMac kernel: [    0.823954] hub 4-0:1.0: USB hub found
Jun  2 11:48:14 iMac kernel: [    0.823959] hub 4-0:1.0: 2 ports detected
Jun  2 11:48:14 iMac kernel: [    0.824063] i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun  2 11:48:14 iMac kernel: [    1.555042] usb 1-1: new high-speed USB device number 2 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    1.622939] tsc: Refined TSC clocksource calibration: 2792.999 MHz
Jun  2 11:48:14 iMac kernel: [    1.687807] usb 1-1: New USB device found, idVendor=0424, idProduct=2514
Jun  2 11:48:14 iMac kernel: [    1.687809] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  2 11:48:14 iMac kernel: [    1.688142] hub 1-1:1.0: USB hub found
Jun  2 11:48:14 iMac kernel: [    1.688226] hub 1-1:1.0: 4 ports detected
Jun  2 11:48:14 iMac kernel: [    1.799199] usb 2-1: new high-speed USB device number 2 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    1.866860] i8042: No controller found
Jun  2 11:48:14 iMac kernel: [    1.867089] mousedev: PS/2 mouse device common for all mice
Jun  2 11:48:14 iMac kernel: [    1.867687] rtc_cmos 00:03: RTC can wake from S4
Jun  2 11:48:14 iMac kernel: [    1.868012] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun  2 11:48:14 iMac kernel: [    1.868047] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jun  2 11:48:14 iMac kernel: [    1.868136] device-mapper: uevent: version 1.0.3
Jun  2 11:48:14 iMac kernel: [    1.868376] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
Jun  2 11:48:14 iMac kernel: [    1.868409] ledtrig-cpu: registered to indicate activity on CPUs
Jun  2 11:48:14 iMac kernel: [    1.868538] TCP: cubic registered
Jun  2 11:48:14 iMac kernel: [    1.868625] NET: Registered protocol family 10
Jun  2 11:48:14 iMac kernel: [    1.869003] NET: Registered protocol family 17
Jun  2 11:48:14 iMac kernel: [    1.869027] Key type dns_resolver registered
Jun  2 11:48:14 iMac kernel: [    1.869874] Loading compiled-in X.509 certificates
Jun  2 11:48:14 iMac kernel: [    1.870661] Loaded X.509 cert 'Magrathea: Glacier signing key: c284edaccf0b473652c34d23bec356944236e63b'
Jun  2 11:48:14 iMac kernel: [    1.870677] registered taskstats version 1
Jun  2 11:48:14 iMac kernel: [    1.874841] Key type trusted registered
Jun  2 11:48:14 iMac kernel: [    1.882339] Key type encrypted registered
Jun  2 11:48:14 iMac kernel: [    1.882352] AppArmor: AppArmor sha1 policy hashing enabled
Jun  2 11:48:14 iMac kernel: [    1.882357] ima: No TPM chip found, activating TPM-bypass!
Jun  2 11:48:14 iMac kernel: [    1.882382] evm: HMAC attrs: 0x1
Jun  2 11:48:14 iMac kernel: [    1.883087]   Magic number: 3:338:777
Jun  2 11:48:14 iMac kernel: [    1.883119] misc rfkill: hash matches
Jun  2 11:48:14 iMac kernel: [    1.883304] rtc_cmos 00:03: setting system clock to 2015-06-02 09:48:00 UTC (1433238480)
Jun  2 11:48:14 iMac kernel: [    1.885297] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jun  2 11:48:14 iMac kernel: [    1.885298] EDD information not available.
Jun  2 11:48:14 iMac kernel: [    1.885352] PM: Hibernation image not present or could not be loaded.
Jun  2 11:48:14 iMac kernel: [    1.931876] usb 2-1: New USB device found, idVendor=0424, idProduct=2514
Jun  2 11:48:14 iMac kernel: [    1.931881] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  2 11:48:14 iMac kernel: [    1.932434] hub 2-1:1.0: USB hub found
Jun  2 11:48:14 iMac kernel: [    1.932624] hub 2-1:1.0: 4 ports detected
Jun  2 11:48:14 iMac kernel: [    2.019591] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    2.113992] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500
Jun  2 11:48:14 iMac kernel: [    2.113997] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  2 11:48:14 iMac kernel: [    2.114001] usb 1-1.1: Product: BRCM2046 Hub
Jun  2 11:48:14 iMac kernel: [    2.114004] usb 1-1.1: Manufacturer: Apple Inc.
Jun  2 11:48:14 iMac kernel: [    2.114294] hub 1-1.1:1.0: USB hub found
Jun  2 11:48:14 iMac kernel: [    2.114490] hub 1-1.1:1.0: 3 ports detected
Jun  2 11:48:14 iMac kernel: [    2.139473] ata1.01: failed to resume link (SControl 0)
Jun  2 11:48:14 iMac kernel: [    2.139549] ata2.01: failed to resume link (SControl 0)
Jun  2 11:48:14 iMac kernel: [    2.187568] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    2.284287] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=8403
Jun  2 11:48:14 iMac kernel: [    2.284291] usb 1-1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=2
Jun  2 11:48:14 iMac kernel: [    2.284294] usb 1-1.2: Product: Card Reader
Jun  2 11:48:14 iMac kernel: [    2.284296] usb 1-1.2: Manufacturer: Apple
Jun  2 11:48:14 iMac kernel: [    2.284299] usb 1-1.2: SerialNumber: 000000009833
Jun  2 11:48:14 iMac kernel: [    2.295680] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun  2 11:48:14 iMac kernel: [    2.295696] ata1.01: SATA link down (SStatus 4 SControl 0)
Jun  2 11:48:14 iMac kernel: [    2.295809] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun  2 11:48:14 iMac kernel: [    2.295822] ata2.01: SATA link down (SStatus 4 SControl 0)
Jun  2 11:48:14 iMac kernel: [    2.295831] ata2.01: link offline, clearing class 3 to NONE
Jun  2 11:48:14 iMac kernel: [    2.303843] ata2.00: ATAPI: OPTIARC DVD RW AD-5680H, 3AHB, max UDMA/100
Jun  2 11:48:14 iMac kernel: [    2.304724] ata1.00: ATA-8: WDC WD1001FALS-40U9B0, 20.04F20, max UDMA/133
Jun  2 11:48:14 iMac kernel: [    2.304728] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun  2 11:48:14 iMac kernel: [    2.312768] ata1.00: configured for UDMA/133
Jun  2 11:48:14 iMac kernel: [    2.313155] scsi 0:0:0:0: Direct-Access     ATA      WDC WD1001FALS-4 4F20 PQ: 0 ANSI: 5
Jun  2 11:48:14 iMac kernel: [    2.313874] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun  2 11:48:14 iMac kernel: [    2.313928] sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun  2 11:48:14 iMac kernel: [    2.313932] sd 0:0:0:0: [sda] Write Protect is off
Jun  2 11:48:14 iMac kernel: [    2.313934] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun  2 11:48:14 iMac kernel: [    2.313945] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun  2 11:48:14 iMac kernel: [    2.319904] ata2.00: configured for UDMA/100
Jun  2 11:48:14 iMac kernel: [    2.336588] scsi 1:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5680H  3AHB PQ: 0 ANSI: 5
Jun  2 11:48:14 iMac kernel: [    2.369643]  sda: sda1 sda2 sda3
Jun  2 11:48:14 iMac kernel: [    2.370292] sd 0:0:0:0: [sda] Attached SCSI disk
Jun  2 11:48:14 iMac kernel: [    2.371864] usb 1-1.4: new high-speed USB device number 5 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    2.375702] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
Jun  2 11:48:14 iMac kernel: [    2.375707] cdrom: Uniform CD-ROM driver Revision: 3.20
Jun  2 11:48:14 iMac kernel: [    2.376040] sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun  2 11:48:14 iMac kernel: [    2.376285] sr 1:0:0:0: Attached scsi generic sg1 type 5
Jun  2 11:48:14 iMac kernel: [    2.377676] Freeing unused kernel memory: 1352K (ffffffff81d1c000 - ffffffff81e6e000)
Jun  2 11:48:14 iMac kernel: [    2.377677] Write protecting the kernel read-only data: 12288k
Jun  2 11:48:14 iMac kernel: [    2.379157] Freeing unused kernel memory: 556K (ffff880001775000 - ffff880001800000)
Jun  2 11:48:14 iMac kernel: [    2.380337] Freeing unused kernel memory: 500K (ffff880001b83000 - ffff880001c00000)
Jun  2 11:48:14 iMac kernel: [    2.411711] pps_core: LinuxPPS API ver. 1 registered
Jun  2 11:48:14 iMac kernel: [    2.411714] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun  2 11:48:14 iMac kernel: [    2.413084] PTP clock support registered
Jun  2 11:48:14 iMac kernel: [    2.416342] tg3.c:v3.137 (May 11, 2014)
Jun  2 11:48:14 iMac kernel: [    2.439861] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM95764m) rev 5784100] (PCI Express) MAC address d4:9a:20:d1:18:0a
Jun  2 11:48:14 iMac kernel: [    2.439864] tg3 0000:02:00.0 eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
Jun  2 11:48:14 iMac kernel: [    2.439865] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
Jun  2 11:48:14 iMac kernel: [    2.439867] tg3 0000:02:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
Jun  2 11:48:14 iMac kernel: [    2.471818] firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x2
Jun  2 11:48:14 iMac kernel: [    2.472743] usb 1-1.4: New USB device found, idVendor=05ac, idProduct=1006
Jun  2 11:48:14 iMac kernel: [    2.472751] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  2 11:48:14 iMac kernel: [    2.472756] usb 1-1.4: Product: Keyboard Hub
Jun  2 11:48:14 iMac kernel: [    2.472760] usb 1-1.4: Manufacturer: Apple, Inc.
Jun  2 11:48:14 iMac kernel: [    2.472764] usb 1-1.4: SerialNumber: 000000000000
Jun  2 11:48:14 iMac kernel: [    2.473214] hub 1-1.4:1.0: USB hub found
Jun  2 11:48:14 iMac kernel: [    2.473359] hub 1-1.4:1.0: 3 ports detected
Jun  2 11:48:14 iMac kernel: [    2.476968] usb-storage 1-1.2:1.0: USB Mass Storage device detected
Jun  2 11:48:14 iMac kernel: [    2.477258] scsi2 : usb-storage 1-1.2:1.0
Jun  2 11:48:14 iMac kernel: [    2.477319] usbcore: registered new interface driver usb-storage
Jun  2 11:48:14 iMac kernel: [    2.478675] usbcore: registered new interface driver uas
Jun  2 11:48:14 iMac kernel: [    2.559983] usb 2-1.1: new high-speed USB device number 3 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    2.624211] Switched to clocksource tsc
Jun  2 11:48:14 iMac kernel: [    2.675627] usb 2-1.1: New USB device found, idVendor=05ac, idProduct=8502
Jun  2 11:48:14 iMac kernel: [    2.675633] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  2 11:48:14 iMac kernel: [    2.675637] usb 2-1.1: Product: Built-in iSight
Jun  2 11:48:14 iMac kernel: [    2.675640] usb 2-1.1: Manufacturer: Apple Inc.
Jun  2 11:48:14 iMac kernel: [    2.675643] usb 2-1.1: SerialNumber: 8T9BKB2B577K3L00
Jun  2 11:48:14 iMac kernel: [    2.764208] usb 2-1.2: new low-speed USB device number 4 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    2.866284] usb 2-1.2: New USB device found, idVendor=05ac, idProduct=8242
Jun  2 11:48:14 iMac kernel: [    2.866286] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  2 11:48:14 iMac kernel: [    2.866288] usb 2-1.2: Product: IR Receiver
Jun  2 11:48:14 iMac kernel: [    2.866289] usb 2-1.2: Manufacturer: Apple Computer, Inc.
Jun  2 11:48:14 iMac kernel: [    2.871328] hidraw: raw HID events driver (C) Jiri Kosina
Jun  2 11:48:14 iMac kernel: [    2.875157] usbcore: registered new interface driver usbhid
Jun  2 11:48:14 iMac kernel: [    2.875159] usbhid: USB HID core driver
Jun  2 11:48:14 iMac kernel: [    2.888700] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun  2 11:48:14 iMac kernel: [    2.940652] usb 2-1.4: new low-speed USB device number 5 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    2.972765] firewire_core 0000:05:00.0: created device fw0: GUID d49a20fffecbb5b6, S800
Jun  2 11:48:14 iMac kernel: [    2.980505] firewire_core 0000:05:00.0: created device fw1: GUID 0001db01001234ee, S800
Jun  2 11:48:14 iMac kernel: [    2.980508] firewire_core 0000:05:00.0: phy config: new root=ffc0, gap_count=5
Jun  2 11:48:14 iMac kernel: [    3.062851] usb 2-1.4: New USB device found, idVendor=045e, idProduct=0040
Jun  2 11:48:14 iMac kernel: [    3.062857] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  2 11:48:14 iMac kernel: [    3.062860] usb 2-1.4: Product: Microsoft Wheel Mouse Optical®
Jun  2 11:48:14 iMac kernel: [    3.062864] usb 2-1.4: Manufacturer: Microsoft
Jun  2 11:48:14 iMac kernel: [    3.140720] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    3.237280] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215
Jun  2 11:48:14 iMac kernel: [    3.237286] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  2 11:48:14 iMac kernel: [    3.237289] usb 1-1.1.1: Product: Bluetooth USB Host Controller
Jun  2 11:48:14 iMac kernel: [    3.237293] usb 1-1.1.1: Manufacturer: Apple Inc.
Jun  2 11:48:14 iMac kernel: [    3.237295] usb 1-1.1.1: SerialNumber: 64B9E8E21B57
Jun  2 11:48:14 iMac kernel: [    3.308704] usb 1-1.1.2: new full-speed USB device number 7 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    3.404201] usb 1-1.1.2: New USB device found, idVendor=05ac, idProduct=820a
Jun  2 11:48:14 iMac kernel: [    3.404207] usb 1-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  2 11:48:14 iMac kernel: [    3.477078] usb 1-1.1.3: new full-speed USB device number 8 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    3.478991] scsi 2:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
Jun  2 11:48:14 iMac kernel: [    3.479548] sd 2:0:0:0: Attached scsi generic sg2 type 0
Jun  2 11:48:14 iMac kernel: [    3.481325] sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jun  2 11:48:14 iMac kernel: [    3.543463] random: init urandom read with 123 bits of entropy available
Jun  2 11:48:14 iMac kernel: [    3.572622] usb 1-1.1.3: New USB device found, idVendor=05ac, idProduct=820b
Jun  2 11:48:14 iMac kernel: [    3.572628] usb 1-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  2 11:48:14 iMac kernel: [    3.594050] random: nonblocking pool is initialized
Jun  2 11:48:14 iMac kernel: [    3.645228] usb 1-1.4.2: new low-speed USB device number 9 using ehci-pci
Jun  2 11:48:14 iMac kernel: [    3.743792] usb 1-1.4.2: New USB device found, idVendor=05ac, idProduct=0221
Jun  2 11:48:14 iMac kernel: [    3.743798] usb 1-1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  2 11:48:14 iMac kernel: [    3.743801] usb 1-1.4.2: Product: Apple Keyboard
Jun  2 11:48:14 iMac kernel: [    3.743804] usb 1-1.4.2: Manufacturer: Apple, Inc
Jun  2 11:48:14 iMac kernel: [   10.861887] Adding 8377340k swap on /dev/sda3.  Priority:-1 extents:1 across:8377340k FS
Jun  2 11:48:14 iMac kernel: [   11.725067] lp: driver loaded but no devices found
Jun  2 11:48:14 iMac kernel: [   11.729585] ppdev: user-space parallel port driver
Jun  2 11:48:14 iMac kernel: [   11.819760] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun  2 11:48:14 iMac kernel: [   11.828089] [drm] Initialized drm 1.1.0 20060810
Jun  2 11:48:14 iMac kernel: [   11.832532] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
Jun  2 11:48:14 iMac kernel: [   11.832539] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  2 11:48:14 iMac kernel: [   11.832543] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  2 11:48:14 iMac kernel: [   11.832546] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  2 11:48:14 iMac kernel: [   11.832547] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  2 11:48:14 iMac kernel: [   11.832549] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  2 11:48:14 iMac kernel: [   11.832550] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  2 11:48:14 iMac kernel: [   11.832552] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  2 11:48:14 iMac kernel: [   11.832553] lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun  2 11:48:14 iMac kernel: [   11.838212] cfg80211: Calling CRDA to update world regulatory domain
Jun  2 11:48:14 iMac kernel: [   11.841433] intel ips 0000:00:1f.6: Non-IPS CPU detected.
Jun  2 11:48:14 iMac kernel: [   11.841436] intel ips 0000:00:1f.6: IPS not supported on this CPU
Jun  2 11:48:14 iMac kernel: [   11.844992] EDAC MC: Ver: 3.0.0
Jun  2 11:48:14 iMac kernel: [   11.847244] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (POLLED)
Jun  2 11:48:14 iMac kernel: [   11.847303] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jun  2 11:48:14 iMac kernel: [   11.847448] EDAC i7core: Driver loaded, 1 memory controller(s) found.
Jun  2 11:48:14 iMac kernel: [   11.865743] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
Jun  2 11:48:14 iMac kernel: [   11.865857] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
Jun  2 11:48:14 iMac kernel: [   11.865922] snd_hda_intel 0000:01:00.1: irq 46 for MSI/MSI-X
Jun  2 11:48:14 iMac kernel: [   11.874070] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jun  2 11:48:14 iMac kernel: [   11.876319] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card1/input3
Jun  2 11:48:14 iMac kernel: [   11.882157] sound hdaudioC0D0: autoconfig: line_outs=2 (0xa/0xb/0x0/0x0/0x0) type:speaker
Jun  2 11:48:14 iMac kernel: [   11.882160] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun  2 11:48:14 iMac kernel: [   11.882162] sound hdaudioC0D0:    hp_outs=1 (0x9/0x0/0x0/0x0/0x0)
Jun  2 11:48:14 iMac kernel: [   11.882163] sound hdaudioC0D0:    mono: mono_out=0x0
Jun  2 11:48:14 iMac kernel: [   11.882164] sound hdaudioC0D0:    dig-out=0x10/0x0
Jun  2 11:48:14 iMac kernel: [   11.882165] sound hdaudioC0D0:    inputs:
Jun  2 11:48:14 iMac kernel: [   11.882167] sound hdaudioC0D0:      Mic=0xd
Jun  2 11:48:14 iMac kernel: [   11.882168] sound hdaudioC0D0:      Line=0xc
Jun  2 11:48:14 iMac kernel: [   11.882169] sound hdaudioC0D0:    dig-in=0xf
Jun  2 11:48:14 iMac kernel: [   11.886287] input: HDA Intel MID Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
Jun  2 11:48:14 iMac kernel: [   11.886379] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
Jun  2 11:48:14 iMac kernel: [   11.886474] input: HDA Intel MID SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
Jun  2 11:48:14 iMac kernel: [   11.911444] scsi3 : SBP-2 IEEE-1394
Jun  2 11:48:14 iMac kernel: [   11.988135] [drm:radeon_init] *ERROR* No UMS support in radeon module!
Jun  2 11:48:14 iMac kernel: [   12.146101] applesmc: key=297 fan=3 temp=36 index=35 acc=0 lux=2 kbd=0
Jun  2 11:48:14 iMac kernel: [   12.306552] ath: EEPROM regdomain: 0x37
Jun  2 11:48:14 iMac kernel: [   12.306554] ath: EEPROM indicates we should expect a direct regpair map
Jun  2 11:48:14 iMac kernel: [   12.306556] ath: Country alpha2 being used: AW
Jun  2 11:48:14 iMac kernel: [   12.306556] ath: Regpair used: 0x37
Jun  2 11:48:14 iMac kernel: [   12.315415] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Jun  2 11:48:14 iMac kernel: [   12.315696] cfg80211: Calling CRDA to update world regulatory domain
Jun  2 11:48:14 iMac kernel: [   12.315749] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffc900119e0000, irq=17
Jun  2 11:48:14 iMac kernel: [   12.409815] firewire_sbp2 fw1.0: logged in to LUN 0000 (0 retries)
Jun  2 11:48:14 iMac kernel: [   12.530834] cfg80211: World regulatory domain updated:
Jun  2 11:48:14 iMac kernel: [   12.530836] cfg80211:  DFS Master region: unset
Jun  2 11:48:14 iMac kernel: [   12.530837] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  2 11:48:14 iMac kernel: [   12.530839] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  2 11:48:14 iMac kernel: [   12.530840] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  2 11:48:14 iMac kernel: [   12.530841] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  2 11:48:14 iMac kernel: [   12.530842] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  2 11:48:14 iMac kernel: [   12.530843] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  2 11:48:14 iMac kernel: [   12.530850] cfg80211: Calling CRDA for country: AW
Jun  2 11:48:14 iMac kernel: [   12.534569] cfg80211: Regulatory domain changed to country: AW
Jun  2 11:48:14 iMac kernel: [   12.534571] cfg80211:  DFS Master region: unset
Jun  2 11:48:14 iMac kernel: [   12.534572] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  2 11:48:14 iMac kernel: [   12.534573] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  2 11:48:14 iMac kernel: [   12.534574] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  2 11:48:14 iMac kernel: [   12.534576] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
Jun  2 11:48:14 iMac kernel: [   12.534576] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm), (0 s)
Jun  2 11:48:14 iMac kernel: [   13.219945] audit: type=1400 audit(1433238491.820:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=532 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.219951] audit: type=1400 audit(1433238491.820:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=532 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.219954] audit: type=1400 audit(1433238491.820:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=532 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.219962] audit: type=1400 audit(1433238491.820:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=505 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.219968] audit: type=1400 audit(1433238491.820:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=505 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.219971] audit: type=1400 audit(1433238491.820:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=505 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.219979] audit: type=1400 audit(1433238491.820:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=504 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.219984] audit: type=1400 audit(1433238491.820:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=504 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.219988] audit: type=1400 audit(1433238491.820:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=504 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.220313] audit: type=1400 audit(1433238491.820:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=532 comm="apparmor_parser"
Jun  2 11:48:14 iMac kernel: [   13.438691] media: Linux media interface: v0.10
Jun  2 11:48:14 iMac kernel: [   13.443127] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.0/0003:05AC:0221.0005/input/input7
Jun  2 11:48:14 iMac kernel: [   13.443237] apple 0003:05AC:0221.0005: input,hidraw0: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input0
Jun  2 11:48:14 iMac kernel: [   13.443939] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.1/0003:05AC:0221.0006/input/input8
Jun  2 11:48:14 iMac kernel: [   13.444092] Linux video capture interface: v2.00
Jun  2 11:48:14 iMac kernel: [   13.444867] apple 0003:05AC:0221.0006: input,hidraw1: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input1
Jun  2 11:48:14 iMac kernel: [   13.446003] input: Microsoft Microsoft Wheel Mouse Optical® as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.4/2-1.4:1.0/0003:045E:0040.0002/input/input9
Jun  2 11:48:14 iMac kernel: [   13.452050] Bluetooth: Core ver 2.19
Jun  2 11:48:14 iMac kernel: [   13.452068] NET: Registered protocol family 31
Jun  2 11:48:14 iMac kernel: [   13.452070] Bluetooth: HCI device and connection manager initialized
Jun  2 11:48:14 iMac kernel: [   13.452077] Bluetooth: HCI socket layer initialized
Jun  2 11:48:14 iMac kernel: [   13.452080] Bluetooth: L2CAP socket layer initialized
Jun  2 11:48:14 iMac kernel: [   13.452089] Bluetooth: SCO socket layer initialized
Jun  2 11:48:14 iMac kernel: [   13.452654] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.2/2-1.2:1.0/0003:05AC:8242.0001/input/input10
Jun  2 11:48:14 iMac kernel: [   13.454118] hid-generic 0003:045E:0040.0002: input,hidraw2: USB HID v1.00 Mouse [Microsoft Microsoft Wheel Mouse Optical®] on usb-0000:00:1d.7-1.4/input0
Jun  2 11:48:14 iMac kernel: [   13.454291] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:05AC:820A.0003/input/input11
Jun  2 11:48:14 iMac kernel: [   13.454404] appleir 0003:05AC:8242.0001: input,hiddev0,hidraw3: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
Jun  2 11:48:14 iMac kernel: [   13.454512] hid-generic 0003:05AC:820A.0003: input,hidraw4: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
Jun  2 11:48:14 iMac kernel: [   13.454665] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.0/0003:05AC:820B.0004/input/input12
Jun  2 11:48:14 iMac kernel: [   13.455320] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8502)
Jun  2 11:48:14 iMac kernel: [   13.455735] hid-generic 0003:05AC:820B.0004: input,hidraw5: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
Jun  2 11:48:14 iMac kernel: [   13.460189] usbcore: registered new interface driver btusb
Jun  2 11:48:14 iMac kernel: [   13.465974] input: Built-in iSight as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1:1.0/input/input13
Jun  2 11:48:14 iMac kernel: [   13.466058] usbcore: registered new interface driver uvcvideo
Jun  2 11:48:14 iMac kernel: [   13.466060] USB Video Class driver (1.1.1)
Jun  2 11:48:14 iMac kernel: [   13.482836] usb 1-1.1.2: USB disconnect, device number 7
Jun  2 11:48:14 iMac kernel: [   13.651336] usb 1-1.1.3: USB disconnect, device number 8
Jun  2 11:48:14 iMac kernel: [   14.506439] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
Jun  2 11:48:15 iMac kernel: [   16.495803] Bluetooth: RFCOMM TTY layer initialized
Jun  2 11:48:15 iMac kernel: [   16.495812] Bluetooth: RFCOMM socket layer initialized
Jun  2 11:48:15 iMac kernel: [   16.495816] Bluetooth: RFCOMM ver 1.11
Jun  2 11:48:15 iMac kernel: [   16.681621] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jun  2 11:48:15 iMac kernel: [   16.681623] Bluetooth: BNEP filters: protocol multicast
Jun  2 11:48:15 iMac kernel: [   16.681629] Bluetooth: BNEP socket layer initialized
Jun  2 11:48:16 iMac kernel: [   18.367277] tg3 0000:02:00.0: irq 47 for MSI/MSI-X
Jun  2 11:48:17 iMac kernel: [   19.139259] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun  2 11:48:17 iMac kernel: [   19.155376] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Jun  2 11:48:18 iMac kernel: [   19.836870] audit_printk_skb: 33 callbacks suppressed
Jun  2 11:48:18 iMac kernel: [   19.836873] audit: type=1400 audit(1433238498.428:23): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=1045 comm="apparmor_parser"
Jun  2 11:48:18 iMac kernel: [   19.836880] audit: type=1400 audit(1433238498.428:24): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1045 comm="apparmor_parser"
Jun  2 11:48:18 iMac kernel: [   19.836884] audit: type=1400 audit(1433238498.428:25): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1045 comm="apparmor_parser"
Jun  2 11:48:18 iMac kernel: [   19.837258] audit: type=1400 audit(1433238498.432:26): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1045 comm="apparmor_parser"
Jun  2 11:48:18 iMac kernel: [   19.837262] audit: type=1400 audit(1433238498.432:27): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1045 comm="apparmor_parser"
Jun  2 11:48:18 iMac kernel: [   19.837452] audit: type=1400 audit(1433238498.432:28): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1045 comm="apparmor_parser"
Jun  2 11:48:18 iMac kernel: [   19.837877] audit: type=1400 audit(1433238498.432:29): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=1044 comm="apparmor_parser"
Jun  2 11:48:18 iMac kernel: [   19.837883] audit: type=1400 audit(1433238498.432:30): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=1044 comm="apparmor_parser"
Jun  2 11:48:18 iMac kernel: [   19.838217] audit: type=1400 audit(1433238498.432:31): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="chromium" pid=1044 comm="apparmor_parser"
Jun  2 11:48:18 iMac kernel: [   19.838282] audit: type=1400 audit(1433238498.432:32): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1049 comm="apparmor_parser"
Jun  2 11:48:19 iMac kernel: [   20.744007] tg3 0000:02:00.0 eth0: Link is up at 100 Mbps, full duplex
Jun  2 11:48:19 iMac kernel: [   20.744013] tg3 0000:02:00.0 eth0: Flow control is on for TX and on for RX
Jun  2 11:48:19 iMac kernel: [   20.744025] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun  2 11:48:19 iMac kernel: [   21.194138] vboxdrv: module verification failed: signature and/or  required key missing - tainting kernel
Jun  2 11:48:19 iMac kernel: [   21.197029] vboxdrv: Found 8 processor cores.
Jun  2 11:48:19 iMac kernel: [   21.197437] vboxdrv: fAsync=0 offMin=0xf3 offMax=0x25a1
Jun  2 11:48:19 iMac kernel: [   21.197510] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
Jun  2 11:48:19 iMac kernel: [   21.197511] vboxdrv: Successfully loaded version 4.3.10_Ubuntu (interface 0x001a0007).
Jun  2 11:48:19 iMac kernel: [   21.207864] vboxpci: IOMMU not found (not registered)
Jun  2 11:48:22 iMac kernel: [   24.187484] scsi 3:0:0:0: Direct-Access     SAMSUNG  HD103UJ          1AA0 PQ: 0 ANSI: 4
Jun  2 11:48:22 iMac kernel: [   24.209026] sd 3:0:0:0: Attached scsi generic sg3 type 0
Jun  2 11:48:22 iMac kernel: [   24.210781] sd 3:0:0:0: [sdc] 3907049984 512-byte logical blocks: (2.00 TB/1.81 TiB)
Jun  2 11:48:22 iMac kernel: [   24.211938] sd 3:0:0:0: [sdc] Write Protect is off
Jun  2 11:48:22 iMac kernel: [   24.211941] sd 3:0:0:0: [sdc] Mode Sense: 10 00 00 00
Jun  2 11:48:22 iMac kernel: [   24.212805] sd 3:0:0:0: [sdc] Cache data unavailable
Jun  2 11:48:22 iMac kernel: [   24.212810] sd 3:0:0:0: [sdc] Assuming drive cache: write through
Jun  2 11:48:22 iMac kernel: [   24.224602]  sdc: sdc1
Jun  2 11:48:22 iMac kernel: [   24.231379] sd 3:0:0:0: [sdc] Attached SCSI disk
Jun  2 11:48:43 iMac kernel: [   44.350012] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
Jun  2 11:48:45 iMac kernel: [   46.424348] audit_printk_skb: 123 callbacks suppressed
Jun  2 11:48:45 iMac kernel: [   46.424351] audit: type=1400 audit(1433238525.513:74): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=2383 comm="apparmor_parser"
Jun  2 11:48:45 iMac kernel: [   46.424358] audit: type=1400 audit(1433238525.513:75): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2383 comm="apparmor_parser"
Jun  2 11:48:45 iMac kernel: [   46.424681] audit: type=1400 audit(1433238525.513:76): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2383 comm="apparmor_parser"
Jun  2 11:54:08 iMac kernel: [  369.553960] perf interrupt took too long (2507 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
Jun  6 19:59:00 iMac kernel: [    0.000000] Initializing cgroup subsys cpuset
Jun  6 19:59:00 iMac kernel: [    0.000000] Initializing cgroup subsys cpu
Jun  6 19:59:00 iMac kernel: [    0.000000] Initializing cgroup subsys cpuacct
Jun  6 19:59:00 iMac kernel: [    0.000000] Linux version 3.16.0-38-generic (buildd@allspice) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #52~14.04.1-Ubuntu SMP Fri May 8 09:43:57 UTC 2015 (Ubuntu 3.16.0-38.52~14.04.1-generic 3.16.7-ckt10)
Jun  6 19:59:00 iMac kernel: [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=a0523afa-1512-41aa-8660-804fbe235596 ro quiet splash vt.handoff=7
Jun  6 19:59:00 iMac kernel: [    0.000000] KERNEL supported cpus:
Jun  6 19:59:00 iMac kernel: [    0.000000]   Intel GenuineIntel
Jun  6 19:59:00 iMac kernel: [    0.000000]   AMD AuthenticAMD
Jun  6 19:59:00 iMac kernel: [    0.000000]   Centaur CentaurHauls
Jun  6 19:59:00 iMac kernel: [    0.000000] Disabled fast string operations
Jun  6 19:59:00 iMac kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf65cfff] usable
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf65d000-0x00000000bf6eefff] ACPI NVS
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf6ef000-0x00000000bf7f5fff] ACPI data
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7f6000-0x00000000bf7fefff] reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7ff000-0x00000000bf7fffff] ACPI data
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
Jun  6 19:59:00 iMac kernel: [    0.000000] NX (Execute Disable) protection: active
Jun  6 19:59:00 iMac kernel: [    0.000000] SMBIOS 2.4 present.
Jun  6 19:59:00 iMac kernel: [    0.000000] DMI: Apple Inc. iMac11,1/Mac-F2268DAE, BIOS    IM111.88Z.0034.B02.1003171314 03/17/10
Jun  6 19:59:00 iMac kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun  6 19:59:00 iMac kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Jun  6 19:59:00 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  6 19:59:00 iMac kernel: [    0.000000] e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000
Jun  6 19:59:00 iMac kernel: [    0.000000] MTRR default type: write-back
Jun  6 19:59:00 iMac kernel: [    0.000000] MTRR fixed ranges enabled:
Jun  6 19:59:00 iMac kernel: [    0.000000]   00000-9FFFF write-back
Jun  6 19:59:00 iMac kernel: [    0.000000]   A0000-BFFFF uncachable
Jun  6 19:59:00 iMac kernel: [    0.000000]   C0000-DFFFF write-protect
Jun  6 19:59:00 iMac kernel: [    0.000000]   E0000-FFFFF uncachable
Jun  6 19:59:00 iMac kernel: [    0.000000] MTRR variable ranges enabled:
Jun  6 19:59:00 iMac kernel: [    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
Jun  6 19:59:00 iMac kernel: [    0.000000]   1 disabled
Jun  6 19:59:00 iMac kernel: [    0.000000]   2 disabled
Jun  6 19:59:00 iMac kernel: [    0.000000]   3 disabled
Jun  6 19:59:00 iMac kernel: [    0.000000]   4 disabled
Jun  6 19:59:00 iMac kernel: [    0.000000]   5 disabled
Jun  6 19:59:00 iMac kernel: [    0.000000]   6 disabled
Jun  6 19:59:00 iMac kernel: [    0.000000]   7 disabled
Jun  6 19:59:00 iMac kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun  6 19:59:00 iMac kernel: [    0.000000] e820: last_pfn = 0xbf65d max_arch_pfn = 0x400000000
Jun  6 19:59:00 iMac kernel: [    0.000000] Scanning 1 areas for low memory corruption
Jun  6 19:59:00 iMac kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
Jun  6 19:59:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
Jun  6 19:59:00 iMac kernel: [    0.000000]  [mem 0x00000000-0x000fffff] page 4k
Jun  6 19:59:00 iMac kernel: [    0.000000] BRK [0x01fbd000, 0x01fbdfff] PGTABLE
Jun  6 19:59:00 iMac kernel: [    0.000000] BRK [0x01fbe000, 0x01fbefff] PGTABLE
Jun  6 19:59:00 iMac kernel: [    0.000000] BRK [0x01fbf000, 0x01fbffff] PGTABLE
Jun  6 19:59:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23fe00000-0x23fffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000]  [mem 0x23fe00000-0x23fffffff] page 2M
Jun  6 19:59:00 iMac kernel: [    0.000000] BRK [0x01fc0000, 0x01fc0fff] PGTABLE
Jun  6 19:59:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23c000000-0x23fdfffff]
Jun  6 19:59:00 iMac kernel: [    0.000000]  [mem 0x23c000000-0x23fdfffff] page 2M
Jun  6 19:59:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000]  [mem 0x200000000-0x23bffffff] page 2M
Jun  6 19:59:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00100000-0xbf65cfff]
Jun  6 19:59:00 iMac kernel: [    0.000000]  [mem 0x00100000-0x001fffff] page 4k
Jun  6 19:59:00 iMac kernel: [    0.000000]  [mem 0x00200000-0xbf5fffff] page 2M
Jun  6 19:59:00 iMac kernel: [    0.000000]  [mem 0xbf600000-0xbf65cfff] page 4k
Jun  6 19:59:00 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
Jun  6 19:59:00 iMac kernel: [    0.000000] BRK [0x01fc1000, 0x01fc1fff] PGTABLE
Jun  6 19:59:00 iMac kernel: [    0.000000] BRK [0x01fc2000, 0x01fc2fff] PGTABLE
Jun  6 19:59:00 iMac kernel: [    0.000000] RAMDISK: [mem 0x35ad8000-0x36d63fff]
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: Early table checksum verification disabled
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 APPLE )
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: XSDT 0x00000000BF70E1C0 00008C (v01 APPLE  Apple00  00000034      01000013)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: FACP 0x00000000BF70B000 0000F4 (v04 APPLE  Apple00  00000034 Loki 0000005F)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: DSDT 0x00000000BF6FF000 0050F3 (v01 APPLE  iMac     00110001 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: FACS 0x00000000BF665000 000040
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: ASF! 0x00000000BF70D000 0000A5 (v32 APPLE  Apple00  00000001 Loki 0000005F)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: HPET 0x00000000BF70A000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF709000 0000BC (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF708000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: MCFG 0x00000000BF707000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: SBST 0x00000000BF706000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: ECDT 0x00000000BF705000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FB000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FA000 000774 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6F8000 000A10 (v01 PmRef  CpuPm    00003000 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FE000 0000FA (v01 SataRe SataPri  00001000 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FD000 0000FA (v01 SataRe SataSec  00001000 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  6 19:59:00 iMac kernel: [    0.000000] No NUMA configuration found
Jun  6 19:59:00 iMac kernel: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] Initmem setup node 0 [mem 0x00000000-0x23fffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000]   NODE_DATA [mem 0x23fff6000-0x23fffafff]
Jun  6 19:59:00 iMac kernel: [    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237600000-ffff88023f5fffff] on node 0
Jun  6 19:59:00 iMac kernel: [    0.000000] Zone ranges:
Jun  6 19:59:00 iMac kernel: [    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000]   Normal   [mem 0x100000000-0x23fffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] Movable zone start for each node
Jun  6 19:59:00 iMac kernel: [    0.000000] Early memory node ranges
Jun  6 19:59:00 iMac kernel: [    0.000000]   node   0: [mem 0x00001000-0x0009efff]
Jun  6 19:59:00 iMac kernel: [    0.000000]   node   0: [mem 0x00100000-0xbf65cfff]
Jun  6 19:59:00 iMac kernel: [    0.000000]   node   0: [mem 0x100000000-0x23fffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] On node 0 totalpages: 2094587
Jun  6 19:59:00 iMac kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Jun  6 19:59:00 iMac kernel: [    0.000000]   DMA zone: 21 pages reserved
Jun  6 19:59:00 iMac kernel: [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
Jun  6 19:59:00 iMac kernel: [    0.000000]   DMA32 zone: 12186 pages used for memmap
Jun  6 19:59:00 iMac kernel: [    0.000000]   DMA32 zone: 779869 pages, LIFO batch:31
Jun  6 19:59:00 iMac kernel: [    0.000000]   Normal zone: 20480 pages used for memmap
Jun  6 19:59:00 iMac kernel: [    0.000000]   Normal zone: 1310720 pages, LIFO batch:31
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Jun  6 19:59:00 iMac kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: IRQ0 used by override.
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: IRQ2 used by override.
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: IRQ9 used by override.
Jun  6 19:59:00 iMac kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Jun  6 19:59:00 iMac kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun  6 19:59:00 iMac kernel: [    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jun  6 19:59:00 iMac kernel: [    0.000000] nr_irqs_gsi: 40
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf65d000-0xbf6eefff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf6ef000-0xbf7f5fff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7f6000-0xbf7fefff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7ff000-0xbf7fffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xbfffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed1afff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
Jun  6 19:59:00 iMac kernel: [    0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun  6 19:59:00 iMac kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Jun  6 19:59:00 iMac kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Jun  6 19:59:00 iMac kernel: [    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88023fc00000 s81408 r8192 d20992 u262144
Jun  6 19:59:00 iMac kernel: [    0.000000] pcpu-alloc: s81408 r8192 d20992 u262144 alloc=1*2097152
Jun  6 19:59:00 iMac kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Jun  6 19:59:00 iMac kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2061836
Jun  6 19:59:00 iMac kernel: [    0.000000] Policy zone: Normal
Jun  6 19:59:00 iMac kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=a0523afa-1512-41aa-8660-804fbe235596 ro quiet splash vt.handoff=7
Jun  6 19:59:00 iMac kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun  6 19:59:00 iMac kernel: [    0.000000] AGP: Checking aperture...
Jun  6 19:59:00 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  6 19:59:00 iMac kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Jun  6 19:59:00 iMac kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jun  6 19:59:00 iMac kernel: [    0.000000] Memory: 8144852K/8378348K available (7626K kernel code, 1131K rwdata, 3596K rodata, 1352K init, 1300K bss, 233496K reserved)
Jun  6 19:59:00 iMac kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jun  6 19:59:00 iMac kernel: [    0.000000] Hierarchical RCU implementation.
Jun  6 19:59:00 iMac kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Jun  6 19:59:00 iMac kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Jun  6 19:59:00 iMac kernel: [    0.000000] 	Offload RCU callbacks from all CPUs
Jun  6 19:59:00 iMac kernel: [    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
Jun  6 19:59:00 iMac kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jun  6 19:59:00 iMac kernel: [    0.000000] NR_IRQS:16640 nr_irqs:744 16
Jun  6 19:59:00 iMac kernel: [    0.000000] vt handoff: transparent VT on vt#7
Jun  6 19:59:00 iMac kernel: [    0.000000] Console: colour dummy device 80x25
Jun  6 19:59:00 iMac kernel: [    0.000000] console [tty0] enabled
Jun  6 19:59:00 iMac kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Jun  6 19:59:00 iMac kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun  6 19:59:00 iMac kernel: [    0.000000] hpet clockevent registered
Jun  6 19:59:00 iMac kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Jun  6 19:59:00 iMac kernel: [    0.000000] tsc: Detected 2793.027 MHz processor
Jun  6 19:59:00 iMac kernel: [    0.000031] Calibrating delay loop (skipped), value calculated using timer frequency.. 5586.05 BogoMIPS (lpj=11172108)
Jun  6 19:59:00 iMac kernel: [    0.000033] pid_max: default: 32768 minimum: 301
Jun  6 19:59:00 iMac kernel: [    0.000040] ACPI: Core revision 20140424
Jun  6 19:59:00 iMac kernel: [    0.004384] ACPI: All ACPI Tables successfully acquired
Jun  6 19:59:00 iMac kernel: [    0.004614] Security Framework initialized
Jun  6 19:59:00 iMac kernel: [    0.004633] AppArmor: AppArmor initialized
Jun  6 19:59:00 iMac kernel: [    0.004634] Yama: becoming mindful.
Jun  6 19:59:00 iMac kernel: [    0.005112] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun  6 19:59:00 iMac kernel: [    0.006822] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Jun  6 19:59:00 iMac kernel: [    0.007609] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  6 19:59:00 iMac kernel: [    0.007617] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  6 19:59:00 iMac kernel: [    0.007849] Initializing cgroup subsys memory
Jun  6 19:59:00 iMac kernel: [    0.007869] Initializing cgroup subsys devices
Jun  6 19:59:00 iMac kernel: [    0.007875] Initializing cgroup subsys freezer
Jun  6 19:59:00 iMac kernel: [    0.007877] Initializing cgroup subsys net_cls
Jun  6 19:59:00 iMac kernel: [    0.007881] Initializing cgroup subsys blkio
Jun  6 19:59:00 iMac kernel: [    0.007884] Initializing cgroup subsys perf_event
Jun  6 19:59:00 iMac kernel: [    0.007886] Initializing cgroup subsys net_prio
Jun  6 19:59:00 iMac kernel: [    0.007892] Initializing cgroup subsys hugetlb
Jun  6 19:59:00 iMac kernel: [    0.007911] Disabled fast string operations
Jun  6 19:59:00 iMac kernel: [    0.007912] CPU: Physical Processor ID: 0
Jun  6 19:59:00 iMac kernel: [    0.007913] CPU: Processor Core ID: 0
Jun  6 19:59:00 iMac kernel: [    0.007917] mce: CPU supports 9 MCE banks
Jun  6 19:59:00 iMac kernel: [    0.007925] CPU0: Thermal monitoring enabled (TM1)
Jun  6 19:59:00 iMac kernel: [    0.007933] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jun  6 19:59:00 iMac kernel: [    0.007933] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jun  6 19:59:00 iMac kernel: [    0.007933] tlb_flushall_shift: 6
Jun  6 19:59:00 iMac kernel: [    0.008019] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
Jun  6 19:59:00 iMac kernel: [    0.008694] ftrace: allocating 29244 entries in 115 pages
Jun  6 19:59:00 iMac kernel: [    0.020627] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun  6 19:59:00 iMac kernel: [    0.060352] smpboot: CPU0: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz (fam: 06, model: 1e, stepping: 05)
Jun  6 19:59:00 iMac kernel: [    0.165621] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
Jun  6 19:59:00 iMac kernel: [    0.165635] perf_event_intel: CPU erratum AAJ80 worked around
Jun  6 19:59:00 iMac kernel: [    0.165636] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
Jun  6 19:59:00 iMac kernel: [    0.165637] ... version:                3
Jun  6 19:59:00 iMac kernel: [    0.165638] ... bit width:              48
Jun  6 19:59:00 iMac kernel: [    0.165639] ... generic registers:      4
Jun  6 19:59:00 iMac kernel: [    0.165639] ... value mask:             0000ffffffffffff
Jun  6 19:59:00 iMac kernel: [    0.165640] ... max period:             000000007fffffff
Jun  6 19:59:00 iMac kernel: [    0.165641] ... fixed-purpose events:   3
Jun  6 19:59:00 iMac kernel: [    0.165641] ... event mask:             000000070000000f
Jun  6 19:59:00 iMac kernel: [    0.167199] x86: Booting SMP configuration:
Jun  6 19:59:00 iMac kernel: [    0.167200] .... node  #0, CPUs:      #1
Jun  6 19:59:00 iMac kernel: [    0.178293] Disabled fast string operations
Jun  6 19:59:00 iMac kernel: [    0.180488] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun  6 19:59:00 iMac kernel: [    0.180571]  #2
Jun  6 19:59:00 iMac kernel: [    0.191611] Disabled fast string operations
Jun  6 19:59:00 iMac kernel: [    0.193806]  #3<6>[    0.204848] Disabled fast string operations
Jun  6 19:59:00 iMac kernel: [    0.218079]  #4
Jun  6 19:59:00 iMac kernel: [    0.218080] Disabled fast string operations
Jun  6 19:59:00 iMac kernel: [    0.231310]  #5
Jun  6 19:59:00 iMac kernel: [    0.231311] Disabled fast string operations
Jun  6 19:59:00 iMac kernel: [    0.244541]  #6
Jun  6 19:59:00 iMac kernel: [    0.244541] Disabled fast string operations
Jun  6 19:59:00 iMac kernel: [    0.257773]  #7
Jun  6 19:59:00 iMac kernel: [    0.257774] Disabled fast string operations
Jun  6 19:59:00 iMac kernel: [    0.259891] x86: Booted up 1 node, 8 CPUs
Jun  6 19:59:00 iMac kernel: [    0.259895] smpboot: Total of 8 processors activated (44688.43 BogoMIPS)
Jun  6 19:59:00 iMac kernel: [    0.265232] devtmpfs: initialized
Jun  6 19:59:00 iMac kernel: [    0.269002] evm: security.selinux
Jun  6 19:59:00 iMac kernel: [    0.269003] evm: security.SMACK64
Jun  6 19:59:00 iMac kernel: [    0.269004] evm: security.SMACK64EXEC
Jun  6 19:59:00 iMac kernel: [    0.269004] evm: security.SMACK64TRANSMUTE
Jun  6 19:59:00 iMac kernel: [    0.269005] evm: security.SMACK64MMAP
Jun  6 19:59:00 iMac kernel: [    0.269005] evm: security.ima
Jun  6 19:59:00 iMac kernel: [    0.269006] evm: security.capability
Jun  6 19:59:00 iMac kernel: [    0.269050] PM: Registering ACPI NVS region [mem 0xbf65d000-0xbf6eefff] (598016 bytes)
Jun  6 19:59:00 iMac kernel: [    0.269834] pinctrl core: initialized pinctrl subsystem
Jun  6 19:59:00 iMac kernel: [    0.269897] regulator-dummy: no parameters
Jun  6 19:59:00 iMac kernel: [    0.269927] RTC time: 17:58:45, date: 06/06/15
Jun  6 19:59:00 iMac kernel: [    0.269969] NET: Registered protocol family 16
Jun  6 19:59:00 iMac kernel: [    0.270101] cpuidle: using governor ladder
Jun  6 19:59:00 iMac kernel: [    0.270103] cpuidle: using governor menu
Jun  6 19:59:00 iMac kernel: [    0.270145] ACPI: bus type PCI registered
Jun  6 19:59:00 iMac kernel: [    0.270147] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun  6 19:59:00 iMac kernel: [    0.270211] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jun  6 19:59:00 iMac kernel: [    0.270213] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jun  6 19:59:00 iMac kernel: [    0.270646] PCI: Using configuration type 1 for base access
Jun  6 19:59:00 iMac kernel: [    0.274151] ACPI: Added _OSI(Module Device)
Jun  6 19:59:00 iMac kernel: [    0.274153] ACPI: Added _OSI(Processor Device)
Jun  6 19:59:00 iMac kernel: [    0.274154] ACPI: Added _OSI(3.0 _SCP Extensions)
Jun  6 19:59:00 iMac kernel: [    0.274155] ACPI: Added _OSI(Processor Aggregator Device)
Jun  6 19:59:00 iMac kernel: [    0.274877] ACPI : EC: EC description table is found, configuring boot EC
Jun  6 19:59:00 iMac kernel: [    0.277731] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun  6 19:59:00 iMac kernel: [    0.278016] ACPI: Dynamic OEM Table Load:
Jun  6 19:59:00 iMac kernel: [    0.278023] ACPI: SSDT 0xFFFF880233FA8000 0004BD (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.278295] ACPI: Dynamic OEM Table Load:
Jun  6 19:59:00 iMac kernel: [    0.278301] ACPI: SSDT 0xFFFF880233FA8800 0006E5 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.285956] ACPI: Dynamic OEM Table Load:
Jun  6 19:59:00 iMac kernel: [    0.285962] ACPI: SSDT 0xFFFF880233C19000 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.289857] ACPI: Dynamic OEM Table Load:
Jun  6 19:59:00 iMac kernel: [    0.289862] ACPI: SSDT 0xFFFF880233F80A00 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
Jun  6 19:59:00 iMac kernel: [    0.294651] ACPI: Interpreter enabled
Jun  6 19:59:00 iMac kernel: [    0.294655] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
Jun  6 19:59:00 iMac kernel: [    0.294659] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
Jun  6 19:59:00 iMac kernel: [    0.294669] ACPI: (supports S0 S3 S4 S5)
Jun  6 19:59:00 iMac kernel: [    0.294670] ACPI: Using IOAPIC for interrupt routing
Jun  6 19:59:00 iMac kernel: [    0.294691] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun  6 19:59:00 iMac kernel: [    0.298259] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Jun  6 19:59:00 iMac kernel: [    0.298263] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  6 19:59:00 iMac kernel: [    0.298290] \_SB_.PCI0:_OSC invalid UUID
Jun  6 19:59:00 iMac kernel: [    0.298291] _OSC request data:1 1f 0 
Jun  6 19:59:00 iMac kernel: [    0.298294] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Jun  6 19:59:00 iMac kernel: [    0.298828] PCI host bridge to bus 0000:00
Jun  6 19:59:00 iMac kernel: [    0.298831] pci_bus 0000:00: root bus resource [bus 00-fe]
Jun  6 19:59:00 iMac kernel: [    0.298833] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
Jun  6 19:59:00 iMac kernel: [    0.298834] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
Jun  6 19:59:00 iMac kernel: [    0.298835] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Jun  6 19:59:00 iMac kernel: [    0.298836] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
Jun  6 19:59:00 iMac kernel: [    0.298844] pci 0000:00:00.0: [8086:d131] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.298933] pci 0000:00:03.0: [8086:d138] type 01 class 0x060400
Jun  6 19:59:00 iMac kernel: [    0.298980] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.299011] pci 0000:00:03.0: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.299046] pci 0000:00:08.0: [8086:d155] type 00 class 0x088000
Jun  6 19:59:00 iMac kernel: [    0.299132] pci 0000:00:08.1: [8086:d156] type 00 class 0x088000
Jun  6 19:59:00 iMac kernel: [    0.299217] pci 0000:00:08.2: [8086:d157] type 00 class 0x088000
Jun  6 19:59:00 iMac kernel: [    0.299296] pci 0000:00:08.3: [8086:d158] type 00 class 0x088000
Jun  6 19:59:00 iMac kernel: [    0.299369] pci 0000:00:10.0: [8086:d150] type 00 class 0x088000
Jun  6 19:59:00 iMac kernel: [    0.299439] pci 0000:00:10.1: [8086:d151] type 00 class 0x088000
Jun  6 19:59:00 iMac kernel: [    0.299522] pci 0000:00:1a.0: [8086:3b3b] type 00 class 0x0c0300
Jun  6 19:59:00 iMac kernel: [    0.299560] pci 0000:00:1a.0: reg 0x20: [io  0x3060-0x307f]
Jun  6 19:59:00 iMac kernel: [    0.299652] pci 0000:00:1a.7: [8086:3b3c] type 00 class 0x0c0320
Jun  6 19:59:00 iMac kernel: [    0.299671] pci 0000:00:1a.7: reg 0x10: [mem 0xd0705c00-0xd0705fff]
Jun  6 19:59:00 iMac kernel: [    0.299752] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.299796] pci 0000:00:1a.7: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.299834] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
Jun  6 19:59:00 iMac kernel: [    0.299849] pci 0000:00:1b.0: reg 0x10: [mem 0xd0700000-0xd0703fff 64bit]
Jun  6 19:59:00 iMac kernel: [    0.299914] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.299946] pci 0000:00:1b.0: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.299980] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
Jun  6 19:59:00 iMac kernel: [    0.300043] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.300075] pci 0000:00:1c.0: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.300109] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
Jun  6 19:59:00 iMac kernel: [    0.300172] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.300204] pci 0000:00:1c.1: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.300237] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
Jun  6 19:59:00 iMac kernel: [    0.300300] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.300332] pci 0000:00:1c.2: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.300365] pci 0000:00:1c.3: [8086:3b48] type 01 class 0x060400
Jun  6 19:59:00 iMac kernel: [    0.300423] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.300455] pci 0000:00:1c.3: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.300489] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
Jun  6 19:59:00 iMac kernel: [    0.300548] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.300611] pci 0000:00:1d.0: [8086:3b36] type 00 class 0x0c0300
Jun  6 19:59:00 iMac kernel: [    0.300649] pci 0000:00:1d.0: reg 0x20: [io  0x3040-0x305f]
Jun  6 19:59:00 iMac kernel: [    0.300742] pci 0000:00:1d.7: [8086:3b34] type 00 class 0x0c0320
Jun  6 19:59:00 iMac kernel: [    0.300761] pci 0000:00:1d.7: reg 0x10: [mem 0xd0705800-0xd0705bff]
Jun  6 19:59:00 iMac kernel: [    0.300841] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.300884] pci 0000:00:1d.7: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.300917] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jun  6 19:59:00 iMac kernel: [    0.301010] pci 0000:00:1f.0: [8086:3b02] type 00 class 0x060100
Jun  6 19:59:00 iMac kernel: [    0.301158] pci 0000:00:1f.2: [8086:3b20] type 00 class 0x01018f
Jun  6 19:59:00 iMac kernel: [    0.301172] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
Jun  6 19:59:00 iMac kernel: [    0.301178] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
Jun  6 19:59:00 iMac kernel: [    0.301184] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
Jun  6 19:59:00 iMac kernel: [    0.301191] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
Jun  6 19:59:00 iMac kernel: [    0.301197] pci 0000:00:1f.2: reg 0x20: [io  0x3020-0x302f]
Jun  6 19:59:00 iMac kernel: [    0.301204] pci 0000:00:1f.2: reg 0x24: [io  0xffe0-0xffef]
Jun  6 19:59:00 iMac kernel: [    0.301282] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
Jun  6 19:59:00 iMac kernel: [    0.301295] pci 0000:00:1f.3: reg 0x10: [mem 0xd0706000-0xd07060ff 64bit]
Jun  6 19:59:00 iMac kernel: [    0.301313] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Jun  6 19:59:00 iMac kernel: [    0.301383] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
Jun  6 19:59:00 iMac kernel: [    0.301403] pci 0000:00:1f.6: reg 0x10: [mem 0xd0704000-0xd0704fff 64bit]
Jun  6 19:59:00 iMac kernel: [    0.301565] pci 0000:01:00.0: [1002:944a] type 00 class 0x030000
Jun  6 19:59:00 iMac kernel: [    0.301577] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.301585] pci 0000:01:00.0: reg 0x18: [mem 0xd0620000-0xd062ffff 64bit]
Jun  6 19:59:00 iMac kernel: [    0.301591] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
Jun  6 19:59:00 iMac kernel: [    0.301600] pci 0000:01:00.0: reg 0x30: [mem 0xd0600000-0xd061ffff pref]
Jun  6 19:59:00 iMac kernel: [    0.301627] pci 0000:01:00.0: supports D1 D2
Jun  6 19:59:00 iMac kernel: [    0.301642] pci 0000:01:00.0: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.301677] pci 0000:01:00.1: [1002:aa30] type 00 class 0x040300
Jun  6 19:59:00 iMac kernel: [    0.301689] pci 0000:01:00.1: reg 0x10: [mem 0xd0630000-0xd0633fff 64bit]
Jun  6 19:59:00 iMac kernel: [    0.301736] pci 0000:01:00.1: supports D1 D2
Jun  6 19:59:00 iMac kernel: [    0.311097] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  6 19:59:00 iMac kernel: [    0.311103] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  6 19:59:00 iMac kernel: [    0.311107] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  6 19:59:00 iMac kernel: [    0.311114] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.311217] pci 0000:02:00.0: [14e4:1684] type 00 class 0x020000
Jun  6 19:59:00 iMac kernel: [    0.311241] pci 0000:02:00.0: reg 0x10: [mem 0xd0500000-0xd050ffff 64bit]
Jun  6 19:59:00 iMac kernel: [    0.311385] pci 0000:02:00.0: PME# supported from D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.311424] pci 0000:02:00.0: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.319111] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  6 19:59:00 iMac kernel: [    0.319120] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  6 19:59:00 iMac kernel: [    0.319218] pci 0000:03:00.0: [168c:002a] type 00 class 0x028000
Jun  6 19:59:00 iMac kernel: [    0.319242] pci 0000:03:00.0: reg 0x10: [mem 0xd0400000-0xd040ffff 64bit]
Jun  6 19:59:00 iMac kernel: [    0.319363] pci 0000:03:00.0: supports D1
Jun  6 19:59:00 iMac kernel: [    0.319364] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
Jun  6 19:59:00 iMac kernel: [    0.319392] pci 0000:03:00.0: System wakeup disabled by ACPI
Jun  6 19:59:00 iMac kernel: [    0.319420] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
Jun  6 19:59:00 iMac kernel: [    0.319428] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  6 19:59:00 iMac kernel: [    0.319432] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  6 19:59:00 iMac kernel: [    0.319509] pci 0000:04:00.0: [104c:823e] type 01 class 0x060400
Jun  6 19:59:00 iMac kernel: [    0.319633] pci 0000:04:00.0: supports D1 D2
Jun  6 19:59:00 iMac kernel: [    0.327122] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  6 19:59:00 iMac kernel: [    0.327130] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  6 19:59:00 iMac kernel: [    0.327240] pci 0000:05:00.0: [104c:823f] type 00 class 0x0c0010
Jun  6 19:59:00 iMac kernel: [    0.327265] pci 0000:05:00.0: reg 0x10: [mem 0xd0304000-0xd03047ff]
Jun  6 19:59:00 iMac kernel: [    0.327279] pci 0000:05:00.0: reg 0x14: [mem 0xd0300000-0xd0303fff]
Jun  6 19:59:00 iMac kernel: [    0.327381] pci 0000:05:00.0: supports D1 D2
Jun  6 19:59:00 iMac kernel: [    0.327382] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot
Jun  6 19:59:00 iMac kernel: [    0.327478] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  6 19:59:00 iMac kernel: [    0.327489] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  6 19:59:00 iMac kernel: [    0.327569] acpiphp: Slot [1] registered
Jun  6 19:59:00 iMac kernel: [    0.327574] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  6 19:59:00 iMac kernel: [    0.327578] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  6 19:59:00 iMac kernel: [    0.327626] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  6 19:59:00 iMac kernel: [    0.327631] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  6 19:59:00 iMac kernel: [    0.327696] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
Jun  6 19:59:00 iMac kernel: [    0.327701] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  6 19:59:00 iMac kernel: [    0.327705] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun  6 19:59:00 iMac kernel: [    0.327707] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun  6 19:59:00 iMac kernel: [    0.327708] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun  6 19:59:00 iMac kernel: [    0.327709] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
Jun  6 19:59:00 iMac kernel: [    0.328062] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  6 19:59:00 iMac kernel: [    0.328103] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  6 19:59:00 iMac kernel: [    0.328143] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  6 19:59:00 iMac kernel: [    0.328182] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  6 19:59:00 iMac kernel: [    0.328221] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  6 19:59:00 iMac kernel: [    0.328262] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
Jun  6 19:59:00 iMac kernel: [    0.328301] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  6 19:59:00 iMac kernel: [    0.328339] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  6 19:59:00 iMac kernel: [    0.328415] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
Jun  6 19:59:00 iMac kernel: [    0.328418] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  6 19:59:00 iMac kernel: [    0.328421] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Jun  6 19:59:00 iMac kernel: [    0.328456] PCI host bridge to bus 0000:ff
Jun  6 19:59:00 iMac kernel: [    0.328458] pci_bus 0000:ff: root bus resource [bus ff]
Jun  6 19:59:00 iMac kernel: [    0.328462] pci 0000:ff:00.0: [8086:2c51] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328502] pci 0000:ff:00.1: [8086:2c81] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328542] pci 0000:ff:02.0: [8086:2c90] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328579] pci 0000:ff:02.1: [8086:2c91] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328616] pci 0000:ff:03.0: [8086:2c98] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328652] pci 0000:ff:03.1: [8086:2c99] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328688] pci 0000:ff:03.4: [8086:2c9c] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328725] pci 0000:ff:04.0: [8086:2ca0] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328761] pci 0000:ff:04.1: [8086:2ca1] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328796] pci 0000:ff:04.2: [8086:2ca2] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328832] pci 0000:ff:04.3: [8086:2ca3] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328870] pci 0000:ff:05.0: [8086:2ca8] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328906] pci 0000:ff:05.1: [8086:2ca9] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328942] pci 0000:ff:05.2: [8086:2caa] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.328978] pci 0000:ff:05.3: [8086:2cab] type 00 class 0x060000
Jun  6 19:59:00 iMac kernel: [    0.329057] ACPI: Enabled 4 GPEs in block 00 to 3F
Jun  6 19:59:00 iMac kernel: [    0.329075] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
Jun  6 19:59:00 iMac kernel: [    0.329156] vgaarb: setting as boot device: PCI:0000:01:00.0
Jun  6 19:59:00 iMac kernel: [    0.329158] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Jun  6 19:59:00 iMac kernel: [    0.329161] vgaarb: loaded
Jun  6 19:59:00 iMac kernel: [    0.329162] vgaarb: bridge control possible 0000:01:00.0
Jun  6 19:59:00 iMac kernel: [    0.329358] SCSI subsystem initialized
Jun  6 19:59:00 iMac kernel: [    0.329398] libata version 3.00 loaded.
Jun  6 19:59:00 iMac kernel: [    0.329423] ACPI: bus type USB registered
Jun  6 19:59:00 iMac kernel: [    0.329439] usbcore: registered new interface driver usbfs
Jun  6 19:59:00 iMac kernel: [    0.329446] usbcore: registered new interface driver hub
Jun  6 19:59:00 iMac kernel: [    0.329461] usbcore: registered new device driver usb
Jun  6 19:59:00 iMac kernel: [    0.329573] PCI: Using ACPI for IRQ routing
Jun  6 19:59:00 iMac kernel: [    0.335010] PCI: pci_cache_line_size set to 64 bytes
Jun  6 19:59:00 iMac kernel: [    0.335077] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Jun  6 19:59:00 iMac kernel: [    0.335078] e820: reserve RAM buffer [mem 0xbf65d000-0xbfffffff]
Jun  6 19:59:00 iMac kernel: [    0.335169] NetLabel: Initializing
Jun  6 19:59:00 iMac kernel: [    0.335171] NetLabel:  domain hash size = 128
Jun  6 19:59:00 iMac kernel: [    0.335171] NetLabel:  protocols = UNLABELED CIPSOv4
Jun  6 19:59:00 iMac kernel: [    0.335180] NetLabel:  unlabeled traffic allowed by default
Jun  6 19:59:00 iMac kernel: [    0.335245] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
Jun  6 19:59:00 iMac kernel: [    0.335251] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0
Jun  6 19:59:00 iMac kernel: [    0.335255] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Jun  6 19:59:00 iMac kernel: [    0.337304] hpet: hpet2 irq 40 for MSI
Jun  6 19:59:00 iMac kernel: [    0.337341] hpet: hpet3 irq 41 for MSI
Jun  6 19:59:00 iMac kernel: [    0.337378] hpet: hpet4 irq 42 for MSI
Jun  6 19:59:00 iMac kernel: [    0.337411] hpet: hpet5 irq 43 for MSI
Jun  6 19:59:00 iMac kernel: [    0.337445] hpet: hpet6 irq 44 for MSI
Jun  6 19:59:00 iMac kernel: [    0.337546] Switched to clocksource hpet
Jun  6 19:59:00 iMac kernel: [    0.342061] AppArmor: AppArmor Filesystem Enabled
Jun  6 19:59:00 iMac kernel: [    0.342090] pnp: PnP ACPI init
Jun  6 19:59:00 iMac kernel: [    0.342103] ACPI: bus type PNP registered
Jun  6 19:59:00 iMac kernel: [    0.342246] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342249] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
Jun  6 19:59:00 iMac kernel: [    0.342296] system 00:01: [io  0x0680-0x069f] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342298] system 00:01: [io  0x1000-0x100f] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342299] system 00:01: [io  0xffff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342300] system 00:01: [io  0xffff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342302] system 00:01: [io  0x0400-0x047f] could not be reserved
Jun  6 19:59:00 iMac kernel: [    0.342303] system 00:01: [io  0x0500-0x057f] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342305] system 00:01: [io  0x164e-0x164f] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342307] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  6 19:59:00 iMac kernel: [    0.342360] system 00:02: [io  0x06a0-0x06af] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342361] system 00:02: [io  0x06b0-0x06ff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342363] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  6 19:59:00 iMac kernel: [    0.342386] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun  6 19:59:00 iMac kernel: [    0.342563] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342565] system 00:04: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342566] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342568] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342569] system 00:04: [mem 0xfeb00000-0xfeb03fff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342570] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
Jun  6 19:59:00 iMac kernel: [    0.342572] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
Jun  6 19:59:00 iMac kernel: [    0.342573] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun  6 19:59:00 iMac kernel: [    0.342575] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  6 19:59:00 iMac kernel: [    0.342727] pnp: PnP ACPI: found 5 devices
Jun  6 19:59:00 iMac kernel: [    0.342728] ACPI: bus type PNP unregistered
Jun  6 19:59:00 iMac kernel: [    0.348972] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.348975] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.348982] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.348984] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.349000] pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 04-05] add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.349001] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04-05] add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.349008] pci 0000:00:1c.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.349011] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.349017] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.349019] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.349029] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.349030] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.349032] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.349033] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.349034] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  6 19:59:00 iMac kernel: [    0.349036] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.349037] pci 0000:00:1c.1: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.349038] pci 0000:00:1c.2: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.349040] pci 0000:00:1c.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.349041] pci 0000:00:1c.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  6 19:59:00 iMac kernel: [    0.349045] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349048] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349050] pci 0000:00:1c.2: BAR 15: assigned [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349053] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349055] pci 0000:00:1c.4: BAR 15: assigned [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349057] pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jun  6 19:59:00 iMac kernel: [    0.349059] pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun  6 19:59:00 iMac kernel: [    0.349061] pci 0000:00:1c.2: BAR 13: assigned [io  0x6000-0x6fff]
Jun  6 19:59:00 iMac kernel: [    0.349063] pci 0000:00:1c.3: BAR 13: assigned [io  0x7000-0x7fff]
Jun  6 19:59:00 iMac kernel: [    0.349064] pci 0000:00:1c.4: BAR 13: assigned [io  0x8000-0x8fff]
Jun  6 19:59:00 iMac kernel: [    0.349067] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  6 19:59:00 iMac kernel: [    0.349069] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  6 19:59:00 iMac kernel: [    0.349072] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  6 19:59:00 iMac kernel: [    0.349075] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349078] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  6 19:59:00 iMac kernel: [    0.349080] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun  6 19:59:00 iMac kernel: [    0.349083] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  6 19:59:00 iMac kernel: [    0.349086] pci 0000:00:1c.0:   bridge window [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349090] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  6 19:59:00 iMac kernel: [    0.349092] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun  6 19:59:00 iMac kernel: [    0.349096] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  6 19:59:00 iMac kernel: [    0.349098] pci 0000:00:1c.1:   bridge window [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349103] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  6 19:59:00 iMac kernel: [    0.349109] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  6 19:59:00 iMac kernel: [    0.349119] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  6 19:59:00 iMac kernel: [    0.349121] pci 0000:00:1c.2:   bridge window [io  0x6000-0x6fff]
Jun  6 19:59:00 iMac kernel: [    0.349124] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  6 19:59:00 iMac kernel: [    0.349127] pci 0000:00:1c.2:   bridge window [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349131] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  6 19:59:00 iMac kernel: [    0.349133] pci 0000:00:1c.3:   bridge window [io  0x7000-0x7fff]
Jun  6 19:59:00 iMac kernel: [    0.349137] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  6 19:59:00 iMac kernel: [    0.349139] pci 0000:00:1c.3:   bridge window [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349144] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  6 19:59:00 iMac kernel: [    0.349146] pci 0000:00:1c.4:   bridge window [io  0x8000-0x8fff]
Jun  6 19:59:00 iMac kernel: [    0.349149] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  6 19:59:00 iMac kernel: [    0.349152] pci 0000:00:1c.4:   bridge window [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349156] pci 0000:00:1e.0: PCI bridge to [bus 08]
Jun  6 19:59:00 iMac kernel: [    0.349159] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  6 19:59:00 iMac kernel: [    0.349166] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun  6 19:59:00 iMac kernel: [    0.349167] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun  6 19:59:00 iMac kernel: [    0.349168] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun  6 19:59:00 iMac kernel: [    0.349170] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  6 19:59:00 iMac kernel: [    0.349171] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jun  6 19:59:00 iMac kernel: [    0.349172] pci_bus 0000:01: resource 1 [mem 0xd0600000-0xd06fffff]
Jun  6 19:59:00 iMac kernel: [    0.349173] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349175] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
Jun  6 19:59:00 iMac kernel: [    0.349176] pci_bus 0000:02: resource 1 [mem 0xd0500000-0xd05fffff]
Jun  6 19:59:00 iMac kernel: [    0.349177] pci_bus 0000:02: resource 2 [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349179] pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
Jun  6 19:59:00 iMac kernel: [    0.349180] pci_bus 0000:03: resource 1 [mem 0xd0400000-0xd04fffff]
Jun  6 19:59:00 iMac kernel: [    0.349181] pci_bus 0000:03: resource 2 [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349182] pci_bus 0000:04: resource 0 [io  0x6000-0x6fff]
Jun  6 19:59:00 iMac kernel: [    0.349184] pci_bus 0000:04: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  6 19:59:00 iMac kernel: [    0.349185] pci_bus 0000:04: resource 2 [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349186] pci_bus 0000:05: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  6 19:59:00 iMac kernel: [    0.349188] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
Jun  6 19:59:00 iMac kernel: [    0.349189] pci_bus 0000:06: resource 1 [mem 0xd0200000-0xd02fffff]
Jun  6 19:59:00 iMac kernel: [    0.349190] pci_bus 0000:06: resource 2 [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349191] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
Jun  6 19:59:00 iMac kernel: [    0.349193] pci_bus 0000:07: resource 1 [mem 0xd0100000-0xd01fffff]
Jun  6 19:59:00 iMac kernel: [    0.349194] pci_bus 0000:07: resource 2 [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  6 19:59:00 iMac kernel: [    0.349195] pci_bus 0000:08: resource 1 [mem 0xd0000000-0xd00fffff]
Jun  6 19:59:00 iMac kernel: [    0.349197] pci_bus 0000:08: resource 4 [io  0x0000-0x0cf7]
Jun  6 19:59:00 iMac kernel: [    0.349198] pci_bus 0000:08: resource 5 [io  0x0d00-0xffff]
Jun  6 19:59:00 iMac kernel: [    0.349199] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
Jun  6 19:59:00 iMac kernel: [    0.349200] pci_bus 0000:08: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  6 19:59:00 iMac kernel: [    0.349222] NET: Registered protocol family 2
Jun  6 19:59:00 iMac kernel: [    0.349412] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Jun  6 19:59:00 iMac kernel: [    0.349609] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun  6 19:59:00 iMac kernel: [    0.349863] TCP: Hash tables configured (established 65536 bind 65536)
Jun  6 19:59:00 iMac kernel: [    0.349889] TCP: reno registered
Jun  6 19:59:00 iMac kernel: [    0.349897] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Jun  6 19:59:00 iMac kernel: [    0.349951] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Jun  6 19:59:00 iMac kernel: [    0.350032] NET: Registered protocol family 1
Jun  6 19:59:00 iMac kernel: [    0.350874] pci 0000:01:00.0: Video device with shadowed ROM
Jun  6 19:59:00 iMac kernel: [    0.350886] PCI: CLS mismatch (256 != 64), using 64 bytes
Jun  6 19:59:00 iMac kernel: [    0.350941] Trying to unpack rootfs image as initramfs...
Jun  6 19:59:00 iMac kernel: [    0.624410] Freeing initrd memory: 18992K (ffff880035ad8000 - ffff880036d64000)
Jun  6 19:59:00 iMac kernel: [    0.624453] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun  6 19:59:00 iMac kernel: [    0.624455] software IO TLB [mem 0xbb65d000-0xbf65d000] (64MB) mapped at [ffff8800bb65d000-ffff8800bf65cfff]
Jun  6 19:59:00 iMac kernel: [    0.624778] microcode: CPU0 sig=0x106e5, pf=0x2, revision=0x3
Jun  6 19:59:00 iMac kernel: [    0.624783] microcode: CPU1 sig=0x106e5, pf=0x2, revision=0x3
Jun  6 19:59:00 iMac kernel: [    0.624790] microcode: CPU2 sig=0x106e5, pf=0x2, revision=0x3
Jun  6 19:59:00 iMac kernel: [    0.624794] microcode: CPU3 sig=0x106e5, pf=0x2, revision=0x3
Jun  6 19:59:00 iMac kernel: [    0.624799] microcode: CPU4 sig=0x106e5, pf=0x2, revision=0x3
Jun  6 19:59:00 iMac kernel: [    0.624804] microcode: CPU5 sig=0x106e5, pf=0x2, revision=0x3
Jun  6 19:59:00 iMac kernel: [    0.624809] microcode: CPU6 sig=0x106e5, pf=0x2, revision=0x3
Jun  6 19:59:00 iMac kernel: [    0.624816] microcode: CPU7 sig=0x106e5, pf=0x2, revision=0x3
Jun  6 19:59:00 iMac kernel: [    0.624861] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun  6 19:59:00 iMac kernel: [    0.624881] Scanning for low memory corruption every 60 seconds
Jun  6 19:59:00 iMac kernel: [    0.624902] efifb: dmi detected iMac11,1 - framebuffer at 0xc0000000 (1920x1440, stride 7680)
Jun  6 19:59:00 iMac kernel: [    0.625192] futex hash table entries: 2048 (order: 5, 131072 bytes)
Jun  6 19:59:00 iMac kernel: [    0.625222] Initialise system trusted keyring
Jun  6 19:59:00 iMac kernel: [    0.625242] audit: initializing netlink subsys (disabled)
Jun  6 19:59:00 iMac kernel: [    0.625255] audit: type=2000 audit(1433613524.516:1): initialized
Jun  6 19:59:00 iMac kernel: [    0.625518] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun  6 19:59:00 iMac kernel: [    0.626840] zpool: loaded
Jun  6 19:59:00 iMac kernel: [    0.626841] zbud: loaded
Jun  6 19:59:00 iMac kernel: [    0.626971] VFS: Disk quotas dquot_6.5.2
Jun  6 19:59:00 iMac kernel: [    0.627002] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun  6 19:59:00 iMac kernel: [    0.627422] fuse init (API version 7.23)
Jun  6 19:59:00 iMac kernel: [    0.627496] msgmni has been set to 15945
Jun  6 19:59:00 iMac kernel: [    0.627552] Key type big_key registered
Jun  6 19:59:00 iMac kernel: [    0.627840] Key type asymmetric registered
Jun  6 19:59:00 iMac kernel: [    0.627842] Asymmetric key parser 'x509' registered
Jun  6 19:59:00 iMac kernel: [    0.627873] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Jun  6 19:59:00 iMac kernel: [    0.627926] io scheduler noop registered
Jun  6 19:59:00 iMac kernel: [    0.627929] io scheduler deadline registered (default)
Jun  6 19:59:00 iMac kernel: [    0.627971] io scheduler cfq registered
Jun  6 19:59:00 iMac kernel: [    0.628498] pcieport 0000:00:1c.3: enabling device (0000 -> 0003)
Jun  6 19:59:00 iMac kernel: [    0.628603] pcieport 0000:00:1c.4: enabling device (0000 -> 0003)
Jun  6 19:59:00 iMac kernel: [    0.628735] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun  6 19:59:00 iMac kernel: [    0.628747] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun  6 19:59:00 iMac kernel: [    0.628790] vesafb: mode is 1920x1440x32, linelength=7680, pages=0
Jun  6 19:59:00 iMac kernel: [    0.628791] vesafb: scrolling: redraw
Jun  6 19:59:00 iMac kernel: [    0.628792] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
Jun  6 19:59:00 iMac kernel: [    0.633176] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 10816k, total 10816k
Jun  6 19:59:00 iMac kernel: [    0.633307] Console: switching to colour frame buffer device 240x90
Jun  6 19:59:00 iMac kernel: [    0.633366] fb0: VESA VGA frame buffer device
Jun  6 19:59:00 iMac kernel: [    0.633392] intel_idle: MWAIT substates: 0x1120
Jun  6 19:59:00 iMac kernel: [    0.633402] intel_idle: v0.4 model 0x1E
Jun  6 19:59:00 iMac kernel: [    0.633403] intel_idle: lapic_timer_reliable_states 0x2
Jun  6 19:59:00 iMac kernel: [    0.633724] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun  6 19:59:00 iMac kernel: [    0.633727] ACPI: Power Button [PWRB]
Jun  6 19:59:00 iMac kernel: [    0.633762] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun  6 19:59:00 iMac kernel: [    0.633764] ACPI: Sleep Button [SLPB]
Jun  6 19:59:00 iMac kernel: [    0.633794] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun  6 19:59:00 iMac kernel: [    0.633796] ACPI: Power Button [PWRF]
Jun  6 19:59:00 iMac kernel: [    0.634203] GHES: HEST is not enabled!
Jun  6 19:59:00 iMac kernel: [    0.634289] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun  6 19:59:00 iMac kernel: [    0.635623] Linux agpgart interface v0.103
Jun  6 19:59:00 iMac kernel: [    0.636715] brd: module loaded
Jun  6 19:59:00 iMac kernel: [    0.637270] loop: module loaded
Jun  6 19:59:00 iMac kernel: [    0.637399] ata_piix 0000:00:1f.2: version 2.13
Jun  6 19:59:00 iMac kernel: [    0.637482] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun  6 19:59:00 iMac kernel: [    0.790461] scsi0 : ata_piix
Jun  6 19:59:00 iMac kernel: [    0.790785] scsi1 : ata_piix
Jun  6 19:59:00 iMac kernel: [    0.790867] ata1: SATA max UDMA/133 cmd 0x3088 ctl 0x3094 bmdma 0x3020 irq 19
Jun  6 19:59:00 iMac kernel: [    0.790873] ata2: SATA max UDMA/133 cmd 0x3080 ctl 0x3090 bmdma 0x3028 irq 19
Jun  6 19:59:00 iMac kernel: [    0.790972] libphy: Fixed MDIO Bus: probed
Jun  6 19:59:00 iMac kernel: [    0.790974] tun: Universal TUN/TAP device driver, 1.6
Jun  6 19:59:00 iMac kernel: [    0.790975] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun  6 19:59:00 iMac kernel: [    0.791020] PPP generic driver version 2.4.2
Jun  6 19:59:00 iMac kernel: [    0.791058] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun  6 19:59:00 iMac kernel: [    0.791062] ehci-pci: EHCI PCI platform driver
Jun  6 19:59:00 iMac kernel: [    0.791169] ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun  6 19:59:00 iMac kernel: [    0.791175] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jun  6 19:59:00 iMac kernel: [    0.791189] ehci-pci 0000:00:1a.7: debug port 2
Jun  6 19:59:00 iMac kernel: [    0.795086] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
Jun  6 19:59:00 iMac kernel: [    0.795101] ehci-pci 0000:00:1a.7: irq 16, io mem 0xd0705c00
Jun  6 19:59:00 iMac kernel: [    0.806031] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun  6 19:59:00 iMac kernel: [    0.806063] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jun  6 19:59:00 iMac kernel: [    0.806064] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  6 19:59:00 iMac kernel: [    0.806066] usb usb1: Product: EHCI Host Controller
Jun  6 19:59:00 iMac kernel: [    0.806067] usb usb1: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  6 19:59:00 iMac kernel: [    0.806068] usb usb1: SerialNumber: 0000:00:1a.7
Jun  6 19:59:00 iMac kernel: [    0.806186] hub 1-0:1.0: USB hub found
Jun  6 19:59:00 iMac kernel: [    0.806191] hub 1-0:1.0: 6 ports detected
Jun  6 19:59:00 iMac kernel: [    0.806386] ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun  6 19:59:00 iMac kernel: [    0.806390] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jun  6 19:59:00 iMac kernel: [    0.806400] ehci-pci 0000:00:1d.7: debug port 2
Jun  6 19:59:00 iMac kernel: [    0.810315] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
Jun  6 19:59:00 iMac kernel: [    0.810331] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd0705800
Jun  6 19:59:00 iMac kernel: [    0.822059] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun  6 19:59:00 iMac kernel: [    0.822116] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Jun  6 19:59:00 iMac kernel: [    0.822119] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  6 19:59:00 iMac kernel: [    0.822123] usb usb2: Product: EHCI Host Controller
Jun  6 19:59:00 iMac kernel: [    0.822126] usb usb2: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  6 19:59:00 iMac kernel: [    0.822129] usb usb2: SerialNumber: 0000:00:1d.7
Jun  6 19:59:00 iMac kernel: [    0.822438] hub 2-0:1.0: USB hub found
Jun  6 19:59:00 iMac kernel: [    0.822449] hub 2-0:1.0: 8 ports detected
Jun  6 19:59:00 iMac kernel: [    0.822594] ehci-platform: EHCI generic platform driver
Jun  6 19:59:00 iMac kernel: [    0.822601] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun  6 19:59:00 iMac kernel: [    0.822604] ohci-pci: OHCI PCI platform driver
Jun  6 19:59:00 iMac kernel: [    0.822612] ohci-platform: OHCI generic platform driver
Jun  6 19:59:00 iMac kernel: [    0.822617] uhci_hcd: USB Universal Host Controller Interface driver
Jun  6 19:59:00 iMac kernel: [    0.822696] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun  6 19:59:00 iMac kernel: [    0.822700] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jun  6 19:59:00 iMac kernel: [    0.822705] uhci_hcd 0000:00:1a.0: detected 2 ports
Jun  6 19:59:00 iMac kernel: [    0.822730] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00003060
Jun  6 19:59:00 iMac kernel: [    0.822760] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Jun  6 19:59:00 iMac kernel: [    0.822762] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  6 19:59:00 iMac kernel: [    0.822763] usb usb3: Product: UHCI Host Controller
Jun  6 19:59:00 iMac kernel: [    0.822764] usb usb3: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  6 19:59:00 iMac kernel: [    0.822765] usb usb3: SerialNumber: 0000:00:1a.0
Jun  6 19:59:00 iMac kernel: [    0.823027] hub 3-0:1.0: USB hub found
Jun  6 19:59:00 iMac kernel: [    0.823045] hub 3-0:1.0: 2 ports detected
Jun  6 19:59:00 iMac kernel: [    0.823185] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun  6 19:59:00 iMac kernel: [    0.823189] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun  6 19:59:00 iMac kernel: [    0.823194] uhci_hcd 0000:00:1d.0: detected 2 ports
Jun  6 19:59:00 iMac kernel: [    0.823209] uhci_hcd 0000:00:1d.0: irq 19, io base 0x00003040
Jun  6 19:59:00 iMac kernel: [    0.823240] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Jun  6 19:59:00 iMac kernel: [    0.823241] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  6 19:59:00 iMac kernel: [    0.823242] usb usb4: Product: UHCI Host Controller
Jun  6 19:59:00 iMac kernel: [    0.823243] usb usb4: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  6 19:59:00 iMac kernel: [    0.823244] usb usb4: SerialNumber: 0000:00:1d.0
Jun  6 19:59:00 iMac kernel: [    0.823504] hub 4-0:1.0: USB hub found
Jun  6 19:59:00 iMac kernel: [    0.823514] hub 4-0:1.0: 2 ports detected
Jun  6 19:59:00 iMac kernel: [    0.823621] i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun  6 19:59:00 iMac kernel: [    1.639016] usb 1-1: new high-speed USB device number 2 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    1.855238] i8042: No controller found
Jun  6 19:59:00 iMac kernel: [    1.855245] tsc: Refined TSC clocksource calibration: 2792.999 MHz
Jun  6 19:59:00 iMac kernel: [    1.855576] mousedev: PS/2 mouse device common for all mice
Jun  6 19:59:00 iMac kernel: [    1.856138] rtc_cmos 00:03: RTC can wake from S4
Jun  6 19:59:00 iMac kernel: [    1.856313] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun  6 19:59:00 iMac kernel: [    1.856337] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jun  6 19:59:00 iMac kernel: [    1.856386] device-mapper: uevent: version 1.0.3
Jun  6 19:59:00 iMac kernel: [    1.856525] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
Jun  6 19:59:00 iMac kernel: [    1.856537] ledtrig-cpu: registered to indicate activity on CPUs
Jun  6 19:59:00 iMac kernel: [    1.856612] TCP: cubic registered
Jun  6 19:59:00 iMac kernel: [    1.856694] NET: Registered protocol family 10
Jun  6 19:59:00 iMac kernel: [    1.856903] NET: Registered protocol family 17
Jun  6 19:59:00 iMac kernel: [    1.856912] Key type dns_resolver registered
Jun  6 19:59:00 iMac kernel: [    1.857295] Loading compiled-in X.509 certificates
Jun  6 19:59:00 iMac kernel: [    1.858015] Loaded X.509 cert 'Magrathea: Glacier signing key: c284edaccf0b473652c34d23bec356944236e63b'
Jun  6 19:59:00 iMac kernel: [    1.858030] registered taskstats version 1
Jun  6 19:59:00 iMac kernel: [    1.861962] Key type trusted registered
Jun  6 19:59:00 iMac kernel: [    1.867495] usb 1-1: New USB device found, idVendor=0424, idProduct=2514
Jun  6 19:59:00 iMac kernel: [    1.867501] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  6 19:59:00 iMac kernel: [    1.867932] hub 1-1:1.0: USB hub found
Jun  6 19:59:00 iMac kernel: [    1.868188] hub 1-1:1.0: 4 ports detected
Jun  6 19:59:00 iMac kernel: [    1.869861] Key type encrypted registered
Jun  6 19:59:00 iMac kernel: [    1.869872] AppArmor: AppArmor sha1 policy hashing enabled
Jun  6 19:59:00 iMac kernel: [    1.869877] ima: No TPM chip found, activating TPM-bypass!
Jun  6 19:59:00 iMac kernel: [    1.869904] evm: HMAC attrs: 0x1
Jun  6 19:59:00 iMac kernel: [    1.870688]   Magic number: 3:695:996
Jun  6 19:59:00 iMac kernel: [    1.870752] memory memory39: hash matches
Jun  6 19:59:00 iMac kernel: [    1.870925] rtc_cmos 00:03: setting system clock to 2015-06-06 17:58:46 UTC (1433613526)
Jun  6 19:59:00 iMac kernel: [    1.872597] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jun  6 19:59:00 iMac kernel: [    1.872598] EDD information not available.
Jun  6 19:59:00 iMac kernel: [    1.872650] PM: Hibernation image not present or could not be loaded.
Jun  6 19:59:00 iMac kernel: [    1.979401] usb 2-1: new high-speed USB device number 2 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    2.111923] usb 2-1: New USB device found, idVendor=0424, idProduct=2514
Jun  6 19:59:00 iMac kernel: [    2.111929] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  6 19:59:00 iMac kernel: [    2.112471] hub 2-1:1.0: USB hub found
Jun  6 19:59:00 iMac kernel: [    2.112668] hub 2-1:1.0: 4 ports detected
Jun  6 19:59:00 iMac kernel: [    2.139461] ata1.01: failed to resume link (SControl 0)
Jun  6 19:59:00 iMac kernel: [    2.199590] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    2.294323] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500
Jun  6 19:59:00 iMac kernel: [    2.294329] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  6 19:59:00 iMac kernel: [    2.294332] usb 1-1.1: Product: BRCM2046 Hub
Jun  6 19:59:00 iMac kernel: [    2.294335] usb 1-1.1: Manufacturer: Apple Inc.
Jun  6 19:59:00 iMac kernel: [    2.294873] hub 1-1.1:1.0: USB hub found
Jun  6 19:59:00 iMac kernel: [    2.295062] hub 1-1.1:1.0: 3 ports detected
Jun  6 19:59:00 iMac kernel: [    2.295697] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun  6 19:59:00 iMac kernel: [    2.295711] ata1.01: SATA link down (SStatus 4 SControl 0)
Jun  6 19:59:00 iMac kernel: [    2.304360] ata1.00: ATA-8: WDC WD1001FALS-40U9B0, 20.04F20, max UDMA/133
Jun  6 19:59:00 iMac kernel: [    2.304366] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun  6 19:59:00 iMac kernel: [    2.312425] ata1.00: configured for UDMA/133
Jun  6 19:59:00 iMac kernel: [    2.312692] scsi 0:0:0:0: Direct-Access     ATA      WDC WD1001FALS-4 4F20 PQ: 0 ANSI: 5
Jun  6 19:59:00 iMac kernel: [    2.313367] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun  6 19:59:00 iMac kernel: [    2.313420] sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun  6 19:59:00 iMac kernel: [    2.313424] sd 0:0:0:0: [sda] Write Protect is off
Jun  6 19:59:00 iMac kernel: [    2.313426] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun  6 19:59:00 iMac kernel: [    2.313437] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun  6 19:59:00 iMac kernel: [    2.367759] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    2.370331]  sda: sda1 sda2 sda3
Jun  6 19:59:00 iMac kernel: [    2.371173] sd 0:0:0:0: [sda] Attached SCSI disk
Jun  6 19:59:00 iMac kernel: [    2.464454] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=8403
Jun  6 19:59:00 iMac kernel: [    2.464460] usb 1-1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=2
Jun  6 19:59:00 iMac kernel: [    2.464464] usb 1-1.2: Product: Card Reader
Jun  6 19:59:00 iMac kernel: [    2.464467] usb 1-1.2: Manufacturer: Apple
Jun  6 19:59:00 iMac kernel: [    2.464469] usb 1-1.2: SerialNumber: 000000009833
Jun  6 19:59:00 iMac kernel: [    2.551921] usb 1-1.4: new high-speed USB device number 5 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    2.555966] ata2.01: failed to resume link (SControl 0)
Jun  6 19:59:00 iMac kernel: [    2.652523] usb 1-1.4: New USB device found, idVendor=05ac, idProduct=1006
Jun  6 19:59:00 iMac kernel: [    2.652527] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  6 19:59:00 iMac kernel: [    2.652530] usb 1-1.4: Product: Keyboard Hub
Jun  6 19:59:00 iMac kernel: [    2.652533] usb 1-1.4: Manufacturer: Apple, Inc.
Jun  6 19:59:00 iMac kernel: [    2.652536] usb 1-1.4: SerialNumber: 000000000000
Jun  6 19:59:00 iMac kernel: [    2.652824] hub 1-1.4:1.0: USB hub found
Jun  6 19:59:00 iMac kernel: [    2.652895] hub 1-1.4:1.0: 3 ports detected
Jun  6 19:59:00 iMac kernel: [    2.712168] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun  6 19:59:00 iMac kernel: [    2.712180] ata2.01: SATA link down (SStatus 4 SControl 0)
Jun  6 19:59:00 iMac kernel: [    2.712189] ata2.01: link offline, clearing class 3 to NONE
Jun  6 19:59:00 iMac kernel: [    2.720339] ata2.00: ATAPI: OPTIARC DVD RW AD-5680H, 3AHB, max UDMA/100
Jun  6 19:59:00 iMac kernel: [    2.736309] ata2.00: configured for UDMA/100
Jun  6 19:59:00 iMac kernel: [    2.740119] usb 2-1.1: new high-speed USB device number 3 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    2.752989] scsi 1:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5680H  3AHB PQ: 0 ANSI: 5
Jun  6 19:59:00 iMac kernel: [    2.792076] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
Jun  6 19:59:00 iMac kernel: [    2.792081] cdrom: Uniform CD-ROM driver Revision: 3.20
Jun  6 19:59:00 iMac kernel: [    2.792419] sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun  6 19:59:00 iMac kernel: [    2.792687] sr 1:0:0:0: Attached scsi generic sg1 type 5
Jun  6 19:59:00 iMac kernel: [    2.794173] Freeing unused kernel memory: 1352K (ffffffff81d1c000 - ffffffff81e6e000)
Jun  6 19:59:00 iMac kernel: [    2.794175] Write protecting the kernel read-only data: 12288k
Jun  6 19:59:00 iMac kernel: [    2.795707] Freeing unused kernel memory: 556K (ffff880001775000 - ffff880001800000)
Jun  6 19:59:00 iMac kernel: [    2.796897] Freeing unused kernel memory: 500K (ffff880001b83000 - ffff880001c00000)
Jun  6 19:59:00 iMac kernel: [    2.828001] pps_core: LinuxPPS API ver. 1 registered
Jun  6 19:59:00 iMac kernel: [    2.828003] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun  6 19:59:00 iMac kernel: [    2.829222] PTP clock support registered
Jun  6 19:59:00 iMac kernel: [    2.830612] usb-storage 1-1.2:1.0: USB Mass Storage device detected
Jun  6 19:59:00 iMac kernel: [    2.830715] scsi2 : usb-storage 1-1.2:1.0
Jun  6 19:59:00 iMac kernel: [    2.830778] usbcore: registered new interface driver usb-storage
Jun  6 19:59:00 iMac kernel: [    2.831946] tg3.c:v3.137 (May 11, 2014)
Jun  6 19:59:00 iMac kernel: [    2.832329] usbcore: registered new interface driver uas
Jun  6 19:59:00 iMac kernel: [    2.852533] usb 2-1.1: New USB device found, idVendor=05ac, idProduct=8502
Jun  6 19:59:00 iMac kernel: [    2.852536] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  6 19:59:00 iMac kernel: [    2.852538] usb 2-1.1: Product: Built-in iSight
Jun  6 19:59:00 iMac kernel: [    2.852539] usb 2-1.1: Manufacturer: Apple Inc.
Jun  6 19:59:00 iMac kernel: [    2.852540] usb 2-1.1: SerialNumber: 8T9BKB2B577K3L00
Jun  6 19:59:00 iMac kernel: [    2.855821] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM95764m) rev 5784100] (PCI Express) MAC address d4:9a:20:d1:18:0a
Jun  6 19:59:00 iMac kernel: [    2.855823] tg3 0000:02:00.0 eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
Jun  6 19:59:00 iMac kernel: [    2.855825] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
Jun  6 19:59:00 iMac kernel: [    2.855827] tg3 0000:02:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
Jun  6 19:59:00 iMac kernel: [    2.856166] Switched to clocksource tsc
Jun  6 19:59:00 iMac kernel: [    2.888168] firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x2
Jun  6 19:59:00 iMac kernel: [    2.928356] usb 2-1.2: new low-speed USB device number 4 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    3.042169] usb 2-1.2: New USB device found, idVendor=05ac, idProduct=8242
Jun  6 19:59:00 iMac kernel: [    3.042171] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  6 19:59:00 iMac kernel: [    3.042173] usb 2-1.2: Product: IR Receiver
Jun  6 19:59:00 iMac kernel: [    3.042174] usb 2-1.2: Manufacturer: Apple Computer, Inc.
Jun  6 19:59:00 iMac kernel: [    3.116517] usb 2-1.4: new low-speed USB device number 5 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    3.239287] usb 2-1.4: New USB device found, idVendor=045e, idProduct=0040
Jun  6 19:59:00 iMac kernel: [    3.239290] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  6 19:59:00 iMac kernel: [    3.239291] usb 2-1.4: Product: Microsoft Wheel Mouse Optical®
Jun  6 19:59:00 iMac kernel: [    3.239292] usb 2-1.4: Manufacturer: Microsoft
Jun  6 19:59:00 iMac kernel: [    3.244336] hidraw: raw HID events driver (C) Jiri Kosina
Jun  6 19:59:00 iMac kernel: [    3.254094] usbcore: registered new interface driver usbhid
Jun  6 19:59:00 iMac kernel: [    3.254096] usbhid: USB HID core driver
Jun  6 19:59:00 iMac kernel: [    3.255677] input: Microsoft Microsoft Wheel Mouse Optical® as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.4/2-1.4:1.0/0003:045E:0040.0002/input/input3
Jun  6 19:59:00 iMac kernel: [    3.255764] hid-generic 0003:045E:0040.0002: input,hidraw0: USB HID v1.00 Mouse [Microsoft Microsoft Wheel Mouse Optical®] on usb-0000:00:1d.7-1.4/input0
Jun  6 19:59:00 iMac kernel: [    3.298532] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun  6 19:59:00 iMac kernel: [    3.312880] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    3.389036] firewire_core 0000:05:00.0: created device fw0: GUID d49a20fffecbb5b6, S800
Jun  6 19:59:00 iMac kernel: [    3.396801] firewire_core 0000:05:00.0: created device fw1: GUID 0001db01001234ee, S800
Jun  6 19:59:00 iMac kernel: [    3.396807] firewire_core 0000:05:00.0: phy config: new root=ffc0, gap_count=5
Jun  6 19:59:00 iMac kernel: [    3.409689] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215
Jun  6 19:59:00 iMac kernel: [    3.409695] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  6 19:59:00 iMac kernel: [    3.409699] usb 1-1.1.1: Product: Bluetooth USB Host Controller
Jun  6 19:59:00 iMac kernel: [    3.409702] usb 1-1.1.1: Manufacturer: Apple Inc.
Jun  6 19:59:00 iMac kernel: [    3.409705] usb 1-1.1.1: SerialNumber: 64B9E8E21B57
Jun  6 19:59:00 iMac kernel: [    3.481018] usb 1-1.1.2: new full-speed USB device number 7 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    3.576109] usb 1-1.1.2: New USB device found, idVendor=05ac, idProduct=820a
Jun  6 19:59:00 iMac kernel: [    3.576115] usb 1-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  6 19:59:00 iMac kernel: [    3.578099] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:05AC:820A.0003/input/input4
Jun  6 19:59:00 iMac kernel: [    3.578410] hid-generic 0003:05AC:820A.0003: input,hidraw1: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
Jun  6 19:59:00 iMac kernel: [    3.649240] usb 1-1.1.3: new full-speed USB device number 8 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    3.744907] usb 1-1.1.3: New USB device found, idVendor=05ac, idProduct=820b
Jun  6 19:59:00 iMac kernel: [    3.744913] usb 1-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  6 19:59:00 iMac kernel: [    3.746870] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.0/0003:05AC:820B.0004/input/input5
Jun  6 19:59:00 iMac kernel: [    3.747359] hid-generic 0003:05AC:820B.0004: input,hidraw2: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
Jun  6 19:59:00 iMac kernel: [    3.817409] usb 1-1.4.2: new low-speed USB device number 9 using ehci-pci
Jun  6 19:59:00 iMac kernel: [    3.831447] scsi 2:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
Jun  6 19:59:00 iMac kernel: [    3.831985] sd 2:0:0:0: Attached scsi generic sg2 type 0
Jun  6 19:59:00 iMac kernel: [    3.833641] sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jun  6 19:59:00 iMac kernel: [    3.915702] usb 1-1.4.2: New USB device found, idVendor=05ac, idProduct=0221
Jun  6 19:59:00 iMac kernel: [    3.915708] usb 1-1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  6 19:59:00 iMac kernel: [    3.915712] usb 1-1.4.2: Product: Apple Keyboard
Jun  6 19:59:00 iMac kernel: [    3.915715] usb 1-1.4.2: Manufacturer: Apple, Inc
Jun  6 19:59:00 iMac kernel: [    3.952296] random: init urandom read with 125 bits of entropy available
Jun  6 19:59:00 iMac kernel: [    3.973588] random: nonblocking pool is initialized
Jun  6 19:59:00 iMac kernel: [   11.321211] Adding 8377340k swap on /dev/sda3.  Priority:-1 extents:1 across:8377340k FS
Jun  6 19:59:00 iMac kernel: [   12.128500] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun  6 19:59:00 iMac kernel: [   12.135962] lp: driver loaded but no devices found
Jun  6 19:59:00 iMac kernel: [   12.139913] [drm] Initialized drm 1.1.0 20060810
Jun  6 19:59:00 iMac kernel: [   12.139973] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
Jun  6 19:59:00 iMac kernel: [   12.139980] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  6 19:59:00 iMac kernel: [   12.139984] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  6 19:59:00 iMac kernel: [   12.139988] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  6 19:59:00 iMac kernel: [   12.139989] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  6 19:59:00 iMac kernel: [   12.139993] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  6 19:59:00 iMac kernel: [   12.139994] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  6 19:59:00 iMac kernel: [   12.139998] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  6 19:59:00 iMac kernel: [   12.139999] lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun  6 19:59:00 iMac kernel: [   12.143714] ppdev: user-space parallel port driver
Jun  6 19:59:00 iMac kernel: [   12.143884] cfg80211: Calling CRDA to update world regulatory domain
Jun  6 19:59:00 iMac kernel: [   12.145947] intel ips 0000:00:1f.6: Non-IPS CPU detected.
Jun  6 19:59:00 iMac kernel: [   12.145949] intel ips 0000:00:1f.6: IPS not supported on this CPU
Jun  6 19:59:00 iMac kernel: [   12.151363] EDAC MC: Ver: 3.0.0
Jun  6 19:59:00 iMac kernel: [   12.153497] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (POLLED)
Jun  6 19:59:00 iMac kernel: [   12.153564] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jun  6 19:59:00 iMac kernel: [   12.153722] EDAC i7core: Driver loaded, 1 memory controller(s) found.
Jun  6 19:59:00 iMac kernel: [   12.184431] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
Jun  6 19:59:00 iMac kernel: [   12.184558] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
Jun  6 19:59:00 iMac kernel: [   12.185965] snd_hda_intel 0000:01:00.1: irq 46 for MSI/MSI-X
Jun  6 19:59:00 iMac kernel: [   12.189922] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jun  6 19:59:00 iMac kernel: [   12.199674] sound hdaudioC0D0: autoconfig: line_outs=2 (0xa/0xb/0x0/0x0/0x0) type:speaker
Jun  6 19:59:00 iMac kernel: [   12.199678] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun  6 19:59:00 iMac kernel: [   12.199681] sound hdaudioC0D0:    hp_outs=1 (0x9/0x0/0x0/0x0/0x0)
Jun  6 19:59:00 iMac kernel: [   12.199683] sound hdaudioC0D0:    mono: mono_out=0x0
Jun  6 19:59:00 iMac kernel: [   12.199685] sound hdaudioC0D0:    dig-out=0x10/0x0
Jun  6 19:59:00 iMac kernel: [   12.199686] sound hdaudioC0D0:    inputs:
Jun  6 19:59:00 iMac kernel: [   12.199689] sound hdaudioC0D0:      Mic=0xd
Jun  6 19:59:00 iMac kernel: [   12.199691] sound hdaudioC0D0:      Line=0xc
Jun  6 19:59:00 iMac kernel: [   12.199692] sound hdaudioC0D0:    dig-in=0xf
Jun  6 19:59:00 iMac kernel: [   12.203214] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card1/input6
Jun  6 19:59:00 iMac kernel: [   12.204140] input: HDA Intel MID Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
Jun  6 19:59:00 iMac kernel: [   12.204236] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
Jun  6 19:59:00 iMac kernel: [   12.204331] input: HDA Intel MID SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
Jun  6 19:59:00 iMac kernel: [   12.221370] scsi3 : SBP-2 IEEE-1394
Jun  6 19:59:00 iMac kernel: [   12.430023] [drm:radeon_init] *ERROR* No UMS support in radeon module!
Jun  6 19:59:00 iMac kernel: [   12.454370] applesmc: key=297 fan=3 temp=36 index=35 acc=0 lux=2 kbd=0
Jun  6 19:59:00 iMac kernel: [   12.610144] ath: EEPROM regdomain: 0x37
Jun  6 19:59:00 iMac kernel: [   12.610146] ath: EEPROM indicates we should expect a direct regpair map
Jun  6 19:59:00 iMac kernel: [   12.610147] ath: Country alpha2 being used: AW
Jun  6 19:59:00 iMac kernel: [   12.610148] ath: Regpair used: 0x37
Jun  6 19:59:00 iMac kernel: [   12.618924] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Jun  6 19:59:00 iMac kernel: [   12.619177] cfg80211: Calling CRDA to update world regulatory domain
Jun  6 19:59:00 iMac kernel: [   12.619214] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffc90011a00000, irq=17
Jun  6 19:59:00 iMac kernel: [   12.717704] firewire_sbp2 fw1.0: logged in to LUN 0000 (0 retries)
Jun  6 19:59:00 iMac kernel: [   12.856817] cfg80211: World regulatory domain updated:
Jun  6 19:59:00 iMac kernel: [   12.856819] cfg80211:  DFS Master region: unset
Jun  6 19:59:00 iMac kernel: [   12.856820] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  6 19:59:00 iMac kernel: [   12.856822] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  6 19:59:00 iMac kernel: [   12.856823] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  6 19:59:00 iMac kernel: [   12.856824] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  6 19:59:00 iMac kernel: [   12.856826] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  6 19:59:00 iMac kernel: [   12.856827] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  6 19:59:00 iMac kernel: [   12.856936] cfg80211: Calling CRDA for country: AW
Jun  6 19:59:00 iMac kernel: [   12.860309] cfg80211: Regulatory domain changed to country: AW
Jun  6 19:59:00 iMac kernel: [   12.860311] cfg80211:  DFS Master region: unset
Jun  6 19:59:00 iMac kernel: [   12.860311] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  6 19:59:00 iMac kernel: [   12.860313] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  6 19:59:00 iMac kernel: [   12.860314] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  6 19:59:00 iMac kernel: [   12.860315] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
Jun  6 19:59:00 iMac kernel: [   12.860316] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm), (0 s)
Jun  6 19:59:00 iMac kernel: [   13.375702] audit: type=1400 audit(1433613537.988:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=522 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.375708] audit: type=1400 audit(1433613537.988:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=522 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.375711] audit: type=1400 audit(1433613537.988:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=522 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.376027] audit: type=1400 audit(1433613537.988:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=522 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.376031] audit: type=1400 audit(1433613537.988:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=522 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.376184] audit: type=1400 audit(1433613537.988:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=493 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.376190] audit: type=1400 audit(1433613537.988:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=493 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.376195] audit: type=1400 audit(1433613537.988:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=493 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.376201] audit: type=1400 audit(1433613537.988:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=494 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.376206] audit: type=1400 audit(1433613537.988:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=494 comm="apparmor_parser"
Jun  6 19:59:00 iMac kernel: [   13.606578] media: Linux media interface: v0.10
Jun  6 19:59:00 iMac kernel: [   13.613447] Linux video capture interface: v2.00
Jun  6 19:59:00 iMac kernel: [   13.622708] Bluetooth: Core ver 2.19
Jun  6 19:59:00 iMac kernel: [   13.622728] NET: Registered protocol family 31
Jun  6 19:59:00 iMac kernel: [   13.622730] Bluetooth: HCI device and connection manager initialized
Jun  6 19:59:00 iMac kernel: [   13.622935] Bluetooth: HCI socket layer initialized
Jun  6 19:59:00 iMac kernel: [   13.622939] Bluetooth: L2CAP socket layer initialized
Jun  6 19:59:00 iMac kernel: [   13.622949] Bluetooth: SCO socket layer initialized
Jun  6 19:59:00 iMac kernel: [   13.625707] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.0/0003:05AC:0221.0005/input/input10
Jun  6 19:59:00 iMac kernel: [   13.625822] apple 0003:05AC:0221.0005: input,hidraw3: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input0
Jun  6 19:59:00 iMac kernel: [   13.626836] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.2/2-1.2:1.0/0003:05AC:8242.0001/input/input11
Jun  6 19:59:00 iMac kernel: [   13.626975] appleir 0003:05AC:8242.0001: input,hiddev0,hidraw4: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
Jun  6 19:59:00 iMac kernel: [   13.627001] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.1/0003:05AC:0221.0006/input/input12
Jun  6 19:59:00 iMac kernel: [   13.627205] apple 0003:05AC:0221.0006: input,hidraw5: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input1
Jun  6 19:59:00 iMac kernel: [   13.628780] usbcore: registered new interface driver btusb
Jun  6 19:59:00 iMac kernel: [   13.635434] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8502)
Jun  6 19:59:00 iMac kernel: [   13.640178] input: Built-in iSight as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1:1.0/input/input13
Jun  6 19:59:00 iMac kernel: [   13.640243] usbcore: registered new interface driver uvcvideo
Jun  6 19:59:00 iMac kernel: [   13.640244] USB Video Class driver (1.1.1)
Jun  6 19:59:00 iMac kernel: [   13.738707] usb 1-1.1.2: USB disconnect, device number 7
Jun  6 19:59:00 iMac kernel: [   13.895738] usb 1-1.1.3: USB disconnect, device number 8
Jun  6 19:59:00 iMac kernel: [   14.613110] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
Jun  6 19:59:01 iMac kernel: [   16.596165] Bluetooth: RFCOMM TTY layer initialized
Jun  6 19:59:01 iMac kernel: [   16.596181] Bluetooth: RFCOMM socket layer initialized
Jun  6 19:59:01 iMac kernel: [   16.596192] Bluetooth: RFCOMM ver 1.11
Jun  6 19:59:01 iMac kernel: [   16.772745] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jun  6 19:59:01 iMac kernel: [   16.772747] Bluetooth: BNEP filters: protocol multicast
Jun  6 19:59:01 iMac kernel: [   16.772753] Bluetooth: BNEP socket layer initialized
Jun  6 19:59:02 iMac kernel: [   18.219866] tg3 0000:02:00.0: irq 47 for MSI/MSI-X
Jun  6 19:59:03 iMac kernel: [   19.004618] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun  6 19:59:03 iMac kernel: [   19.020671] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Jun  6 19:59:04 iMac kernel: [   19.470026] audit_printk_skb: 33 callbacks suppressed
Jun  6 19:59:04 iMac kernel: [   19.470029] audit: type=1400 audit(1433613544.076:23): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1067 comm="apparmor_parser"
Jun  6 19:59:04 iMac kernel: [   19.470774] audit: type=1400 audit(1433613544.076:24): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=1062 comm="apparmor_parser"
Jun  6 19:59:04 iMac kernel: [   19.470781] audit: type=1400 audit(1433613544.076:25): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=1062 comm="apparmor_parser"
Jun  6 19:59:04 iMac kernel: [   19.470964] audit: type=1400 audit(1433613544.076:26): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1068 comm="apparmor_parser"
Jun  6 19:59:04 iMac kernel: [   19.470970] audit: type=1400 audit(1433613544.076:27): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1068 comm="apparmor_parser"
Jun  6 19:59:04 iMac kernel: [   19.471149] audit: type=1400 audit(1433613544.076:28): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="chromium" pid=1062 comm="apparmor_parser"
Jun  6 19:59:04 iMac kernel: [   19.471328] audit: type=1400 audit(1433613544.076:29): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1068 comm="apparmor_parser"
Jun  6 19:59:04 iMac kernel: [   19.471982] audit: type=1400 audit(1433613544.076:30): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=1070 comm="apparmor_parser"
Jun  6 19:59:04 iMac kernel: [   19.472386] audit: type=1400 audit(1433613544.076:31): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=1063 comm="apparmor_parser"
Jun  6 19:59:04 iMac kernel: [   19.472393] audit: type=1400 audit(1433613544.076:32): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1063 comm="apparmor_parser"
Jun  6 19:59:05 iMac kernel: [   20.575603] tg3 0000:02:00.0 eth0: Link is up at 100 Mbps, full duplex
Jun  6 19:59:05 iMac kernel: [   20.575609] tg3 0000:02:00.0 eth0: Flow control is on for TX and on for RX
Jun  6 19:59:05 iMac kernel: [   20.575622] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun  6 19:59:05 iMac kernel: [   21.102337] vboxdrv: module verification failed: signature and/or  required key missing - tainting kernel
Jun  6 19:59:05 iMac kernel: [   21.105415] vboxdrv: Found 8 processor cores.
Jun  6 19:59:05 iMac kernel: [   21.105671] vboxdrv: fAsync=0 offMin=0x147 offMax=0x267f
Jun  6 19:59:05 iMac kernel: [   21.105740] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
Jun  6 19:59:05 iMac kernel: [   21.105742] vboxdrv: Successfully loaded version 4.3.10_Ubuntu (interface 0x001a0007).
Jun  6 19:59:05 iMac kernel: [   21.116818] vboxpci: IOMMU not found (not registered)
Jun  6 19:59:09 iMac kernel: [   24.500628] scsi 3:0:0:0: Direct-Access     SAMSUNG  HD103UJ          1AA0 PQ: 0 ANSI: 4
Jun  6 19:59:09 iMac kernel: [   24.522306] sd 3:0:0:0: Attached scsi generic sg3 type 0
Jun  6 19:59:09 iMac kernel: [   24.523670] sd 3:0:0:0: [sdc] 3907049984 512-byte logical blocks: (2.00 TB/1.81 TiB)
Jun  6 19:59:09 iMac kernel: [   24.524834] sd 3:0:0:0: [sdc] Write Protect is off
Jun  6 19:59:09 iMac kernel: [   24.524837] sd 3:0:0:0: [sdc] Mode Sense: 10 00 00 00
Jun  6 19:59:09 iMac kernel: [   24.525622] sd 3:0:0:0: [sdc] Cache data unavailable
Jun  6 19:59:09 iMac kernel: [   24.525624] sd 3:0:0:0: [sdc] Assuming drive cache: write through
Jun  6 19:59:09 iMac kernel: [   24.542901]  sdc: sdc1
Jun  6 19:59:09 iMac kernel: [   24.549442] sd 3:0:0:0: [sdc] Attached SCSI disk
Jun  6 19:59:24 iMac kernel: [   39.654537] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
Jun  6 19:59:31 iMac kernel: [   46.542257] audit_printk_skb: 123 callbacks suppressed
Jun  6 19:59:31 iMac kernel: [   46.542259] audit: type=1400 audit(1433613571.125:74): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=2433 comm="apparmor_parser"
Jun  6 19:59:31 iMac kernel: [   46.542265] audit: type=1400 audit(1433613571.125:75): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2433 comm="apparmor_parser"
Jun  6 19:59:31 iMac kernel: [   46.542616] audit: type=1400 audit(1433613571.129:76): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2433 comm="apparmor_parser"
Jun  6 19:59:36 iMac kernel: [   51.481171] usb 1-1.4.3: new high-speed USB device number 10 using ehci-pci
Jun  6 19:59:36 iMac kernel: [   51.574818] usb 1-1.4.3: New USB device found, idVendor=8644, idProduct=800a
Jun  6 19:59:36 iMac kernel: [   51.574825] usb 1-1.4.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  6 19:59:36 iMac kernel: [   51.574829] usb 1-1.4.3: Product: USB Flash Disk  
Jun  6 19:59:36 iMac kernel: [   51.574832] usb 1-1.4.3: Manufacturer: General 
Jun  6 19:59:36 iMac kernel: [   51.574835] usb 1-1.4.3: SerialNumber: NC00000000010134
Jun  6 19:59:36 iMac kernel: [   51.575245] usb-storage 1-1.4.3:1.0: USB Mass Storage device detected
Jun  6 19:59:36 iMac kernel: [   51.575456] scsi4 : usb-storage 1-1.4.3:1.0
Jun  6 19:59:37 iMac kernel: [   52.575171] scsi 4:0:0:0: Direct-Access     General  USB Flash Disk   1.00 PQ: 0 ANSI: 2
Jun  6 19:59:37 iMac kernel: [   52.575739] sd 4:0:0:0: Attached scsi generic sg4 type 0
Jun  6 19:59:37 iMac kernel: [   52.576305] sd 4:0:0:0: [sdd] 1968129 512-byte logical blocks: (1.00 GB/961 MiB)
Jun  6 19:59:37 iMac kernel: [   52.576908] sd 4:0:0:0: [sdd] Write Protect is off
Jun  6 19:59:37 iMac kernel: [   52.576911] sd 4:0:0:0: [sdd] Mode Sense: 0b 00 00 08
Jun  6 19:59:37 iMac kernel: [   52.577490] sd 4:0:0:0: [sdd] No Caching mode page found
Jun  6 19:59:37 iMac kernel: [   52.577493] sd 4:0:0:0: [sdd] Assuming drive cache: write through
Jun  6 19:59:37 iMac kernel: [   52.584881]  sdd: sdd1
Jun  6 19:59:37 iMac kernel: [   52.587967] sd 4:0:0:0: [sdd] Attached SCSI removable disk
Jun  6 20:00:01 iMac kernel: [   77.058192] sdd: detected capacity change from 1007682048 to 0
Jun  7 12:49:50 iMac kernel: [    0.000000] Initializing cgroup subsys cpuset
Jun  7 12:49:50 iMac kernel: [    0.000000] Initializing cgroup subsys cpu
Jun  7 12:49:50 iMac kernel: [    0.000000] Initializing cgroup subsys cpuacct
Jun  7 12:49:50 iMac kernel: [    0.000000] Linux version 3.16.0-38-generic (buildd@allspice) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #52~14.04.1-Ubuntu SMP Fri May 8 09:43:57 UTC 2015 (Ubuntu 3.16.0-38.52~14.04.1-generic 3.16.7-ckt10)
Jun  7 12:49:50 iMac kernel: [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=a0523afa-1512-41aa-8660-804fbe235596 ro quiet splash vt.handoff=7
Jun  7 12:49:50 iMac kernel: [    0.000000] KERNEL supported cpus:
Jun  7 12:49:50 iMac kernel: [    0.000000]   Intel GenuineIntel
Jun  7 12:49:50 iMac kernel: [    0.000000]   AMD AuthenticAMD
Jun  7 12:49:50 iMac kernel: [    0.000000]   Centaur CentaurHauls
Jun  7 12:49:50 iMac kernel: [    0.000000] Disabled fast string operations
Jun  7 12:49:50 iMac kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf65cfff] usable
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf65d000-0x00000000bf6eefff] ACPI NVS
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf6ef000-0x00000000bf7f5fff] ACPI data
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7f6000-0x00000000bf7fefff] reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7ff000-0x00000000bf7fffff] ACPI data
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
Jun  7 12:49:50 iMac kernel: [    0.000000] NX (Execute Disable) protection: active
Jun  7 12:49:50 iMac kernel: [    0.000000] SMBIOS 2.4 present.
Jun  7 12:49:50 iMac kernel: [    0.000000] DMI: Apple Inc. iMac11,1/Mac-F2268DAE, BIOS    IM111.88Z.0034.B02.1003171314 03/17/10
Jun  7 12:49:50 iMac kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun  7 12:49:50 iMac kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Jun  7 12:49:50 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  7 12:49:50 iMac kernel: [    0.000000] e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000
Jun  7 12:49:50 iMac kernel: [    0.000000] MTRR default type: write-back
Jun  7 12:49:50 iMac kernel: [    0.000000] MTRR fixed ranges enabled:
Jun  7 12:49:50 iMac kernel: [    0.000000]   00000-9FFFF write-back
Jun  7 12:49:50 iMac kernel: [    0.000000]   A0000-BFFFF uncachable
Jun  7 12:49:50 iMac kernel: [    0.000000]   C0000-DFFFF write-protect
Jun  7 12:49:50 iMac kernel: [    0.000000]   E0000-FFFFF uncachable
Jun  7 12:49:50 iMac kernel: [    0.000000] MTRR variable ranges enabled:
Jun  7 12:49:50 iMac kernel: [    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
Jun  7 12:49:50 iMac kernel: [    0.000000]   1 disabled
Jun  7 12:49:50 iMac kernel: [    0.000000]   2 disabled
Jun  7 12:49:50 iMac kernel: [    0.000000]   3 disabled
Jun  7 12:49:50 iMac kernel: [    0.000000]   4 disabled
Jun  7 12:49:50 iMac kernel: [    0.000000]   5 disabled
Jun  7 12:49:50 iMac kernel: [    0.000000]   6 disabled
Jun  7 12:49:50 iMac kernel: [    0.000000]   7 disabled
Jun  7 12:49:50 iMac kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun  7 12:49:50 iMac kernel: [    0.000000] e820: last_pfn = 0xbf65d max_arch_pfn = 0x400000000
Jun  7 12:49:50 iMac kernel: [    0.000000] Scanning 1 areas for low memory corruption
Jun  7 12:49:50 iMac kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
Jun  7 12:49:50 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
Jun  7 12:49:50 iMac kernel: [    0.000000]  [mem 0x00000000-0x000fffff] page 4k
Jun  7 12:49:50 iMac kernel: [    0.000000] BRK [0x01fbd000, 0x01fbdfff] PGTABLE
Jun  7 12:49:50 iMac kernel: [    0.000000] BRK [0x01fbe000, 0x01fbefff] PGTABLE
Jun  7 12:49:50 iMac kernel: [    0.000000] BRK [0x01fbf000, 0x01fbffff] PGTABLE
Jun  7 12:49:50 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23fe00000-0x23fffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000]  [mem 0x23fe00000-0x23fffffff] page 2M
Jun  7 12:49:50 iMac kernel: [    0.000000] BRK [0x01fc0000, 0x01fc0fff] PGTABLE
Jun  7 12:49:50 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23c000000-0x23fdfffff]
Jun  7 12:49:50 iMac kernel: [    0.000000]  [mem 0x23c000000-0x23fdfffff] page 2M
Jun  7 12:49:50 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000]  [mem 0x200000000-0x23bffffff] page 2M
Jun  7 12:49:50 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00100000-0xbf65cfff]
Jun  7 12:49:50 iMac kernel: [    0.000000]  [mem 0x00100000-0x001fffff] page 4k
Jun  7 12:49:50 iMac kernel: [    0.000000]  [mem 0x00200000-0xbf5fffff] page 2M
Jun  7 12:49:50 iMac kernel: [    0.000000]  [mem 0xbf600000-0xbf65cfff] page 4k
Jun  7 12:49:50 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
Jun  7 12:49:50 iMac kernel: [    0.000000] BRK [0x01fc1000, 0x01fc1fff] PGTABLE
Jun  7 12:49:50 iMac kernel: [    0.000000] BRK [0x01fc2000, 0x01fc2fff] PGTABLE
Jun  7 12:49:50 iMac kernel: [    0.000000] RAMDISK: [mem 0x35ad8000-0x36d63fff]
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: Early table checksum verification disabled
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 APPLE )
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: XSDT 0x00000000BF70E1C0 00008C (v01 APPLE  Apple00  00000034      01000013)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: FACP 0x00000000BF70B000 0000F4 (v04 APPLE  Apple00  00000034 Loki 0000005F)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: DSDT 0x00000000BF6FF000 0050F3 (v01 APPLE  iMac     00110001 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: FACS 0x00000000BF665000 000040
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: ASF! 0x00000000BF70D000 0000A5 (v32 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: HPET 0x00000000BF70A000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF709000 0000BC (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF708000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: MCFG 0x00000000BF707000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: SBST 0x00000000BF706000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: ECDT 0x00000000BF705000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FB000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FA000 000774 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6F8000 000A10 (v01 PmRef  CpuPm    00003000 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FE000 0000FA (v01 SataRe SataPri  00001000 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FD000 0000FA (v01 SataRe SataSec  00001000 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  7 12:49:50 iMac kernel: [    0.000000] No NUMA configuration found
Jun  7 12:49:50 iMac kernel: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] Initmem setup node 0 [mem 0x00000000-0x23fffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000]   NODE_DATA [mem 0x23fff6000-0x23fffafff]
Jun  7 12:49:50 iMac kernel: [    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237600000-ffff88023f5fffff] on node 0
Jun  7 12:49:50 iMac kernel: [    0.000000] Zone ranges:
Jun  7 12:49:50 iMac kernel: [    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000]   Normal   [mem 0x100000000-0x23fffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] Movable zone start for each node
Jun  7 12:49:50 iMac kernel: [    0.000000] Early memory node ranges
Jun  7 12:49:50 iMac kernel: [    0.000000]   node   0: [mem 0x00001000-0x0009efff]
Jun  7 12:49:50 iMac kernel: [    0.000000]   node   0: [mem 0x00100000-0xbf65cfff]
Jun  7 12:49:50 iMac kernel: [    0.000000]   node   0: [mem 0x100000000-0x23fffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] On node 0 totalpages: 2094587
Jun  7 12:49:50 iMac kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Jun  7 12:49:50 iMac kernel: [    0.000000]   DMA zone: 21 pages reserved
Jun  7 12:49:50 iMac kernel: [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
Jun  7 12:49:50 iMac kernel: [    0.000000]   DMA32 zone: 12186 pages used for memmap
Jun  7 12:49:50 iMac kernel: [    0.000000]   DMA32 zone: 779869 pages, LIFO batch:31
Jun  7 12:49:50 iMac kernel: [    0.000000]   Normal zone: 20480 pages used for memmap
Jun  7 12:49:50 iMac kernel: [    0.000000]   Normal zone: 1310720 pages, LIFO batch:31
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Jun  7 12:49:50 iMac kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: IRQ0 used by override.
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: IRQ2 used by override.
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: IRQ9 used by override.
Jun  7 12:49:50 iMac kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Jun  7 12:49:50 iMac kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun  7 12:49:50 iMac kernel: [    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jun  7 12:49:50 iMac kernel: [    0.000000] nr_irqs_gsi: 40
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf65d000-0xbf6eefff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf6ef000-0xbf7f5fff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7f6000-0xbf7fefff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7ff000-0xbf7fffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xbfffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed1afff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
Jun  7 12:49:50 iMac kernel: [    0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun  7 12:49:50 iMac kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Jun  7 12:49:50 iMac kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Jun  7 12:49:50 iMac kernel: [    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88023fc00000 s81408 r8192 d20992 u262144
Jun  7 12:49:50 iMac kernel: [    0.000000] pcpu-alloc: s81408 r8192 d20992 u262144 alloc=1*2097152
Jun  7 12:49:50 iMac kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Jun  7 12:49:50 iMac kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2061836
Jun  7 12:49:50 iMac kernel: [    0.000000] Policy zone: Normal
Jun  7 12:49:50 iMac kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=a0523afa-1512-41aa-8660-804fbe235596 ro quiet splash vt.handoff=7
Jun  7 12:49:50 iMac kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun  7 12:49:50 iMac kernel: [    0.000000] AGP: Checking aperture...
Jun  7 12:49:50 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  7 12:49:50 iMac kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Jun  7 12:49:50 iMac kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jun  7 12:49:50 iMac kernel: [    0.000000] Memory: 8144852K/8378348K available (7626K kernel code, 1131K rwdata, 3596K rodata, 1352K init, 1300K bss, 233496K reserved)
Jun  7 12:49:50 iMac kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jun  7 12:49:50 iMac kernel: [    0.000000] Hierarchical RCU implementation.
Jun  7 12:49:50 iMac kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Jun  7 12:49:50 iMac kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Jun  7 12:49:50 iMac kernel: [    0.000000] 	Offload RCU callbacks from all CPUs
Jun  7 12:49:50 iMac kernel: [    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
Jun  7 12:49:50 iMac kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jun  7 12:49:50 iMac kernel: [    0.000000] NR_IRQS:16640 nr_irqs:744 16
Jun  7 12:49:50 iMac kernel: [    0.000000] vt handoff: transparent VT on vt#7
Jun  7 12:49:50 iMac kernel: [    0.000000] Console: colour dummy device 80x25
Jun  7 12:49:50 iMac kernel: [    0.000000] console [tty0] enabled
Jun  7 12:49:50 iMac kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Jun  7 12:49:50 iMac kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun  7 12:49:50 iMac kernel: [    0.000000] hpet clockevent registered
Jun  7 12:49:50 iMac kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Jun  7 12:49:50 iMac kernel: [    0.000000] tsc: Detected 2792.755 MHz processor
Jun  7 12:49:50 iMac kernel: [    0.000030] Calibrating delay loop (skipped), value calculated using timer frequency.. 5585.51 BogoMIPS (lpj=11171020)
Jun  7 12:49:50 iMac kernel: [    0.000033] pid_max: default: 32768 minimum: 301
Jun  7 12:49:50 iMac kernel: [    0.000040] ACPI: Core revision 20140424
Jun  7 12:49:50 iMac kernel: [    0.004384] ACPI: All ACPI Tables successfully acquired
Jun  7 12:49:50 iMac kernel: [    0.004650] Security Framework initialized
Jun  7 12:49:50 iMac kernel: [    0.004669] AppArmor: AppArmor initialized
Jun  7 12:49:50 iMac kernel: [    0.004670] Yama: becoming mindful.
Jun  7 12:49:50 iMac kernel: [    0.005147] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun  7 12:49:50 iMac kernel: [    0.006853] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Jun  7 12:49:50 iMac kernel: [    0.007635] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  7 12:49:50 iMac kernel: [    0.007644] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  7 12:49:50 iMac kernel: [    0.007875] Initializing cgroup subsys memory
Jun  7 12:49:50 iMac kernel: [    0.007895] Initializing cgroup subsys devices
Jun  7 12:49:50 iMac kernel: [    0.007900] Initializing cgroup subsys freezer
Jun  7 12:49:50 iMac kernel: [    0.007903] Initializing cgroup subsys net_cls
Jun  7 12:49:50 iMac kernel: [    0.007907] Initializing cgroup subsys blkio
Jun  7 12:49:50 iMac kernel: [    0.007910] Initializing cgroup subsys perf_event
Jun  7 12:49:50 iMac kernel: [    0.007912] Initializing cgroup subsys net_prio
Jun  7 12:49:50 iMac kernel: [    0.007918] Initializing cgroup subsys hugetlb
Jun  7 12:49:50 iMac kernel: [    0.007937] Disabled fast string operations
Jun  7 12:49:50 iMac kernel: [    0.007938] CPU: Physical Processor ID: 0
Jun  7 12:49:50 iMac kernel: [    0.007939] CPU: Processor Core ID: 0
Jun  7 12:49:50 iMac kernel: [    0.007943] mce: CPU supports 9 MCE banks
Jun  7 12:49:50 iMac kernel: [    0.007951] CPU0: Thermal monitoring enabled (TM1)
Jun  7 12:49:50 iMac kernel: [    0.007959] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jun  7 12:49:50 iMac kernel: [    0.007959] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jun  7 12:49:50 iMac kernel: [    0.007959] tlb_flushall_shift: 6
Jun  7 12:49:50 iMac kernel: [    0.008046] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
Jun  7 12:49:50 iMac kernel: [    0.008720] ftrace: allocating 29244 entries in 115 pages
Jun  7 12:49:50 iMac kernel: [    0.020655] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun  7 12:49:50 iMac kernel: [    0.060377] smpboot: CPU0: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz (fam: 06, model: 1e, stepping: 05)
Jun  7 12:49:50 iMac kernel: [    0.165621] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
Jun  7 12:49:50 iMac kernel: [    0.165635] perf_event_intel: CPU erratum AAJ80 worked around
Jun  7 12:49:50 iMac kernel: [    0.165636] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
Jun  7 12:49:50 iMac kernel: [    0.165637] ... version:                3
Jun  7 12:49:50 iMac kernel: [    0.165638] ... bit width:              48
Jun  7 12:49:50 iMac kernel: [    0.165639] ... generic registers:      4
Jun  7 12:49:50 iMac kernel: [    0.165639] ... value mask:             0000ffffffffffff
Jun  7 12:49:50 iMac kernel: [    0.165640] ... max period:             000000007fffffff
Jun  7 12:49:50 iMac kernel: [    0.165641] ... fixed-purpose events:   3
Jun  7 12:49:50 iMac kernel: [    0.165641] ... event mask:             000000070000000f
Jun  7 12:49:50 iMac kernel: [    0.167198] x86: Booting SMP configuration:
Jun  7 12:49:50 iMac kernel: [    0.167200] .... node  #0, CPUs:      #1
Jun  7 12:49:50 iMac kernel: [    0.178294] Disabled fast string operations
Jun  7 12:49:50 iMac kernel: [    0.180488] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun  7 12:49:50 iMac kernel: [    0.180570]  #2
Jun  7 12:49:50 iMac kernel: [    0.191610] Disabled fast string operations
Jun  7 12:49:50 iMac kernel: [    0.193806]  #3<6>[    0.204846] Disabled fast string operations
Jun  7 12:49:50 iMac kernel: [    0.218077]  #4
Jun  7 12:49:50 iMac kernel: [    0.218077] Disabled fast string operations
Jun  7 12:49:50 iMac kernel: [    0.231306]  #5
Jun  7 12:49:50 iMac kernel: [    0.231307] Disabled fast string operations
Jun  7 12:49:50 iMac kernel: [    0.244534]  #6
Jun  7 12:49:50 iMac kernel: [    0.244534] Disabled fast string operations
Jun  7 12:49:50 iMac kernel: [    0.257768]  #7
Jun  7 12:49:50 iMac kernel: [    0.257768] Disabled fast string operations
Jun  7 12:49:50 iMac kernel: [    0.259885] x86: Booted up 1 node, 8 CPUs
Jun  7 12:49:50 iMac kernel: [    0.259888] smpboot: Total of 8 processors activated (44684.08 BogoMIPS)
Jun  7 12:49:50 iMac kernel: [    0.265224] devtmpfs: initialized
Jun  7 12:49:50 iMac kernel: [    0.268993] evm: security.selinux
Jun  7 12:49:50 iMac kernel: [    0.268995] evm: security.SMACK64
Jun  7 12:49:50 iMac kernel: [    0.268995] evm: security.SMACK64EXEC
Jun  7 12:49:50 iMac kernel: [    0.268996] evm: security.SMACK64TRANSMUTE
Jun  7 12:49:50 iMac kernel: [    0.268996] evm: security.SMACK64MMAP
Jun  7 12:49:50 iMac kernel: [    0.268997] evm: security.ima
Jun  7 12:49:50 iMac kernel: [    0.268998] evm: security.capability
Jun  7 12:49:50 iMac kernel: [    0.269042] PM: Registering ACPI NVS region [mem 0xbf65d000-0xbf6eefff] (598016 bytes)
Jun  7 12:49:50 iMac kernel: [    0.269826] pinctrl core: initialized pinctrl subsystem
Jun  7 12:49:50 iMac kernel: [    0.269888] regulator-dummy: no parameters
Jun  7 12:49:50 iMac kernel: [    0.269920] RTC time: 10:49:34, date: 06/07/15
Jun  7 12:49:50 iMac kernel: [    0.269961] NET: Registered protocol family 16
Jun  7 12:49:50 iMac kernel: [    0.270093] cpuidle: using governor ladder
Jun  7 12:49:50 iMac kernel: [    0.270095] cpuidle: using governor menu
Jun  7 12:49:50 iMac kernel: [    0.270137] ACPI: bus type PCI registered
Jun  7 12:49:50 iMac kernel: [    0.270138] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun  7 12:49:50 iMac kernel: [    0.270203] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jun  7 12:49:50 iMac kernel: [    0.270205] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jun  7 12:49:50 iMac kernel: [    0.270638] PCI: Using configuration type 1 for base access
Jun  7 12:49:50 iMac kernel: [    0.274149] ACPI: Added _OSI(Module Device)
Jun  7 12:49:50 iMac kernel: [    0.274151] ACPI: Added _OSI(Processor Device)
Jun  7 12:49:50 iMac kernel: [    0.274152] ACPI: Added _OSI(3.0 _SCP Extensions)
Jun  7 12:49:50 iMac kernel: [    0.274153] ACPI: Added _OSI(Processor Aggregator Device)
Jun  7 12:49:50 iMac kernel: [    0.274874] ACPI : EC: EC description table is found, configuring boot EC
Jun  7 12:49:50 iMac kernel: [    0.277719] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun  7 12:49:50 iMac kernel: [    0.278002] ACPI: Dynamic OEM Table Load:
Jun  7 12:49:50 iMac kernel: [    0.278009] ACPI: SSDT 0xFFFF880233FA8000 0004BD (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.278282] ACPI: Dynamic OEM Table Load:
Jun  7 12:49:50 iMac kernel: [    0.278287] ACPI: SSDT 0xFFFF880233FA8800 0006E5 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.285952] ACPI: Dynamic OEM Table Load:
Jun  7 12:49:50 iMac kernel: [    0.285957] ACPI: SSDT 0xFFFF880233C19000 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.289852] ACPI: Dynamic OEM Table Load:
Jun  7 12:49:50 iMac kernel: [    0.289857] ACPI: SSDT 0xFFFF880233F80A00 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
Jun  7 12:49:50 iMac kernel: [    0.294646] ACPI: Interpreter enabled
Jun  7 12:49:50 iMac kernel: [    0.294651] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
Jun  7 12:49:50 iMac kernel: [    0.294654] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
Jun  7 12:49:50 iMac kernel: [    0.294665] ACPI: (supports S0 S3 S4 S5)
Jun  7 12:49:50 iMac kernel: [    0.294666] ACPI: Using IOAPIC for interrupt routing
Jun  7 12:49:50 iMac kernel: [    0.294687] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun  7 12:49:50 iMac kernel: [    0.298255] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Jun  7 12:49:50 iMac kernel: [    0.298259] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  7 12:49:50 iMac kernel: [    0.298286] \_SB_.PCI0:_OSC invalid UUID
Jun  7 12:49:50 iMac kernel: [    0.298287] _OSC request data:1 1f 0 
Jun  7 12:49:50 iMac kernel: [    0.298290] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Jun  7 12:49:50 iMac kernel: [    0.298825] PCI host bridge to bus 0000:00
Jun  7 12:49:50 iMac kernel: [    0.298828] pci_bus 0000:00: root bus resource [bus 00-fe]
Jun  7 12:49:50 iMac kernel: [    0.298829] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
Jun  7 12:49:50 iMac kernel: [    0.298830] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
Jun  7 12:49:50 iMac kernel: [    0.298832] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Jun  7 12:49:50 iMac kernel: [    0.298833] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
Jun  7 12:49:50 iMac kernel: [    0.298841] pci 0000:00:00.0: [8086:d131] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.298930] pci 0000:00:03.0: [8086:d138] type 01 class 0x060400
Jun  7 12:49:50 iMac kernel: [    0.298977] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.299007] pci 0000:00:03.0: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.299042] pci 0000:00:08.0: [8086:d155] type 00 class 0x088000
Jun  7 12:49:50 iMac kernel: [    0.299129] pci 0000:00:08.1: [8086:d156] type 00 class 0x088000
Jun  7 12:49:50 iMac kernel: [    0.299214] pci 0000:00:08.2: [8086:d157] type 00 class 0x088000
Jun  7 12:49:50 iMac kernel: [    0.299292] pci 0000:00:08.3: [8086:d158] type 00 class 0x088000
Jun  7 12:49:50 iMac kernel: [    0.299365] pci 0000:00:10.0: [8086:d150] type 00 class 0x088000
Jun  7 12:49:50 iMac kernel: [    0.299435] pci 0000:00:10.1: [8086:d151] type 00 class 0x088000
Jun  7 12:49:50 iMac kernel: [    0.299518] pci 0000:00:1a.0: [8086:3b3b] type 00 class 0x0c0300
Jun  7 12:49:50 iMac kernel: [    0.299557] pci 0000:00:1a.0: reg 0x20: [io  0x3060-0x307f]
Jun  7 12:49:50 iMac kernel: [    0.299650] pci 0000:00:1a.7: [8086:3b3c] type 00 class 0x0c0320
Jun  7 12:49:50 iMac kernel: [    0.299669] pci 0000:00:1a.7: reg 0x10: [mem 0xd0705c00-0xd0705fff]
Jun  7 12:49:50 iMac kernel: [    0.299749] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.299794] pci 0000:00:1a.7: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.299832] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
Jun  7 12:49:50 iMac kernel: [    0.299847] pci 0000:00:1b.0: reg 0x10: [mem 0xd0700000-0xd0703fff 64bit]
Jun  7 12:49:50 iMac kernel: [    0.299913] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.299945] pci 0000:00:1b.0: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.299978] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
Jun  7 12:49:50 iMac kernel: [    0.300042] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.300074] pci 0000:00:1c.0: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.300108] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
Jun  7 12:49:50 iMac kernel: [    0.300172] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.300204] pci 0000:00:1c.1: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.300237] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
Jun  7 12:49:50 iMac kernel: [    0.300301] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.300333] pci 0000:00:1c.2: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.300366] pci 0000:00:1c.3: [8086:3b48] type 01 class 0x060400
Jun  7 12:49:50 iMac kernel: [    0.300425] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.300457] pci 0000:00:1c.3: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.300491] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
Jun  7 12:49:50 iMac kernel: [    0.300550] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.300614] pci 0000:00:1d.0: [8086:3b36] type 00 class 0x0c0300
Jun  7 12:49:50 iMac kernel: [    0.300652] pci 0000:00:1d.0: reg 0x20: [io  0x3040-0x305f]
Jun  7 12:49:50 iMac kernel: [    0.300745] pci 0000:00:1d.7: [8086:3b34] type 00 class 0x0c0320
Jun  7 12:49:50 iMac kernel: [    0.300764] pci 0000:00:1d.7: reg 0x10: [mem 0xd0705800-0xd0705bff]
Jun  7 12:49:50 iMac kernel: [    0.300845] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.300887] pci 0000:00:1d.7: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.300921] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jun  7 12:49:50 iMac kernel: [    0.301015] pci 0000:00:1f.0: [8086:3b02] type 00 class 0x060100
Jun  7 12:49:50 iMac kernel: [    0.301163] pci 0000:00:1f.2: [8086:3b20] type 00 class 0x01018f
Jun  7 12:49:50 iMac kernel: [    0.301177] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
Jun  7 12:49:50 iMac kernel: [    0.301183] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
Jun  7 12:49:50 iMac kernel: [    0.301190] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
Jun  7 12:49:50 iMac kernel: [    0.301196] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
Jun  7 12:49:50 iMac kernel: [    0.301202] pci 0000:00:1f.2: reg 0x20: [io  0x3020-0x302f]
Jun  7 12:49:50 iMac kernel: [    0.301209] pci 0000:00:1f.2: reg 0x24: [io  0xffe0-0xffef]
Jun  7 12:49:50 iMac kernel: [    0.301288] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
Jun  7 12:49:50 iMac kernel: [    0.301301] pci 0000:00:1f.3: reg 0x10: [mem 0xd0706000-0xd07060ff 64bit]
Jun  7 12:49:50 iMac kernel: [    0.301319] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Jun  7 12:49:50 iMac kernel: [    0.301389] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
Jun  7 12:49:50 iMac kernel: [    0.301410] pci 0000:00:1f.6: reg 0x10: [mem 0xd0704000-0xd0704fff 64bit]
Jun  7 12:49:50 iMac kernel: [    0.301571] pci 0000:01:00.0: [1002:944a] type 00 class 0x030000
Jun  7 12:49:50 iMac kernel: [    0.301583] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.301591] pci 0000:01:00.0: reg 0x18: [mem 0xd0620000-0xd062ffff 64bit]
Jun  7 12:49:50 iMac kernel: [    0.301597] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
Jun  7 12:49:50 iMac kernel: [    0.301607] pci 0000:01:00.0: reg 0x30: [mem 0xd0600000-0xd061ffff pref]
Jun  7 12:49:50 iMac kernel: [    0.301633] pci 0000:01:00.0: supports D1 D2
Jun  7 12:49:50 iMac kernel: [    0.301649] pci 0000:01:00.0: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.301684] pci 0000:01:00.1: [1002:aa30] type 00 class 0x040300
Jun  7 12:49:50 iMac kernel: [    0.301695] pci 0000:01:00.1: reg 0x10: [mem 0xd0630000-0xd0633fff 64bit]
Jun  7 12:49:50 iMac kernel: [    0.301742] pci 0000:01:00.1: supports D1 D2
Jun  7 12:49:50 iMac kernel: [    0.311098] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  7 12:49:50 iMac kernel: [    0.311105] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  7 12:49:50 iMac kernel: [    0.311109] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  7 12:49:50 iMac kernel: [    0.311116] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.311215] pci 0000:02:00.0: [14e4:1684] type 00 class 0x020000
Jun  7 12:49:50 iMac kernel: [    0.311240] pci 0000:02:00.0: reg 0x10: [mem 0xd0500000-0xd050ffff 64bit]
Jun  7 12:49:50 iMac kernel: [    0.311385] pci 0000:02:00.0: PME# supported from D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.311423] pci 0000:02:00.0: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.319113] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  7 12:49:50 iMac kernel: [    0.319122] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  7 12:49:50 iMac kernel: [    0.319222] pci 0000:03:00.0: [168c:002a] type 00 class 0x028000
Jun  7 12:49:50 iMac kernel: [    0.319246] pci 0000:03:00.0: reg 0x10: [mem 0xd0400000-0xd040ffff 64bit]
Jun  7 12:49:50 iMac kernel: [    0.319368] pci 0000:03:00.0: supports D1
Jun  7 12:49:50 iMac kernel: [    0.319369] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
Jun  7 12:49:50 iMac kernel: [    0.319398] pci 0000:03:00.0: System wakeup disabled by ACPI
Jun  7 12:49:50 iMac kernel: [    0.319425] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
Jun  7 12:49:50 iMac kernel: [    0.319433] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  7 12:49:50 iMac kernel: [    0.319438] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  7 12:49:50 iMac kernel: [    0.319515] pci 0000:04:00.0: [104c:823e] type 01 class 0x060400
Jun  7 12:49:50 iMac kernel: [    0.319639] pci 0000:04:00.0: supports D1 D2
Jun  7 12:49:50 iMac kernel: [    0.327132] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  7 12:49:50 iMac kernel: [    0.327140] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  7 12:49:50 iMac kernel: [    0.327251] pci 0000:05:00.0: [104c:823f] type 00 class 0x0c0010
Jun  7 12:49:50 iMac kernel: [    0.327276] pci 0000:05:00.0: reg 0x10: [mem 0xd0304000-0xd03047ff]
Jun  7 12:49:50 iMac kernel: [    0.327290] pci 0000:05:00.0: reg 0x14: [mem 0xd0300000-0xd0303fff]
Jun  7 12:49:50 iMac kernel: [    0.327392] pci 0000:05:00.0: supports D1 D2
Jun  7 12:49:50 iMac kernel: [    0.327393] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot
Jun  7 12:49:50 iMac kernel: [    0.327490] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  7 12:49:50 iMac kernel: [    0.327501] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  7 12:49:50 iMac kernel: [    0.327582] acpiphp: Slot [1] registered
Jun  7 12:49:50 iMac kernel: [    0.327586] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  7 12:49:50 iMac kernel: [    0.327591] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  7 12:49:50 iMac kernel: [    0.327639] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  7 12:49:50 iMac kernel: [    0.327644] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  7 12:49:50 iMac kernel: [    0.327709] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
Jun  7 12:49:50 iMac kernel: [    0.327714] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  7 12:49:50 iMac kernel: [    0.327719] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun  7 12:49:50 iMac kernel: [    0.327720] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun  7 12:49:50 iMac kernel: [    0.327721] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun  7 12:49:50 iMac kernel: [    0.327723] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
Jun  7 12:49:50 iMac kernel: [    0.328076] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  7 12:49:50 iMac kernel: [    0.328117] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  7 12:49:50 iMac kernel: [    0.328157] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  7 12:49:50 iMac kernel: [    0.328196] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  7 12:49:50 iMac kernel: [    0.328235] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  7 12:49:50 iMac kernel: [    0.328276] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
Jun  7 12:49:50 iMac kernel: [    0.328315] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  7 12:49:50 iMac kernel: [    0.328354] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  7 12:49:50 iMac kernel: [    0.328429] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
Jun  7 12:49:50 iMac kernel: [    0.328432] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  7 12:49:50 iMac kernel: [    0.328436] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Jun  7 12:49:50 iMac kernel: [    0.328471] PCI host bridge to bus 0000:ff
Jun  7 12:49:50 iMac kernel: [    0.328473] pci_bus 0000:ff: root bus resource [bus ff]
Jun  7 12:49:50 iMac kernel: [    0.328477] pci 0000:ff:00.0: [8086:2c51] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328516] pci 0000:ff:00.1: [8086:2c81] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328556] pci 0000:ff:02.0: [8086:2c90] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328593] pci 0000:ff:02.1: [8086:2c91] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328631] pci 0000:ff:03.0: [8086:2c98] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328666] pci 0000:ff:03.1: [8086:2c99] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328703] pci 0000:ff:03.4: [8086:2c9c] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328739] pci 0000:ff:04.0: [8086:2ca0] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328775] pci 0000:ff:04.1: [8086:2ca1] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328810] pci 0000:ff:04.2: [8086:2ca2] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328845] pci 0000:ff:04.3: [8086:2ca3] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328884] pci 0000:ff:05.0: [8086:2ca8] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328920] pci 0000:ff:05.1: [8086:2ca9] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328955] pci 0000:ff:05.2: [8086:2caa] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.328991] pci 0000:ff:05.3: [8086:2cab] type 00 class 0x060000
Jun  7 12:49:50 iMac kernel: [    0.329070] ACPI: Enabled 4 GPEs in block 00 to 3F
Jun  7 12:49:50 iMac kernel: [    0.329088] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
Jun  7 12:49:50 iMac kernel: [    0.329169] vgaarb: setting as boot device: PCI:0000:01:00.0
Jun  7 12:49:50 iMac kernel: [    0.329171] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Jun  7 12:49:50 iMac kernel: [    0.329173] vgaarb: loaded
Jun  7 12:49:50 iMac kernel: [    0.329174] vgaarb: bridge control possible 0000:01:00.0
Jun  7 12:49:50 iMac kernel: [    0.329372] SCSI subsystem initialized
Jun  7 12:49:50 iMac kernel: [    0.329411] libata version 3.00 loaded.
Jun  7 12:49:50 iMac kernel: [    0.329436] ACPI: bus type USB registered
Jun  7 12:49:50 iMac kernel: [    0.329452] usbcore: registered new interface driver usbfs
Jun  7 12:49:50 iMac kernel: [    0.329459] usbcore: registered new interface driver hub
Jun  7 12:49:50 iMac kernel: [    0.329474] usbcore: registered new device driver usb
Jun  7 12:49:50 iMac kernel: [    0.329585] PCI: Using ACPI for IRQ routing
Jun  7 12:49:50 iMac kernel: [    0.335116] PCI: pci_cache_line_size set to 64 bytes
Jun  7 12:49:50 iMac kernel: [    0.335183] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Jun  7 12:49:50 iMac kernel: [    0.335184] e820: reserve RAM buffer [mem 0xbf65d000-0xbfffffff]
Jun  7 12:49:50 iMac kernel: [    0.335276] NetLabel: Initializing
Jun  7 12:49:50 iMac kernel: [    0.335278] NetLabel:  domain hash size = 128
Jun  7 12:49:50 iMac kernel: [    0.335278] NetLabel:  protocols = UNLABELED CIPSOv4
Jun  7 12:49:50 iMac kernel: [    0.335287] NetLabel:  unlabeled traffic allowed by default
Jun  7 12:49:50 iMac kernel: [    0.335352] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
Jun  7 12:49:50 iMac kernel: [    0.335358] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0
Jun  7 12:49:50 iMac kernel: [    0.335362] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Jun  7 12:49:50 iMac kernel: [    0.337411] hpet: hpet2 irq 40 for MSI
Jun  7 12:49:50 iMac kernel: [    0.337448] hpet: hpet3 irq 41 for MSI
Jun  7 12:49:50 iMac kernel: [    0.337485] hpet: hpet4 irq 42 for MSI
Jun  7 12:49:50 iMac kernel: [    0.337518] hpet: hpet5 irq 43 for MSI
Jun  7 12:49:50 iMac kernel: [    0.337551] hpet: hpet6 irq 44 for MSI
Jun  7 12:49:50 iMac kernel: [    0.337654] Switched to clocksource hpet
Jun  7 12:49:50 iMac kernel: [    0.342177] AppArmor: AppArmor Filesystem Enabled
Jun  7 12:49:50 iMac kernel: [    0.342205] pnp: PnP ACPI init
Jun  7 12:49:50 iMac kernel: [    0.342218] ACPI: bus type PNP registered
Jun  7 12:49:50 iMac kernel: [    0.342361] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342364] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
Jun  7 12:49:50 iMac kernel: [    0.342411] system 00:01: [io  0x0680-0x069f] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342413] system 00:01: [io  0x1000-0x100f] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342414] system 00:01: [io  0xffff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342416] system 00:01: [io  0xffff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342417] system 00:01: [io  0x0400-0x047f] could not be reserved
Jun  7 12:49:50 iMac kernel: [    0.342418] system 00:01: [io  0x0500-0x057f] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342420] system 00:01: [io  0x164e-0x164f] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342422] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  7 12:49:50 iMac kernel: [    0.342475] system 00:02: [io  0x06a0-0x06af] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342476] system 00:02: [io  0x06b0-0x06ff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342478] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  7 12:49:50 iMac kernel: [    0.342501] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun  7 12:49:50 iMac kernel: [    0.342678] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342680] system 00:04: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342682] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342683] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342684] system 00:04: [mem 0xfeb00000-0xfeb03fff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342686] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
Jun  7 12:49:50 iMac kernel: [    0.342687] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
Jun  7 12:49:50 iMac kernel: [    0.342689] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun  7 12:49:50 iMac kernel: [    0.342690] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  7 12:49:50 iMac kernel: [    0.342842] pnp: PnP ACPI: found 5 devices
Jun  7 12:49:50 iMac kernel: [    0.342843] ACPI: bus type PNP unregistered
Jun  7 12:49:50 iMac kernel: [    0.349109] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349112] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349118] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349120] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349136] pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 04-05] add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349138] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04-05] add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349144] pci 0000:00:1c.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349147] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349154] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349155] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349165] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349167] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349168] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349169] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349171] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:49:50 iMac kernel: [    0.349172] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349174] pci 0000:00:1c.1: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349175] pci 0000:00:1c.2: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349176] pci 0000:00:1c.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349177] pci 0000:00:1c.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:49:50 iMac kernel: [    0.349182] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349185] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349187] pci 0000:00:1c.2: BAR 15: assigned [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349190] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349192] pci 0000:00:1c.4: BAR 15: assigned [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349194] pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jun  7 12:49:50 iMac kernel: [    0.349196] pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun  7 12:49:50 iMac kernel: [    0.349198] pci 0000:00:1c.2: BAR 13: assigned [io  0x6000-0x6fff]
Jun  7 12:49:50 iMac kernel: [    0.349199] pci 0000:00:1c.3: BAR 13: assigned [io  0x7000-0x7fff]
Jun  7 12:49:50 iMac kernel: [    0.349201] pci 0000:00:1c.4: BAR 13: assigned [io  0x8000-0x8fff]
Jun  7 12:49:50 iMac kernel: [    0.349204] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  7 12:49:50 iMac kernel: [    0.349206] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  7 12:49:50 iMac kernel: [    0.349209] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  7 12:49:50 iMac kernel: [    0.349211] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349215] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  7 12:49:50 iMac kernel: [    0.349217] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun  7 12:49:50 iMac kernel: [    0.349220] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  7 12:49:50 iMac kernel: [    0.349223] pci 0000:00:1c.0:   bridge window [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349227] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  7 12:49:50 iMac kernel: [    0.349229] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun  7 12:49:50 iMac kernel: [    0.349233] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  7 12:49:50 iMac kernel: [    0.349235] pci 0000:00:1c.1:   bridge window [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349240] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  7 12:49:50 iMac kernel: [    0.349246] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  7 12:49:50 iMac kernel: [    0.349256] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  7 12:49:50 iMac kernel: [    0.349258] pci 0000:00:1c.2:   bridge window [io  0x6000-0x6fff]
Jun  7 12:49:50 iMac kernel: [    0.349261] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  7 12:49:50 iMac kernel: [    0.349264] pci 0000:00:1c.2:   bridge window [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349268] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  7 12:49:50 iMac kernel: [    0.349270] pci 0000:00:1c.3:   bridge window [io  0x7000-0x7fff]
Jun  7 12:49:50 iMac kernel: [    0.349274] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  7 12:49:50 iMac kernel: [    0.349276] pci 0000:00:1c.3:   bridge window [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349281] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  7 12:49:50 iMac kernel: [    0.349283] pci 0000:00:1c.4:   bridge window [io  0x8000-0x8fff]
Jun  7 12:49:50 iMac kernel: [    0.349286] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  7 12:49:50 iMac kernel: [    0.349289] pci 0000:00:1c.4:   bridge window [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349293] pci 0000:00:1e.0: PCI bridge to [bus 08]
Jun  7 12:49:50 iMac kernel: [    0.349297] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  7 12:49:50 iMac kernel: [    0.349303] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun  7 12:49:50 iMac kernel: [    0.349304] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun  7 12:49:50 iMac kernel: [    0.349305] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun  7 12:49:50 iMac kernel: [    0.349307] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  7 12:49:50 iMac kernel: [    0.349308] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jun  7 12:49:50 iMac kernel: [    0.349309] pci_bus 0000:01: resource 1 [mem 0xd0600000-0xd06fffff]
Jun  7 12:49:50 iMac kernel: [    0.349311] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349312] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
Jun  7 12:49:50 iMac kernel: [    0.349313] pci_bus 0000:02: resource 1 [mem 0xd0500000-0xd05fffff]
Jun  7 12:49:50 iMac kernel: [    0.349314] pci_bus 0000:02: resource 2 [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349316] pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
Jun  7 12:49:50 iMac kernel: [    0.349317] pci_bus 0000:03: resource 1 [mem 0xd0400000-0xd04fffff]
Jun  7 12:49:50 iMac kernel: [    0.349318] pci_bus 0000:03: resource 2 [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349320] pci_bus 0000:04: resource 0 [io  0x6000-0x6fff]
Jun  7 12:49:50 iMac kernel: [    0.349321] pci_bus 0000:04: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  7 12:49:50 iMac kernel: [    0.349322] pci_bus 0000:04: resource 2 [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349323] pci_bus 0000:05: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  7 12:49:50 iMac kernel: [    0.349325] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
Jun  7 12:49:50 iMac kernel: [    0.349326] pci_bus 0000:06: resource 1 [mem 0xd0200000-0xd02fffff]
Jun  7 12:49:50 iMac kernel: [    0.349327] pci_bus 0000:06: resource 2 [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349329] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
Jun  7 12:49:50 iMac kernel: [    0.349330] pci_bus 0000:07: resource 1 [mem 0xd0100000-0xd01fffff]
Jun  7 12:49:50 iMac kernel: [    0.349331] pci_bus 0000:07: resource 2 [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  7 12:49:50 iMac kernel: [    0.349333] pci_bus 0000:08: resource 1 [mem 0xd0000000-0xd00fffff]
Jun  7 12:49:50 iMac kernel: [    0.349334] pci_bus 0000:08: resource 4 [io  0x0000-0x0cf7]
Jun  7 12:49:50 iMac kernel: [    0.349335] pci_bus 0000:08: resource 5 [io  0x0d00-0xffff]
Jun  7 12:49:50 iMac kernel: [    0.349336] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
Jun  7 12:49:50 iMac kernel: [    0.349337] pci_bus 0000:08: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  7 12:49:50 iMac kernel: [    0.349359] NET: Registered protocol family 2
Jun  7 12:49:50 iMac kernel: [    0.349548] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Jun  7 12:49:50 iMac kernel: [    0.349746] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun  7 12:49:50 iMac kernel: [    0.350000] TCP: Hash tables configured (established 65536 bind 65536)
Jun  7 12:49:50 iMac kernel: [    0.350026] TCP: reno registered
Jun  7 12:49:50 iMac kernel: [    0.350034] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Jun  7 12:49:50 iMac kernel: [    0.350087] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Jun  7 12:49:50 iMac kernel: [    0.350168] NET: Registered protocol family 1
Jun  7 12:49:50 iMac kernel: [    0.351012] pci 0000:01:00.0: Video device with shadowed ROM
Jun  7 12:49:50 iMac kernel: [    0.351024] PCI: CLS mismatch (256 != 64), using 64 bytes
Jun  7 12:49:50 iMac kernel: [    0.351079] Trying to unpack rootfs image as initramfs...
Jun  7 12:49:50 iMac kernel: [    0.624571] Freeing initrd memory: 18992K (ffff880035ad8000 - ffff880036d64000)
Jun  7 12:49:50 iMac kernel: [    0.624615] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun  7 12:49:50 iMac kernel: [    0.624617] software IO TLB [mem 0xbb65d000-0xbf65d000] (64MB) mapped at [ffff8800bb65d000-ffff8800bf65cfff]
Jun  7 12:49:50 iMac kernel: [    0.624942] microcode: CPU0 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:49:50 iMac kernel: [    0.624947] microcode: CPU1 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:49:50 iMac kernel: [    0.624953] microcode: CPU2 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:49:50 iMac kernel: [    0.624958] microcode: CPU3 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:49:50 iMac kernel: [    0.624963] microcode: CPU4 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:49:50 iMac kernel: [    0.624967] microcode: CPU5 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:49:50 iMac kernel: [    0.624972] microcode: CPU6 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:49:50 iMac kernel: [    0.624979] microcode: CPU7 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:49:50 iMac kernel: [    0.625023] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun  7 12:49:50 iMac kernel: [    0.625043] Scanning for low memory corruption every 60 seconds
Jun  7 12:49:50 iMac kernel: [    0.625064] efifb: dmi detected iMac11,1 - framebuffer at 0xc0000000 (1920x1440, stride 7680)
Jun  7 12:49:50 iMac kernel: [    0.625354] futex hash table entries: 2048 (order: 5, 131072 bytes)
Jun  7 12:49:50 iMac kernel: [    0.625385] Initialise system trusted keyring
Jun  7 12:49:50 iMac kernel: [    0.625404] audit: initializing netlink subsys (disabled)
Jun  7 12:49:50 iMac kernel: [    0.625417] audit: type=2000 audit(1433674174.516:1): initialized
Jun  7 12:49:50 iMac kernel: [    0.625679] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun  7 12:49:50 iMac kernel: [    0.627002] zpool: loaded
Jun  7 12:49:50 iMac kernel: [    0.627004] zbud: loaded
Jun  7 12:49:50 iMac kernel: [    0.627135] VFS: Disk quotas dquot_6.5.2
Jun  7 12:49:50 iMac kernel: [    0.627166] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun  7 12:49:50 iMac kernel: [    0.627584] fuse init (API version 7.23)
Jun  7 12:49:50 iMac kernel: [    0.627658] msgmni has been set to 15945
Jun  7 12:49:50 iMac kernel: [    0.627714] Key type big_key registered
Jun  7 12:49:50 iMac kernel: [    0.628004] Key type asymmetric registered
Jun  7 12:49:50 iMac kernel: [    0.628006] Asymmetric key parser 'x509' registered
Jun  7 12:49:50 iMac kernel: [    0.628038] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Jun  7 12:49:50 iMac kernel: [    0.628090] io scheduler noop registered
Jun  7 12:49:50 iMac kernel: [    0.628092] io scheduler deadline registered (default)
Jun  7 12:49:50 iMac kernel: [    0.628134] io scheduler cfq registered
Jun  7 12:49:50 iMac kernel: [    0.628664] pcieport 0000:00:1c.3: enabling device (0000 -> 0003)
Jun  7 12:49:50 iMac kernel: [    0.628768] pcieport 0000:00:1c.4: enabling device (0000 -> 0003)
Jun  7 12:49:50 iMac kernel: [    0.628901] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun  7 12:49:50 iMac kernel: [    0.628913] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun  7 12:49:50 iMac kernel: [    0.628956] vesafb: mode is 1920x1440x32, linelength=7680, pages=0
Jun  7 12:49:50 iMac kernel: [    0.628957] vesafb: scrolling: redraw
Jun  7 12:49:50 iMac kernel: [    0.628958] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
Jun  7 12:49:50 iMac kernel: [    0.633349] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 10816k, total 10816k
Jun  7 12:49:50 iMac kernel: [    0.633472] Console: switching to colour frame buffer device 240x90
Jun  7 12:49:50 iMac kernel: [    0.633530] fb0: VESA VGA frame buffer device
Jun  7 12:49:50 iMac kernel: [    0.633556] intel_idle: MWAIT substates: 0x1120
Jun  7 12:49:50 iMac kernel: [    0.633567] intel_idle: v0.4 model 0x1E
Jun  7 12:49:50 iMac kernel: [    0.633567] intel_idle: lapic_timer_reliable_states 0x2
Jun  7 12:49:50 iMac kernel: [    0.633888] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun  7 12:49:50 iMac kernel: [    0.633891] ACPI: Power Button [PWRB]
Jun  7 12:49:50 iMac kernel: [    0.633926] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun  7 12:49:50 iMac kernel: [    0.633927] ACPI: Sleep Button [SLPB]
Jun  7 12:49:50 iMac kernel: [    0.633967] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun  7 12:49:50 iMac kernel: [    0.633969] ACPI: Power Button [PWRF]
Jun  7 12:49:50 iMac kernel: [    0.634379] GHES: HEST is not enabled!
Jun  7 12:49:50 iMac kernel: [    0.634467] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun  7 12:49:50 iMac kernel: [    0.635804] Linux agpgart interface v0.103
Jun  7 12:49:50 iMac kernel: [    0.636895] brd: module loaded
Jun  7 12:49:50 iMac kernel: [    0.637444] loop: module loaded
Jun  7 12:49:50 iMac kernel: [    0.637569] ata_piix 0000:00:1f.2: version 2.13
Jun  7 12:49:50 iMac kernel: [    0.637652] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun  7 12:49:50 iMac kernel: [    0.790504] scsi0 : ata_piix
Jun  7 12:49:50 iMac kernel: [    0.791052] scsi1 : ata_piix
Jun  7 12:49:50 iMac kernel: [    0.791145] ata1: SATA max UDMA/133 cmd 0x3088 ctl 0x3094 bmdma 0x3020 irq 19
Jun  7 12:49:50 iMac kernel: [    0.791152] ata2: SATA max UDMA/133 cmd 0x3080 ctl 0x3090 bmdma 0x3028 irq 19
Jun  7 12:49:50 iMac kernel: [    0.791268] libphy: Fixed MDIO Bus: probed
Jun  7 12:49:50 iMac kernel: [    0.791271] tun: Universal TUN/TAP device driver, 1.6
Jun  7 12:49:50 iMac kernel: [    0.791272] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun  7 12:49:50 iMac kernel: [    0.791454] PPP generic driver version 2.4.2
Jun  7 12:49:50 iMac kernel: [    0.791522] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun  7 12:49:50 iMac kernel: [    0.791527] ehci-pci: EHCI PCI platform driver
Jun  7 12:49:50 iMac kernel: [    0.791635] ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun  7 12:49:50 iMac kernel: [    0.791642] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jun  7 12:49:50 iMac kernel: [    0.791653] ehci-pci 0000:00:1a.7: debug port 2
Jun  7 12:49:50 iMac kernel: [    0.795558] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
Jun  7 12:49:50 iMac kernel: [    0.795574] ehci-pci 0000:00:1a.7: irq 16, io mem 0xd0705c00
Jun  7 12:49:50 iMac kernel: [    0.806301] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun  7 12:49:50 iMac kernel: [    0.806376] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jun  7 12:49:50 iMac kernel: [    0.806381] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  7 12:49:50 iMac kernel: [    0.806384] usb usb1: Product: EHCI Host Controller
Jun  7 12:49:50 iMac kernel: [    0.806387] usb usb1: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  7 12:49:50 iMac kernel: [    0.806390] usb usb1: SerialNumber: 0000:00:1a.7
Jun  7 12:49:50 iMac kernel: [    0.806758] hub 1-0:1.0: USB hub found
Jun  7 12:49:50 iMac kernel: [    0.806763] hub 1-0:1.0: 6 ports detected
Jun  7 12:49:50 iMac kernel: [    0.806956] ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun  7 12:49:50 iMac kernel: [    0.806960] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jun  7 12:49:50 iMac kernel: [    0.806970] ehci-pci 0000:00:1d.7: debug port 2
Jun  7 12:49:50 iMac kernel: [    0.810893] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
Jun  7 12:49:50 iMac kernel: [    0.810907] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd0705800
Jun  7 12:49:50 iMac kernel: [    0.822317] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun  7 12:49:50 iMac kernel: [    0.822394] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Jun  7 12:49:50 iMac kernel: [    0.822399] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  7 12:49:50 iMac kernel: [    0.822402] usb usb2: Product: EHCI Host Controller
Jun  7 12:49:50 iMac kernel: [    0.822405] usb usb2: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  7 12:49:50 iMac kernel: [    0.822408] usb usb2: SerialNumber: 0000:00:1d.7
Jun  7 12:49:50 iMac kernel: [    0.822773] hub 2-0:1.0: USB hub found
Jun  7 12:49:50 iMac kernel: [    0.822777] hub 2-0:1.0: 8 ports detected
Jun  7 12:49:50 iMac kernel: [    0.822911] ehci-platform: EHCI generic platform driver
Jun  7 12:49:50 iMac kernel: [    0.822918] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun  7 12:49:50 iMac kernel: [    0.822921] ohci-pci: OHCI PCI platform driver
Jun  7 12:49:50 iMac kernel: [    0.822931] ohci-platform: OHCI generic platform driver
Jun  7 12:49:50 iMac kernel: [    0.822938] uhci_hcd: USB Universal Host Controller Interface driver
Jun  7 12:49:50 iMac kernel: [    0.823018] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun  7 12:49:50 iMac kernel: [    0.823023] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jun  7 12:49:50 iMac kernel: [    0.823027] uhci_hcd 0000:00:1a.0: detected 2 ports
Jun  7 12:49:50 iMac kernel: [    0.823052] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00003060
Jun  7 12:49:50 iMac kernel: [    0.823084] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Jun  7 12:49:50 iMac kernel: [    0.823085] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  7 12:49:50 iMac kernel: [    0.823086] usb usb3: Product: UHCI Host Controller
Jun  7 12:49:50 iMac kernel: [    0.823087] usb usb3: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  7 12:49:50 iMac kernel: [    0.823088] usb usb3: SerialNumber: 0000:00:1a.0
Jun  7 12:49:50 iMac kernel: [    0.823449] hub 3-0:1.0: USB hub found
Jun  7 12:49:50 iMac kernel: [    0.823454] hub 3-0:1.0: 2 ports detected
Jun  7 12:49:50 iMac kernel: [    0.823600] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun  7 12:49:50 iMac kernel: [    0.823604] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun  7 12:49:50 iMac kernel: [    0.823608] uhci_hcd 0000:00:1d.0: detected 2 ports
Jun  7 12:49:50 iMac kernel: [    0.823624] uhci_hcd 0000:00:1d.0: irq 19, io base 0x00003040
Jun  7 12:49:50 iMac kernel: [    0.823655] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Jun  7 12:49:50 iMac kernel: [    0.823656] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  7 12:49:50 iMac kernel: [    0.823657] usb usb4: Product: UHCI Host Controller
Jun  7 12:49:50 iMac kernel: [    0.823658] usb usb4: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  7 12:49:50 iMac kernel: [    0.823659] usb usb4: SerialNumber: 0000:00:1d.0
Jun  7 12:49:50 iMac kernel: [    0.824012] hub 4-0:1.0: USB hub found
Jun  7 12:49:50 iMac kernel: [    0.824016] hub 4-0:1.0: 2 ports detected
Jun  7 12:49:50 iMac kernel: [    0.824120] i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun  7 12:49:50 iMac kernel: [    1.555117] usb 1-1: new high-speed USB device number 2 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    1.623021] tsc: Refined TSC clocksource calibration: 2792.999 MHz
Jun  7 12:49:50 iMac kernel: [    1.687556] usb 1-1: New USB device found, idVendor=0424, idProduct=2514
Jun  7 12:49:50 iMac kernel: [    1.687558] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  7 12:49:50 iMac kernel: [    1.687839] hub 1-1:1.0: USB hub found
Jun  7 12:49:50 iMac kernel: [    1.687913] hub 1-1:1.0: 4 ports detected
Jun  7 12:49:50 iMac kernel: [    1.799316] usb 2-1: new high-speed USB device number 2 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    1.866507] i8042: No controller found
Jun  7 12:49:50 iMac kernel: [    1.866876] mousedev: PS/2 mouse device common for all mice
Jun  7 12:49:50 iMac kernel: [    1.867235] rtc_cmos 00:03: RTC can wake from S4
Jun  7 12:49:50 iMac kernel: [    1.867502] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun  7 12:49:50 iMac kernel: [    1.867537] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jun  7 12:49:50 iMac kernel: [    1.867626] device-mapper: uevent: version 1.0.3
Jun  7 12:49:50 iMac kernel: [    1.867923] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
Jun  7 12:49:50 iMac kernel: [    1.867956] ledtrig-cpu: registered to indicate activity on CPUs
Jun  7 12:49:50 iMac kernel: [    1.868084] TCP: cubic registered
Jun  7 12:49:50 iMac kernel: [    1.868170] NET: Registered protocol family 10
Jun  7 12:49:50 iMac kernel: [    1.868551] NET: Registered protocol family 17
Jun  7 12:49:50 iMac kernel: [    1.868571] Key type dns_resolver registered
Jun  7 12:49:50 iMac kernel: [    1.869717] Loading compiled-in X.509 certificates
Jun  7 12:49:50 iMac kernel: [    1.870506] Loaded X.509 cert 'Magrathea: Glacier signing key: c284edaccf0b473652c34d23bec356944236e63b'
Jun  7 12:49:50 iMac kernel: [    1.870521] registered taskstats version 1
Jun  7 12:49:50 iMac kernel: [    1.874888] Key type trusted registered
Jun  7 12:49:50 iMac kernel: [    1.882515] Key type encrypted registered
Jun  7 12:49:50 iMac kernel: [    1.882526] AppArmor: AppArmor sha1 policy hashing enabled
Jun  7 12:49:50 iMac kernel: [    1.882531] ima: No TPM chip found, activating TPM-bypass!
Jun  7 12:49:50 iMac kernel: [    1.882557] evm: HMAC attrs: 0x1
Jun  7 12:49:50 iMac kernel: [    1.883258]   Magic number: 3:372:830
Jun  7 12:49:50 iMac kernel: [    1.883462] rtc_cmos 00:03: setting system clock to 2015-06-07 10:49:36 UTC (1433674176)
Jun  7 12:49:50 iMac kernel: [    1.885433] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jun  7 12:49:50 iMac kernel: [    1.885435] EDD information not available.
Jun  7 12:49:50 iMac kernel: [    1.885481] PM: Hibernation image not present or could not be loaded.
Jun  7 12:49:50 iMac kernel: [    1.931839] usb 2-1: New USB device found, idVendor=0424, idProduct=2514
Jun  7 12:49:50 iMac kernel: [    1.931845] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  7 12:49:50 iMac kernel: [    1.932333] hub 2-1:1.0: USB hub found
Jun  7 12:49:50 iMac kernel: [    1.932401] hub 2-1:1.0: 4 ports detected
Jun  7 12:49:50 iMac kernel: [    2.019671] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    2.114073] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500
Jun  7 12:49:50 iMac kernel: [    2.114079] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  7 12:49:50 iMac kernel: [    2.114083] usb 1-1.1: Product: BRCM2046 Hub
Jun  7 12:49:50 iMac kernel: [    2.114086] usb 1-1.1: Manufacturer: Apple Inc.
Jun  7 12:49:50 iMac kernel: [    2.114376] hub 1-1.1:1.0: USB hub found
Jun  7 12:49:50 iMac kernel: [    2.114572] hub 1-1.1:1.0: 3 ports detected
Jun  7 12:49:50 iMac kernel: [    2.139546] ata2.01: failed to resume link (SControl 0)
Jun  7 12:49:50 iMac kernel: [    2.139617] ata1.01: failed to resume link (SControl 0)
Jun  7 12:49:50 iMac kernel: [    2.187649] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    2.284367] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=8403
Jun  7 12:49:50 iMac kernel: [    2.284371] usb 1-1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=2
Jun  7 12:49:50 iMac kernel: [    2.284374] usb 1-1.2: Product: Card Reader
Jun  7 12:49:50 iMac kernel: [    2.284377] usb 1-1.2: Manufacturer: Apple
Jun  7 12:49:50 iMac kernel: [    2.284380] usb 1-1.2: SerialNumber: 000000009833
Jun  7 12:49:50 iMac kernel: [    2.295758] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun  7 12:49:50 iMac kernel: [    2.295775] ata2.01: SATA link down (SStatus 4 SControl 0)
Jun  7 12:49:50 iMac kernel: [    2.295784] ata2.01: link offline, clearing class 3 to NONE
Jun  7 12:49:50 iMac kernel: [    2.295893] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun  7 12:49:50 iMac kernel: [    2.295903] ata1.01: SATA link down (SStatus 4 SControl 0)
Jun  7 12:49:50 iMac kernel: [    2.303927] ata2.00: ATAPI: OPTIARC DVD RW AD-5680H, 3AHB, max UDMA/100
Jun  7 12:49:50 iMac kernel: [    2.304076] ata1.00: ATA-8: WDC WD1001FALS-40U9B0, 20.04F20, max UDMA/133
Jun  7 12:49:50 iMac kernel: [    2.304078] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun  7 12:49:50 iMac kernel: [    2.319970] ata2.00: configured for UDMA/100
Jun  7 12:49:50 iMac kernel: [    2.321216] ata1.00: configured for UDMA/133
Jun  7 12:49:50 iMac kernel: [    2.321621] scsi 0:0:0:0: Direct-Access     ATA      WDC WD1001FALS-4 4F20 PQ: 0 ANSI: 5
Jun  7 12:49:50 iMac kernel: [    2.322329] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun  7 12:49:50 iMac kernel: [    2.322354] sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun  7 12:49:50 iMac kernel: [    2.322385] sd 0:0:0:0: [sda] Write Protect is off
Jun  7 12:49:50 iMac kernel: [    2.322387] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun  7 12:49:50 iMac kernel: [    2.322398] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun  7 12:49:50 iMac kernel: [    2.336518] scsi 1:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5680H  3AHB PQ: 0 ANSI: 5
Jun  7 12:49:50 iMac kernel: [    2.372027] usb 1-1.4: new high-speed USB device number 5 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    2.375749] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
Jun  7 12:49:50 iMac kernel: [    2.375754] cdrom: Uniform CD-ROM driver Revision: 3.20
Jun  7 12:49:50 iMac kernel: [    2.376092] sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun  7 12:49:50 iMac kernel: [    2.376320] sr 1:0:0:0: Attached scsi generic sg1 type 5
Jun  7 12:49:50 iMac kernel: [    2.377807]  sda: sda1 sda2 sda3
Jun  7 12:49:50 iMac kernel: [    2.378629] sd 0:0:0:0: [sda] Attached SCSI disk
Jun  7 12:49:50 iMac kernel: [    2.379895] Freeing unused kernel memory: 1352K (ffffffff81d1c000 - ffffffff81e6e000)
Jun  7 12:49:50 iMac kernel: [    2.379896] Write protecting the kernel read-only data: 12288k
Jun  7 12:49:50 iMac kernel: [    2.381362] Freeing unused kernel memory: 556K (ffff880001775000 - ffff880001800000)
Jun  7 12:49:50 iMac kernel: [    2.382515] Freeing unused kernel memory: 500K (ffff880001b83000 - ffff880001c00000)
Jun  7 12:49:50 iMac kernel: [    2.414074] pps_core: LinuxPPS API ver. 1 registered
Jun  7 12:49:50 iMac kernel: [    2.414076] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun  7 12:49:50 iMac kernel: [    2.415764] PTP clock support registered
Jun  7 12:49:50 iMac kernel: [    2.419134] tg3.c:v3.137 (May 11, 2014)
Jun  7 12:49:50 iMac kernel: [    2.439880] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM95764m) rev 5784100] (PCI Express) MAC address d4:9a:20:d1:18:0a
Jun  7 12:49:50 iMac kernel: [    2.439884] tg3 0000:02:00.0 eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
Jun  7 12:49:50 iMac kernel: [    2.439885] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
Jun  7 12:49:50 iMac kernel: [    2.439887] tg3 0000:02:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
Jun  7 12:49:50 iMac kernel: [    2.472034] firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x2
Jun  7 12:49:50 iMac kernel: [    2.472841] usb 1-1.4: New USB device found, idVendor=05ac, idProduct=1006
Jun  7 12:49:50 iMac kernel: [    2.472847] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  7 12:49:50 iMac kernel: [    2.472851] usb 1-1.4: Product: Keyboard Hub
Jun  7 12:49:50 iMac kernel: [    2.472854] usb 1-1.4: Manufacturer: Apple, Inc.
Jun  7 12:49:50 iMac kernel: [    2.472856] usb 1-1.4: SerialNumber: 000000000000
Jun  7 12:49:50 iMac kernel: [    2.473317] hub 1-1.4:1.0: USB hub found
Jun  7 12:49:50 iMac kernel: [    2.473493] hub 1-1.4:1.0: 3 ports detected
Jun  7 12:49:50 iMac kernel: [    2.477241] usb-storage 1-1.2:1.0: USB Mass Storage device detected
Jun  7 12:49:50 iMac kernel: [    2.477469] scsi2 : usb-storage 1-1.2:1.0
Jun  7 12:49:50 iMac kernel: [    2.477528] usbcore: registered new interface driver usb-storage
Jun  7 12:49:50 iMac kernel: [    2.478874] usbcore: registered new interface driver uas
Jun  7 12:49:50 iMac kernel: [    2.560017] usb 2-1.1: new high-speed USB device number 3 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    2.624160] Switched to clocksource tsc
Jun  7 12:49:50 iMac kernel: [    2.674557] usb 2-1.1: New USB device found, idVendor=05ac, idProduct=8502
Jun  7 12:49:50 iMac kernel: [    2.674562] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  7 12:49:50 iMac kernel: [    2.674566] usb 2-1.1: Product: Built-in iSight
Jun  7 12:49:50 iMac kernel: [    2.674569] usb 2-1.1: Manufacturer: Apple Inc.
Jun  7 12:49:50 iMac kernel: [    2.674572] usb 2-1.1: SerialNumber: 8T9BKB2B577K3L00
Jun  7 12:49:50 iMac kernel: [    2.748267] usb 2-1.2: new low-speed USB device number 4 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    2.862485] usb 2-1.2: New USB device found, idVendor=05ac, idProduct=8242
Jun  7 12:49:50 iMac kernel: [    2.862491] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  7 12:49:50 iMac kernel: [    2.862495] usb 2-1.2: Product: IR Receiver
Jun  7 12:49:50 iMac kernel: [    2.862498] usb 2-1.2: Manufacturer: Apple Computer, Inc.
Jun  7 12:49:50 iMac kernel: [    2.867519] hidraw: raw HID events driver (C) Jiri Kosina
Jun  7 12:49:50 iMac kernel: [    2.871364] usbcore: registered new interface driver usbhid
Jun  7 12:49:50 iMac kernel: [    2.871366] usbhid: USB HID core driver
Jun  7 12:49:50 iMac kernel: [    2.882197] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun  7 12:49:50 iMac kernel: [    2.936596] usb 2-1.4: new low-speed USB device number 5 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    2.972774] firewire_core 0000:05:00.0: created device fw0: GUID d49a20fffecbb5b6, S800
Jun  7 12:49:50 iMac kernel: [    2.981293] firewire_core 0000:05:00.0: created device fw1: GUID 0001db01001234ee, S800
Jun  7 12:49:50 iMac kernel: [    2.981301] firewire_core 0000:05:00.0: phy config: new root=ffc0, gap_count=5
Jun  7 12:49:50 iMac kernel: [    3.058587] usb 2-1.4: New USB device found, idVendor=045e, idProduct=0040
Jun  7 12:49:50 iMac kernel: [    3.058593] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  7 12:49:50 iMac kernel: [    3.058597] usb 2-1.4: Product: Microsoft Wheel Mouse Optical®
Jun  7 12:49:50 iMac kernel: [    3.058600] usb 2-1.4: Manufacturer: Microsoft
Jun  7 12:49:50 iMac kernel: [    3.136635] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    3.233241] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215
Jun  7 12:49:50 iMac kernel: [    3.233247] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  7 12:49:50 iMac kernel: [    3.233250] usb 1-1.1.1: Product: Bluetooth USB Host Controller
Jun  7 12:49:50 iMac kernel: [    3.233253] usb 1-1.1.1: Manufacturer: Apple Inc.
Jun  7 12:49:50 iMac kernel: [    3.233256] usb 1-1.1.1: SerialNumber: 64B9E8E21B57
Jun  7 12:49:50 iMac kernel: [    3.304813] usb 1-1.1.2: new full-speed USB device number 7 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    3.400530] usb 1-1.1.2: New USB device found, idVendor=05ac, idProduct=820a
Jun  7 12:49:50 iMac kernel: [    3.400537] usb 1-1.1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  7 12:49:50 iMac kernel: [    3.473130] usb 1-1.1.3: new full-speed USB device number 8 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    3.478954] scsi 2:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
Jun  7 12:49:50 iMac kernel: [    3.479476] sd 2:0:0:0: Attached scsi generic sg2 type 0
Jun  7 12:49:50 iMac kernel: [    3.481320] sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jun  7 12:49:50 iMac kernel: [    3.534691] random: init urandom read with 122 bits of entropy available
Jun  7 12:49:50 iMac kernel: [    3.569001] usb 1-1.1.3: New USB device found, idVendor=05ac, idProduct=820b
Jun  7 12:49:50 iMac kernel: [    3.569006] usb 1-1.1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  7 12:49:50 iMac kernel: [    3.641145] usb 1-1.4.2: new low-speed USB device number 9 using ehci-pci
Jun  7 12:49:50 iMac kernel: [    3.649296] random: nonblocking pool is initialized
Jun  7 12:49:50 iMac kernel: [    3.739994] usb 1-1.4.2: New USB device found, idVendor=05ac, idProduct=0221
Jun  7 12:49:50 iMac kernel: [    3.740000] usb 1-1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  7 12:49:50 iMac kernel: [    3.740004] usb 1-1.4.2: Product: Apple Keyboard
Jun  7 12:49:50 iMac kernel: [    3.740007] usb 1-1.4.2: Manufacturer: Apple, Inc
Jun  7 12:49:50 iMac kernel: [   10.907526] Adding 8377340k swap on /dev/sda3.  Priority:-1 extents:1 across:8377340k FS
Jun  7 12:49:50 iMac kernel: [   11.632468] lp: driver loaded but no devices found
Jun  7 12:49:50 iMac kernel: [   11.638998] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun  7 12:49:50 iMac kernel: [   11.639021] ppdev: user-space parallel port driver
Jun  7 12:49:50 iMac kernel: [   11.661300] [drm] Initialized drm 1.1.0 20060810
Jun  7 12:49:50 iMac kernel: [   11.664634] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
Jun  7 12:49:50 iMac kernel: [   11.664641] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  7 12:49:50 iMac kernel: [   11.664644] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  7 12:49:50 iMac kernel: [   11.664648] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  7 12:49:50 iMac kernel: [   11.664649] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  7 12:49:50 iMac kernel: [   11.664653] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  7 12:49:50 iMac kernel: [   11.664654] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  7 12:49:50 iMac kernel: [   11.664658] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  7 12:49:50 iMac kernel: [   11.664659] lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun  7 12:49:50 iMac kernel: [   11.670241] intel ips 0000:00:1f.6: Non-IPS CPU detected.
Jun  7 12:49:50 iMac kernel: [   11.670244] intel ips 0000:00:1f.6: IPS not supported on this CPU
Jun  7 12:49:50 iMac kernel: [   11.676094] EDAC MC: Ver: 3.0.0
Jun  7 12:49:50 iMac kernel: [   11.676227] cfg80211: Calling CRDA to update world regulatory domain
Jun  7 12:49:50 iMac kernel: [   11.678307] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (POLLED)
Jun  7 12:49:50 iMac kernel: [   11.678354] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jun  7 12:49:50 iMac kernel: [   11.678547] EDAC i7core: Driver loaded, 1 memory controller(s) found.
Jun  7 12:49:50 iMac kernel: [   11.698006] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jun  7 12:49:50 iMac kernel: [   11.718677] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
Jun  7 12:49:50 iMac kernel: [   11.718776] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
Jun  7 12:49:50 iMac kernel: [   11.720269] snd_hda_intel 0000:01:00.1: irq 46 for MSI/MSI-X
Jun  7 12:49:50 iMac kernel: [   11.729869] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card1/input3
Jun  7 12:49:50 iMac kernel: [   11.733596] sound hdaudioC0D0: autoconfig: line_outs=2 (0xa/0xb/0x0/0x0/0x0) type:speaker
Jun  7 12:49:50 iMac kernel: [   11.733600] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun  7 12:49:50 iMac kernel: [   11.733602] sound hdaudioC0D0:    hp_outs=1 (0x9/0x0/0x0/0x0/0x0)
Jun  7 12:49:50 iMac kernel: [   11.733604] sound hdaudioC0D0:    mono: mono_out=0x0
Jun  7 12:49:50 iMac kernel: [   11.733606] sound hdaudioC0D0:    dig-out=0x10/0x0
Jun  7 12:49:50 iMac kernel: [   11.733607] sound hdaudioC0D0:    inputs:
Jun  7 12:49:50 iMac kernel: [   11.733610] sound hdaudioC0D0:      Mic=0xd
Jun  7 12:49:50 iMac kernel: [   11.733611] sound hdaudioC0D0:      Line=0xc
Jun  7 12:49:50 iMac kernel: [   11.733613] sound hdaudioC0D0:    dig-in=0xf
Jun  7 12:49:50 iMac kernel: [   11.737693] input: HDA Intel MID Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
Jun  7 12:49:50 iMac kernel: [   11.737774] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
Jun  7 12:49:50 iMac kernel: [   11.737847] input: HDA Intel MID SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
Jun  7 12:49:50 iMac kernel: [   11.746305] scsi3 : SBP-2 IEEE-1394
Jun  7 12:49:50 iMac kernel: [   11.956316] applesmc: key=297 fan=3 temp=36 index=35 acc=0 lux=2 kbd=0
Jun  7 12:49:50 iMac kernel: [   11.963781] [drm:radeon_init] *ERROR* No UMS support in radeon module!
Jun  7 12:49:50 iMac kernel: [   12.150035] ath: EEPROM regdomain: 0x37
Jun  7 12:49:50 iMac kernel: [   12.150037] ath: EEPROM indicates we should expect a direct regpair map
Jun  7 12:49:50 iMac kernel: [   12.150038] ath: Country alpha2 being used: AW
Jun  7 12:49:50 iMac kernel: [   12.150039] ath: Regpair used: 0x37
Jun  7 12:49:50 iMac kernel: [   12.158548] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Jun  7 12:49:50 iMac kernel: [   12.158795] cfg80211: Calling CRDA to update world regulatory domain
Jun  7 12:49:50 iMac kernel: [   12.158832] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffc900119e0000, irq=17
Jun  7 12:49:50 iMac kernel: [   12.250024] firewire_sbp2 fw1.0: logged in to LUN 0000 (0 retries)
Jun  7 12:49:50 iMac kernel: [   12.413953] cfg80211: World regulatory domain updated:
Jun  7 12:49:50 iMac kernel: [   12.413955] cfg80211:  DFS Master region: unset
Jun  7 12:49:50 iMac kernel: [   12.413956] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  7 12:49:50 iMac kernel: [   12.413957] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:49:50 iMac kernel: [   12.413959] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:49:50 iMac kernel: [   12.413960] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:49:50 iMac kernel: [   12.413961] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:49:50 iMac kernel: [   12.413962] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:49:50 iMac kernel: [   12.413969] cfg80211: Calling CRDA for country: AW
Jun  7 12:49:50 iMac kernel: [   12.417936] cfg80211: Regulatory domain changed to country: AW
Jun  7 12:49:50 iMac kernel: [   12.417938] cfg80211:  DFS Master region: unset
Jun  7 12:49:50 iMac kernel: [   12.417939] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  7 12:49:50 iMac kernel: [   12.417941] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  7 12:49:50 iMac kernel: [   12.417945] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  7 12:49:50 iMac kernel: [   12.417946] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
Jun  7 12:49:50 iMac kernel: [   12.417947] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm), (0 s)
Jun  7 12:49:50 iMac kernel: [   12.836006] audit: type=1400 audit(1433674187.436:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=496 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   12.836012] audit: type=1400 audit(1433674187.436:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=496 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   12.836015] audit: type=1400 audit(1433674187.436:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=496 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   12.836331] audit: type=1400 audit(1433674187.436:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=496 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   12.836335] audit: type=1400 audit(1433674187.436:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=496 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   12.836481] audit: type=1400 audit(1433674187.436:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=497 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   12.836487] audit: type=1400 audit(1433674187.436:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=497 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   12.836491] audit: type=1400 audit(1433674187.436:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=497 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   12.836497] audit: type=1400 audit(1433674187.436:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=523 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   12.836502] audit: type=1400 audit(1433674187.436:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=523 comm="apparmor_parser"
Jun  7 12:49:50 iMac kernel: [   13.138554] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.0/0003:05AC:0221.0005/input/input7
Jun  7 12:49:50 iMac kernel: [   13.138684] apple 0003:05AC:0221.0005: input,hidraw0: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input0
Jun  7 12:49:50 iMac kernel: [   13.139228] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.1/0003:05AC:0221.0006/input/input8
Jun  7 12:49:50 iMac kernel: [   13.139332] apple 0003:05AC:0221.0006: input,hidraw1: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input1
Jun  7 12:49:50 iMac kernel: [   13.140422] input: Microsoft Microsoft Wheel Mouse Optical® as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.4/2-1.4:1.0/0003:045E:0040.0002/input/input9
Jun  7 12:49:50 iMac kernel: [   13.140552] hid-generic 0003:045E:0040.0002: input,hidraw2: USB HID v1.00 Mouse [Microsoft Microsoft Wheel Mouse Optical®] on usb-0000:00:1d.7-1.4/input0
Jun  7 12:49:50 iMac kernel: [   13.140642] media: Linux media interface: v0.10
Jun  7 12:49:50 iMac kernel: [   13.140715] input: HID 05ac:820a as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.2/1-1.1.2:1.0/0003:05AC:820A.0003/input/input10
Jun  7 12:49:50 iMac kernel: [   13.140843] hid-generic 0003:05AC:820A.0003: input,hidraw3: USB HID v1.11 Keyboard [HID 05ac:820a] on usb-0000:00:1a.7-1.1.2/input0
Jun  7 12:49:50 iMac kernel: [   13.144581] Linux video capture interface: v2.00
Jun  7 12:49:50 iMac kernel: [   13.146853] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.2/2-1.2:1.0/0003:05AC:8242.0001/input/input12
Jun  7 12:49:50 iMac kernel: [   13.151515] Bluetooth: Core ver 2.19
Jun  7 12:49:50 iMac kernel: [   13.151527] NET: Registered protocol family 31
Jun  7 12:49:50 iMac kernel: [   13.151529] Bluetooth: HCI device and connection manager initialized
Jun  7 12:49:50 iMac kernel: [   13.151535] Bluetooth: HCI socket layer initialized
Jun  7 12:49:50 iMac kernel: [   13.151538] Bluetooth: L2CAP socket layer initialized
Jun  7 12:49:50 iMac kernel: [   13.151547] Bluetooth: SCO socket layer initialized
Jun  7 12:49:50 iMac kernel: [   13.151828] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8502)
Jun  7 12:49:50 iMac kernel: [   13.153879] appleir 0003:05AC:8242.0001: input,hiddev0,hidraw4: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
Jun  7 12:49:50 iMac kernel: [   13.154756] usbcore: registered new interface driver btusb
Jun  7 12:49:50 iMac kernel: [   13.155573] input: HID 05ac:820b as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.1/1-1.1.3/1-1.1.3:1.0/0003:05AC:820B.0004/input/input11
Jun  7 12:49:50 iMac kernel: [   13.156121] hid-generic 0003:05AC:820B.0004: input,hidraw5: USB HID v1.11 Mouse [HID 05ac:820b] on usb-0000:00:1a.7-1.1.3/input0
Jun  7 12:49:50 iMac kernel: [   13.159922] input: Built-in iSight as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1:1.0/input/input13
Jun  7 12:49:50 iMac kernel: [   13.159991] usbcore: registered new interface driver uvcvideo
Jun  7 12:49:50 iMac kernel: [   13.159993] USB Video Class driver (1.1.1)
Jun  7 12:49:50 iMac kernel: [   13.226800] usb 1-1.1.2: USB disconnect, device number 7
Jun  7 12:49:50 iMac kernel: [   13.419472] usb 1-1.1.3: USB disconnect, device number 8
Jun  7 12:49:50 iMac kernel: [   14.114212] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
Jun  7 12:49:50 iMac kernel: [   16.306708] Bluetooth: RFCOMM TTY layer initialized
Jun  7 12:49:50 iMac kernel: [   16.306718] Bluetooth: RFCOMM socket layer initialized
Jun  7 12:49:50 iMac kernel: [   16.306722] Bluetooth: RFCOMM ver 1.11
Jun  7 12:49:51 iMac kernel: [   16.466548] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jun  7 12:49:51 iMac kernel: [   16.466551] Bluetooth: BNEP filters: protocol multicast
Jun  7 12:49:51 iMac kernel: [   16.466557] Bluetooth: BNEP socket layer initialized
Jun  7 12:49:52 iMac kernel: [   17.725081] tg3 0000:02:00.0: irq 47 for MSI/MSI-X
Jun  7 12:49:53 iMac kernel: [   18.512268] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun  7 12:49:53 iMac kernel: [   18.528726] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Jun  7 12:49:53 iMac kernel: [   18.819398] audit_printk_skb: 33 callbacks suppressed
Jun  7 12:49:53 iMac kernel: [   18.819401] audit: type=1400 audit(1433674193.412:23): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=1042 comm="apparmor_parser"
Jun  7 12:49:53 iMac kernel: [   18.820161] audit: type=1400 audit(1433674193.412:24): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=1034 comm="apparmor_parser"
Jun  7 12:49:53 iMac kernel: [   18.820167] audit: type=1400 audit(1433674193.412:25): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=1034 comm="apparmor_parser"
Jun  7 12:49:53 iMac kernel: [   18.820552] audit: type=1400 audit(1433674193.416:26): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1040 comm="apparmor_parser"
Jun  7 12:49:53 iMac kernel: [   18.820560] audit: type=1400 audit(1433674193.416:27): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1040 comm="apparmor_parser"
Jun  7 12:49:53 iMac kernel: [   18.820639] audit: type=1400 audit(1433674193.416:28): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="chromium" pid=1034 comm="apparmor_parser"
Jun  7 12:49:53 iMac kernel: [   18.820768] audit: type=1400 audit(1433674193.416:29): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/mission-control-5" pid=1038 comm="apparmor_parser"
Jun  7 12:49:53 iMac kernel: [   18.820775] audit: type=1400 audit(1433674193.416:30): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/telepathy-*" pid=1038 comm="apparmor_parser"
Jun  7 12:49:53 iMac kernel: [   18.820780] audit: type=1400 audit(1433674193.416:31): apparmor="STATUS" operation="profile_load" profile="unconfined" name="pxgsettings" pid=1038 comm="apparmor_parser"
Jun  7 12:49:53 iMac kernel: [   18.820785] audit: type=1400 audit(1433674193.416:32): apparmor="STATUS" operation="profile_load" profile="unconfined" name="sanitized_helper" pid=1038 comm="apparmor_parser"
Jun  7 12:49:54 iMac kernel: [   20.101841] tg3 0000:02:00.0 eth0: Link is up at 100 Mbps, full duplex
Jun  7 12:49:54 iMac kernel: [   20.101847] tg3 0000:02:00.0 eth0: Flow control is on for TX and on for RX
Jun  7 12:49:54 iMac kernel: [   20.101856] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun  7 12:49:55 iMac kernel: [   20.434146] vboxdrv: module verification failed: signature and/or  required key missing - tainting kernel
Jun  7 12:49:55 iMac kernel: [   20.437068] vboxdrv: Found 8 processor cores.
Jun  7 12:49:55 iMac kernel: [   20.437516] vboxdrv: fAsync=0 offMin=0x1d4 offMax=0x2df3
Jun  7 12:49:55 iMac kernel: [   20.437580] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
Jun  7 12:49:55 iMac kernel: [   20.437581] vboxdrv: Successfully loaded version 4.3.10_Ubuntu (interface 0x001a0007).
Jun  7 12:49:55 iMac kernel: [   20.448108] vboxpci: IOMMU not found (not registered)
Jun  7 12:49:58 iMac kernel: [   24.003014] scsi 3:0:0:0: Direct-Access     SAMSUNG  HD103UJ          1AA0 PQ: 0 ANSI: 4
Jun  7 12:49:58 iMac kernel: [   24.024834] sd 3:0:0:0: Attached scsi generic sg3 type 0
Jun  7 12:49:58 iMac kernel: [   24.026227] sd 3:0:0:0: [sdc] 3907049984 512-byte logical blocks: (2.00 TB/1.81 TiB)
Jun  7 12:49:58 iMac kernel: [   24.027377] sd 3:0:0:0: [sdc] Write Protect is off
Jun  7 12:49:58 iMac kernel: [   24.027380] sd 3:0:0:0: [sdc] Mode Sense: 10 00 00 00
Jun  7 12:49:58 iMac kernel: [   24.028173] sd 3:0:0:0: [sdc] Cache data unavailable
Jun  7 12:49:58 iMac kernel: [   24.028175] sd 3:0:0:0: [sdc] Assuming drive cache: write through
Jun  7 12:49:58 iMac kernel: [   24.043311]  sdc: sdc1
Jun  7 12:49:58 iMac kernel: [   24.050060] sd 3:0:0:0: [sdc] Attached SCSI disk
Jun  7 12:50:15 iMac kernel: [   40.856900] EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
Jun  7 12:50:20 iMac kernel: [   46.151162] audit_printk_skb: 123 callbacks suppressed
Jun  7 12:50:20 iMac kernel: [   46.151165] audit: type=1400 audit(1433674220.708:74): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=2413 comm="apparmor_parser"
Jun  7 12:50:20 iMac kernel: [   46.151172] audit: type=1400 audit(1433674220.708:75): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2413 comm="apparmor_parser"
Jun  7 12:50:20 iMac kernel: [   46.151534] audit: type=1400 audit(1433674220.708:76): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2413 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [    0.000000] Initializing cgroup subsys cpuset
Jun  7 12:59:36 iMac kernel: [    0.000000] Initializing cgroup subsys cpu
Jun  7 12:59:36 iMac kernel: [    0.000000] Initializing cgroup subsys cpuacct
Jun  7 12:59:36 iMac kernel: [    0.000000] Linux version 3.16.0-38-generic (buildd@allspice) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #52~14.04.1-Ubuntu SMP Fri May 8 09:43:57 UTC 2015 (Ubuntu 3.16.0-38.52~14.04.1-generic 3.16.7-ckt10)
Jun  7 12:59:36 iMac kernel: [    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=a0523afa-1512-41aa-8660-804fbe235596 ro quiet splash vt.handoff=7
Jun  7 12:59:36 iMac kernel: [    0.000000] KERNEL supported cpus:
Jun  7 12:59:36 iMac kernel: [    0.000000]   Intel GenuineIntel
Jun  7 12:59:36 iMac kernel: [    0.000000]   AMD AuthenticAMD
Jun  7 12:59:36 iMac kernel: [    0.000000]   Centaur CentaurHauls
Jun  7 12:59:36 iMac kernel: [    0.000000] Disabled fast string operations
Jun  7 12:59:36 iMac kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf65cfff] usable
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf65d000-0x00000000bf6eefff] ACPI NVS
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf6ef000-0x00000000bf7f5fff] ACPI data
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7f6000-0x00000000bf7fefff] reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf7ff000-0x00000000bf7fffff] ACPI data
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000bf800000-0x00000000bfffffff] reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed1b000-0x00000000fed1ffff] reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000023fffffff] usable
Jun  7 12:59:36 iMac kernel: [    0.000000] NX (Execute Disable) protection: active
Jun  7 12:59:36 iMac kernel: [    0.000000] SMBIOS 2.4 present.
Jun  7 12:59:36 iMac kernel: [    0.000000] DMI: Apple Inc. iMac11,1/Mac-F2268DAE, BIOS    IM111.88Z.0034.B02.1003171314 03/17/10
Jun  7 12:59:36 iMac kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jun  7 12:59:36 iMac kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Jun  7 12:59:36 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  7 12:59:36 iMac kernel: [    0.000000] e820: last_pfn = 0x240000 max_arch_pfn = 0x400000000
Jun  7 12:59:36 iMac kernel: [    0.000000] MTRR default type: write-back
Jun  7 12:59:36 iMac kernel: [    0.000000] MTRR fixed ranges enabled:
Jun  7 12:59:36 iMac kernel: [    0.000000]   00000-9FFFF write-back
Jun  7 12:59:36 iMac kernel: [    0.000000]   A0000-BFFFF uncachable
Jun  7 12:59:36 iMac kernel: [    0.000000]   C0000-DFFFF write-protect
Jun  7 12:59:36 iMac kernel: [    0.000000]   E0000-FFFFF uncachable
Jun  7 12:59:36 iMac kernel: [    0.000000] MTRR variable ranges enabled:
Jun  7 12:59:36 iMac kernel: [    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
Jun  7 12:59:36 iMac kernel: [    0.000000]   1 disabled
Jun  7 12:59:36 iMac kernel: [    0.000000]   2 disabled
Jun  7 12:59:36 iMac kernel: [    0.000000]   3 disabled
Jun  7 12:59:36 iMac kernel: [    0.000000]   4 disabled
Jun  7 12:59:36 iMac kernel: [    0.000000]   5 disabled
Jun  7 12:59:36 iMac kernel: [    0.000000]   6 disabled
Jun  7 12:59:36 iMac kernel: [    0.000000]   7 disabled
Jun  7 12:59:36 iMac kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Jun  7 12:59:36 iMac kernel: [    0.000000] e820: last_pfn = 0xbf65d max_arch_pfn = 0x400000000
Jun  7 12:59:36 iMac kernel: [    0.000000] Scanning 1 areas for low memory corruption
Jun  7 12:59:36 iMac kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
Jun  7 12:59:36 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
Jun  7 12:59:36 iMac kernel: [    0.000000]  [mem 0x00000000-0x000fffff] page 4k
Jun  7 12:59:36 iMac kernel: [    0.000000] BRK [0x01fbd000, 0x01fbdfff] PGTABLE
Jun  7 12:59:36 iMac kernel: [    0.000000] BRK [0x01fbe000, 0x01fbefff] PGTABLE
Jun  7 12:59:36 iMac kernel: [    0.000000] BRK [0x01fbf000, 0x01fbffff] PGTABLE
Jun  7 12:59:36 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23fe00000-0x23fffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000]  [mem 0x23fe00000-0x23fffffff] page 2M
Jun  7 12:59:36 iMac kernel: [    0.000000] BRK [0x01fc0000, 0x01fc0fff] PGTABLE
Jun  7 12:59:36 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x23c000000-0x23fdfffff]
Jun  7 12:59:36 iMac kernel: [    0.000000]  [mem 0x23c000000-0x23fdfffff] page 2M
Jun  7 12:59:36 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x200000000-0x23bffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000]  [mem 0x200000000-0x23bffffff] page 2M
Jun  7 12:59:36 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x00100000-0xbf65cfff]
Jun  7 12:59:36 iMac kernel: [    0.000000]  [mem 0x00100000-0x001fffff] page 4k
Jun  7 12:59:36 iMac kernel: [    0.000000]  [mem 0x00200000-0xbf5fffff] page 2M
Jun  7 12:59:36 iMac kernel: [    0.000000]  [mem 0xbf600000-0xbf65cfff] page 4k
Jun  7 12:59:36 iMac kernel: [    0.000000] init_memory_mapping: [mem 0x100000000-0x1ffffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000]  [mem 0x100000000-0x1ffffffff] page 2M
Jun  7 12:59:36 iMac kernel: [    0.000000] BRK [0x01fc1000, 0x01fc1fff] PGTABLE
Jun  7 12:59:36 iMac kernel: [    0.000000] BRK [0x01fc2000, 0x01fc2fff] PGTABLE
Jun  7 12:59:36 iMac kernel: [    0.000000] RAMDISK: [mem 0x35ad8000-0x36d63fff]
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: Early table checksum verification disabled
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 APPLE )
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: XSDT 0x00000000BF70E1C0 00008C (v01 APPLE  Apple00  00000034      01000013)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: FACP 0x00000000BF70B000 0000F4 (v04 APPLE  Apple00  00000034 Loki 0000005F)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: DSDT 0x00000000BF6FF000 0050F3 (v01 APPLE  iMac     00110001 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: FACS 0x00000000BF665000 000040
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: ASF! 0x00000000BF70D000 0000A5 (v32 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: HPET 0x00000000BF70A000 000038 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF709000 0000BC (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: APIC 0x00000000BF708000 0000BC (v02 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: MCFG 0x00000000BF707000 00003C (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: SBST 0x00000000BF706000 000030 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: ECDT 0x00000000BF705000 000053 (v01 APPLE  Apple00  00000001 Loki 0000005F)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FB000 0000B1 (v01 APPLE  SmcDppt  00001000 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FA000 000774 (v01 APPLE  UsbNoRmh 00001000 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6F8000 000A10 (v01 PmRef  CpuPm    00003000 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FE000 0000FA (v01 SataRe SataPri  00001000 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: SSDT 0x00000000BF6FD000 0000FA (v01 SataRe SataSec  00001000 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: BIOS bug: multiple APIC/MADT found, using 0
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: If "acpi_apic_instance=2" works better, notify linux-acpi@vger.kernel.org
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  7 12:59:36 iMac kernel: [    0.000000] No NUMA configuration found
Jun  7 12:59:36 iMac kernel: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000023fffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] Initmem setup node 0 [mem 0x00000000-0x23fffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000]   NODE_DATA [mem 0x23fff6000-0x23fffafff]
Jun  7 12:59:36 iMac kernel: [    0.000000]  [ffffea0000000000-ffffea0008ffffff] PMD -> [ffff880237600000-ffff88023f5fffff] on node 0
Jun  7 12:59:36 iMac kernel: [    0.000000] Zone ranges:
Jun  7 12:59:36 iMac kernel: [    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000]   Normal   [mem 0x100000000-0x23fffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] Movable zone start for each node
Jun  7 12:59:36 iMac kernel: [    0.000000] Early memory node ranges
Jun  7 12:59:36 iMac kernel: [    0.000000]   node   0: [mem 0x00001000-0x0009efff]
Jun  7 12:59:36 iMac kernel: [    0.000000]   node   0: [mem 0x00100000-0xbf65cfff]
Jun  7 12:59:36 iMac kernel: [    0.000000]   node   0: [mem 0x100000000-0x23fffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] On node 0 totalpages: 2094587
Jun  7 12:59:36 iMac kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Jun  7 12:59:36 iMac kernel: [    0.000000]   DMA zone: 21 pages reserved
Jun  7 12:59:36 iMac kernel: [    0.000000]   DMA zone: 3998 pages, LIFO batch:0
Jun  7 12:59:36 iMac kernel: [    0.000000]   DMA32 zone: 12186 pages used for memmap
Jun  7 12:59:36 iMac kernel: [    0.000000]   DMA32 zone: 779869 pages, LIFO batch:31
Jun  7 12:59:36 iMac kernel: [    0.000000]   Normal zone: 20480 pages used for memmap
Jun  7 12:59:36 iMac kernel: [    0.000000]   Normal zone: 1310720 pages, LIFO batch:31
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x04] enabled)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x05] enabled)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x06] enabled)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x07] enabled)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Jun  7 12:59:36 iMac kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: IRQ0 used by override.
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: IRQ2 used by override.
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: IRQ9 used by override.
Jun  7 12:59:36 iMac kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Jun  7 12:59:36 iMac kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Jun  7 12:59:36 iMac kernel: [    0.000000] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jun  7 12:59:36 iMac kernel: [    0.000000] nr_irqs_gsi: 40
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf65d000-0xbf6eefff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf6ef000-0xbf7f5fff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7f6000-0xbf7fefff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf7ff000-0xbf7fffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xbfffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xc0000000-0xdfffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfebfffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed1afff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1b000-0xfed1ffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
Jun  7 12:59:36 iMac kernel: [    0.000000] e820: [mem 0xc0000000-0xdfffffff] available for PCI devices
Jun  7 12:59:36 iMac kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Jun  7 12:59:36 iMac kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Jun  7 12:59:36 iMac kernel: [    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88023fc00000 s81408 r8192 d20992 u262144
Jun  7 12:59:36 iMac kernel: [    0.000000] pcpu-alloc: s81408 r8192 d20992 u262144 alloc=1*2097152
Jun  7 12:59:36 iMac kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Jun  7 12:59:36 iMac kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 2061836
Jun  7 12:59:36 iMac kernel: [    0.000000] Policy zone: Normal
Jun  7 12:59:36 iMac kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-38-generic root=UUID=a0523afa-1512-41aa-8660-804fbe235596 ro quiet splash vt.handoff=7
Jun  7 12:59:36 iMac kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Jun  7 12:59:36 iMac kernel: [    0.000000] AGP: Checking aperture...
Jun  7 12:59:36 iMac kernel: [    0.000000] AGP: No AGP bridge found
Jun  7 12:59:36 iMac kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Jun  7 12:59:36 iMac kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Jun  7 12:59:36 iMac kernel: [    0.000000] Memory: 8144852K/8378348K available (7626K kernel code, 1131K rwdata, 3596K rodata, 1352K init, 1300K bss, 233496K reserved)
Jun  7 12:59:36 iMac kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jun  7 12:59:36 iMac kernel: [    0.000000] Hierarchical RCU implementation.
Jun  7 12:59:36 iMac kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Jun  7 12:59:36 iMac kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Jun  7 12:59:36 iMac kernel: [    0.000000] 	Offload RCU callbacks from all CPUs
Jun  7 12:59:36 iMac kernel: [    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
Jun  7 12:59:36 iMac kernel: [    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jun  7 12:59:36 iMac kernel: [    0.000000] NR_IRQS:16640 nr_irqs:744 16
Jun  7 12:59:36 iMac kernel: [    0.000000] vt handoff: transparent VT on vt#7
Jun  7 12:59:36 iMac kernel: [    0.000000] Console: colour dummy device 80x25
Jun  7 12:59:36 iMac kernel: [    0.000000] console [tty0] enabled
Jun  7 12:59:36 iMac kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Jun  7 12:59:36 iMac kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Jun  7 12:59:36 iMac kernel: [    0.000000] hpet clockevent registered
Jun  7 12:59:36 iMac kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Jun  7 12:59:36 iMac kernel: [    0.000000] tsc: Detected 2792.864 MHz processor
Jun  7 12:59:36 iMac kernel: [    0.000030] Calibrating delay loop (skipped), value calculated using timer frequency.. 5585.72 BogoMIPS (lpj=11171456)
Jun  7 12:59:36 iMac kernel: [    0.000033] pid_max: default: 32768 minimum: 301
Jun  7 12:59:36 iMac kernel: [    0.000040] ACPI: Core revision 20140424
Jun  7 12:59:36 iMac kernel: [    0.004383] ACPI: All ACPI Tables successfully acquired
Jun  7 12:59:36 iMac kernel: [    0.004662] Security Framework initialized
Jun  7 12:59:36 iMac kernel: [    0.004681] AppArmor: AppArmor initialized
Jun  7 12:59:36 iMac kernel: [    0.004682] Yama: becoming mindful.
Jun  7 12:59:36 iMac kernel: [    0.005159] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Jun  7 12:59:36 iMac kernel: [    0.006871] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Jun  7 12:59:36 iMac kernel: [    0.007658] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  7 12:59:36 iMac kernel: [    0.007666] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Jun  7 12:59:36 iMac kernel: [    0.007897] Initializing cgroup subsys memory
Jun  7 12:59:36 iMac kernel: [    0.007918] Initializing cgroup subsys devices
Jun  7 12:59:36 iMac kernel: [    0.007923] Initializing cgroup subsys freezer
Jun  7 12:59:36 iMac kernel: [    0.007926] Initializing cgroup subsys net_cls
Jun  7 12:59:36 iMac kernel: [    0.007929] Initializing cgroup subsys blkio
Jun  7 12:59:36 iMac kernel: [    0.007933] Initializing cgroup subsys perf_event
Jun  7 12:59:36 iMac kernel: [    0.007935] Initializing cgroup subsys net_prio
Jun  7 12:59:36 iMac kernel: [    0.007941] Initializing cgroup subsys hugetlb
Jun  7 12:59:36 iMac kernel: [    0.007960] Disabled fast string operations
Jun  7 12:59:36 iMac kernel: [    0.007961] CPU: Physical Processor ID: 0
Jun  7 12:59:36 iMac kernel: [    0.007962] CPU: Processor Core ID: 0
Jun  7 12:59:36 iMac kernel: [    0.007966] mce: CPU supports 9 MCE banks
Jun  7 12:59:36 iMac kernel: [    0.007974] CPU0: Thermal monitoring enabled (TM1)
Jun  7 12:59:36 iMac kernel: [    0.007982] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
Jun  7 12:59:36 iMac kernel: [    0.007982] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Jun  7 12:59:36 iMac kernel: [    0.007982] tlb_flushall_shift: 6
Jun  7 12:59:36 iMac kernel: [    0.008068] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
Jun  7 12:59:36 iMac kernel: [    0.008746] ftrace: allocating 29244 entries in 115 pages
Jun  7 12:59:36 iMac kernel: [    0.020693] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Jun  7 12:59:36 iMac kernel: [    0.060414] smpboot: CPU0: Intel(R) Core(TM) i7 CPU         860  @ 2.80GHz (fam: 06, model: 1e, stepping: 05)
Jun  7 12:59:36 iMac kernel: [    0.165621] Performance Events: PEBS fmt1+, 16-deep LBR, Nehalem events, Intel PMU driver.
Jun  7 12:59:36 iMac kernel: [    0.165635] perf_event_intel: CPU erratum AAJ80 worked around
Jun  7 12:59:36 iMac kernel: [    0.165636] perf_event_intel: CPUID marked event: 'bus cycles' unavailable
Jun  7 12:59:36 iMac kernel: [    0.165637] ... version:                3
Jun  7 12:59:36 iMac kernel: [    0.165638] ... bit width:              48
Jun  7 12:59:36 iMac kernel: [    0.165638] ... generic registers:      4
Jun  7 12:59:36 iMac kernel: [    0.165639] ... value mask:             0000ffffffffffff
Jun  7 12:59:36 iMac kernel: [    0.165640] ... max period:             000000007fffffff
Jun  7 12:59:36 iMac kernel: [    0.165641] ... fixed-purpose events:   3
Jun  7 12:59:36 iMac kernel: [    0.165641] ... event mask:             000000070000000f
Jun  7 12:59:36 iMac kernel: [    0.167198] x86: Booting SMP configuration:
Jun  7 12:59:36 iMac kernel: [    0.167200] .... node  #0, CPUs:      #1
Jun  7 12:59:36 iMac kernel: [    0.178296] Disabled fast string operations
Jun  7 12:59:36 iMac kernel: [    0.180491] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Jun  7 12:59:36 iMac kernel: [    0.180574]  #2
Jun  7 12:59:36 iMac kernel: [    0.191614] Disabled fast string operations
Jun  7 12:59:36 iMac kernel: [    0.193810]  #3<6>[    0.204850] Disabled fast string operations
Jun  7 12:59:36 iMac kernel: [    0.218083]  #4
Jun  7 12:59:36 iMac kernel: [    0.218083] Disabled fast string operations
Jun  7 12:59:36 iMac kernel: [    0.231313]  #5
Jun  7 12:59:36 iMac kernel: [    0.231313] Disabled fast string operations
Jun  7 12:59:36 iMac kernel: [    0.244542]  #6
Jun  7 12:59:36 iMac kernel: [    0.244542] Disabled fast string operations
Jun  7 12:59:36 iMac kernel: [    0.257774]  #7
Jun  7 12:59:36 iMac kernel: [    0.257774] Disabled fast string operations
Jun  7 12:59:36 iMac kernel: [    0.259890] x86: Booted up 1 node, 8 CPUs
Jun  7 12:59:36 iMac kernel: [    0.259894] smpboot: Total of 8 processors activated (44685.82 BogoMIPS)
Jun  7 12:59:36 iMac kernel: [    0.265232] devtmpfs: initialized
Jun  7 12:59:36 iMac kernel: [    0.269000] evm: security.selinux
Jun  7 12:59:36 iMac kernel: [    0.269001] evm: security.SMACK64
Jun  7 12:59:36 iMac kernel: [    0.269002] evm: security.SMACK64EXEC
Jun  7 12:59:36 iMac kernel: [    0.269003] evm: security.SMACK64TRANSMUTE
Jun  7 12:59:36 iMac kernel: [    0.269003] evm: security.SMACK64MMAP
Jun  7 12:59:36 iMac kernel: [    0.269004] evm: security.ima
Jun  7 12:59:36 iMac kernel: [    0.269005] evm: security.capability
Jun  7 12:59:36 iMac kernel: [    0.269049] PM: Registering ACPI NVS region [mem 0xbf65d000-0xbf6eefff] (598016 bytes)
Jun  7 12:59:36 iMac kernel: [    0.269833] pinctrl core: initialized pinctrl subsystem
Jun  7 12:59:36 iMac kernel: [    0.269895] regulator-dummy: no parameters
Jun  7 12:59:36 iMac kernel: [    0.269926] RTC time: 10:59:20, date: 06/07/15
Jun  7 12:59:36 iMac kernel: [    0.269968] NET: Registered protocol family 16
Jun  7 12:59:36 iMac kernel: [    0.270100] cpuidle: using governor ladder
Jun  7 12:59:36 iMac kernel: [    0.270102] cpuidle: using governor menu
Jun  7 12:59:36 iMac kernel: [    0.270144] ACPI: bus type PCI registered
Jun  7 12:59:36 iMac kernel: [    0.270145] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jun  7 12:59:36 iMac kernel: [    0.270210] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Jun  7 12:59:36 iMac kernel: [    0.270212] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Jun  7 12:59:36 iMac kernel: [    0.270645] PCI: Using configuration type 1 for base access
Jun  7 12:59:36 iMac kernel: [    0.274153] ACPI: Added _OSI(Module Device)
Jun  7 12:59:36 iMac kernel: [    0.274154] ACPI: Added _OSI(Processor Device)
Jun  7 12:59:36 iMac kernel: [    0.274156] ACPI: Added _OSI(3.0 _SCP Extensions)
Jun  7 12:59:36 iMac kernel: [    0.274157] ACPI: Added _OSI(Processor Aggregator Device)
Jun  7 12:59:36 iMac kernel: [    0.274878] ACPI : EC: EC description table is found, configuring boot EC
Jun  7 12:59:36 iMac kernel: [    0.277733] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Jun  7 12:59:36 iMac kernel: [    0.278017] ACPI: Dynamic OEM Table Load:
Jun  7 12:59:36 iMac kernel: [    0.278024] ACPI: SSDT 0xFFFF880233FA8000 0004BD (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.278296] ACPI: Dynamic OEM Table Load:
Jun  7 12:59:36 iMac kernel: [    0.278301] ACPI: SSDT 0xFFFF880233FA8800 0006E5 (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.285955] ACPI: Dynamic OEM Table Load:
Jun  7 12:59:36 iMac kernel: [    0.285960] ACPI: SSDT 0xFFFF880233C19000 0003A4 (v01 PmRef  ApIst    00003000 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.289859] ACPI: Dynamic OEM Table Load:
Jun  7 12:59:36 iMac kernel: [    0.289864] ACPI: SSDT 0xFFFF880233F80A00 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
Jun  7 12:59:36 iMac kernel: [    0.294650] ACPI: Interpreter enabled
Jun  7 12:59:36 iMac kernel: [    0.294655] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
Jun  7 12:59:36 iMac kernel: [    0.294658] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
Jun  7 12:59:36 iMac kernel: [    0.294669] ACPI: (supports S0 S3 S4 S5)
Jun  7 12:59:36 iMac kernel: [    0.294670] ACPI: Using IOAPIC for interrupt routing
Jun  7 12:59:36 iMac kernel: [    0.294691] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jun  7 12:59:36 iMac kernel: [    0.298261] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Jun  7 12:59:36 iMac kernel: [    0.298266] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  7 12:59:36 iMac kernel: [    0.298292] \_SB_.PCI0:_OSC invalid UUID
Jun  7 12:59:36 iMac kernel: [    0.298293] _OSC request data:1 1f 0 
Jun  7 12:59:36 iMac kernel: [    0.298296] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
Jun  7 12:59:36 iMac kernel: [    0.298829] PCI host bridge to bus 0000:00
Jun  7 12:59:36 iMac kernel: [    0.298831] pci_bus 0000:00: root bus resource [bus 00-fe]
Jun  7 12:59:36 iMac kernel: [    0.298833] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
Jun  7 12:59:36 iMac kernel: [    0.298834] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
Jun  7 12:59:36 iMac kernel: [    0.298835] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Jun  7 12:59:36 iMac kernel: [    0.298837] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff]
Jun  7 12:59:36 iMac kernel: [    0.298844] pci 0000:00:00.0: [8086:d131] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.298934] pci 0000:00:03.0: [8086:d138] type 01 class 0x060400
Jun  7 12:59:36 iMac kernel: [    0.298981] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.299012] pci 0000:00:03.0: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.299046] pci 0000:00:08.0: [8086:d155] type 00 class 0x088000
Jun  7 12:59:36 iMac kernel: [    0.299133] pci 0000:00:08.1: [8086:d156] type 00 class 0x088000
Jun  7 12:59:36 iMac kernel: [    0.299217] pci 0000:00:08.2: [8086:d157] type 00 class 0x088000
Jun  7 12:59:36 iMac kernel: [    0.299295] pci 0000:00:08.3: [8086:d158] type 00 class 0x088000
Jun  7 12:59:36 iMac kernel: [    0.299369] pci 0000:00:10.0: [8086:d150] type 00 class 0x088000
Jun  7 12:59:36 iMac kernel: [    0.299439] pci 0000:00:10.1: [8086:d151] type 00 class 0x088000
Jun  7 12:59:36 iMac kernel: [    0.299522] pci 0000:00:1a.0: [8086:3b3b] type 00 class 0x0c0300
Jun  7 12:59:36 iMac kernel: [    0.299560] pci 0000:00:1a.0: reg 0x20: [io  0x3060-0x307f]
Jun  7 12:59:36 iMac kernel: [    0.299654] pci 0000:00:1a.7: [8086:3b3c] type 00 class 0x0c0320
Jun  7 12:59:36 iMac kernel: [    0.299673] pci 0000:00:1a.7: reg 0x10: [mem 0xd0705c00-0xd0705fff]
Jun  7 12:59:36 iMac kernel: [    0.299754] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.299799] pci 0000:00:1a.7: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.299837] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
Jun  7 12:59:36 iMac kernel: [    0.299852] pci 0000:00:1b.0: reg 0x10: [mem 0xd0700000-0xd0703fff 64bit]
Jun  7 12:59:36 iMac kernel: [    0.299917] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.299949] pci 0000:00:1b.0: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.299983] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
Jun  7 12:59:36 iMac kernel: [    0.300047] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.300079] pci 0000:00:1c.0: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.300113] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
Jun  7 12:59:36 iMac kernel: [    0.300177] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.300209] pci 0000:00:1c.1: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.300243] pci 0000:00:1c.2: [8086:3b46] type 01 class 0x060400
Jun  7 12:59:36 iMac kernel: [    0.300306] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.300338] pci 0000:00:1c.2: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.300371] pci 0000:00:1c.3: [8086:3b48] type 01 class 0x060400
Jun  7 12:59:36 iMac kernel: [    0.300430] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.300462] pci 0000:00:1c.3: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.300496] pci 0000:00:1c.4: [8086:3b4a] type 01 class 0x060400
Jun  7 12:59:36 iMac kernel: [    0.300555] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.300619] pci 0000:00:1d.0: [8086:3b36] type 00 class 0x0c0300
Jun  7 12:59:36 iMac kernel: [    0.300657] pci 0000:00:1d.0: reg 0x20: [io  0x3040-0x305f]
Jun  7 12:59:36 iMac kernel: [    0.300750] pci 0000:00:1d.7: [8086:3b34] type 00 class 0x0c0320
Jun  7 12:59:36 iMac kernel: [    0.300769] pci 0000:00:1d.7: reg 0x10: [mem 0xd0705800-0xd0705bff]
Jun  7 12:59:36 iMac kernel: [    0.300850] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.300893] pci 0000:00:1d.7: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.300926] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Jun  7 12:59:36 iMac kernel: [    0.301020] pci 0000:00:1f.0: [8086:3b02] type 00 class 0x060100
Jun  7 12:59:36 iMac kernel: [    0.301169] pci 0000:00:1f.2: [8086:3b20] type 00 class 0x01018f
Jun  7 12:59:36 iMac kernel: [    0.301182] pci 0000:00:1f.2: reg 0x10: [io  0x3088-0x308f]
Jun  7 12:59:36 iMac kernel: [    0.301189] pci 0000:00:1f.2: reg 0x14: [io  0x3094-0x3097]
Jun  7 12:59:36 iMac kernel: [    0.301195] pci 0000:00:1f.2: reg 0x18: [io  0x3080-0x3087]
Jun  7 12:59:36 iMac kernel: [    0.301202] pci 0000:00:1f.2: reg 0x1c: [io  0x3090-0x3093]
Jun  7 12:59:36 iMac kernel: [    0.301208] pci 0000:00:1f.2: reg 0x20: [io  0x3020-0x302f]
Jun  7 12:59:36 iMac kernel: [    0.301214] pci 0000:00:1f.2: reg 0x24: [io  0xffe0-0xffef]
Jun  7 12:59:36 iMac kernel: [    0.301293] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
Jun  7 12:59:36 iMac kernel: [    0.301307] pci 0000:00:1f.3: reg 0x10: [mem 0xd0706000-0xd07060ff 64bit]
Jun  7 12:59:36 iMac kernel: [    0.301325] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Jun  7 12:59:36 iMac kernel: [    0.301395] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
Jun  7 12:59:36 iMac kernel: [    0.301416] pci 0000:00:1f.6: reg 0x10: [mem 0xd0704000-0xd0704fff 64bit]
Jun  7 12:59:36 iMac kernel: [    0.301578] pci 0000:01:00.0: [1002:944a] type 00 class 0x030000
Jun  7 12:59:36 iMac kernel: [    0.301590] pci 0000:01:00.0: reg 0x10: [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.301598] pci 0000:01:00.0: reg 0x18: [mem 0xd0620000-0xd062ffff 64bit]
Jun  7 12:59:36 iMac kernel: [    0.301603] pci 0000:01:00.0: reg 0x20: [io  0x2000-0x20ff]
Jun  7 12:59:36 iMac kernel: [    0.301613] pci 0000:01:00.0: reg 0x30: [mem 0xd0600000-0xd061ffff pref]
Jun  7 12:59:36 iMac kernel: [    0.301639] pci 0000:01:00.0: supports D1 D2
Jun  7 12:59:36 iMac kernel: [    0.301655] pci 0000:01:00.0: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.301690] pci 0000:01:00.1: [1002:aa30] type 00 class 0x040300
Jun  7 12:59:36 iMac kernel: [    0.301702] pci 0000:01:00.1: reg 0x10: [mem 0xd0630000-0xd0633fff 64bit]
Jun  7 12:59:36 iMac kernel: [    0.301749] pci 0000:01:00.1: supports D1 D2
Jun  7 12:59:36 iMac kernel: [    0.311100] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  7 12:59:36 iMac kernel: [    0.311106] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  7 12:59:36 iMac kernel: [    0.311111] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  7 12:59:36 iMac kernel: [    0.311117] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.311217] pci 0000:02:00.0: [14e4:1684] type 00 class 0x020000
Jun  7 12:59:36 iMac kernel: [    0.311242] pci 0000:02:00.0: reg 0x10: [mem 0xd0500000-0xd050ffff 64bit]
Jun  7 12:59:36 iMac kernel: [    0.311386] pci 0000:02:00.0: PME# supported from D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.311425] pci 0000:02:00.0: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.319115] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  7 12:59:36 iMac kernel: [    0.319123] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  7 12:59:36 iMac kernel: [    0.319223] pci 0000:03:00.0: [168c:002a] type 00 class 0x028000
Jun  7 12:59:36 iMac kernel: [    0.319247] pci 0000:03:00.0: reg 0x10: [mem 0xd0400000-0xd040ffff 64bit]
Jun  7 12:59:36 iMac kernel: [    0.319368] pci 0000:03:00.0: supports D1
Jun  7 12:59:36 iMac kernel: [    0.319369] pci 0000:03:00.0: PME# supported from D0 D1 D3hot D3cold
Jun  7 12:59:36 iMac kernel: [    0.319398] pci 0000:03:00.0: System wakeup disabled by ACPI
Jun  7 12:59:36 iMac kernel: [    0.319426] pci 0000:03:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
Jun  7 12:59:36 iMac kernel: [    0.319433] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  7 12:59:36 iMac kernel: [    0.319438] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  7 12:59:36 iMac kernel: [    0.319515] pci 0000:04:00.0: [104c:823e] type 01 class 0x060400
Jun  7 12:59:36 iMac kernel: [    0.319640] pci 0000:04:00.0: supports D1 D2
Jun  7 12:59:36 iMac kernel: [    0.327125] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  7 12:59:36 iMac kernel: [    0.327133] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  7 12:59:36 iMac kernel: [    0.327244] pci 0000:05:00.0: [104c:823f] type 00 class 0x0c0010
Jun  7 12:59:36 iMac kernel: [    0.327269] pci 0000:05:00.0: reg 0x10: [mem 0xd0304000-0xd03047ff]
Jun  7 12:59:36 iMac kernel: [    0.327283] pci 0000:05:00.0: reg 0x14: [mem 0xd0300000-0xd0303fff]
Jun  7 12:59:36 iMac kernel: [    0.327386] pci 0000:05:00.0: supports D1 D2
Jun  7 12:59:36 iMac kernel: [    0.327387] pci 0000:05:00.0: PME# supported from D0 D1 D2 D3hot
Jun  7 12:59:36 iMac kernel: [    0.327484] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  7 12:59:36 iMac kernel: [    0.327495] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  7 12:59:36 iMac kernel: [    0.327575] acpiphp: Slot [1] registered
Jun  7 12:59:36 iMac kernel: [    0.327580] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  7 12:59:36 iMac kernel: [    0.327584] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  7 12:59:36 iMac kernel: [    0.327633] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  7 12:59:36 iMac kernel: [    0.327638] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  7 12:59:36 iMac kernel: [    0.327703] pci 0000:00:1e.0: PCI bridge to [bus 08] (subtractive decode)
Jun  7 12:59:36 iMac kernel: [    0.327707] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  7 12:59:36 iMac kernel: [    0.327712] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Jun  7 12:59:36 iMac kernel: [    0.327713] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Jun  7 12:59:36 iMac kernel: [    0.327715] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Jun  7 12:59:36 iMac kernel: [    0.327716] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff] (subtractive decode)
Jun  7 12:59:36 iMac kernel: [    0.328070] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  7 12:59:36 iMac kernel: [    0.328112] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  7 12:59:36 iMac kernel: [    0.328152] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  7 12:59:36 iMac kernel: [    0.328191] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  7 12:59:36 iMac kernel: [    0.328229] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
Jun  7 12:59:36 iMac kernel: [    0.328270] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
Jun  7 12:59:36 iMac kernel: [    0.328310] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
Jun  7 12:59:36 iMac kernel: [    0.328349] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 *11 12 14 15)
Jun  7 12:59:36 iMac kernel: [    0.328424] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
Jun  7 12:59:36 iMac kernel: [    0.328427] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Jun  7 12:59:36 iMac kernel: [    0.328430] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
Jun  7 12:59:36 iMac kernel: [    0.328465] PCI host bridge to bus 0000:ff
Jun  7 12:59:36 iMac kernel: [    0.328467] pci_bus 0000:ff: root bus resource [bus ff]
Jun  7 12:59:36 iMac kernel: [    0.328472] pci 0000:ff:00.0: [8086:2c51] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328511] pci 0000:ff:00.1: [8086:2c81] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328551] pci 0000:ff:02.0: [8086:2c90] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328588] pci 0000:ff:02.1: [8086:2c91] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328626] pci 0000:ff:03.0: [8086:2c98] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328662] pci 0000:ff:03.1: [8086:2c99] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328698] pci 0000:ff:03.4: [8086:2c9c] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328735] pci 0000:ff:04.0: [8086:2ca0] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328770] pci 0000:ff:04.1: [8086:2ca1] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328805] pci 0000:ff:04.2: [8086:2ca2] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328841] pci 0000:ff:04.3: [8086:2ca3] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328879] pci 0000:ff:05.0: [8086:2ca8] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328915] pci 0000:ff:05.1: [8086:2ca9] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328951] pci 0000:ff:05.2: [8086:2caa] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.328987] pci 0000:ff:05.3: [8086:2cab] type 00 class 0x060000
Jun  7 12:59:36 iMac kernel: [    0.329066] ACPI: Enabled 4 GPEs in block 00 to 3F
Jun  7 12:59:36 iMac kernel: [    0.329085] ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
Jun  7 12:59:36 iMac kernel: [    0.329165] vgaarb: setting as boot device: PCI:0000:01:00.0
Jun  7 12:59:36 iMac kernel: [    0.329167] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Jun  7 12:59:36 iMac kernel: [    0.329170] vgaarb: loaded
Jun  7 12:59:36 iMac kernel: [    0.329171] vgaarb: bridge control possible 0000:01:00.0
Jun  7 12:59:36 iMac kernel: [    0.329368] SCSI subsystem initialized
Jun  7 12:59:36 iMac kernel: [    0.329408] libata version 3.00 loaded.
Jun  7 12:59:36 iMac kernel: [    0.329433] ACPI: bus type USB registered
Jun  7 12:59:36 iMac kernel: [    0.329448] usbcore: registered new interface driver usbfs
Jun  7 12:59:36 iMac kernel: [    0.329455] usbcore: registered new interface driver hub
Jun  7 12:59:36 iMac kernel: [    0.329470] usbcore: registered new device driver usb
Jun  7 12:59:36 iMac kernel: [    0.329582] PCI: Using ACPI for IRQ routing
Jun  7 12:59:36 iMac kernel: [    0.335098] PCI: pci_cache_line_size set to 64 bytes
Jun  7 12:59:36 iMac kernel: [    0.335166] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Jun  7 12:59:36 iMac kernel: [    0.335167] e820: reserve RAM buffer [mem 0xbf65d000-0xbfffffff]
Jun  7 12:59:36 iMac kernel: [    0.335258] NetLabel: Initializing
Jun  7 12:59:36 iMac kernel: [    0.335260] NetLabel:  domain hash size = 128
Jun  7 12:59:36 iMac kernel: [    0.335260] NetLabel:  protocols = UNLABELED CIPSOv4
Jun  7 12:59:36 iMac kernel: [    0.335269] NetLabel:  unlabeled traffic allowed by default
Jun  7 12:59:36 iMac kernel: [    0.335334] HPET: 8 timers in total, 5 timers will be used for per-cpu timer
Jun  7 12:59:36 iMac kernel: [    0.335340] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 40, 41, 42, 43, 44, 0
Jun  7 12:59:36 iMac kernel: [    0.335344] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Jun  7 12:59:36 iMac kernel: [    0.337394] hpet: hpet2 irq 40 for MSI
Jun  7 12:59:36 iMac kernel: [    0.337431] hpet: hpet3 irq 41 for MSI
Jun  7 12:59:36 iMac kernel: [    0.337469] hpet: hpet4 irq 42 for MSI
Jun  7 12:59:36 iMac kernel: [    0.337501] hpet: hpet5 irq 43 for MSI
Jun  7 12:59:36 iMac kernel: [    0.337534] hpet: hpet6 irq 44 for MSI
Jun  7 12:59:36 iMac kernel: [    0.337635] Switched to clocksource hpet
Jun  7 12:59:36 iMac kernel: [    0.342157] AppArmor: AppArmor Filesystem Enabled
Jun  7 12:59:36 iMac kernel: [    0.342186] pnp: PnP ACPI init
Jun  7 12:59:36 iMac kernel: [    0.342199] ACPI: bus type PNP registered
Jun  7 12:59:36 iMac kernel: [    0.342343] system 00:00: [mem 0xfed00000-0xfed003ff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342346] system 00:00: Plug and Play ACPI device, IDs PNP0103 PNP0c01 (active)
Jun  7 12:59:36 iMac kernel: [    0.342393] system 00:01: [io  0x0680-0x069f] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342395] system 00:01: [io  0x1000-0x100f] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342396] system 00:01: [io  0xffff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342397] system 00:01: [io  0xffff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342399] system 00:01: [io  0x0400-0x047f] could not be reserved
Jun  7 12:59:36 iMac kernel: [    0.342400] system 00:01: [io  0x0500-0x057f] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342402] system 00:01: [io  0x164e-0x164f] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342403] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  7 12:59:36 iMac kernel: [    0.342456] system 00:02: [io  0x06a0-0x06af] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342458] system 00:02: [io  0x06b0-0x06ff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342460] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  7 12:59:36 iMac kernel: [    0.342483] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jun  7 12:59:36 iMac kernel: [    0.342659] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342661] system 00:04: [mem 0xfed1b000-0xfed1bfff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342663] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342664] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342665] system 00:04: [mem 0xfeb00000-0xfeb03fff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342667] system 00:04: [mem 0xfed45000-0xfed8ffff] has been reserved
Jun  7 12:59:36 iMac kernel: [    0.342668] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
Jun  7 12:59:36 iMac kernel: [    0.342670] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
Jun  7 12:59:36 iMac kernel: [    0.342671] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Jun  7 12:59:36 iMac kernel: [    0.342823] pnp: PnP ACPI: found 5 devices
Jun  7 12:59:36 iMac kernel: [    0.342824] ACPI: bus type PNP unregistered
Jun  7 12:59:36 iMac kernel: [    0.349084] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349087] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 02] add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349093] pci 0000:00:1c.1: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349095] pci 0000:00:1c.1: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349111] pci 0000:00:1c.2: bridge window [io  0x1000-0x0fff] to [bus 04-05] add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349113] pci 0000:00:1c.2: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04-05] add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349119] pci 0000:00:1c.3: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349123] pci 0000:00:1c.3: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 06] add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349129] pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 07] add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349131] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 07] add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349141] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349142] pci 0000:00:1c.1: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349143] pci 0000:00:1c.2: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349145] pci 0000:00:1c.3: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349146] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] get_res_add_size add_size 200000
Jun  7 12:59:36 iMac kernel: [    0.349148] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349149] pci 0000:00:1c.1: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349150] pci 0000:00:1c.2: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349151] pci 0000:00:1c.3: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349153] pci 0000:00:1c.4: res[13]=[io  0x1000-0x0fff] get_res_add_size add_size 1000
Jun  7 12:59:36 iMac kernel: [    0.349157] pci 0000:00:1c.0: BAR 15: assigned [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349160] pci 0000:00:1c.1: BAR 15: assigned [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349162] pci 0000:00:1c.2: BAR 15: assigned [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349164] pci 0000:00:1c.3: BAR 15: assigned [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349167] pci 0000:00:1c.4: BAR 15: assigned [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349169] pci 0000:00:1c.0: BAR 13: assigned [io  0x4000-0x4fff]
Jun  7 12:59:36 iMac kernel: [    0.349171] pci 0000:00:1c.1: BAR 13: assigned [io  0x5000-0x5fff]
Jun  7 12:59:36 iMac kernel: [    0.349173] pci 0000:00:1c.2: BAR 13: assigned [io  0x6000-0x6fff]
Jun  7 12:59:36 iMac kernel: [    0.349174] pci 0000:00:1c.3: BAR 13: assigned [io  0x7000-0x7fff]
Jun  7 12:59:36 iMac kernel: [    0.349176] pci 0000:00:1c.4: BAR 13: assigned [io  0x8000-0x8fff]
Jun  7 12:59:36 iMac kernel: [    0.349179] pci 0000:00:03.0: PCI bridge to [bus 01]
Jun  7 12:59:36 iMac kernel: [    0.349181] pci 0000:00:03.0:   bridge window [io  0x2000-0x2fff]
Jun  7 12:59:36 iMac kernel: [    0.349184] pci 0000:00:03.0:   bridge window [mem 0xd0600000-0xd06fffff]
Jun  7 12:59:36 iMac kernel: [    0.349186] pci 0000:00:03.0:   bridge window [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349190] pci 0000:00:1c.0: PCI bridge to [bus 02]
Jun  7 12:59:36 iMac kernel: [    0.349192] pci 0000:00:1c.0:   bridge window [io  0x4000-0x4fff]
Jun  7 12:59:36 iMac kernel: [    0.349195] pci 0000:00:1c.0:   bridge window [mem 0xd0500000-0xd05fffff]
Jun  7 12:59:36 iMac kernel: [    0.349198] pci 0000:00:1c.0:   bridge window [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349202] pci 0000:00:1c.1: PCI bridge to [bus 03]
Jun  7 12:59:36 iMac kernel: [    0.349204] pci 0000:00:1c.1:   bridge window [io  0x5000-0x5fff]
Jun  7 12:59:36 iMac kernel: [    0.349207] pci 0000:00:1c.1:   bridge window [mem 0xd0400000-0xd04fffff]
Jun  7 12:59:36 iMac kernel: [    0.349210] pci 0000:00:1c.1:   bridge window [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349215] pci 0000:04:00.0: PCI bridge to [bus 05]
Jun  7 12:59:36 iMac kernel: [    0.349220] pci 0000:04:00.0:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  7 12:59:36 iMac kernel: [    0.349231] pci 0000:00:1c.2: PCI bridge to [bus 04-05]
Jun  7 12:59:36 iMac kernel: [    0.349233] pci 0000:00:1c.2:   bridge window [io  0x6000-0x6fff]
Jun  7 12:59:36 iMac kernel: [    0.349236] pci 0000:00:1c.2:   bridge window [mem 0xd0300000-0xd03fffff]
Jun  7 12:59:36 iMac kernel: [    0.349239] pci 0000:00:1c.2:   bridge window [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349243] pci 0000:00:1c.3: PCI bridge to [bus 06]
Jun  7 12:59:36 iMac kernel: [    0.349245] pci 0000:00:1c.3:   bridge window [io  0x7000-0x7fff]
Jun  7 12:59:36 iMac kernel: [    0.349249] pci 0000:00:1c.3:   bridge window [mem 0xd0200000-0xd02fffff]
Jun  7 12:59:36 iMac kernel: [    0.349251] pci 0000:00:1c.3:   bridge window [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349256] pci 0000:00:1c.4: PCI bridge to [bus 07]
Jun  7 12:59:36 iMac kernel: [    0.349258] pci 0000:00:1c.4:   bridge window [io  0x8000-0x8fff]
Jun  7 12:59:36 iMac kernel: [    0.349261] pci 0000:00:1c.4:   bridge window [mem 0xd0100000-0xd01fffff]
Jun  7 12:59:36 iMac kernel: [    0.349264] pci 0000:00:1c.4:   bridge window [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349268] pci 0000:00:1e.0: PCI bridge to [bus 08]
Jun  7 12:59:36 iMac kernel: [    0.349272] pci 0000:00:1e.0:   bridge window [mem 0xd0000000-0xd00fffff]
Jun  7 12:59:36 iMac kernel: [    0.349278] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Jun  7 12:59:36 iMac kernel: [    0.349279] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Jun  7 12:59:36 iMac kernel: [    0.349280] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Jun  7 12:59:36 iMac kernel: [    0.349282] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  7 12:59:36 iMac kernel: [    0.349283] pci_bus 0000:01: resource 0 [io  0x2000-0x2fff]
Jun  7 12:59:36 iMac kernel: [    0.349284] pci_bus 0000:01: resource 1 [mem 0xd0600000-0xd06fffff]
Jun  7 12:59:36 iMac kernel: [    0.349286] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xcfffffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349287] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
Jun  7 12:59:36 iMac kernel: [    0.349288] pci_bus 0000:02: resource 1 [mem 0xd0500000-0xd05fffff]
Jun  7 12:59:36 iMac kernel: [    0.349289] pci_bus 0000:02: resource 2 [mem 0xd0800000-0xd09fffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349291] pci_bus 0000:03: resource 0 [io  0x5000-0x5fff]
Jun  7 12:59:36 iMac kernel: [    0.349292] pci_bus 0000:03: resource 1 [mem 0xd0400000-0xd04fffff]
Jun  7 12:59:36 iMac kernel: [    0.349293] pci_bus 0000:03: resource 2 [mem 0xd0a00000-0xd0bfffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349295] pci_bus 0000:04: resource 0 [io  0x6000-0x6fff]
Jun  7 12:59:36 iMac kernel: [    0.349296] pci_bus 0000:04: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  7 12:59:36 iMac kernel: [    0.349297] pci_bus 0000:04: resource 2 [mem 0xd0c00000-0xd0dfffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349299] pci_bus 0000:05: resource 1 [mem 0xd0300000-0xd03fffff]
Jun  7 12:59:36 iMac kernel: [    0.349300] pci_bus 0000:06: resource 0 [io  0x7000-0x7fff]
Jun  7 12:59:36 iMac kernel: [    0.349301] pci_bus 0000:06: resource 1 [mem 0xd0200000-0xd02fffff]
Jun  7 12:59:36 iMac kernel: [    0.349302] pci_bus 0000:06: resource 2 [mem 0xd0e00000-0xd0ffffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349304] pci_bus 0000:07: resource 0 [io  0x8000-0x8fff]
Jun  7 12:59:36 iMac kernel: [    0.349305] pci_bus 0000:07: resource 1 [mem 0xd0100000-0xd01fffff]
Jun  7 12:59:36 iMac kernel: [    0.349306] pci_bus 0000:07: resource 2 [mem 0xd1000000-0xd11fffff 64bit pref]
Jun  7 12:59:36 iMac kernel: [    0.349308] pci_bus 0000:08: resource 1 [mem 0xd0000000-0xd00fffff]
Jun  7 12:59:36 iMac kernel: [    0.349309] pci_bus 0000:08: resource 4 [io  0x0000-0x0cf7]
Jun  7 12:59:36 iMac kernel: [    0.349310] pci_bus 0000:08: resource 5 [io  0x0d00-0xffff]
Jun  7 12:59:36 iMac kernel: [    0.349311] pci_bus 0000:08: resource 6 [mem 0x000a0000-0x000bffff]
Jun  7 12:59:36 iMac kernel: [    0.349313] pci_bus 0000:08: resource 7 [mem 0xc0000000-0xfeafffff]
Jun  7 12:59:36 iMac kernel: [    0.349333] NET: Registered protocol family 2
Jun  7 12:59:36 iMac kernel: [    0.349521] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Jun  7 12:59:36 iMac kernel: [    0.349719] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Jun  7 12:59:36 iMac kernel: [    0.349973] TCP: Hash tables configured (established 65536 bind 65536)
Jun  7 12:59:36 iMac kernel: [    0.349998] TCP: reno registered
Jun  7 12:59:36 iMac kernel: [    0.350007] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Jun  7 12:59:36 iMac kernel: [    0.350060] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Jun  7 12:59:36 iMac kernel: [    0.350140] NET: Registered protocol family 1
Jun  7 12:59:36 iMac kernel: [    0.350982] pci 0000:01:00.0: Video device with shadowed ROM
Jun  7 12:59:36 iMac kernel: [    0.350994] PCI: CLS mismatch (256 != 64), using 64 bytes
Jun  7 12:59:36 iMac kernel: [    0.351050] Trying to unpack rootfs image as initramfs...
Jun  7 12:59:36 iMac kernel: [    0.624562] Freeing initrd memory: 18992K (ffff880035ad8000 - ffff880036d64000)
Jun  7 12:59:36 iMac kernel: [    0.624605] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jun  7 12:59:36 iMac kernel: [    0.624608] software IO TLB [mem 0xbb65d000-0xbf65d000] (64MB) mapped at [ffff8800bb65d000-ffff8800bf65cfff]
Jun  7 12:59:36 iMac kernel: [    0.624934] microcode: CPU0 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:59:36 iMac kernel: [    0.624939] microcode: CPU1 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:59:36 iMac kernel: [    0.624945] microcode: CPU2 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:59:36 iMac kernel: [    0.624950] microcode: CPU3 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:59:36 iMac kernel: [    0.624955] microcode: CPU4 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:59:36 iMac kernel: [    0.624960] microcode: CPU5 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:59:36 iMac kernel: [    0.624965] microcode: CPU6 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:59:36 iMac kernel: [    0.624972] microcode: CPU7 sig=0x106e5, pf=0x2, revision=0x3
Jun  7 12:59:36 iMac kernel: [    0.625017] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Jun  7 12:59:36 iMac kernel: [    0.625036] Scanning for low memory corruption every 60 seconds
Jun  7 12:59:36 iMac kernel: [    0.625058] efifb: dmi detected iMac11,1 - framebuffer at 0xc0000000 (1920x1440, stride 7680)
Jun  7 12:59:36 iMac kernel: [    0.625349] futex hash table entries: 2048 (order: 5, 131072 bytes)
Jun  7 12:59:36 iMac kernel: [    0.625377] Initialise system trusted keyring
Jun  7 12:59:36 iMac kernel: [    0.625396] audit: initializing netlink subsys (disabled)
Jun  7 12:59:36 iMac kernel: [    0.625409] audit: type=2000 audit(1433674759.516:1): initialized
Jun  7 12:59:36 iMac kernel: [    0.625672] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Jun  7 12:59:36 iMac kernel: [    0.626993] zpool: loaded
Jun  7 12:59:36 iMac kernel: [    0.626995] zbud: loaded
Jun  7 12:59:36 iMac kernel: [    0.627126] VFS: Disk quotas dquot_6.5.2
Jun  7 12:59:36 iMac kernel: [    0.627157] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jun  7 12:59:36 iMac kernel: [    0.627576] fuse init (API version 7.23)
Jun  7 12:59:36 iMac kernel: [    0.627650] msgmni has been set to 15945
Jun  7 12:59:36 iMac kernel: [    0.627706] Key type big_key registered
Jun  7 12:59:36 iMac kernel: [    0.627996] Key type asymmetric registered
Jun  7 12:59:36 iMac kernel: [    0.627998] Asymmetric key parser 'x509' registered
Jun  7 12:59:36 iMac kernel: [    0.628030] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Jun  7 12:59:36 iMac kernel: [    0.628084] io scheduler noop registered
Jun  7 12:59:36 iMac kernel: [    0.628086] io scheduler deadline registered (default)
Jun  7 12:59:36 iMac kernel: [    0.628128] io scheduler cfq registered
Jun  7 12:59:36 iMac kernel: [    0.628659] pcieport 0000:00:1c.3: enabling device (0000 -> 0003)
Jun  7 12:59:36 iMac kernel: [    0.628763] pcieport 0000:00:1c.4: enabling device (0000 -> 0003)
Jun  7 12:59:36 iMac kernel: [    0.628896] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Jun  7 12:59:36 iMac kernel: [    0.628908] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Jun  7 12:59:36 iMac kernel: [    0.628951] vesafb: mode is 1920x1440x32, linelength=7680, pages=0
Jun  7 12:59:36 iMac kernel: [    0.628952] vesafb: scrolling: redraw
Jun  7 12:59:36 iMac kernel: [    0.628954] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
Jun  7 12:59:36 iMac kernel: [    0.633341] vesafb: framebuffer at 0xc0000000, mapped to 0xffffc90010e80000, using 10816k, total 10816k
Jun  7 12:59:36 iMac kernel: [    0.633470] Console: switching to colour frame buffer device 240x90
Jun  7 12:59:36 iMac kernel: [    0.633528] fb0: VESA VGA frame buffer device
Jun  7 12:59:36 iMac kernel: [    0.633555] intel_idle: MWAIT substates: 0x1120
Jun  7 12:59:36 iMac kernel: [    0.633565] intel_idle: v0.4 model 0x1E
Jun  7 12:59:36 iMac kernel: [    0.633567] intel_idle: lapic_timer_reliable_states 0x2
Jun  7 12:59:36 iMac kernel: [    0.633889] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Jun  7 12:59:36 iMac kernel: [    0.633892] ACPI: Power Button [PWRB]
Jun  7 12:59:36 iMac kernel: [    0.633927] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Jun  7 12:59:36 iMac kernel: [    0.633929] ACPI: Sleep Button [SLPB]
Jun  7 12:59:36 iMac kernel: [    0.633966] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Jun  7 12:59:36 iMac kernel: [    0.633968] ACPI: Power Button [PWRF]
Jun  7 12:59:36 iMac kernel: [    0.634364] GHES: HEST is not enabled!
Jun  7 12:59:36 iMac kernel: [    0.634450] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jun  7 12:59:36 iMac kernel: [    0.635786] Linux agpgart interface v0.103
Jun  7 12:59:36 iMac kernel: [    0.636879] brd: module loaded
Jun  7 12:59:36 iMac kernel: [    0.637434] loop: module loaded
Jun  7 12:59:36 iMac kernel: [    0.637569] ata_piix 0000:00:1f.2: version 2.13
Jun  7 12:59:36 iMac kernel: [    0.637650] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Jun  7 12:59:36 iMac kernel: [    0.790749] scsi0 : ata_piix
Jun  7 12:59:36 iMac kernel: [    0.791178] scsi1 : ata_piix
Jun  7 12:59:36 iMac kernel: [    0.791278] ata1: SATA max UDMA/133 cmd 0x3088 ctl 0x3094 bmdma 0x3020 irq 19
Jun  7 12:59:36 iMac kernel: [    0.791284] ata2: SATA max UDMA/133 cmd 0x3080 ctl 0x3090 bmdma 0x3028 irq 19
Jun  7 12:59:36 iMac kernel: [    0.791410] libphy: Fixed MDIO Bus: probed
Jun  7 12:59:36 iMac kernel: [    0.791413] tun: Universal TUN/TAP device driver, 1.6
Jun  7 12:59:36 iMac kernel: [    0.791414] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Jun  7 12:59:36 iMac kernel: [    0.791468] PPP generic driver version 2.4.2
Jun  7 12:59:36 iMac kernel: [    0.791569] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jun  7 12:59:36 iMac kernel: [    0.791591] ehci-pci: EHCI PCI platform driver
Jun  7 12:59:36 iMac kernel: [    0.791845] ehci-pci 0000:00:1a.7: EHCI Host Controller
Jun  7 12:59:36 iMac kernel: [    0.791856] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
Jun  7 12:59:36 iMac kernel: [    0.791873] ehci-pci 0000:00:1a.7: debug port 2
Jun  7 12:59:36 iMac kernel: [    0.795803] ehci-pci 0000:00:1a.7: cache line size of 64 is not supported
Jun  7 12:59:36 iMac kernel: [    0.795817] ehci-pci 0000:00:1a.7: irq 16, io mem 0xd0705c00
Jun  7 12:59:36 iMac kernel: [    0.806245] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Jun  7 12:59:36 iMac kernel: [    0.806319] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Jun  7 12:59:36 iMac kernel: [    0.806323] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  7 12:59:36 iMac kernel: [    0.806327] usb usb1: Product: EHCI Host Controller
Jun  7 12:59:36 iMac kernel: [    0.806330] usb usb1: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  7 12:59:36 iMac kernel: [    0.806333] usb usb1: SerialNumber: 0000:00:1a.7
Jun  7 12:59:36 iMac kernel: [    0.806569] hub 1-0:1.0: USB hub found
Jun  7 12:59:36 iMac kernel: [    0.806581] hub 1-0:1.0: 6 ports detected
Jun  7 12:59:36 iMac kernel: [    0.807069] ehci-pci 0000:00:1d.7: EHCI Host Controller
Jun  7 12:59:36 iMac kernel: [    0.807083] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
Jun  7 12:59:36 iMac kernel: [    0.807099] ehci-pci 0000:00:1d.7: debug port 2
Jun  7 12:59:36 iMac kernel: [    0.811016] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
Jun  7 12:59:36 iMac kernel: [    0.811035] ehci-pci 0000:00:1d.7: irq 23, io mem 0xd0705800
Jun  7 12:59:36 iMac kernel: [    0.822261] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jun  7 12:59:36 iMac kernel: [    0.822334] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Jun  7 12:59:36 iMac kernel: [    0.822339] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  7 12:59:36 iMac kernel: [    0.822342] usb usb2: Product: EHCI Host Controller
Jun  7 12:59:36 iMac kernel: [    0.822345] usb usb2: Manufacturer: Linux 3.16.0-38-generic ehci_hcd
Jun  7 12:59:36 iMac kernel: [    0.822348] usb usb2: SerialNumber: 0000:00:1d.7
Jun  7 12:59:36 iMac kernel: [    0.822575] hub 2-0:1.0: USB hub found
Jun  7 12:59:36 iMac kernel: [    0.822587] hub 2-0:1.0: 8 ports detected
Jun  7 12:59:36 iMac kernel: [    0.822930] ehci-platform: EHCI generic platform driver
Jun  7 12:59:36 iMac kernel: [    0.822947] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jun  7 12:59:36 iMac kernel: [    0.822955] ohci-pci: OHCI PCI platform driver
Jun  7 12:59:36 iMac kernel: [    0.822980] ohci-platform: OHCI generic platform driver
Jun  7 12:59:36 iMac kernel: [    0.822994] uhci_hcd: USB Universal Host Controller Interface driver
Jun  7 12:59:36 iMac kernel: [    0.823203] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Jun  7 12:59:36 iMac kernel: [    0.823213] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Jun  7 12:59:36 iMac kernel: [    0.823222] uhci_hcd 0000:00:1a.0: detected 2 ports
Jun  7 12:59:36 iMac kernel: [    0.823257] uhci_hcd 0000:00:1a.0: irq 21, io base 0x00003060
Jun  7 12:59:36 iMac kernel: [    0.823329] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Jun  7 12:59:36 iMac kernel: [    0.823332] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  7 12:59:36 iMac kernel: [    0.823335] usb usb3: Product: UHCI Host Controller
Jun  7 12:59:36 iMac kernel: [    0.823338] usb usb3: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  7 12:59:36 iMac kernel: [    0.823341] usb usb3: SerialNumber: 0000:00:1a.0
Jun  7 12:59:36 iMac kernel: [    0.823556] hub 3-0:1.0: USB hub found
Jun  7 12:59:36 iMac kernel: [    0.823568] hub 3-0:1.0: 2 ports detected
Jun  7 12:59:36 iMac kernel: [    0.823930] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jun  7 12:59:36 iMac kernel: [    0.823946] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 4
Jun  7 12:59:36 iMac kernel: [    0.823955] uhci_hcd 0000:00:1d.0: detected 2 ports
Jun  7 12:59:36 iMac kernel: [    0.823980] uhci_hcd 0000:00:1d.0: irq 19, io base 0x00003040
Jun  7 12:59:36 iMac kernel: [    0.824051] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Jun  7 12:59:36 iMac kernel: [    0.824055] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jun  7 12:59:36 iMac kernel: [    0.824058] usb usb4: Product: UHCI Host Controller
Jun  7 12:59:36 iMac kernel: [    0.824061] usb usb4: Manufacturer: Linux 3.16.0-38-generic uhci_hcd
Jun  7 12:59:36 iMac kernel: [    0.824064] usb usb4: SerialNumber: 0000:00:1d.0
Jun  7 12:59:36 iMac kernel: [    0.824276] hub 4-0:1.0: USB hub found
Jun  7 12:59:36 iMac kernel: [    0.824287] hub 4-0:1.0: 2 ports detected
Jun  7 12:59:36 iMac kernel: [    0.824554] i8042: PNP: No PS/2 controller found. Probing ports directly.
Jun  7 12:59:36 iMac kernel: [    1.555099] usb 1-1: new high-speed USB device number 2 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    1.623010] tsc: Refined TSC clocksource calibration: 2792.999 MHz
Jun  7 12:59:36 iMac kernel: [    1.687582] usb 1-1: New USB device found, idVendor=0424, idProduct=2514
Jun  7 12:59:36 iMac kernel: [    1.687588] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  7 12:59:36 iMac kernel: [    1.688013] hub 1-1:1.0: USB hub found
Jun  7 12:59:36 iMac kernel: [    1.688204] hub 1-1:1.0: 4 ports detected
Jun  7 12:59:36 iMac kernel: [    1.799335] usb 2-1: new high-speed USB device number 2 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    1.867326] i8042: No controller found
Jun  7 12:59:36 iMac kernel: [    1.867501] mousedev: PS/2 mouse device common for all mice
Jun  7 12:59:36 iMac kernel: [    1.867819] rtc_cmos 00:03: RTC can wake from S4
Jun  7 12:59:36 iMac kernel: [    1.868008] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Jun  7 12:59:36 iMac kernel: [    1.868041] rtc_cmos 00:03: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Jun  7 12:59:36 iMac kernel: [    1.868171] device-mapper: uevent: version 1.0.3
Jun  7 12:59:36 iMac kernel: [    1.868310] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
Jun  7 12:59:36 iMac kernel: [    1.868340] ledtrig-cpu: registered to indicate activity on CPUs
Jun  7 12:59:36 iMac kernel: [    1.868464] TCP: cubic registered
Jun  7 12:59:36 iMac kernel: [    1.868548] NET: Registered protocol family 10
Jun  7 12:59:36 iMac kernel: [    1.868781] NET: Registered protocol family 17
Jun  7 12:59:36 iMac kernel: [    1.868791] Key type dns_resolver registered
Jun  7 12:59:36 iMac kernel: [    1.869265] Loading compiled-in X.509 certificates
Jun  7 12:59:36 iMac kernel: [    1.871366] Loaded X.509 cert 'Magrathea: Glacier signing key: c284edaccf0b473652c34d23bec356944236e63b'
Jun  7 12:59:36 iMac kernel: [    1.871390] registered taskstats version 1
Jun  7 12:59:36 iMac kernel: [    1.875780] Key type trusted registered
Jun  7 12:59:36 iMac kernel: [    1.884137] Key type encrypted registered
Jun  7 12:59:36 iMac kernel: [    1.884148] AppArmor: AppArmor sha1 policy hashing enabled
Jun  7 12:59:36 iMac kernel: [    1.884154] ima: No TPM chip found, activating TPM-bypass!
Jun  7 12:59:36 iMac kernel: [    1.884181] evm: HMAC attrs: 0x1
Jun  7 12:59:36 iMac kernel: [    1.885122]   Magic number: 3:28:982
Jun  7 12:59:36 iMac kernel: [    1.885336] rtc_cmos 00:03: setting system clock to 2015-06-07 10:59:21 UTC (1433674761)
Jun  7 12:59:36 iMac kernel: [    1.887356] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Jun  7 12:59:36 iMac kernel: [    1.887357] EDD information not available.
Jun  7 12:59:36 iMac kernel: [    1.887405] PM: Hibernation image not present or could not be loaded.
Jun  7 12:59:36 iMac kernel: [    1.931849] usb 2-1: New USB device found, idVendor=0424, idProduct=2514
Jun  7 12:59:36 iMac kernel: [    1.931855] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Jun  7 12:59:36 iMac kernel: [    1.932326] hub 2-1:1.0: USB hub found
Jun  7 12:59:36 iMac kernel: [    1.932394] hub 2-1:1.0: 4 ports detected
Jun  7 12:59:36 iMac kernel: [    2.019495] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    2.114353] usb 1-1.1: New USB device found, idVendor=0a5c, idProduct=4500
Jun  7 12:59:36 iMac kernel: [    2.114359] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  7 12:59:36 iMac kernel: [    2.114363] usb 1-1.1: Product: BRCM2046 Hub
Jun  7 12:59:36 iMac kernel: [    2.114366] usb 1-1.1: Manufacturer: Apple Inc.
Jun  7 12:59:36 iMac kernel: [    2.114904] hub 1-1.1:1.0: USB hub found
Jun  7 12:59:36 iMac kernel: [    2.115116] hub 1-1.1:1.0: 3 ports detected
Jun  7 12:59:36 iMac kernel: [    2.139597] ata1.01: failed to resume link (SControl 0)
Jun  7 12:59:36 iMac kernel: [    2.139671] ata2.01: failed to resume link (SControl 0)
Jun  7 12:59:36 iMac kernel: [    2.187663] usb 1-1.2: new high-speed USB device number 4 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    2.285306] usb 1-1.2: New USB device found, idVendor=05ac, idProduct=8403
Jun  7 12:59:36 iMac kernel: [    2.285312] usb 1-1.2: New USB device strings: Mfr=3, Product=4, SerialNumber=2
Jun  7 12:59:36 iMac kernel: [    2.285315] usb 1-1.2: Product: Card Reader
Jun  7 12:59:36 iMac kernel: [    2.285318] usb 1-1.2: Manufacturer: Apple
Jun  7 12:59:36 iMac kernel: [    2.285321] usb 1-1.2: SerialNumber: 000000009833
Jun  7 12:59:36 iMac kernel: [    2.295785] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jun  7 12:59:36 iMac kernel: [    2.295802] ata2.01: SATA link down (SStatus 4 SControl 0)
Jun  7 12:59:36 iMac kernel: [    2.295815] ata2.01: link offline, clearing class 3 to NONE
Jun  7 12:59:36 iMac kernel: [    2.295927] ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Jun  7 12:59:36 iMac kernel: [    2.295938] ata1.01: SATA link down (SStatus 4 SControl 0)
Jun  7 12:59:36 iMac kernel: [    2.304007] ata2.00: ATAPI: OPTIARC DVD RW AD-5680H, 3AHB, max UDMA/100
Jun  7 12:59:36 iMac kernel: [    2.304247] ata1.00: ATA-8: WDC WD1001FALS-40U9B0, 20.04F20, max UDMA/133
Jun  7 12:59:36 iMac kernel: [    2.304250] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Jun  7 12:59:36 iMac kernel: [    2.320100] ata2.00: configured for UDMA/100
Jun  7 12:59:36 iMac kernel: [    2.320240] ata1.00: configured for UDMA/133
Jun  7 12:59:36 iMac kernel: [    2.320498] scsi 0:0:0:0: Direct-Access     ATA      WDC WD1001FALS-4 4F20 PQ: 0 ANSI: 5
Jun  7 12:59:36 iMac kernel: [    2.321119] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Jun  7 12:59:36 iMac kernel: [    2.321156] sd 0:0:0:0: Attached scsi generic sg0 type 0
Jun  7 12:59:36 iMac kernel: [    2.321163] sd 0:0:0:0: [sda] Write Protect is off
Jun  7 12:59:36 iMac kernel: [    2.321165] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Jun  7 12:59:36 iMac kernel: [    2.321176] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Jun  7 12:59:36 iMac kernel: [    2.336647] scsi 1:0:0:0: CD-ROM            OPTIARC  DVD RW AD-5680H  3AHB PQ: 0 ANSI: 5
Jun  7 12:59:36 iMac kernel: [    2.371853] usb 1-1.4: new high-speed USB device number 5 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    2.375596] sr0: scsi3-mmc drive: 24x/24x writer cd/rw xa/form2 cdda caddy
Jun  7 12:59:36 iMac kernel: [    2.375601] cdrom: Uniform CD-ROM driver Revision: 3.20
Jun  7 12:59:36 iMac kernel: [    2.375957] sr 1:0:0:0: Attached scsi CD-ROM sr0
Jun  7 12:59:36 iMac kernel: [    2.376248] sr 1:0:0:0: Attached scsi generic sg1 type 5
Jun  7 12:59:36 iMac kernel: [    2.377844]  sda: sda1 sda2 sda3
Jun  7 12:59:36 iMac kernel: [    2.378631] sd 0:0:0:0: [sda] Attached SCSI disk
Jun  7 12:59:36 iMac kernel: [    2.379959] Freeing unused kernel memory: 1352K (ffffffff81d1c000 - ffffffff81e6e000)
Jun  7 12:59:36 iMac kernel: [    2.379961] Write protecting the kernel read-only data: 12288k
Jun  7 12:59:36 iMac kernel: [    2.381413] Freeing unused kernel memory: 556K (ffff880001775000 - ffff880001800000)
Jun  7 12:59:36 iMac kernel: [    2.382568] Freeing unused kernel memory: 500K (ffff880001b83000 - ffff880001c00000)
Jun  7 12:59:36 iMac kernel: [    2.413126] pps_core: LinuxPPS API ver. 1 registered
Jun  7 12:59:36 iMac kernel: [    2.413128] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Jun  7 12:59:36 iMac kernel: [    2.414448] PTP clock support registered
Jun  7 12:59:36 iMac kernel: [    2.417697] tg3.c:v3.137 (May 11, 2014)
Jun  7 12:59:36 iMac kernel: [    2.440809] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM95764m) rev 5784100] (PCI Express) MAC address d4:9a:20:d1:18:0a
Jun  7 12:59:36 iMac kernel: [    2.440812] tg3 0000:02:00.0 eth0: attached PHY is 5784 (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[0])
Jun  7 12:59:36 iMac kernel: [    2.440814] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] TSOcap[1]
Jun  7 12:59:36 iMac kernel: [    2.440816] tg3 0000:02:00.0 eth0: dma_rwctrl[76180000] dma_mask[64-bit]
Jun  7 12:59:36 iMac kernel: [    2.471870] firewire_ohci 0000:05:00.0: added OHCI v1.10 device as card 0, 8 IR + 8 IT contexts, quirks 0x2
Jun  7 12:59:36 iMac kernel: [    2.472922] usb 1-1.4: New USB device found, idVendor=05ac, idProduct=1006
Jun  7 12:59:36 iMac kernel: [    2.472924] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  7 12:59:36 iMac kernel: [    2.472925] usb 1-1.4: Product: Keyboard Hub
Jun  7 12:59:36 iMac kernel: [    2.472927] usb 1-1.4: Manufacturer: Apple, Inc.
Jun  7 12:59:36 iMac kernel: [    2.472928] usb 1-1.4: SerialNumber: 000000000000
Jun  7 12:59:36 iMac kernel: [    2.473199] hub 1-1.4:1.0: USB hub found
Jun  7 12:59:36 iMac kernel: [    2.473293] hub 1-1.4:1.0: 3 ports detected
Jun  7 12:59:36 iMac kernel: [    2.477115] usb-storage 1-1.2:1.0: USB Mass Storage device detected
Jun  7 12:59:36 iMac kernel: [    2.477227] scsi2 : usb-storage 1-1.2:1.0
Jun  7 12:59:36 iMac kernel: [    2.477283] usbcore: registered new interface driver usb-storage
Jun  7 12:59:36 iMac kernel: [    2.478599] usbcore: registered new interface driver uas
Jun  7 12:59:36 iMac kernel: [    2.560052] usb 2-1.1: new high-speed USB device number 3 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    2.624112] Switched to clocksource tsc
Jun  7 12:59:36 iMac kernel: [    2.668160] usb 2-1.1: New USB device found, idVendor=05ac, idProduct=8502
Jun  7 12:59:36 iMac kernel: [    2.668163] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  7 12:59:36 iMac kernel: [    2.668164] usb 2-1.1: Product: Built-in iSight
Jun  7 12:59:36 iMac kernel: [    2.668165] usb 2-1.1: Manufacturer: Apple Inc.
Jun  7 12:59:36 iMac kernel: [    2.668167] usb 2-1.1: SerialNumber: 8T9BKB2B577K3L00
Jun  7 12:59:36 iMac kernel: [    2.756241] usb 2-1.2: new low-speed USB device number 4 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    2.854240] usb 2-1.2: New USB device found, idVendor=05ac, idProduct=8242
Jun  7 12:59:36 iMac kernel: [    2.854242] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  7 12:59:36 iMac kernel: [    2.854243] usb 2-1.2: Product: IR Receiver
Jun  7 12:59:36 iMac kernel: [    2.854245] usb 2-1.2: Manufacturer: Apple Computer, Inc.
Jun  7 12:59:36 iMac kernel: [    2.858909] hidraw: raw HID events driver (C) Jiri Kosina
Jun  7 12:59:36 iMac kernel: [    2.862592] usbcore: registered new interface driver usbhid
Jun  7 12:59:36 iMac kernel: [    2.862594] usbhid: USB HID core driver
Jun  7 12:59:36 iMac kernel: [    2.880721] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Jun  7 12:59:36 iMac kernel: [    2.928708] usb 2-1.4: new low-speed USB device number 5 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    2.972551] firewire_core 0000:05:00.0: created device fw0: GUID d49a20fffecbb5b6, S800
Jun  7 12:59:36 iMac kernel: [    2.972717] firewire_core 0000:05:00.0: phy config: new root=ffc1, gap_count=5
Jun  7 12:59:36 iMac kernel: [    3.051073] usb 2-1.4: New USB device found, idVendor=045e, idProduct=0040
Jun  7 12:59:36 iMac kernel: [    3.051079] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  7 12:59:36 iMac kernel: [    3.051083] usb 2-1.4: Product: Microsoft Wheel Mouse Optical®
Jun  7 12:59:36 iMac kernel: [    3.051086] usb 2-1.4: Manufacturer: Microsoft
Jun  7 12:59:36 iMac kernel: [    3.128622] usb 1-1.1.1: new full-speed USB device number 6 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    3.225217] usb 1-1.1.1: New USB device found, idVendor=05ac, idProduct=8215
Jun  7 12:59:36 iMac kernel: [    3.225223] usb 1-1.1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Jun  7 12:59:36 iMac kernel: [    3.225227] usb 1-1.1.1: Product: Bluetooth USB Host Controller
Jun  7 12:59:36 iMac kernel: [    3.225230] usb 1-1.1.1: Manufacturer: Apple Inc.
Jun  7 12:59:36 iMac kernel: [    3.225233] usb 1-1.1.1: SerialNumber: 64B9E8E21B57
Jun  7 12:59:36 iMac kernel: [    3.296915] usb 1-1.4.2: new low-speed USB device number 7 using ehci-pci
Jun  7 12:59:36 iMac kernel: [    3.395765] usb 1-1.4.2: New USB device found, idVendor=05ac, idProduct=0221
Jun  7 12:59:36 iMac kernel: [    3.395771] usb 1-1.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Jun  7 12:59:36 iMac kernel: [    3.395774] usb 1-1.4.2: Product: Apple Keyboard
Jun  7 12:59:36 iMac kernel: [    3.395777] usb 1-1.4.2: Manufacturer: Apple, Inc
Jun  7 12:59:36 iMac kernel: [    3.478938] scsi 2:0:0:0: Direct-Access     APPLE    SD Card Reader   1.00 PQ: 0 ANSI: 0
Jun  7 12:59:36 iMac kernel: [    3.479576] sd 2:0:0:0: Attached scsi generic sg2 type 0
Jun  7 12:59:36 iMac kernel: [    3.481277] sd 2:0:0:0: [sdb] Attached SCSI removable disk
Jun  7 12:59:36 iMac kernel: [    3.552832] random: init urandom read with 128 bits of entropy available
Jun  7 12:59:36 iMac kernel: [    3.572443] random: nonblocking pool is initialized
Jun  7 12:59:36 iMac kernel: [    5.987058] firewire_core 0000:05:00.0: created device fw1: GUID 0001db01001234ee, S800
Jun  7 12:59:36 iMac kernel: [   11.020248] Adding 8377340k swap on /dev/sda3.  Priority:-1 extents:1 across:8377340k FS
Jun  7 12:59:36 iMac kernel: [   11.750483] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jun  7 12:59:36 iMac kernel: [   11.765897] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042f conflicts with OpRegion 0x0000000000000400-0x000000000000047f (\PMIO) (20140424/utaddress-258)
Jun  7 12:59:36 iMac kernel: [   11.765903] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  7 12:59:36 iMac kernel: [   11.765907] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  7 12:59:36 iMac kernel: [   11.765911] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  7 12:59:36 iMac kernel: [   11.765912] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  7 12:59:36 iMac kernel: [   11.765916] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  7 12:59:36 iMac kernel: [   11.765917] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052f conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20140424/utaddress-258)
Jun  7 12:59:36 iMac kernel: [   11.765920] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Jun  7 12:59:36 iMac kernel: [   11.765922] lpc_ich: Resource conflict(s) found affecting gpio_ich
Jun  7 12:59:36 iMac kernel: [   11.769694] intel ips 0000:00:1f.6: Non-IPS CPU detected.
Jun  7 12:59:36 iMac kernel: [   11.769696] intel ips 0000:00:1f.6: IPS not supported on this CPU
Jun  7 12:59:36 iMac kernel: [   11.770878] [drm] Initialized drm 1.1.0 20060810
Jun  7 12:59:36 iMac kernel: [   11.772714] EDAC MC: Ver: 3.0.0
Jun  7 12:59:36 iMac kernel: [   11.776162] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (POLLED)
Jun  7 12:59:36 iMac kernel: [   11.776563] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
Jun  7 12:59:36 iMac kernel: [   11.776738] EDAC i7core: Driver loaded, 1 memory controller(s) found.
Jun  7 12:59:36 iMac kernel: [   11.778296] cfg80211: Calling CRDA to update world regulatory domain
Jun  7 12:59:36 iMac kernel: [   11.799360] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jun  7 12:59:36 iMac kernel: [   11.833604] lp: driver loaded but no devices found
Jun  7 12:59:36 iMac kernel: [   11.838778] ppdev: user-space parallel port driver
Jun  7 12:59:36 iMac kernel: [   11.866474] snd_hda_intel 0000:00:1b.0: irq 45 for MSI/MSI-X
Jun  7 12:59:36 iMac kernel: [   11.866588] snd_hda_intel 0000:01:00.1: Handle VGA-switcheroo audio client
Jun  7 12:59:36 iMac kernel: [   11.866643] snd_hda_intel 0000:01:00.1: irq 46 for MSI/MSI-X
Jun  7 12:59:36 iMac kernel: [   11.878338] input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/0000:01:00.1/sound/card1/input3
Jun  7 12:59:36 iMac kernel: [   11.878386] scsi3 : SBP-2 IEEE-1394
Jun  7 12:59:36 iMac kernel: [   11.894057] sound hdaudioC0D0: autoconfig: line_outs=2 (0xa/0xb/0x0/0x0/0x0) type:speaker
Jun  7 12:59:36 iMac kernel: [   11.894060] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jun  7 12:59:36 iMac kernel: [   11.894061] sound hdaudioC0D0:    hp_outs=1 (0x9/0x0/0x0/0x0/0x0)
Jun  7 12:59:36 iMac kernel: [   11.894062] sound hdaudioC0D0:    mono: mono_out=0x0
Jun  7 12:59:36 iMac kernel: [   11.894064] sound hdaudioC0D0:    dig-out=0x10/0x0
Jun  7 12:59:36 iMac kernel: [   11.894065] sound hdaudioC0D0:    inputs:
Jun  7 12:59:36 iMac kernel: [   11.894066] sound hdaudioC0D0:      Mic=0xd
Jun  7 12:59:36 iMac kernel: [   11.894067] sound hdaudioC0D0:      Line=0xc
Jun  7 12:59:36 iMac kernel: [   11.894069] sound hdaudioC0D0:    dig-in=0xf
Jun  7 12:59:36 iMac kernel: [   11.898611] input: HDA Intel MID Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
Jun  7 12:59:36 iMac kernel: [   11.898695] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input5
Jun  7 12:59:36 iMac kernel: [   11.898780] input: HDA Intel MID SPDIF In as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
Jun  7 12:59:36 iMac kernel: [   12.030072] [drm] radeon kernel modesetting enabled.
Jun  7 12:59:36 iMac kernel: [   12.030124] checking generic (c0000000 a90000) vs hw (c0000000 10000000)
Jun  7 12:59:36 iMac kernel: [   12.030125] fb: switching to radeondrmfb from VESA VGA
Jun  7 12:59:36 iMac kernel: [   12.030159] Console: switching to colour dummy device 80x25
Jun  7 12:59:36 iMac kernel: [   12.030455] [drm] initializing kernel modesetting (RV770 0x1002:0x944A 0x106B:0x00B5).
Jun  7 12:59:36 iMac kernel: [   12.030466] [drm] register mmio base: 0xD0620000
Jun  7 12:59:36 iMac kernel: [   12.030467] [drm] register mmio size: 65536
Jun  7 12:59:36 iMac kernel: [   12.030526] radeon 0000:01:00.0: Invalid ROM contents
Jun  7 12:59:36 iMac kernel: [   12.030550] ATOM BIOS: 113
Jun  7 12:59:36 iMac kernel: [   12.030592] radeon 0000:01:00.0: VRAM: 512M 0x0000000000000000 - 0x000000001FFFFFFF (512M used)
Jun  7 12:59:36 iMac kernel: [   12.030594] radeon 0000:01:00.0: GTT: 1024M 0x0000000020000000 - 0x000000005FFFFFFF
Jun  7 12:59:36 iMac kernel: [   12.030596] [drm] Detected VRAM RAM=512M, BAR=256M
Jun  7 12:59:36 iMac kernel: [   12.030597] [drm] RAM width 256bits DDR
Jun  7 12:59:36 iMac kernel: [   12.030652] [TTM] Zone  kernel: Available graphics memory: 4083142 kiB
Jun  7 12:59:36 iMac kernel: [   12.030654] [TTM] Zone   dma32: Available graphics memory: 2097152 kiB
Jun  7 12:59:36 iMac kernel: [   12.030655] [TTM] Initializing pool allocator
Jun  7 12:59:36 iMac kernel: [   12.030693] [TTM] Initializing DMA pool allocator
Jun  7 12:59:36 iMac kernel: [   12.030709] [drm] radeon: 512M of VRAM memory ready
Jun  7 12:59:36 iMac kernel: [   12.030711] [drm] radeon: 1024M of GTT memory ready.
Jun  7 12:59:36 iMac kernel: [   12.030722] [drm] Loading RV770 Microcode
Jun  7 12:59:36 iMac kernel: [   12.062304] applesmc: key=297 fan=3 temp=36 index=35 acc=0 lux=2 kbd=0
Jun  7 12:59:36 iMac kernel: [   12.243583] ath: EEPROM regdomain: 0x37
Jun  7 12:59:36 iMac kernel: [   12.243585] ath: EEPROM indicates we should expect a direct regpair map
Jun  7 12:59:36 iMac kernel: [   12.243586] ath: Country alpha2 being used: AW
Jun  7 12:59:36 iMac kernel: [   12.243587] ath: Regpair used: 0x37
Jun  7 12:59:36 iMac kernel: [   12.252011] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
Jun  7 12:59:36 iMac kernel: [   12.252259] cfg80211: Calling CRDA to update world regulatory domain
Jun  7 12:59:36 iMac kernel: [   12.252296] ieee80211 phy0: Atheros AR9280 Rev:2 mem=0xffffc90011960000, irq=17
Jun  7 12:59:36 iMac kernel: [   12.377814] firewire_sbp2 fw1.0: logged in to LUN 0000 (0 retries)
Jun  7 12:59:36 iMac kernel: [   12.589035] cfg80211: World regulatory domain updated:
Jun  7 12:59:36 iMac kernel: [   12.589038] cfg80211:  DFS Master region: unset
Jun  7 12:59:36 iMac kernel: [   12.589039] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  7 12:59:36 iMac kernel: [   12.589040] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:59:36 iMac kernel: [   12.589042] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:59:36 iMac kernel: [   12.589043] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:59:36 iMac kernel: [   12.589044] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:59:36 iMac kernel: [   12.589045] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Jun  7 12:59:36 iMac kernel: [   12.589052] cfg80211: Calling CRDA for country: AW
Jun  7 12:59:36 iMac kernel: [   12.592925] cfg80211: Regulatory domain changed to country: AW
Jun  7 12:59:36 iMac kernel: [   12.592926] cfg80211:  DFS Master region: unset
Jun  7 12:59:36 iMac kernel: [   12.592927] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Jun  7 12:59:36 iMac kernel: [   12.592929] cfg80211:   (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  7 12:59:36 iMac kernel: [   12.592930] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Jun  7 12:59:36 iMac kernel: [   12.592931] cfg80211:   (5250000 KHz - 5330000 KHz @ 40000 KHz), (N/A, 2000 mBm), (0 s)
Jun  7 12:59:36 iMac kernel: [   12.592932] cfg80211:   (5490000 KHz - 5710000 KHz @ 40000 KHz), (N/A, 2700 mBm), (0 s)
Jun  7 12:59:36 iMac kernel: [   13.007920] audit: type=1400 audit(1433674772.606:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=495 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.007926] audit: type=1400 audit(1433674772.606:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=495 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.007930] audit: type=1400 audit(1433674772.606:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=495 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.007937] audit: type=1400 audit(1433674772.606:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=525 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.007943] audit: type=1400 audit(1433674772.606:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=525 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.007947] audit: type=1400 audit(1433674772.606:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=525 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.007955] audit: type=1400 audit(1433674772.606:8): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=494 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.007960] audit: type=1400 audit(1433674772.606:9): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=494 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.007964] audit: type=1400 audit(1433674772.606:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=494 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.008289] audit: type=1400 audit(1433674772.606:11): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=495 comm="apparmor_parser"
Jun  7 12:59:36 iMac kernel: [   13.279555] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.0/0003:05AC:0221.0003/input/input7
Jun  7 12:59:36 iMac kernel: [   13.279741] apple 0003:05AC:0221.0003: input,hidraw0: USB HID v1.11 Keyboard [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input0
Jun  7 12:59:36 iMac kernel: [   13.280356] input: Apple, Inc Apple Keyboard as /devices/pci0000:00/0000:00:1a.7/usb1/1-1/1-1.4/1-1.4.2/1-1.4.2:1.1/0003:05AC:0221.0004/input/input8
Jun  7 12:59:36 iMac kernel: [   13.280478] apple 0003:05AC:0221.0004: input,hidraw1: USB HID v1.11 Device [Apple, Inc Apple Keyboard] on usb-0000:00:1a.7-1.4.2/input1
Jun  7 12:59:36 iMac kernel: [   13.282617] input: Microsoft Microsoft Wheel Mouse Optical® as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.4/2-1.4:1.0/0003:045E:0040.0002/input/input9
Jun  7 12:59:36 iMac kernel: [   13.283105] hid-generic 0003:045E:0040.0002: input,hidraw2: USB HID v1.00 Mouse [Microsoft Microsoft Wheel Mouse Optical®] on usb-0000:00:1d.7-1.4/input0
Jun  7 12:59:36 iMac kernel: [   13.285578] media: Linux media interface: v0.10
Jun  7 12:59:36 iMac kernel: [   13.286958] input: Apple Computer, Inc. IR Receiver as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.2/2-1.2:1.0/0003:05AC:8242.0001/input/input10
Jun  7 12:59:36 iMac kernel: [   13.287195] appleir 0003:05AC:8242.0001: input,hiddev0,hidraw3: USB HID v1.11 Device [Apple Computer, Inc. IR Receiver] on usb-0000:00:1d.7-1.2/input0
Jun  7 12:59:36 iMac kernel: [   13.287328] Bluetooth: Core ver 2.19
Jun  7 12:59:36 iMac kernel: [   13.287345] NET: Registered protocol family 31
Jun  7 12:59:36 iMac kernel: [   13.287347] Bluetooth: HCI device and connection manager initialized
Jun  7 12:59:36 iMac kernel: [   13.287354] Bluetooth: HCI socket layer initialized
Jun  7 12:59:36 iMac kernel: [   13.287356] Bluetooth: L2CAP socket layer initialized
Jun  7 12:59:36 iMac kernel: [   13.287365] Bluetooth: SCO socket layer initialized
Jun  7 12:59:36 iMac kernel: [   13.293470] Linux video capture interface: v2.00
Jun  7 12:59:36 iMac kernel: [   13.294936] usbcore: registered new interface driver btusb
Jun  7 12:59:36 iMac kernel: [   13.301523] uvcvideo: Found UVC 1.00 device Built-in iSight (05ac:8502)
Jun  7 12:59:36 iMac kernel: [   13.306316] input: Built-in iSight as /devices/pci0000:00/0000:00:1d.7/usb2/2-1/2-1.1/2-1.1:1.0/input/input11
Jun  7 12:59:36 iMac kernel: [   13.306404] usbcore: registered new interface driver uvcvideo
Jun  7 12:59:36 iMac kernel: [   13.306405] USB Video Class driver (1.1.1)
Jun  7 12:59:36 iMac kernel: [   13.470756] [drm] External GPIO thermal controller with fan control
Jun  7 12:59:36 iMac kernel: [   13.470770] [drm] radeon: power management initialized
Jun  7 12:59:36 iMac kernel: [   13.470774] [drm] GART: num cpu pages 262144, num gpu pages 262144
Jun  7 12:59:36 iMac kernel: [   13.472000] [drm] enabling PCIE gen 2 link speeds, disable with radeon.pcie_gen2=0
Jun  7 12:59:36 iMac kernel: [   13.484151] [drm] PCIE GART of 1024M enabled (table at 0x0000000000040000).
Jun  7 12:59:36 iMac kernel: [   13.484205] radeon 0000:01:00.0: WB enabled
Jun  7 12:59:36 iMac kernel: [   13.484207] radeon 0000:01:00.0: fence driver on ring 0 use gpu addr 0x0000000020000c00 and cpu addr 0xffff8800b765ec00
Jun  7 12:59:36 iMac kernel: [   13.484208] radeon 0000:01:00.0: fence driver on ring 3 use gpu addr 0x0000000020000c0c and cpu addr 0xffff8800b765ec0c
Jun  7 12:59:36 iMac kernel: [   13.484210] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Jun  7 12:59:36 iMac kernel: [   13.484211] [drm] Driver supports precise vblank timestamp query.
Jun  7 12:59:36 iMac kernel: [   13.484212] radeon 0000:01:00.0: radeon: MSI limited to 32-bit
Jun  7 12:59:36 iMac kernel: [   13.484228] radeon 0000:01:00.0: irq 47 for MSI/MSI-X
Jun  7 12:59:36 iMac kernel: [   13.484236] radeon 0000:01:00.0: radeon: using MSI.
Jun  7 12:59:36 iMac kernel: [   13.484256] [drm] radeon: irq initialized.
Jun  7 12:59:36 iMac kernel: [   13.530756] [drm] ring test on 0 succeeded in 1 usecs
Jun  7 12:59:36 iMac kernel: [   13.530762] [drm] ring test on 3 succeeded in 2 usecs
Jun  7 12:59:36 iMac kernel: [   13.531010] [drm] ib test on ring 0 succeeded in 0 usecs
Jun  7 12:59:36 iMac kernel: [   13.531027] [drm] ib test on ring 3 succeeded in 0 usecs
Jun  7 12:59:36 iMac kernel: [   13.531576] [drm] radeon atom DIG backlight initialized
Jun  7 12:59:36 iMac kernel: [   13.531577] [drm] Radeon Display Connectors
Jun  7 12:59:36 iMac kernel: [   13.531578] [drm] Connector 0:
Jun  7 12:59:36 iMac kernel: [   13.531579] [drm]   DP-1
Jun  7 12:59:36 iMac kernel: [   13.531580] [drm]   HPD2
Jun  7 12:59:36 iMac kernel: [   13.531581] [drm]   DDC: 0x7e60 0x7e60 0x7e64 0x7e64 0x7e68 0x7e68 0x7e6c 0x7e6c
Jun  7 12:59:36 iMac kernel: [   13.531582] [drm]   Encoders:
Jun  7 12:59:36 iMac kernel: [   13.531582] [drm]     DFP1: INTERNAL_UNIPHY
Jun  7 12:59:36 iMac kernel: [   13.531583] [drm] Connector 1:
Jun  7 12:59:36 iMac kernel: [   13.531584] [drm]   eDP-1
Jun  7 12:59:36 iMac kernel: [   13.531584] [drm]   HPD3
Jun  7 12:59:36 iMac kernel: [   13.531585] [drm]   DDC: 0x7e20 0x7e20 0x7e24 0x7e24 0x7e28 0x7e28 0x7e2c 0x7e2c
Jun  7 12:59:36 iMac kernel: [   13.531586] [drm]   Encoders:
Jun  7 12:59:36 iMac kernel: [   13.531587] [drm]     LCD1: INTERNAL_UNIPHY
Jun  7 12:59:36 iMac kernel: [   13.531587] [drm] Connector 2:
Jun  7 12:59:36 iMac kernel: [   13.531588] [drm]   VGA-1
Jun  7 12:59:36 iMac kernel: [   13.531589] [drm]   DDC: 0x7e40 0x7e40 0x7e44 0x7e44 0x7e48 0x7e48 0x7e4c 0x7e4c
Jun  7 12:59:36 iMac kernel: [   13.531590] [drm]   Encoders:
Jun  7 12:59:36 iMac kernel: [   13.531590] [drm]     CRT1: INTERNAL_KLDSCP_DAC1
Jun  7 12:59:36 iMac kernel: [   13.684048] [drm] fb mappable at 0xC0241000
Jun  7 12:59:36 iMac kernel: [   13.684050] [drm] vram apper at 0xC0000000
Jun  7 12:59:36 iMac kernel: [   13.684051] [drm] size 14745600
Jun  7 12:59:36 iMac kernel: [   13.684052] [drm] fb depth is 24
Jun  7 12:59:36 iMac kernel: [   13.684053] [drm]    pitch is 10240
Jun  7 12:59:36 iMac kernel: [   13.684123] fbcon: radeondrmfb (fb0) is primary device
Jun  7 12:59:36 iMac kernel: [   13.684275] Console: switching to colour frame buffer device 320x90
Jun  7 12:59:36 iMac kernel: [   13.684353] radeon 0000:01:00.0: fb0: radeondrmfb frame buffer device
Jun  7 12:59:36 iMac kernel: [   13.684354] radeon 0000:01:00.0: registered panic notifier
Jun  7 12:59:36 iMac kernel: [   13.699286] [drm] Initialized radeon 2.39.0 20080528 for 0000:01:00.0 on minor 0
Jun  7 12:59:36 iMac kernel: [   15.466757] EXT4-fs (sda2): re-mounted. Opts: errors=remount-ro
Jun  7 12:59:36 iMac kernel: [   17.239811] Bluetooth: RFCOMM TTY layer initialized
Jun  7 12:59:36 iMac kernel: [   17.239826] Bluetooth: RFCOMM socket layer initialized
Jun  7 12:59:36 iMac kernel: [   17.239832] Bluetooth: RFCOMM ver 1.11
Jun  7 12:59:36 iMac kernel: [   17.341739] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Jun  7 12:59:36 iMac kernel: [   17.341741] Bluetooth: BNEP filters: protocol multicast
Jun  7 12:59:36 iMac kernel: [   17.341745] Bluetooth: BNEP socket layer initialized
Jun  7 12:59:37 iMac kernel: [   18.167560] audit_printk_skb: 33 callbacks suppressed
Jun  7 12:59:37 iMac kernel: [   18.167575] audit: type=1400 audit(1433674777.762:23): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=987 comm="apparmor_parser"
Jun  7 12:59:37 iMac kernel: [   18.167583] audit: type=1400 audit(1433674777.762:24): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=987 comm="apparmor_parser"
Jun  7 12:59:37 iMac kernel: [   18.167589] audit: type=1400 audit(1433674777.762:25): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=987 comm="apparmor_parser"
Jun  7 12:59:37 iMac kernel: [   18.167948] audit: type=1400 audit(1433674777.762:26): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=987 comm="apparmor_parser"
Jun  7 12:59:37 iMac kernel: [   18.167951] audit: type=1400 audit(1433674777.762:27): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=987 comm="apparmor_parser"
Jun  7 12:59:37 iMac kernel: [   18.168140] audit: type=1400 audit(1433674777.762:28): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=987 comm="apparmor_parser"
Jun  7 12:59:37 iMac kernel: [   18.168962] audit: type=1400 audit(1433674777.762:29): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=986 comm="apparmor_parser"
Jun  7 12:59:37 iMac kernel: [   18.168968] audit: type=1400 audit(1433674777.762:30): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=986 comm="apparmor_parser"
Jun  7 12:59:37 iMac kernel: [   18.169114] audit: type=1400 audit(1433674777.762:31): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=994 comm="apparmor_parser"
Jun  7 12:59:37 iMac kernel: [   18.169295] audit: type=1400 audit(1433674777.762:32): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="chromium" pid=986 comm="apparmor_parser"
Jun  7 12:59:39 iMac kernel: [   19.782079] tg3 0000:02:00.0: irq 48 for MSI/MSI-X
Jun  7 12:59:39 iMac kernel: [   20.058260] vboxdrv: module verification failed: signature and/or  required key missing - tainting kernel
Jun  7 12:59:39 iMac kernel: [   20.061299] vboxdrv: Found 8 processor cores.
Jun  7 12:59:39 iMac kernel: [   20.061763] vboxdrv: fAsync=0 offMin=0xf3 offMax=0x1ed83
Jun  7 12:59:39 iMac kernel: [   20.061874] vboxdrv: TSC mode is 'synchronous', kernel timer mode is 'normal'.
Jun  7 12:59:39 iMac kernel: [   20.061876] vboxdrv: Successfully loaded version 4.3.10_Ubuntu (interface 0x001a0007).
Jun  7 12:59:39 iMac kernel: [   20.073291] vboxpci: IOMMU not found (not registered)
Jun  7 12:59:40 iMac kernel: [   20.570169] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Jun  7 12:59:40 iMac kernel: [   20.586511] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Jun  7 12:59:41 iMac kernel: [   22.158827] tg3 0000:02:00.0 eth0: Link is up at 100 Mbps, full duplex
Jun  7 12:59:41 iMac kernel: [   22.158920] tg3 0000:02:00.0 eth0: Flow control is on for TX and on for RX
Jun  7 12:59:41 iMac kernel: [   22.158942] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Jun  7 12:59:43 iMac kernel: [   23.948972] scsi 3:0:0:0: Direct-Access     SAMSUNG  HD103UJ          1AA0 PQ: 0 ANSI: 4
Jun  7 12:59:43 iMac kernel: [   23.970496] sd 3:0:0:0: Attached scsi generic sg3 type 0
Jun  7 12:59:43 iMac kernel: [   23.972190] sd 3:0:0:0: [sdc] 3907049984 512-byte logical blocks: (2.00 TB/1.81 TiB)
Jun  7 12:59:43 iMac kernel: [   23.973377] sd 3:0:0:0: [sdc] Write Protect is off
Jun  7 12:59:43 iMac kernel: [   23.973384] sd 3:0:0:0: [sdc] Mode Sense: 10 00 00 00
Jun  7 12:59:43 iMac kernel: [   23.974252] sd 3:0:0:0: [sdc] Cache data unavailable
Jun  7 12:59:43 iMac kernel: [   23.974256] sd 3:0:0:0: [sdc] Assuming drive cache: write through
Jun  7 12:59:43 iMac kernel: [   23.990477]  sdc: sdc1
Jun  7 12:59:43 iMac kernel: [   23.997192] sd 3:0:0:0: [sdc] Attached SCSI disk
Jun  7 13:00:06 iMac kernel: [   47.342749] audit_printk_skb: 123 callbacks suppressed
Jun  7 13:00:06 iMac kernel: [   47.342751] audit: type=1400 audit(1433674806.912:74): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1901 comm="apparmor_parser"
Jun  7 13:00:06 iMac kernel: [   47.342757] audit: type=1400 audit(1433674806.912:75): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1901 comm="apparmor_parser"
Jun  7 13:00:06 iMac kernel: [   47.343064] audit: type=1400 audit(1433674806.912:76): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1901 comm="apparmor_parser"